diff options
author | Joffrey F <joffrey@docker.com> | 2016-08-11 17:16:41 -0700 |
---|---|---|
committer | Joffrey F <joffrey@docker.com> | 2016-08-11 17:47:02 -0700 |
commit | a75553b3ca1a8c1d94a49f328f96ef9a1b634c70 (patch) | |
tree | 70df263cef54d98858f07ebcfad568867e3d8fd4 /docs/api.md | |
parent | e1774c4c5b8ae8d28dfeef90236be75a8f54e88f (diff) | |
download | docker-py-swarm-support.tar.gz |
Add `nodes` and `inspect_node` methodsswarm-support
Signed-off-by: Joffrey F <joffrey@docker.com>
Diffstat (limited to 'docs/api.md')
-rw-r--r-- | docs/api.md | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/docs/api.md b/docs/api.md index 7748254..ddfaffe 100644 --- a/docs/api.md +++ b/docs/api.md @@ -646,6 +646,11 @@ Retrieve network info by id. **Returns** (dict): Network information dictionary +## inspect_node + +Retrieve low-level information about a Swarm node. +See the [Swarm documentation](swarm.md#clientinspect_node). + ## inspect_swarm Retrieve information about the current Swarm. @@ -742,6 +747,10 @@ The above are combined to create a filters dict. **Returns** (dict): List of network objects. +## nodes + +List Swarm nodes. See the [Swarm documentation](swarm.md#clientnodes). + ## pause Pauses all processes within a container. |