summaryrefslogtreecommitdiff
path: root/cmd/podman/varlink/io.podman.varlink
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2019-12-11 16:58:54 +0100
committerGitHub <noreply@github.com>2019-12-11 16:58:54 +0100
commitdd64038192ff41684fe75b680e865849aa969f55 (patch)
treea73f3751f02dcae80572609af6f97872ac7e2360 /cmd/podman/varlink/io.podman.varlink
parent668d77a12c40221fb90def84c6256d1bbcd5f6aa (diff)
parent8be7b466d86b53d170f82a4bd94667c4db71db59 (diff)
downloadpodman-dd64038192ff41684fe75b680e865849aa969f55.tar.gz
podman-dd64038192ff41684fe75b680e865849aa969f55.tar.bz2
podman-dd64038192ff41684fe75b680e865849aa969f55.zip
Merge pull request #4664 from baude/movefilters
move image filters under libpod/images
Diffstat (limited to 'cmd/podman/varlink/io.podman.varlink')
-rw-r--r--cmd/podman/varlink/io.podman.varlink5
1 files changed, 5 insertions, 0 deletions
diff --git a/cmd/podman/varlink/io.podman.varlink b/cmd/podman/varlink/io.podman.varlink
index a3fd27ed6..2251050c3 100644
--- a/cmd/podman/varlink/io.podman.varlink
+++ b/cmd/podman/varlink/io.podman.varlink
@@ -784,6 +784,11 @@ method DeleteStoppedContainers() -> (containers: []string)
# See also [InspectImage](#InspectImage).
method ListImages() -> (images: []Image)
+# ListImagesWithFilters returns information about the images that are currently in storage
+# after one or more filters has been applied.
+# See also [InspectImage](#InspectImage).
+method ListImagesWithFilters(filters: []string) -> (images: []Image)
+
# GetImage returns information about a single image in storage.
# If the image caGetImage returns be found, [ImageNotFound](#ImageNotFound) will be returned.
method GetImage(id: string) -> (image: Image)