From 735896eb1ad4543823008693c9d337691512f8bf Mon Sep 17 00:00:00 2001 From: Lance Bragstad Date: Wed, 13 Jun 2018 19:33:08 +0000 Subject: Implement support for project limits This commit let's users manage limits via the command line. bp unified-limits Change-Id: I7c44bbb60557378b66c5c43a7ba917f40dc2b633 --- doc/source/cli/command-objects/limit.rst | 128 +++++++++++++++++++++++++++++++ 1 file changed, 128 insertions(+) create mode 100644 doc/source/cli/command-objects/limit.rst (limited to 'doc/source/cli/command-objects') diff --git a/doc/source/cli/command-objects/limit.rst b/doc/source/cli/command-objects/limit.rst new file mode 100644 index 00000000..71cf2a42 --- /dev/null +++ b/doc/source/cli/command-objects/limit.rst @@ -0,0 +1,128 @@ +===== +limit +===== + +Identity v3 + +Limits are used to specify project-specific limits thresholds of resources. + +limit create +------------ + +Create a new limit + +.. program:: limit create +.. code:: bash + + openstack limit create + [--description ] + [--region ] + --project + --service + --resource-limit + + +.. option:: --description + + Useful description of the limit or its purpose + +.. option:: --region + + Region that the limit should be applied to + +.. describe:: --project + + The project that the limit applies to (required) + +.. describe:: --service + + The service that is responsible for the resource being limited (required) + +.. describe:: --resource-limit + + The limit to apply to the project (required) + +.. describe:: + + The name of the resource to limit (e.g. cores or volumes) + +limit delete +------------ + +Delete project-specific limit(s) + +.. program:: limit delete +.. code:: bash + + openstack limit delete + [ ...] + +.. describe:: + + Limit(s) to delete (ID) + +limit list +---------- + +List project-specific limits + +.. program:: limit list +.. code:: bash + + openstack limit list + [--service ] + [--resource-name ] + [--region ] + +.. option:: --service + + The service to filter the response by (name or ID) + +.. option:: --resource-name + + The name of the resource to filter the response by + +.. option:: --region + + The region name to filter the response by + +limit show +---------- + +Display details about a limit + +.. program:: limit show +.. code:: bash + + openstack limit show + + +.. describe:: + + Limit to display (ID) + +limit set +--------- + +Update a limit + +.. program:: limit show +.. code:: bash + + openstack limit set + [--description ] + [--resource-limit ] + + + +.. option:: --description + + Useful description of the limit or its purpose + +.. option:: --resource-limit + + The limit to apply to the project + +.. describe:: + + Limit to update (ID) -- cgit v1.2.1