Skip to main content

storage_pool_types

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

Overview

Namestorage_pool_types
TypeResource
Idgoogle.compute.storage_pool_types

Fields

NameDatatypeDescription
idstring[Output Only] The unique identifier for the resource. This identifier is defined by the server.
namestring[Output Only] Name of the resource.
descriptionstring[Output Only] An optional description of this resource.
creationTimestampstring[Output Only] Creation timestamp in RFC3339 text format.
deprecatedobjectDeprecation status for a public resource.
kindstring[Output Only] Type of the resource. Always compute#storagePoolType for storage pool types.
maxPoolProvisionedCapacityGbstring[Output Only] Maximum storage pool size in GB.
maxPoolProvisionedIopsstring[Output Only] Maximum provisioned IOPS.
maxPoolProvisionedThroughputstring[Output Only] Maximum provisioned throughput.
minPoolProvisionedCapacityGbstring[Output Only] Minimum storage pool size in GB.
minPoolProvisionedIopsstring[Output Only] Minimum provisioned IOPS.
minPoolProvisionedThroughputstring[Output Only] Minimum provisioned throughput.
minSizeGbstring[Deprecated] This field is deprecated. Use minPoolProvisionedCapacityGb instead.
selfLinkstring[Output Only] Server-defined URL for the resource.
selfLinkWithIdstring[Output Only] Server-defined URL for this resource with the resource id.
supportedDiskTypesarray[Output Only] The list of disk types supported in this storage pool type.
zonestring[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

NameAccessible byRequired ParamsDescription
aggregated_listSELECTprojectRetrieves an aggregated list of storage pool types. To prevent failure, Google recommends that you set the returnPartialSuccess parameter to true.
getSELECTproject, storagePoolType, zoneReturns the specified storage pool type.
listSELECTproject, zoneRetrieves 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 }}';