From 41133fb82ebbadd565b38886883f8bba44295f8c Mon Sep 17 00:00:00 2001 From: Richard Theis Date: Tue, 24 Nov 2015 07:52:43 -0600 Subject: Doc: Add security group and security group rule Add missing command list documentation for the 'security group' and 'security group rule' commands. In addition, update the command description and argument help to fix minor issues and use consistent terminology. Change-Id: I9f4a3fbac5637289f19511874e16391d3fe27132 --- doc/source/command-objects/security-group.rst | 95 +++++++++++++++++++++++++++ 1 file changed, 95 insertions(+) create mode 100644 doc/source/command-objects/security-group.rst (limited to 'doc/source/command-objects/security-group.rst') diff --git a/doc/source/command-objects/security-group.rst b/doc/source/command-objects/security-group.rst new file mode 100644 index 00000000..60de41d8 --- /dev/null +++ b/doc/source/command-objects/security-group.rst @@ -0,0 +1,95 @@ +============== +security group +============== + +Compute v2 + +security group create +--------------------- + +Create a new security group + +.. program:: security group create +.. code:: bash + + os security group create + [--description ] + + +.. option:: --description + + Security group description + +.. describe:: + + New security group name + +security group delete +--------------------- + +Delete a security group + +.. program:: security group delete +.. code:: bash + + os security group delete + + +.. describe:: + + Security group to delete (name or ID) + +security group list +------------------- + +List security groups + +.. program:: security group list +.. code:: bash + + os security group list + [--all-projects] + +.. option:: --all-projects + + Display information from all projects (admin only) + +security group set +------------------ + +Set security group properties + +.. program:: security group set +.. code:: bash + + os security group set + [--name ] + [--description ] + + +.. option:: --name + + New security group name + +.. option:: --description + + New security group description + +.. describe:: + + Security group to modify (name or ID) + +security group show +------------------- + +Display security group details + +.. program:: security group show +.. code:: bash + + os security group show + + +.. describe:: + + Security group to display (name or ID) -- cgit v1.2.1