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
      • Overview
        • Overview
        • Get
        • List
        • ListServices
  • Release notes

In this article:

  • gRPC request
  • ListQuotaLimitsRequest
  • Resource
  • ListQuotaLimitsResponse
  • Resource
  • QuotaLimit
  1. API reference
  2. gRPC
  3. QuotaLimit
  4. List

Quota Manager API, gRPC: QuotaLimitService.List

Written by
Yandex Cloud
Updated at February 21, 2025
  • gRPC request
  • ListQuotaLimitsRequest
  • Resource
  • ListQuotaLimitsResponse
  • Resource
  • QuotaLimit

Retrieves the list of quota limits for a given service.

gRPC requestgRPC request

rpc List (ListQuotaLimitsRequest) returns (ListQuotaLimitsResponse)

ListQuotaLimitsRequestListQuotaLimitsRequest

{
  "resource": {
    "id": "string",
    "type": "string"
  },
  "service": "string",
  "page_size": "int64",
  "page_token": "string"
}

Field

Description

resource

Resource

Required field. The resource for which quota limits are being listed.

service

string

Required field. The service for which quota limits are being requested.

page_size

int64

The maximum number of quota limits to return per response.

page_token

string

Token to retrieve the next page of results. Omitted on the first request.

ResourceResource

Field

Description

id

string

Required field. The id if the resource.

type

string

Required field. The type of the resource, e.g. resource-manager.cloud, billing.account.

ListQuotaLimitsResponseListQuotaLimitsResponse

{
  "resource": {
    "id": "string",
    "type": "string"
  },
  "quota_limits": [
    {
      "quota_id": "string",
      "limit": "google.protobuf.DoubleValue",
      "usage": "google.protobuf.DoubleValue"
    }
  ],
  "next_page_token": "string"
}

Field

Description

resource

Resource

The associated resource for these quota limits.

quota_limits[]

QuotaLimit

List of quota limits for the specified resource and service.

next_page_token

string

Token to retrieve the next page of results.

ResourceResource

Field

Description

id

string

Required field. The id if the resource.

type

string

Required field. The type of the resource, e.g. resource-manager.cloud, billing.account.

QuotaLimitQuotaLimit

Field

Description

quota_id

string

The unique id of the quota.

limit

google.protobuf.DoubleValue

The limit value set for this quota.

usage

google.protobuf.DoubleValue

The current usage level of this quota.

Was the article helpful?

Previous
Get
Next
ListServices
Yandex project
© 2025 Yandex.Cloud LLC