Skip to main content

provisioning_quotas

Creates, updates, deletes, gets or lists a provisioning_quotas resource.

Overview

Nameprovisioning_quotas
TypeResource
Idgoogle.baremetalsolution.provisioning_quotas

Fields

NameDatatypeDescription
namestringOutput only. The name of the provisioning quota.
assetTypestringThe asset type of this provisioning quota.
availableCountintegerThe available count of the provisioning quota.
gcpServicestringThe gcp service of the provisioning quota.
instanceQuotaobjectA resource budget.
locationstringThe specific location of the provisioining quota.
networkBandwidthstringNetwork bandwidth, Gbps
serverCountstringServer count.
storageGibstringStorage size (GB).

Methods

NameAccessible byRequired ParamsDescription
listSELECTlocationsId, projectsIdList 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 }}';