diff options
| author | Jenkins <jenkins@review.openstack.org> | 2016-07-14 09:22:20 +0000 |
|---|---|---|
| committer | Gerrit Code Review <review@openstack.org> | 2016-07-14 09:22:21 +0000 |
| commit | 52cb503fb0e9d1ba43fc048e127ec0206cde4a61 (patch) | |
| tree | 2ce373b680886f170723c9391f9d9b8acc93a5b3 /doc/source | |
| parent | bae17d954779834d0170ce26092a05e436ced5f1 (diff) | |
| parent | 25bdf6811c71413921777cad73b6d039444600ff (diff) | |
| download | python-openstackclient-52cb503fb0e9d1ba43fc048e127ec0206cde4a61.tar.gz | |
Merge "Modify compute agent set command"
Diffstat (limited to 'doc/source')
| -rw-r--r-- | doc/source/backwards-incompatible.rst | 13 | ||||
| -rw-r--r-- | doc/source/command-objects/compute-agent.rst | 21 |
2 files changed, 25 insertions, 9 deletions
diff --git a/doc/source/backwards-incompatible.rst b/doc/source/backwards-incompatible.rst index da3c1b64..4f38aa54 100644 --- a/doc/source/backwards-incompatible.rst +++ b/doc/source/backwards-incompatible.rst @@ -170,6 +170,19 @@ Releases Before 3.0 * Bug: https://bugs.launchpad.net/python-openstackclient/+bug/1546065 * Commit: https://review.openstack.org/#/c/281088/ +12. <version> <url> <md5hash> should be optional for command `openstack compute agent set` + + Previously, the command was `openstack compute agent set <id> <version> <url> <md5hash>`, + whereas now it is: `openstack compute agent set <id> --version <version> + --url <url> + --md5hash <md5hash>`. + + * In favor of: making <version> <url> <md5hash> optional. + * As of: NA + * Removed in: NA + * Bug: NA + * Commit: https://review.openstack.org/#/c/328819/ + 13. `aggregate set` commands will no longer return the modified resource Previously, modifying an aggregate would result in the new aggregate being diff --git a/doc/source/command-objects/compute-agent.rst b/doc/source/command-objects/compute-agent.rst index 55540c8d..239a24e8 100644 --- a/doc/source/command-objects/compute-agent.rst +++ b/doc/source/command-objects/compute-agent.rst @@ -79,21 +79,24 @@ Set compute agent properties .. code:: bash os compute agent set - <id> <version> <url> <md5hash> + [--agent-version <version>] + [--url <url] + [--md5hash <md5hash>] + <id> .. _compute_agent-set: -.. describe:: <id> +.. option:: --agent-version <version> - ID of the agent + Version of the agent -.. describe:: <version> +.. option:: --url <url> - Version of the agent + URL of the agent -.. describe:: <url> +.. option:: --md5hash <md5hash> - URL + MD5 hash of the agent -.. describe:: <md5hash> +.. describe:: <id> - MD5 hash + Agent to modify (ID only) |
