summaryrefslogtreecommitdiff
path: root/API.md
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2019-02-20 18:44:40 +0100
committerGitHub <noreply@github.com>2019-02-20 18:44:40 +0100
commit148d46766f8b037e5774798cd92240d91d6f6f4e (patch)
treeca696a4d574dc2a278a18b2283864a9c8a865e87 /API.md
parent11a1c23ab341d6d4726a2ba6dca522642dda9034 (diff)
parent6ae4401bd1c7988b84c6e1f715ca85ad74ee4048 (diff)
downloadpodman-148d46766f8b037e5774798cd92240d91d6f6f4e.tar.gz
podman-148d46766f8b037e5774798cd92240d91d6f6f4e.tar.bz2
podman-148d46766f8b037e5774798cd92240d91d6f6f4e.zip
Merge pull request #2360 from vrothberg/parallel-search
podman-search: run in parallel
Diffstat (limited to 'API.md')
-rwxr-xr-xAPI.md13
1 files changed, 12 insertions, 1 deletions
diff --git a/API.md b/API.md
index 1a75e1492..c1d8c6a36 100755
--- a/API.md
+++ b/API.md
@@ -107,7 +107,7 @@ in the [API.md](https://github.com/containers/libpod/blob/master/API.md) file in
[func RestartPod(name: string) string](#RestartPod)
-[func SearchImages(query: string, limit: , tlsVerify: ) ImageSearchResult](#SearchImages)
+[func SearchImages(query: string, limit: int, tlsVerify: ?bool, filter: ImageSearchFilter) ImageSearchResult](#SearchImages)
[func SendFile(type: string, length: int) string](#SendFile)
@@ -163,6 +163,8 @@ in the [API.md](https://github.com/containers/libpod/blob/master/API.md) file in
[type ImageHistory](#ImageHistory)
+[type ImageSearchFilter](#ImageSearchFilter)
+
[type ImageSearchResult](#ImageSearchResult)
[type InfoDistribution](#InfoDistribution)
@@ -1408,6 +1410,15 @@ tags [[]string](#[]string)
size [int](https://godoc.org/builtin#int)
comment [string](https://godoc.org/builtin#string)
+### <a name="ImageSearchFilter"></a>type ImageSearchFilter
+
+Represents a filter for SearchImages
+
+is_official [bool](https://godoc.org/builtin#bool)
+
+is_automated [bool](https://godoc.org/builtin#bool)
+
+star_count [int](https://godoc.org/builtin#int)
### <a name="ImageSearchResult"></a>type ImageSearchResult
Represents a single search result from SearchImages