Yandex Cloud
Search
Contact UsGet started
  • Blog
  • Pricing
  • Documentation
  • All Services
  • System Status
    • Featured
    • Infrastructure & Network
    • Data Platform
    • Containers
    • Developer tools
    • Serverless
    • Security
    • Monitoring & Resources
    • ML & AI
    • Business tools
  • All Solutions
    • By industry
    • By use case
    • Economics and Pricing
    • Security
    • Technical Support
    • Customer Stories
    • Gateway to Russia
    • Cloud for Startups
    • Education and Science
  • Blog
  • Pricing
  • Documentation
Yandex project
© 2025 Yandex.Cloud LLC
Yandex Cloud Quota Manager
  • Getting started
  • Concepts
    • All guides
    • Viewing the list of services and quotas
    • Viewing quota value
    • Changing quotas
  • Access management
  • Pricing policy
    • Authentication with the API
  • Release notes

In this article:

  • Getting information about quotas
  • Requesting a quota increase

Getting started with Yandex Cloud Quota Manager

Written by
Yandex Cloud
Updated at May 5, 2025
  • Getting information about quotas
  • Requesting a quota increase

Note

The service is at the Preview stage.

When designing a cloud infrastructure, it is important to take quotas and limits into consideration. Cloud Quota Manager allows you to manage quotas of your Yandex Cloud services using different interfaces. Some services, e.g., SpeechKit, are not available in Cloud Quota Manager.

Quotas are limits on the number of resources you can use in your cloud. These are organizational constraints that can be changed as needed. Quotas help you avoid overspending and excessive use of resources through sensible budget planning and consumption management.

There are two terms that describe the use of quotas:

  • Quota limit: Current limit in place for a cloud or organization resource.

  • Quota usage: Amount or size of the actually used resource.

Potentially, you can increase quotas to the limits.

Limits are technical constraints of the Yandex Cloud architecture, hardware physical characteristics, or external limitations.

The diagram below illustrates the relationship between quotas and limits.

Currently, you can use the following quota management interfaces:

  • Console: Get information and request quota updates.
  • CLI: Get information about quotas.
  • API: Get information about quotas.

Going forward, you will also be able to request quota updates via the CLI and API.

Getting information about quotasGetting information about quotas

Management console
CLI
API
  1. In the management console, select the cloud to view quotas for.

  2. Select the Quotas tab.

    The page will display a list of services used in your cloud.

  3. Expand a service section and view the values in the Usage column.

    • Two numbers mean quota consumption / quota value. For example, 2 / 20 or 1.203 / 5,120 GB.

    • A single number is a non-adjustable limit.

  4. To estimate resource consumption, at the top right, select:

    • Actively used: Resources consuming over a half of the quota.
    • Almost exhausted: Resources that are almost exhausted.

Configure operations via the CLI

If you do not have the Yandex Cloud CLI yet, install and initialize it.

The folder specified when creating the CLI profile is used by default. To change the default folder, use the yc config set folder-id <folder_ID> command. You can specify a different folder using the --folder-name or --folder-id parameter.

The account must have the quota-manager.viewer role to view quotas.

View the quotas

  1. View the list of services with quotas.

    yc quota-manager quota-limit list-services --resource-type=<resource_type>
    

    Where --resource-type is the resource type:

    • resource-manager.cloud: Cloud.
    • organization-manager.organization: Organization.
    • billing.account: Billing account.

    Example:

    yc quota-manager quota-limit list-services --resource-type=resource-manager.cloud
    

    The output will return the list of cloud-level services with available quotas.

  2. View a list of quotas for a specific service as well as all quota values and usage.

    yc quota-manager quota-limit list \
       --service=<service_name> \
       --resource-type=<resource_type> \
       --resource-id=<resource_ID>
    

    Where:

    • --service: Service name you obtained at the previous step. You can also look up the name of the service in the YC CLI reference.
    • --resource-id is the resource ID: organization, cloud, folder, or billing account ID.
    • --resource-type: Resource type, resource-manager.cloud, organization-manager.organization, or billing.account.

    Example:

    yc quota-manager quota-limit list --service=iam --resource-type=resource-manager.cloud --resource-id=b1gflhy********
    

    The output will return the IDs of quotas available in IAM within the b1gflhy******** cloud together with their values and usage.

  3. View the value and usage of a given quota.

    yc quota-manager quota-limit get \
       --quota-id=<quota_ID> \
       --resource-id <resource_ID> \
       --resource-type <resource_type>
    

    Where:

    • --quota-id: Quota ID you got in the previous step.
    • --resource-id: ID of the resource (organization, cloud, or billing account).
    • --resource-type: Resource type, resource-manager.cloud, organization-manager.organization, or billing.account.

    Example:

    yc quota-manager quota-limit get --quota-id=iam.apiKeys.count --resource-id=b1gflhy********  --resource-type=resource-manager.cloud
    

    The output will return the value and usage of the quota for the number of API keys in the b1gflhy******** cloud.

    quota_id: iam.apiKeys.count
    limit: 1000
    usage: 27
    

    Where:

    • limit: Quota value.
    • usage: Quota usage.

