Viewing the list of services and quotas
Viewing the list of services that have available quotas
-
In the management console
, on the left, select a cloud. -
Select the Quotas tab.
The page will display the list of services that have available quotas.
If you do not have the Yandex Cloud CLI yet, install and initialize it.
The folder specified in the CLI profile is used by default. You can specify a different folder using the --folder-name
or --folder-id
parameters.
Run this command:
yc quota-manager quota-limit list-services --resource-type=<resource_type>
Where --resource-type
is the resource type, resource-manager.cloud
, organization-manager.organization
, or billing.account
.
To get the list of services, use the listServices REST API method for the QuotaLimit resource or the QuotaLimitService/ListServices gRPC API call.
Viewing the list of service quotas
- In the management console
, on the left, select a cloud. - Select the Quotas tab.
- Open the section of the service you want to view quotas for.
If you do not have the Yandex Cloud CLI yet, install and initialize it.
The folder specified in the CLI profile is used by default. You can specify a different folder using the --folder-name
or --folder-id
parameters.
Run this command:
yc quota-manager quota-limit list \
--service=<service_name> \
--resource-type=<resource_type> \
--resource-id=<resource_ID>
Where:
--service
is the name of the service in the YC CLI.--resource-id
is the ID of the resource: organization, cloud, folder, or billing account.--resource-type
: Resource type,resource-manager.cloud
,organization-manager.organization
, orbilling.account
.
Example:
yc quota-manager quota-limit list \
--service=compute \
--resource-type=resource-manager.cloud \
--resource-id=b1gflhy********
The output will return the list of Compute Cloud quotas for the cloud with the b1gflhy********
ID.
resource:
id: b1gflhy********
type: resource-manager.cloud
quota_limits:
- quota_id: compute.dedicatedHosts.count
limit: 1
usage: 0
- quota_id: compute.diskPlacementGroups.count
limit: 5
usage: 1
- quota_id: compute.diskPools.count
limit: 0
usage: 0
- quota_id: compute.disks.count
limit: 64
usage: 30
- quota_id: compute.filesystems.count
limit: 100
usage: 1
- quota_id: compute.hddDisks.size
limit: 1116691496960
usage: 464930209792
...
Where:
limit
: Quota valueusage
: Quota usage
To get the list of quotas for a specific service, use the list REST API method for the QuotaLimit resource or the QuotaLimitService/List gRPC API call.