diff options
| author | Zuul <zuul@review.openstack.org> | 2017-12-13 02:18:43 +0000 |
|---|---|---|
| committer | Gerrit Code Review <review@openstack.org> | 2017-12-13 02:18:43 +0000 |
| commit | 21b656ca4aa995530be474a8b9761b89f2ef93dd (patch) | |
| tree | b75291d0eb94a417b09c3cc6df1d2ea11338414b /doc/source/cli/command-objects/endpoint.rst | |
| parent | 58e5abf2946ce9f0fa118866ac89f6ce881e440e (diff) | |
| parent | 12ee1861085144f43e6e535f82ba5d9b5d9a5632 (diff) | |
| download | python-openstackclient-21b656ca4aa995530be474a8b9761b89f2ef93dd.tar.gz | |
Merge "Add support for endpoing filter commands"
Diffstat (limited to 'doc/source/cli/command-objects/endpoint.rst')
| -rw-r--r-- | doc/source/cli/command-objects/endpoint.rst | 79 |
1 files changed, 79 insertions, 0 deletions
diff --git a/doc/source/cli/command-objects/endpoint.rst b/doc/source/cli/command-objects/endpoint.rst index 02a75bea..030947c2 100644 --- a/doc/source/cli/command-objects/endpoint.rst +++ b/doc/source/cli/command-objects/endpoint.rst @@ -4,6 +4,34 @@ endpoint Identity v2, v3 +endpoint add project +-------------------- + +Associate a project to and endpoint for endpoint filtering + +.. program:: endpoint add project +.. code:: bash + + openstack endpoint add project + [--project-domain <project-domain>] + <endpoint> + <project> + +.. option:: --project-domain <project-domain> + + Domain the project belongs to (name or ID). + This can be used in case collisions between project names exist. + +.. _endpoint_add_project-endpoint: +.. describe:: <endpoint> + + Endpoint to associate with specified project (name or ID) + +.. _endpoint_add_project-project: +.. describe:: <project> + + Project to associate with specified endpoint (name or ID) + endpoint create --------------- @@ -107,6 +135,8 @@ List endpoints [--interface <interface>] [--region <region-id>] [--long] + [--endpoint <endpoint> | + --project <project> [--project-domain <project-domain>]] .. option:: --service <service> @@ -132,6 +162,55 @@ List endpoints *Identity version 2 only* +.. option:: --endpoint + + List projects that have access to that endpoint using + endpoint filtering + + *Identity version 3 only* + +.. option:: --project + + List endpoints available for the project using + endpoint filtering + + *Identity version 3 only* + +.. option:: --project-domain + + Domain the project belongs to (name or ID). + This can be used in case collisions between project names exist. + + *Identity version 3 only* + +endpoint remove project +----------------------- + +Dissociate a project from an endpoint. + +.. program:: endpoint remove project +.. code:: bash + + openstack endpoint remove project + [--project-domain <project-domain>] + <endpoint> + <project> + +.. option:: --project-domain <project-domain> + + Domain the project belongs to (name or ID). + This can be used in case collisions between project names exist. + +.. _endpoint_remove_project-endpoint: +.. describe:: <endpoint> + + Endpoint to dissociate with specified project (name or ID) + +.. _endpoint_remove_project-project: +.. describe:: <project> + + Project to dissociate with specified endpoint (name or ID) + endpoint set ------------ |
