diff options
| author | Tang Chen <chen.tang@easystack.cn> | 2016-03-07 11:51:39 +0800 |
|---|---|---|
| committer | Tang Chen <chen.tang@easystack.cn> | 2016-03-08 21:22:13 +0800 |
| commit | f2fb007e820ffd8585d8c63af4aab27944d544eb (patch) | |
| tree | 969c5eea132a36c70ac1b37525177dfc30b795a7 /doc/source/command-objects | |
| parent | 762c4c9bdf66995198fa03751b861a859b9d44a1 (diff) | |
| download | python-openstackclient-f2fb007e820ffd8585d8c63af4aab27944d544eb.tar.gz | |
[Subnet pool] Add 'subnet pool set' command support
This patch supports setting a new name, pool prefix,
default prefix length, minimum prefix length,
and maximum prefix length for a subnet pool.
Change-Id: I65bd71e0f54f2f65acefbc542df67a1b1ec26397
Partial-Bug: #1544591
Related-to: blueprint neutron-client
Diffstat (limited to 'doc/source/command-objects')
| -rw-r--r-- | doc/source/command-objects/subnet-pool.rst | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/doc/source/command-objects/subnet-pool.rst b/doc/source/command-objects/subnet-pool.rst index e181caec..658616d5 100644 --- a/doc/source/command-objects/subnet-pool.rst +++ b/doc/source/command-objects/subnet-pool.rst @@ -35,6 +35,48 @@ List subnet pools List additional fields in output +subnet pool set +--------------- + +Set subnet pool properties + +.. program:: subnet pool set + .. code:: bash + + os subnet pool set + [--name <name>] + [--pool-prefix <pool-prefix> [...]] + [--default-prefix-length <default-prefix-length>] + [--min-prefix-length <min-prefix-length>] + [--max-prefix-length <max-prefix-length>] + <subnet-pool> + +.. option:: --name <name> + + Set subnet pool name + +.. option:: --pool-prefix <pool-prefix> + + Set subnet pool prefixes (in CIDR notation). + Repeat this option to set multiple prefixes. + +.. option:: --default-prefix-length <default-prefix-length> + + Set subnet pool default prefix length + +.. option:: --min-prefix-length <min-prefix-length> + + Set subnet pool minimum prefix length + +.. option:: --max-prefix-length <max-prefix-length> + + Set subnet pool maximum prefix length + +.. _subnet_pool_set-subnet-pool: + .. describe:: <subnet-pool> + + Subnet pool to modify (name or ID) + subnet pool show ---------------- |
