diff options
| author | Jenkins <jenkins@review.openstack.org> | 2017-03-01 18:03:19 +0000 |
|---|---|---|
| committer | Gerrit Code Review <review@openstack.org> | 2017-03-01 18:03:19 +0000 |
| commit | 3816433b53cf6098d062961320e37083451cb9e1 (patch) | |
| tree | c031bfcdd48aa6bf64344c9b824f450836c6e5cc /doc/source/command-objects | |
| parent | 1654f56f4e4f3757cd707bc6c908f493102d97ea (diff) | |
| parent | 1169434f42a751ca9ef37fed2fa2fd04fe8b6f8b (diff) | |
| download | python-openstackclient-3816433b53cf6098d062961320e37083451cb9e1.tar.gz | |
Merge "Auto allocated topology for OSC"
Diffstat (limited to 'doc/source/command-objects')
| -rw-r--r-- | doc/source/command-objects/network-auto-allocated-topology.rst | 69 |
1 files changed, 69 insertions, 0 deletions
diff --git a/doc/source/command-objects/network-auto-allocated-topology.rst b/doc/source/command-objects/network-auto-allocated-topology.rst new file mode 100644 index 00000000..4ed68cda --- /dev/null +++ b/doc/source/command-objects/network-auto-allocated-topology.rst @@ -0,0 +1,69 @@ +=============================== +network auto allocated topology +=============================== + +An **auto allocated topology** allows admins to quickly set up external +connectivity for end-users. Only one auto allocated topology is allowed per +project. For more information on how to set up the resources required +for auto allocated topology review the documentation at: +http://docs.openstack.org/newton/networking-guide/config-auto-allocation.html + +Network v2 + +network auto allocated topology create +-------------------------------------- + +Create the auto allocated topology for project + +.. program:: network auto allocated topology create +.. code:: bash + + openstack network auto allocated topology create + [--or-show] + [--check-resources] + [--project <project> [--project-domain <project-domain>]] + +.. option:: --or-show + + If topology exists returns the topologies information (Default). + +.. option:: --check-resources + + Validate the requirements for auto allocated topology. + Does not return a topology. + +.. option:: --project <project> + + Return the auto allocated topology for a given project. + Default is current project. + +.. option:: --project-domain <project-domain> + + Domain the project belongs to (name or ID). + This can be used in case collisions between project names exist. + +.. _network_auto_allocated_topology_create: + + +network auto allocated topology delete +-------------------------------------- + +Delete auto allocated topology for project + +.. program:: network auto allocated topology delete +.. code:: bash + + openstack network auto allocated topology delete + [--project <project> [--project-domain <project-domain>]] + +.. option:: --project <project> + + Delete auto allocated topology for a given project. + Default is the current project. + +.. option:: --project-domain <project-domain> + + Domain the project belongs to (name or ID). + This can be used in case collisions between project names exist. + +.. _network_auto_allocated_topology_delete: |
