provisioning_quotas
Creates, updates, deletes, gets or lists a provisioning_quotas
resource.
Overview
Name | provisioning_quotas |
Type | Resource |
Id | google.baremetalsolution.provisioning_quotas |
Fields
Name | Datatype | Description |
---|---|---|
name | string | Output only. The name of the provisioning quota. |
assetType | string | The asset type of this provisioning quota. |
availableCount | integer | The available count of the provisioning quota. |
gcpService | string | The gcp service of the provisioning quota. |
instanceQuota | object | A resource budget. |
location | string | The specific location of the provisioining quota. |
networkBandwidth | string | Network bandwidth, Gbps |
serverCount | string | Server count. |
storageGib | string | Storage size (GB). |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
list | SELECT | locationsId, projectsId | List the budget details to provision resources on a given project. |
SELECT
examples
List the budget details to provision resources on a given project.
SELECT
name,
assetType,
availableCount,
gcpService,
instanceQuota,
location,
networkBandwidth,
serverCount,
storageGib
FROM google.baremetalsolution.provisioning_quotas
WHERE locationsId = '{{ locationsId }}'
AND projectsId = '{{ projectsId }}';