diff options
| author | Steve Martinelli <stevemar@ca.ibm.com> | 2015-01-08 02:02:55 -0500 |
|---|---|---|
| committer | Steve Martinelli <stevemar@ca.ibm.com> | 2015-01-08 22:28:26 +0000 |
| commit | 6025fa83f193fe422cff1fdc93f658ec457e0136 (patch) | |
| tree | 199a83003915d9499d519c0dcfeb2e204e5b65c9 /doc/source | |
| parent | c885c72cba459ca853de10ec1685d70d9c2b7ca2 (diff) | |
| download | python-openstackclient-6025fa83f193fe422cff1fdc93f658ec457e0136.tar.gz | |
Request token creation docs + tweaks
Added command docs, and changed request token to take in name or
id of a project, and also support a domain option.
Change-Id: I87363274e5b7a0c687e234f5a4bcaaf166d28840
Diffstat (limited to 'doc/source')
| -rw-r--r-- | doc/source/command-objects/request-token.rst | 37 | ||||
| -rw-r--r-- | doc/source/commands.rst | 2 |
2 files changed, 38 insertions, 1 deletions
diff --git a/doc/source/command-objects/request-token.rst b/doc/source/command-objects/request-token.rst new file mode 100644 index 00000000..501f67a5 --- /dev/null +++ b/doc/source/command-objects/request-token.rst @@ -0,0 +1,37 @@ +============= +request token +============= + +Identity v3 + +`Requires: OS-OAUTH1 extension` + +request token create +-------------------- + +Create a request token + +.. program:: request token create +.. code:: bash + + os request token create + --consumer-key <consumer-key> + --consumer-secret <consumer-secret> + --project <project> + [--domain <domain>] + +.. option:: --consumer-key <consumer-key> + + Consumer key (required) + +.. option:: --description <description> + + Consumer secret (required) + +.. option:: --project <project> + + Project that consumer wants to access (name or ID) (required) + +.. option:: --domain <domain> + + Domain owning <project> (name or ID) diff --git a/doc/source/commands.rst b/doc/source/commands.rst index 9d609843..1136f0a2 100644 --- a/doc/source/commands.rst +++ b/doc/source/commands.rst @@ -100,7 +100,7 @@ referring to both Compute and Volume quotas. * ``project``: (**Identity**) owns a group of resources * ``quota``: (**Compute**, **Volume**) resource usage restrictions * ``region``: (**Identity**) a subset of an OpenStack deployment -* ``request token``: Identity - temporary OAuth-based token +* ``request token``: (**Identity**) temporary OAuth-based token * ``role``: (**Identity**) a policy object used to determine authorization * ``role assignment``: (**Identity**) a relationship between roles, users or groups, and domains or projects * ``security group``: Compute, Network - groups of network access rules |
