diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2019-04-03 11:16:42 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-03 11:16:42 -0700 |
commit | 42757c18553bb2e6865efed4c912e3361012c49c (patch) | |
tree | 6fc8cf07f8751043f1c0ee25ad664810fd597d84 /API.md | |
parent | 662ae6c0edd65db396c184c288fa93fce8023879 (diff) | |
parent | 576a80b0d75182a5ae12985c47bd31da72a51bc8 (diff) | |
download | podman-42757c18553bb2e6865efed4c912e3361012c49c.tar.gz podman-42757c18553bb2e6865efed4c912e3361012c49c.tar.bz2 podman-42757c18553bb2e6865efed4c912e3361012c49c.zip |
Merge pull request #2825 from baude/remotediff
add remote-client diff
Diffstat (limited to 'API.md')
-rwxr-xr-x | API.md | 16 |
1 files changed, 16 insertions, 0 deletions
@@ -31,6 +31,8 @@ in the [API.md](https://github.com/containers/libpod/blob/master/API.md) file in [func DeleteUnusedImages() []string](#DeleteUnusedImages) +[func Diff(name: string) DiffInfo](#Diff) + [func ExportContainer(name: string, path: string) string](#ExportContainer) [func ExportImage(name: string, destination: string, compress: bool, tags: []string) string](#ExportImage) @@ -173,6 +175,8 @@ in the [API.md](https://github.com/containers/libpod/blob/master/API.md) file in [type CreateResourceConfig](#CreateResourceConfig) +[type DiffInfo](#DiffInfo) + [type Event](#Event) [type IDMap](#IDMap) @@ -388,6 +392,11 @@ $ varlink call -m unix:/run/podman/io.podman/io.podman.DeleteUnusedImages ] } ~~~ +### <a name="Diff"></a>func Diff +<div style="background-color: #E8E8E8; padding: 15px; margin: 10px; border-radius: 10px;"> + +method Diff(name: [string](https://godoc.org/builtin#string)) [DiffInfo](#DiffInfo)</div> + ### <a name="ExportContainer"></a>func ExportContainer <div style="background-color: #E8E8E8; padding: 15px; margin: 10px; border-radius: 10px;"> @@ -1431,6 +1440,13 @@ pids_limit [int](https://godoc.org/builtin#int) shm_size [int](https://godoc.org/builtin#int) ulimit [[]string](#[]string) +### <a name="DiffInfo"></a>type DiffInfo + + + +path [string](https://godoc.org/builtin#string) + +changeType [string](https://godoc.org/builtin#string) ### <a name="Event"></a>type Event Event describes a libpod struct |