diff options
author | baude <bbaude@redhat.com> | 2019-12-23 09:33:29 -0600 |
---|---|---|
committer | baude <bbaude@redhat.com> | 2019-12-23 10:02:14 -0600 |
commit | 4f09cfdaccfdd0f1deb01e52c7e1b18a9cec7d49 (patch) | |
tree | 491fcc6d89f0cabb26fdf2578e830b332205d589 /API.md | |
parent | fcd48db4d24f6dba4fb2652d72aa0d86e167aa0c (diff) | |
download | podman-4f09cfdaccfdd0f1deb01e52c7e1b18a9cec7d49.tar.gz podman-4f09cfdaccfdd0f1deb01e52c7e1b18a9cec7d49.tar.bz2 podman-4f09cfdaccfdd0f1deb01e52c7e1b18a9cec7d49.zip |
add struct response for removal of images
when removing an image from storage, we should return a struct that
details what was untagged vs deleted. this replaces the simple
println's used previously and assists in API development.
Signed-off-by: baude <bbaude@redhat.com>
Diffstat (limited to 'API.md')
-rwxr-xr-x | API.md | 18 |
1 files changed, 18 insertions, 0 deletions
@@ -149,6 +149,8 @@ in the [API.md](https://github.com/containers/libpod/blob/master/API.md) file in [func RemoveImage(name: string, force: bool) string](#RemoveImage) +[func RemoveImageWithResponse(name: string, force: bool) RemoveImageResponse](#RemoveImageWithResponse) + [func RemovePod(name: string, force: bool) string](#RemovePod) [func Reset() ](#Reset) @@ -257,6 +259,8 @@ in the [API.md](https://github.com/containers/libpod/blob/master/API.md) file in [type PsOpts](#PsOpts) +[type RemoveImageResponse](#RemoveImageResponse) + [type Runlabel](#Runlabel) [type Sockets](#Sockets) @@ -1052,6 +1056,13 @@ varlink call -m unix:/run/podman/io.podman/io.podman.RemoveImage '{"name": "regi "image": "426866d6fa419873f97e5cbd320eeb22778244c1dfffa01c944db3114f55772e" } ~~~ +### <a name="RemoveImageWithResponse"></a>func RemoveImageWithResponse +<div style="background-color: #E8E8E8; padding: 15px; margin: 10px; border-radius: 10px;"> + +method RemoveImageWithResponse(name: [string](https://godoc.org/builtin#string), force: [bool](https://godoc.org/builtin#bool)) [RemoveImageResponse](#RemoveImageResponse)</div> +RemoveImageWithResponse takes the name or ID of an image as well as a boolean that determines if containers using that image +should be deleted. If the image cannot be found, an [ImageNotFound](#ImageNotFound) error will be returned. The reponse is +in the form of a RemoveImageResponse . ### <a name="RemovePod"></a>func RemovePod <div style="background-color: #E8E8E8; padding: 15px; margin: 10px; border-radius: 10px;"> @@ -2026,6 +2037,13 @@ size [?bool](#?bool) sort [?string](#?string) sync [?bool](#?bool) +### <a name="RemoveImageResponse"></a>type RemoveImageResponse + + + +untagged [[]string](#[]string) + +deleted [string](https://godoc.org/builtin#string) ### <a name="Runlabel"></a>type Runlabel Runlabel describes the required input for container runlabel |