Yandex Cloud
Поиск
Связаться с намиПодключиться
  • Документация
  • Блог
  • Все сервисы
  • Статус работы сервисов
    • Популярные
    • Инфраструктура и сеть
    • Платформа данных
    • Контейнеры
    • Инструменты разработчика
    • Бессерверные вычисления
    • Безопасность
    • Мониторинг и управление ресурсами
    • Машинное обучение
    • Бизнес-инструменты
  • Все решения
    • По отраслям
    • По типу задач
    • Экономика платформы
    • Безопасность
    • Техническая поддержка
    • Каталог партнёров
    • Обучение и сертификация
    • Облако для стартапов
    • Облако для крупного бизнеса
    • Центр технологий для общества
    • Облако для интеграторов
    • Поддержка IT-бизнеса
    • Облако для фрилансеров
    • Обучение и сертификация
    • Блог
    • Документация
    • Контент-программа
    • Мероприятия и вебинары
    • Контакты, чаты и сообщества
    • Идеи
    • Истории успеха
    • Тарифы Yandex Cloud
    • Промоакции и free tier
    • Правила тарификации
  • Документация
  • Блог
Проект Яндекса
© 2025 ООО «Яндекс.Облако»
Yandex Cloud Quota Manager
  • Начало работы
  • Концепции
    • Все инструкции
    • Посмотреть список сервисов и квот
    • Посмотреть значение квоты
    • Изменить квоты
  • Управление доступом
  • Правила тарификации
    • Аутентификация в API
      • Overview
        • Overview
        • Get
        • List
        • ListServices
  • История изменений

В этой статье:

  • gRPC request
  • ListQuotaLimitsRequest
  • Resource
  • ListQuotaLimitsResponse
  • Resource
  • QuotaLimit
  1. Справочник API
  2. gRPC (англ.)
  3. QuotaLimit
  4. List

Quota Manager API, gRPC: QuotaLimitService.List

Статья создана
Yandex Cloud
Улучшена
Tania L.
Обновлена 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.

Была ли статья полезна?

Предыдущая
Get
Следующая
ListServices
Проект Яндекса
© 2025 ООО «Яндекс.Облако»