diff options
| author | Jenkins <jenkins@review.openstack.org> | 2015-01-02 23:03:42 +0000 |
|---|---|---|
| committer | Gerrit Code Review <review@openstack.org> | 2015-01-02 23:03:42 +0000 |
| commit | 79f8ce689328fea8659642204e700ea797de47fa (patch) | |
| tree | 637f7b641bf1535fffe51915434971cc7f901359 /doc/source/command-objects | |
| parent | 9d5a7c7c1bd100d679642d52e87baeef4d0d43ea (diff) | |
| parent | 4f7777ca0e1451f77d6935e15f87d27a950b5de4 (diff) | |
| download | python-openstackclient-79f8ce689328fea8659642204e700ea797de47fa.tar.gz | |
Merge "Command docs: ec2 credentials"
Diffstat (limited to 'doc/source/command-objects')
| -rw-r--r-- | doc/source/command-objects/ec2-credentials.rst | 98 |
1 files changed, 98 insertions, 0 deletions
diff --git a/doc/source/command-objects/ec2-credentials.rst b/doc/source/command-objects/ec2-credentials.rst new file mode 100644 index 00000000..a5b67549 --- /dev/null +++ b/doc/source/command-objects/ec2-credentials.rst @@ -0,0 +1,98 @@ +=============== +ec2 credentials +=============== + +Identity v2 + +ec2 credentials create +---------------------- + +Create EC2 credentials + +.. program:: ec2 credentials create +.. code-block:: bash + + os ec2 credentials create + [--project <project>] + [--user <user>] + +.. option:: --project <project> + + Specify an alternate project (default: current authenticated project) + +.. option:: --user <user> + + Specify an alternate user (default: current authenticated user) + +The :option:`--project` and :option:`--user` options are typically only +useful for admin users, but may be allowed for other users depending on +the policy of the cloud and the roles granted to the user. + +ec2 credentials delete +---------------------- + +Delete EC2 credentials + +.. program:: ec2 credentials delete +.. code-block:: bash + + os ec2 credentials delete + [--user <user>] + <access-key> + +.. option:: --user <user> + + Specify a user + +.. _ec2_credentials_delete-access-key: +.. describe:: access-key + + Credentials access key + +The :option:`--user` option is typically only useful for admin users, but +may be allowed for other users depending on the policy of the cloud and +the roles granted to the user. + +ec2 credentials list +-------------------- + +List EC2 credentials + +.. program:: ec2 credentials list +.. code-block:: bash + + os ec2 credentials list + [--user <user>] + +.. option:: --user <user> + + Filter list by <user> + +The :option:`--user` option is typically only useful for admin users, but +may be allowed for other users depending on the policy of the cloud and +the roles granted to the user. + +ec2 credentials show +-------------------- + +Display EC2 credentials details + +.. program:: ec2 credentials show +.. code-block:: bash + + os ec2 credentials show + [--user <user>] + <access-key> + +.. option:: --user <user> + + Specify a user + +.. _ec2_credentials_show-access-key: +.. describe:: access-key + + Credentials access key + +The :option:`--user` option is typically only useful for admin users, but +may be allowed for other users depending on the policy of the cloud and +the roles granted to the user. |
