1=====
2limit
3=====
4
5Identity v3
6
7Limits are used to specify project-specific limits thresholds of resources.
8
9limit create
10------------
11
12Create a new limit
13
14.. program:: limit create
15.. code:: bash
16
17    openstack limit create
18        [--description <description>]
19        [--region <region>]
20        --project <project>
21        --service <service>
22        --resource-limit <resource-limit>
23        <resource-name>
24
25.. option:: --description <description>
26
27   Useful description of the limit or its purpose
28
29.. option:: --region <region>
30
31   Region that the limit should be applied to
32
33.. describe:: --project <project>
34
35   The project that the limit applies to (required)
36
37.. describe:: --service <service>
38
39   The service that is responsible for the resource being limited (required)
40
41.. describe:: --resource-limit <resource-limit>
42
43   The limit to apply to the project (required)
44
45.. describe:: <resource-name>
46
47   The name of the resource to limit (e.g. cores or volumes)
48
49limit delete
50------------
51
52Delete project-specific limit(s)
53
54.. program:: limit delete
55.. code:: bash
56
57    openstack limit delete
58        <limit-id> [<limit-id> ...]
59
60.. describe:: <limit-id>
61
62    Limit(s) to delete (ID)
63
64limit list
65----------
66
67List project-specific limits
68
69.. program:: limit list
70.. code:: bash
71
72    openstack limit list
73        [--service <service>]
74        [--resource-name <resource-name>]
75        [--region <region>]
76        [--project <project>]
77
78.. option:: --service <service>
79
80    The service to filter the response by (name or ID)
81
82.. option:: --resource-name <resource-name>
83
84    The name of the resource to filter the response by
85
86.. option:: --region <region>
87
88   The region name to filter the response by
89
90.. option:: --project <project>
91
92   List resource limits associated with project
93
94limit show
95----------
96
97Display details about a limit
98
99.. program:: limit show
100.. code:: bash
101
102    openstack limit show
103        <limit-id>
104
105.. describe:: <limit-id>
106
107   Limit to display (ID)
108
109limit set
110---------
111
112Update a limit
113
114.. program:: limit show
115.. code:: bash
116
117    openstack limit set
118        [--description <description>]
119        [--resource-limit <resource-limit>]
120        <limit-id>
121
122
123.. option:: --description <description>
124
125   Useful description of the limit or its purpose
126
127.. option:: --resource-limit <resource-limit>
128
129   The limit to apply to the project
130
131.. describe:: <limit-id>
132
133   Limit to update (ID)
134