storage_pool_types
Creates, updates, deletes, gets or lists a storage_pool_types
resource.
Overview
Name | storage_pool_types |
Type | Resource |
Id | google.compute.storage_pool_types |
Fields
Name | Datatype | Description |
---|---|---|
id | string | [Output Only] The unique identifier for the resource. This identifier is defined by the server. |
name | string | [Output Only] Name of the resource. |
description | string | [Output Only] An optional description of this resource. |
creationTimestamp | string | [Output Only] Creation timestamp in RFC3339 text format. |
deprecated | object | Deprecation status for a public resource. |
kind | string | [Output Only] Type of the resource. Always compute#storagePoolType for storage pool types. |
maxPoolProvisionedCapacityGb | string | [Output Only] Maximum storage pool size in GB. |
maxPoolProvisionedIops | string | [Output Only] Maximum provisioned IOPS. |
maxPoolProvisionedThroughput | string | [Output Only] Maximum provisioned throughput. |
minPoolProvisionedCapacityGb | string | [Output Only] Minimum storage pool size in GB. |
minPoolProvisionedIops | string | [Output Only] Minimum provisioned IOPS. |
minPoolProvisionedThroughput | string | [Output Only] Minimum provisioned throughput. |
minSizeGb | string | [Deprecated] This field is deprecated. Use minPoolProvisionedCapacityGb instead. |
selfLink | string | [Output Only] Server-defined URL for the resource. |
selfLinkWithId | string | [Output Only] Server-defined URL for this resource with the resource id. |
supportedDiskTypes | array | [Output Only] The list of disk types supported in this storage pool type. |
zone | string | [Output Only] URL of the zone where the storage pool type resides. You must specify this field as part of the HTTP request URL. It is not settable as a field in the request body. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
aggregated_list | SELECT | project | Retrieves an aggregated list of storage pool types. To prevent failure, Google recommends that you set the returnPartialSuccess parameter to true . |
get | SELECT | project, storagePoolType, zone | Returns the specified storage pool type. |
list | SELECT | project, zone | Retrieves a list of storage pool types available to the specified project. |
SELECT
examples
Retrieves an aggregated list of storage pool types. To prevent failure, Google recommends that you set the returnPartialSuccess
parameter to true
.
SELECT
id,
name,
description,
creationTimestamp,
deprecated,
kind,
maxPoolProvisionedCapacityGb,
maxPoolProvisionedIops,
maxPoolProvisionedThroughput,
minPoolProvisionedCapacityGb,
minPoolProvisionedIops,
minPoolProvisionedThroughput,
minSizeGb,
selfLink,
selfLinkWithId,
supportedDiskTypes,
zone
FROM google.compute.storage_pool_types
WHERE project = '{{ project }}';