aboutsummaryrefslogtreecommitdiff
path: root/cmd/podman/varlink/io.podman.varlink
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2019-04-03 11:16:42 -0700
committerGitHub <noreply@github.com>2019-04-03 11:16:42 -0700
commit42757c18553bb2e6865efed4c912e3361012c49c (patch)
tree6fc8cf07f8751043f1c0ee25ad664810fd597d84 /cmd/podman/varlink/io.podman.varlink
parent662ae6c0edd65db396c184c288fa93fce8023879 (diff)
parent576a80b0d75182a5ae12985c47bd31da72a51bc8 (diff)
downloadpodman-42757c18553bb2e6865efed4c912e3361012c49c.tar.gz
podman-42757c18553bb2e6865efed4c912e3361012c49c.tar.bz2
podman-42757c18553bb2e6865efed4c912e3361012c49c.zip
Merge pull request #2825 from baude/remotediff
add remote-client diff
Diffstat (limited to 'cmd/podman/varlink/io.podman.varlink')
-rw-r--r--cmd/podman/varlink/io.podman.varlink9
1 files changed, 9 insertions, 0 deletions
diff --git a/cmd/podman/varlink/io.podman.varlink b/cmd/podman/varlink/io.podman.varlink
index 5e996f46b..2ff06a6f6 100644
--- a/cmd/podman/varlink/io.podman.varlink
+++ b/cmd/podman/varlink/io.podman.varlink
@@ -461,6 +461,13 @@ type Event(
type: string
)
+type DiffInfo(
+ # path that is different
+ path: string,
+ # Add, Delete, Modify
+ changeType: string
+)
+
# GetVersion returns version and build information of the podman service
method GetVersion() -> (
version: string,
@@ -1154,6 +1161,8 @@ method LoadImage(name: string, inputFile: string, quiet: bool, deleteFile: bool)
# GetEvents returns known libpod events filtered by the options provided.
method GetEvents(filter: []string, since: string, until: string) -> (events: Event)
+method Diff(name: string) -> (diffs: []DiffInfo)
+
# ImageNotFound means the image could not be found by the provided name or ID in local storage.
error ImageNotFound (id: string, reason: string)