diff options
author | baude <bbaude@redhat.com> | 2019-12-09 12:35:57 -0600 |
---|---|---|
committer | baude <bbaude@redhat.com> | 2019-12-10 13:05:18 -0600 |
commit | 8be7b466d86b53d170f82a4bd94667c4db71db59 (patch) | |
tree | 023eaca098ed07efb13174c5a942784e04a78a0d /API.md | |
parent | c2dab75f0ec1502e075cf5174d1b308267648fda (diff) | |
download | podman-8be7b466d86b53d170f82a4bd94667c4db71db59.tar.gz podman-8be7b466d86b53d170f82a4bd94667c4db71db59.tar.bz2 podman-8be7b466d86b53d170f82a4bd94667c4db71db59.zip |
move image filters under libpod/images
to make things more effecient for the api work we are doing, we should
process image filters internally (as opposed to in main). this allows
for better api responses and more closely affiliated functions.
Signed-off-by: baude <bbaude@redhat.com>
Diffstat (limited to 'API.md')
-rwxr-xr-x | API.md | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -123,6 +123,8 @@ in the [API.md](https://github.com/containers/libpod/blob/master/API.md) file in [func ListImages() Image](#ListImages) +[func ListImagesWithFilters(filters: []string) Image](#ListImagesWithFilters) + [func ListPods() ListPodData](#ListPods) [func LoadImage(name: string, inputFile: string, quiet: bool, deleteFile: bool) MoreResponse](#LoadImage) @@ -892,6 +894,13 @@ See also [GetContainer](#GetContainer). method ListImages() [Image](#Image)</div> ListImages returns information about the images that are currently in storage. See also [InspectImage](#InspectImage). +### <a name="ListImagesWithFilters"></a>func ListImagesWithFilters +<div style="background-color: #E8E8E8; padding: 15px; margin: 10px; border-radius: 10px;"> + +method ListImagesWithFilters(filters: [[]string](#[]string)) [Image](#Image)</div> +ListImagesWithFilters returns information about the images that are currently in storage +after one or more filters has been applied. +See also [InspectImage](#InspectImage). ### <a name="ListPods"></a>func ListPods <div style="background-color: #E8E8E8; padding: 15px; margin: 10px; border-radius: 10px;"> |