provisioning_quotas
Creates, updates, deletes, gets or lists a provisioning_quotas
resource.
Overview
Name | provisioning_quotas |
Type | Resource |
Id | google.baremetalsolution.provisioning_quotas |
Fields
The following fields are returned by SELECT
queries:
- list
Successful response
Name | Datatype | Description |
---|---|---|
name | string | Output only. The name of the provisioning quota. |
assetType | string | The asset type of this provisioning quota. |
availableCount | integer (int32) | The available count of the provisioning quota. |
gcpService | string | The gcp service of the provisioning quota. |
instanceQuota | object | Instance quota. (id: InstanceQuota) |
location | string | The specific location of the provisioining quota. |
networkBandwidth | string (int64) | Network bandwidth, Gbps |
serverCount | string (int64) | Server count. |
storageGib | string (int64) | Storage size (GB). |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list | select | projectsId , locationsId | pageSize , pageToken | List the budget details to provision resources on a given project. |
Parameters
Parameters can be passed in the WHERE
clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
Name | Datatype | Description |
---|---|---|
locationsId | string | |
projectsId | string | |
pageSize | integer (int32) | |
pageToken | string |
SELECT
examples
- list
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 projectsId = '{{ projectsId }}' -- required
AND locationsId = '{{ locationsId }}' -- required
AND pageSize = '{{ pageSize }}'
AND pageToken = '{{ pageToken }}';