diff options
| author | wanghong <w.wanghong@huawei.com> | 2014-12-23 11:08:24 +0800 |
|---|---|---|
| committer | wanghong <w.wanghong@huawei.com> | 2014-12-24 11:55:27 +0800 |
| commit | d240b709b9f2638382daa8b18227b9baf021596d (patch) | |
| tree | fad94b4a1883aef56177ce88ba581cae41c6f84b /doc/source/command-objects | |
| parent | a24d6e7c6f06ccaecefa0a2c6cd2c105f3cd8be5 (diff) | |
| download | python-openstackclient-d240b709b9f2638382daa8b18227b9baf021596d.tar.gz | |
add doc for domain command
Change-Id: I8b5575a5f27362fa375746b955e1f17a5a8b29a6
Diffstat (limited to 'doc/source/command-objects')
| -rw-r--r-- | doc/source/command-objects/domain.rst | 115 |
1 files changed, 115 insertions, 0 deletions
diff --git a/doc/source/command-objects/domain.rst b/doc/source/command-objects/domain.rst new file mode 100644 index 00000000..057296ac --- /dev/null +++ b/doc/source/command-objects/domain.rst @@ -0,0 +1,115 @@ +====== +domain +====== + +Identity v3 + +domain create +------------- + +Create new domain + +.. program:: domain create +.. code:: bash + + os domain create + [--description <description>] + [--enable | --disable] + [--or-show] + <domain-name> + +.. option:: --description <description> + + New domain description + +.. option:: --enable + + Enable domain (default) + +.. option:: --disable + + Disable domain + +.. option:: --or-show + + Return existing domain + + If the domain already exists, return the existing domain data and do not fail. + +.. option:: <domain-name> + + New domain name + +domain delete +------------- + +Delete domain + +.. program:: domain delete +.. code:: bash + + os domain delete + <domain> + +.. option:: <domain> + + Domain to delete (name or ID) + +domain list +----------- + +List domains + +.. program:: domain list +.. code:: bash + + os domain list + +domain set +---------- + +Set domain properties + +.. program:: domain set +.. code:: bash + + os domain set + [--name <name>] + [--description <description>] + [--enable | --disable] + <domain> + +.. option:: --name <name> + + New domain name + +.. option:: --description <description> + + New domain description + +.. option:: --enable + + Enable domain + +.. option:: --disable + + Disable domain + +.. option:: <domain> + + Domain to modify (name or ID) + +domain show +----------- + +Show domain details + +.. program:: domain show +.. code:: bash + + os domain show + <domain> + +.. option:: <domain> + + Domain to display (name or ID) |
