diff options
| author | Steve Martinelli <stevemar@ca.ibm.com> | 2015-01-06 01:59:59 -0500 |
|---|---|---|
| committer | Steve Martinelli <stevemar@ca.ibm.com> | 2015-01-08 16:41:28 -0500 |
| commit | c9cf126a83459e1b843153a91dfe86d975d0d8bb (patch) | |
| tree | 694bd8ebffd0b54b640f71ab7b02026b7e1165bc /doc/source | |
| parent | e8be3b64c1956b58fa0a5b6d460c8bf07085951c (diff) | |
| download | python-openstackclient-c9cf126a83459e1b843153a91dfe86d975d0d8bb.tar.gz | |
Command doc: identity provider
Change-Id: Ie73accfaa3d45205a2521e6e61efd16142c460b2
Diffstat (limited to 'doc/source')
| -rw-r--r-- | doc/source/command-objects/identity-provider.rst | 100 | ||||
| -rw-r--r-- | doc/source/commands.rst | 2 |
2 files changed, 101 insertions, 1 deletions
diff --git a/doc/source/command-objects/identity-provider.rst b/doc/source/command-objects/identity-provider.rst new file mode 100644 index 00000000..f08cde01 --- /dev/null +++ b/doc/source/command-objects/identity-provider.rst @@ -0,0 +1,100 @@ +================= +identity provider +================= + +Identity v3 + +`Requires: OS-FEDERATION extension` + +identity provider create +------------------------ + +Create new identity provider + +.. program:: identity provider create +.. code:: bash + + os identity provider create + [--description <description>] + [--enable | --disable] + <name> + +.. option:: --description + + New identity provider description + +.. option:: --enable + + Enable the identity provider (default) + +.. option:: --disable + + Disable the identity provider + +.. describe:: <name> + + New identity provider name (must be unique) + +identity provider delete +------------------------ + +Delete an identity provider + +.. program:: identity provider delete +.. code:: bash + + os identity provider delete + <identity-provider> + +.. describe:: <identity-provider> + + Identity provider to delete + +identity provider list +---------------------- + +List identity providers + +.. program:: identity provider list +.. code:: bash + + os identity provider list + +identity provider set +--------------------- + +Set identity provider properties + +.. program:: identity provider set +.. code:: bash + + os identity provider set + [--enable | --disable] + <identity-provider> + +.. option:: --enable + + Enable the identity provider + +.. option:: --disable + + Disable the identity provider + +.. describe:: <identity-provider> + + Identity provider to modify + +identity provider show +---------------------- + +Display identity provider details + +.. program:: identity provider show +.. code:: bash + + os identity provider show + <identity-provider> + +.. describe:: <identity-provider> + + Identity provider to display diff --git a/doc/source/commands.rst b/doc/source/commands.rst index 8976fc02..cbe46ef7 100644 --- a/doc/source/commands.rst +++ b/doc/source/commands.rst @@ -87,7 +87,7 @@ referring to both Compute and Volume quotas. * ``group``: (**Identity**) a grouping of users * ``host``: Compute - the physical computer running a hypervisor * ``hypervisor``: Compute - the virtual machine manager -* ``identity provider``: Identity - a source of users and authentication +* ``identity provider``: (**Identity**) a source of users and authentication * ``image``: Image - a disk image * ``ip fixed``: Compute, Network - an internal IP address assigned to a server * ``ip floating``: Compute, Network - a public IP address that can be mapped to a server |