Configure operations via the API

  1. To check that you can work with quotas via the API, install these utilities:

    • cURL if using the REST API
    • gRPCurl if using the gRPC API
  2. Create a service account with the quota-manager.viewer role.

  3. Get an IAM token for the created service account.

View the quotas

  1. View the list of services with quotas.

    To do this, use the listServices REST API method for the QuotaLimit resource or the QuotaLimitService/ListServices gRPC API call.

    To test the REST API method, send this request:

    curl -X GET \
    --header "Authorization: Bearer <IAM_token>" \
    "https://quota-manager.api.cloud.yandex.net/quota-manager/v1/quotaLimits/services?resourceType=<resourceType>"
    

    Where:

    • <resourceType>: Resource type, resource-manager.cloud, organization-manager.organization, or billing.account.
    • <IAM_token>: Service account IAM token or the environment variable containing the token.

    Request example:

    curl -X GET \
    --header "Authorization: Bearer $IAM_TOKEN" \
    'https://quota-manager.api.cloud.yandex.net/quota-manager/v1/quotaLimits/services?resourceType=resource-manager.cloud'
    
    
  2. View a list of quotas for a specific service as well as all quota values and usage.

    To do this, use the list REST API method for the QuotaLimit resource or the QuotaLimitService/List gRPC API call.

    To test the REST API method, run this request:

    curl -X GET \
    --header "Authorization: Bearer <IAM_token>" \
    "https://quota-manager.api.cloud.yandex.net/quota-manager/v1/quotaLimits?service=<serviceName>&resource.id=<resourceId>&resource.type=<resourceType>"
    

    Where:

    • <resourceId>: ID of the resource: organization, cloud, or billing account.
    • <resourceType>: Resource type, resource-manager.cloud, organization-manager.organization, or billing.account.
    • <serviceName>: Service name.
    • <IAM_token>: Service account IAM token or the environment variable containing the token.

    Request example:

    curl -X GET \
    --header "Authorization: Bearer $IAM_TOKEN" \
    'https://quota-manager.api.cloud.yandex.net/quota-manager/v1/quotaLimits?service=iam&resource.id=b1gflhy********&resource.type=resource-manager.cloud'
    
  3. View the value and usage of a given quota.

    To do this, use the get REST API method for the QuotaLimit resource or the QuotaLimitService/Get gRPC API call.

    To test the REST API method, send this request:

    curl -X GET \
    --header "Authorization: Bearer <IAM_token>" \
    "https://quota-manager.api.cloud.yandex.net/quota-manager/v1/quotaLimits/<quotaId>?resource.id=<resourceId>&resource.type=<resourceType>"
    

    Where:

    • <quotaId>: Quota ID you got in the previous step.
    • <resourceId>: ID of the resource (organization, cloud, or billing account).
    • <resourceType>: Resource type, resource-manager.cloud, organization-manager.organization, or billing.account.
    • <IAM_token>: Service account IAM token or the environment variable containing the token.

    Request example:

    curl -X GET \
    --header "Authorization: Bearer $IAM_TOKEN" \
    'https://quota-manager.api.cloud.yandex.net/quota-manager/v1/quotaLimits/iam.accessKeys.count?resource.id=b1gflhy********&resource.type=resource-manager.cloud'
    

Requesting a quota increaseRequesting a quota increase

Currently, you can request quota updates via the management console. Going forward, you will also be able to effect quota updates via the CLI and API.

Management console
  1. Make sure your account has the quota-manager.requestOperator role or higher (editor or admin).
  2. 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.

Was the article helpful?

Next
Concepts
Yandex project
© 2025 Yandex.Cloud LLC