[Yandex Cloud documentation](../../index.md) > [Yandex Cloud Quota Manager](../index.md) > [Step-by-step guides](index.md) > Changing quotas

# Changing quotas

{% note info %}

To manage quota update requests via the CLI and API, contact [support](https://center.yandex.cloud/support).

{% endnote %}

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](https://console.yandex.cloud/iam?section=users) must have the following roles:
* [Organization](../../resource-manager/concepts/resources-hierarchy.md#cloud) level: [quota-manager.requestOperator](../security/index.md#quota-manager-requestoperator), [organization-manager.viewer](../../organization/security/index.md#organization-manager-viewer).
* Cloud level: [resource-manager.viewer](../../resource-manager/security/index.md#resource-manager-viewer).

## Requesting quota updates {#request-quota-change}

{% list tabs group=instructions %}

- Management console {#console}

  Request a quota update using one of the following methods:
     * Select the resources on the [quota page](https://console.yandex.cloud/cloud?section=quotas) and click **Increase**.
     * Contact [support](https://center.yandex.cloud/support) and describe which quotas you want increased and by how much.

- CLI {#cli}

  [View the quota ID](../../overview/concepts/quotas-limits.md#quotas-limits-default) and create an update request:
  
  ```bash
  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`, or `billing.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.

- API {#api}

  To create a quota update request, use the [Create](../api-ref/QuotaRequest/create.md) REST API method for the [QuotaRequest](../api-ref/QuotaRequest/index.md) resource or the [QuotaRequest/create](../api-ref/grpc/QuotaRequest/create.md) gRPC API call.

{% endlist %}

You can view the default quotas in the relevant documentation:

* [Quota reference](../all-quotas.md).
* [Platform overview](../../overview/concepts/quotas-limits.md#quotas-limits-default) 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 {#view-request-status}

{% list tabs group=instructions %}

- Management console {#console}

  1. In the [management console](https://console.yandex.cloud), select the cloud to view quotas for.
  1. In the right-hand panel, select **Quotas**.
  1. Expand **Requests processing**.
  1. Select the request of interest and view the responses from support and related operations.

- CLI {#cli}

  1. View the status of your quota update request:
      
      ```bash
      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`, or `billing.account`.
      * `--resource-id`: ID of the resource (organization, cloud, or billing account).
      * `--limit`: Number of requests per page.

  1. See the list of operations with the request:

      ```bash
      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.

- API {#api}

  To view the quota update request status, use the [get](../api-ref/QuotaRequest/get.md) REST API method for the [QuotaRequest](../api-ref/QuotaRequest/index.md) resource or the [QuotaRequest/Get](../api-ref/grpc/QuotaRequest/get.md) gRPC API call.

  To view quota update request operations, use the [listOperations](../api-ref/QuotaRequest/listOperations.md) REST API method for the [QuotaRequest](../api-ref/QuotaRequest/index.md) resource or the [QuotaRequest/listOperations](../api-ref/grpc/QuotaRequest/listOperations.md) gRPC API call.

{% endlist %}

## Viewing a list of quota update requests {#list-quota-requests}

{% list tabs group=instructions %}

- Management console {#console}

  1. In the [support](https://center.yandex.cloud/support) section, select **Tickets**.
  1. In the **Ticket type** filter list, select **Increase quotas**.

- CLI {#cli}

  ```bash
  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`, or `billing.account`.
  * `--resource-id`: ID of the resource (organization, cloud, or billing account).
  * `--limit`: Number of requests per page.

- API {#api}

  To view a list of quota update requests, use the [List](../api-ref/QuotaRequest/list.md) REST API method for the [QuotaRequest](../api-ref/QuotaRequest/index.md) resource or the [QuotaRequest/list](../api-ref/grpc/QuotaRequest/list.md) gRPC API call.

{% endlist %}

## Canceling a quota update request {#cancel-quota-request}

{% list tabs group=instructions %}

- Management console {#console}

  1. In the [management console](https://console.yandex.cloud), select the cloud to view quotas for.
  1. In the right-hand panel, select **Quotas**.
  1. Expand **Requests processing**.
  1. Select the request of interest and click **Close request**

- CLI {#cli}
      
  ```bash
  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-id` parameters.

- API {#api}

  To cancel a quota update request, use the [Cancel](../api-ref/QuotaRequest/cancel.md) REST API method for the [QuotaRequest](../api-ref/QuotaRequest/index.md) resource or the [QuotaRequest/cancel](../api-ref/grpc/QuotaRequest/cancel.md) gRPC API call.

{% endlist %}