diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2019-02-18 13:32:54 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-02-18 13:32:54 +0100 |
commit | e738ef16225395f5f5e4b93ba1a43ae9449ae11b (patch) | |
tree | 00c7d016a064a6efdf96d7fbcf5deb5e56ddf9ee /cmd/podman/varlink/io.podman.varlink | |
parent | f2139a651706b10824a1641a360020d932798827 (diff) | |
parent | b75dcd445848abad89e19f78193046a8de86c641 (diff) | |
download | podman-e738ef16225395f5f5e4b93ba1a43ae9449ae11b.tar.gz podman-e738ef16225395f5f5e4b93ba1a43ae9449ae11b.tar.bz2 podman-e738ef16225395f5f5e4b93ba1a43ae9449ae11b.zip |
Merge pull request #2354 from rhatdan/varlink
Add registry name to fields returned by varlink image search
Diffstat (limited to 'cmd/podman/varlink/io.podman.varlink')
-rw-r--r-- | cmd/podman/varlink/io.podman.varlink | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/cmd/podman/varlink/io.podman.varlink b/cmd/podman/varlink/io.podman.varlink index 697d9ed90..90cadf2b4 100644 --- a/cmd/podman/varlink/io.podman.varlink +++ b/cmd/podman/varlink/io.podman.varlink @@ -67,6 +67,7 @@ type ImageSearchResult ( description: string, is_official: bool, is_automated: bool, + registry: string, name: string, star_count: int ) @@ -600,8 +601,9 @@ method GetAttachSockets(name: string) -> (sockets: Sockets) # a [ContainerNotFound](#ContainerNotFound) error is returned. method WaitContainer(name: string) -> (exitcode: int) -# RemoveContainer takes requires the name or ID of container as well a boolean representing whether a running and a boolean indicating whether to remove builtin volumes -# container can be stopped and removed. Upon successful removal of the container, its ID is returned. If the +# RemoveContainer requires the name or ID of container as well a boolean representing whether a running container can be stopped and removed, and a boolean +# indicating whether to remove builtin volumes. Upon successful removal of the +# container, its ID is returned. If the # container cannot be found by name or ID, a [ContainerNotFound](#ContainerNotFound) error will be returned. # #### Example # ~~~ |