Changing quotas
Note
Potentially, you can change your quotas up to the limit values, i.e., the cloud platform's ceiling.
To manage quota update requests, an account
- Organization level: quota-manager.requestOperator, organization-manager.viewer.
- Cloud level: resource-manager.viewer.
Requesting quota updates
Request a quota update using one of the following methods:
- Select the resources on the quota page
and click Increase. - Contact support
and describe which quotas you want increased and by how much.
View the quota ID and create an update request:
yc quota-manager quota-request create \
--resource-type <resource_type> \
--resource-id <resource_ID> \
--desired-limit quota-id=<quota_ID>,value=<new_quota_value>
Where:
--resource-type: Resource type,resource-manager.cloud,organization-manager.organization, orbilling.account.--resource-id: ID of the resource (organization, cloud, or billing account).--desired-limit: Data for the quota update:quota-id: Quota ID.value: New quota value.
You can specify multiple quotas in a single request. To do this, add several --desired-limit parameters.
To create a quota update request, use the Create REST API method for the QuotaRequest resource or the QuotaRequest/create gRPC API call.
You can view the default quotas in the relevant documentation:
- Quota reference.
- Platform overview section.
- Concepts > Quotas and Limits page for each service.
There is no reset to default values in Cloud Quota Manager.
Viewing the quota update request status and operations
- In the management console
, select the cloud to view quotas for. - In the right-hand panel, select Quotas.
- Expand Requests processing.
- Select the request of interest and view the responses from support and related operations.
-
View the status of your quota update request:
yc quota-manager quota-request list \ --resource-type <resource_type> \ --resource-id <resource_ID> \ --limit <number_of_requests>Where:
--resource-type: Resource type,resource-manager.cloud,organization-manager.organization, orbilling.account.--resource-id: ID of the resource (organization, cloud, or billing account).--limit: Number of requests per page.
-
See the list of operations with the request:
yc quota-manager quota-request list-operations --id <request_ID> --limit <number_of_requests>Where:
--id: ID of the request to look up the operations for.--limit: Number of requests per page.
To view the quota update request status, use the get REST API method for the QuotaRequest resource or the QuotaRequest/Get gRPC API call.
To view quota update request operations, use the listOperations REST API method for the QuotaRequest resource or the QuotaRequest/listOperations gRPC API call.
Viewing a list of quota update requests
- In the support
section, select Tickets. - In the Ticket type filter list, select Increase quotas.
yc quota-manager quota-request list \
--resource-type <resource_type> \
--resource-id <resource_ID> \
--limit <number_of_requests>
Where:
--resource-type: Resource type,resource-manager.cloud,organization-manager.organization, orbilling.account.--resource-id: ID of the resource (organization, cloud, or billing account).--limit: Number of requests per page.
To view a list of quota update requests, use the List REST API method for the QuotaRequest resource or the QuotaRequest/list gRPC API call.
Canceling a quota update request
- In the management console
, select the cloud to view quotas for. - In the right-hand panel, select Quotas.
- Expand Requests processing.
- Select the request of interest and click Close request
yc quota-manager quota-request cancel --id <request_ID> --quota-id=<quota_ID>
Where:
--id: ID of the request you need to cancel.--quota-id: Quota ID in the request. To specify multiple quotas, add multiple--quota-idparameters.
To cancel a quota update request, use the Cancel REST API method for the QuotaRequest resource or the QuotaRequest/cancel gRPC API call.