1. Packages
  2. Google Cloud Native
  3. API Docs
  4. compute
  5. compute/alpha
  6. StoragePool

Google Cloud Native is in preview. Google Cloud Classic is fully supported.

Google Cloud Native v0.32.0 published on Wednesday, Nov 29, 2023 by Pulumi

google-native.compute/alpha.StoragePool

Explore with Pulumi AI

google-native logo

Google Cloud Native is in preview. Google Cloud Classic is fully supported.

Google Cloud Native v0.32.0 published on Wednesday, Nov 29, 2023 by Pulumi

    Creates a storage pool in the specified project using the data in the request.

    Create StoragePool Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new StoragePool(name: string, args?: StoragePoolArgs, opts?: CustomResourceOptions);
    @overload
    def StoragePool(resource_name: str,
                    args: Optional[StoragePoolArgs] = None,
                    opts: Optional[ResourceOptions] = None)
    
    @overload
    def StoragePool(resource_name: str,
                    opts: Optional[ResourceOptions] = None,
                    capacity_provisioning_type: Optional[StoragePoolCapacityProvisioningType] = None,
                    description: Optional[str] = None,
                    labels: Optional[Mapping[str, str]] = None,
                    name: Optional[str] = None,
                    performance_provisioning_type: Optional[StoragePoolPerformanceProvisioningType] = None,
                    project: Optional[str] = None,
                    provisioned_iops: Optional[str] = None,
                    provisioned_throughput: Optional[str] = None,
                    request_id: Optional[str] = None,
                    size_gb: Optional[str] = None,
                    storage_pool_type: Optional[str] = None,
                    zone: Optional[str] = None)
    func NewStoragePool(ctx *Context, name string, args *StoragePoolArgs, opts ...ResourceOption) (*StoragePool, error)
    public StoragePool(string name, StoragePoolArgs? args = null, CustomResourceOptions? opts = null)
    public StoragePool(String name, StoragePoolArgs args)
    public StoragePool(String name, StoragePoolArgs args, CustomResourceOptions options)
    
    type: google-native:compute/alpha:StoragePool
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args StoragePoolArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args StoragePoolArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args StoragePoolArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args StoragePoolArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args StoragePoolArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Example

    The following reference example uses placeholder values for all input properties.

    var storagePoolResource = new GoogleNative.Compute.Alpha.StoragePool("storagePoolResource", new()
    {
        CapacityProvisioningType = GoogleNative.Compute.Alpha.StoragePoolCapacityProvisioningType.Advanced,
        Description = "string",
        Labels = 
        {
            { "string", "string" },
        },
        Name = "string",
        PerformanceProvisioningType = GoogleNative.Compute.Alpha.StoragePoolPerformanceProvisioningType.Advanced,
        Project = "string",
        ProvisionedIops = "string",
        ProvisionedThroughput = "string",
        RequestId = "string",
        SizeGb = "string",
        StoragePoolType = "string",
        Zone = "string",
    });
    
    example, err := compute.NewStoragePool(ctx, "storagePoolResource", &compute.StoragePoolArgs{
    CapacityProvisioningType: compute.StoragePoolCapacityProvisioningTypeAdvanced,
    Description: pulumi.String("string"),
    Labels: pulumi.StringMap{
    "string": pulumi.String("string"),
    },
    Name: pulumi.String("string"),
    PerformanceProvisioningType: compute.StoragePoolPerformanceProvisioningTypeAdvanced,
    Project: pulumi.String("string"),
    ProvisionedIops: pulumi.String("string"),
    ProvisionedThroughput: pulumi.String("string"),
    RequestId: pulumi.String("string"),
    SizeGb: pulumi.String("string"),
    StoragePoolType: pulumi.String("string"),
    Zone: pulumi.String("string"),
    })
    
    var storagePoolResource = new StoragePool("storagePoolResource", StoragePoolArgs.builder()        
        .capacityProvisioningType("ADVANCED")
        .description("string")
        .labels(Map.of("string", "string"))
        .name("string")
        .performanceProvisioningType("ADVANCED")
        .project("string")
        .provisionedIops("string")
        .provisionedThroughput("string")
        .requestId("string")
        .sizeGb("string")
        .storagePoolType("string")
        .zone("string")
        .build());
    
    storage_pool_resource = google_native.compute.alpha.StoragePool("storagePoolResource",
        capacity_provisioning_type=google_native.compute.alpha.StoragePoolCapacityProvisioningType.ADVANCED,
        description="string",
        labels={
            "string": "string",
        },
        name="string",
        performance_provisioning_type=google_native.compute.alpha.StoragePoolPerformanceProvisioningType.ADVANCED,
        project="string",
        provisioned_iops="string",
        provisioned_throughput="string",
        request_id="string",
        size_gb="string",
        storage_pool_type="string",
        zone="string")
    
    const storagePoolResource = new google_native.compute.alpha.StoragePool("storagePoolResource", {
        capacityProvisioningType: google_native.compute.alpha.StoragePoolCapacityProvisioningType.Advanced,
        description: "string",
        labels: {
            string: "string",
        },
        name: "string",
        performanceProvisioningType: google_native.compute.alpha.StoragePoolPerformanceProvisioningType.Advanced,
        project: "string",
        provisionedIops: "string",
        provisionedThroughput: "string",
        requestId: "string",
        sizeGb: "string",
        storagePoolType: "string",
        zone: "string",
    });
    
    type: google-native:compute/alpha:StoragePool
    properties:
        capacityProvisioningType: ADVANCED
        description: string
        labels:
            string: string
        name: string
        performanceProvisioningType: ADVANCED
        project: string
        provisionedIops: string
        provisionedThroughput: string
        requestId: string
        sizeGb: string
        storagePoolType: string
        zone: string
    

    StoragePool Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The StoragePool resource accepts the following input properties:

    CapacityProvisioningType Pulumi.GoogleNative.Compute.Alpha.StoragePoolCapacityProvisioningType
    Provisioning type of the byte capacity of the pool.
    Description string
    An optional description of this resource. Provide this property when you create the resource.
    Labels Dictionary<string, string>
    Labels to apply to this storage pool. These can be later modified by the setLabels method.
    Name string
    Name of the resource. Provided by the client when the resource is created. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression [a-z]([-a-z0-9]*[a-z0-9])? which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.
    PerformanceProvisioningType Pulumi.GoogleNative.Compute.Alpha.StoragePoolPerformanceProvisioningType
    Provisioning type of the performance-related parameters of the pool, such as throughput and IOPS.
    Project string
    ProvisionedIops string
    Provsioned IOPS of the storage pool.
    ProvisionedThroughput string
    Provisioned throughput of the storage pool. Only relevant if the storage pool type is hyperdisk-balanced or hyperdisk-throughput.
    RequestId string
    An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported ( 00000000-0000-0000-0000-000000000000).
    SizeGb string
    Size, in GiB, of the storage pool.
    StoragePoolType string
    Type of the storage pool.
    Zone string
    CapacityProvisioningType StoragePoolCapacityProvisioningType
    Provisioning type of the byte capacity of the pool.
    Description string
    An optional description of this resource. Provide this property when you create the resource.
    Labels map[string]string
    Labels to apply to this storage pool. These can be later modified by the setLabels method.
    Name string
    Name of the resource. Provided by the client when the resource is created. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression [a-z]([-a-z0-9]*[a-z0-9])? which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.
    PerformanceProvisioningType StoragePoolPerformanceProvisioningType
    Provisioning type of the performance-related parameters of the pool, such as throughput and IOPS.
    Project string
    ProvisionedIops string
    Provsioned IOPS of the storage pool.
    ProvisionedThroughput string
    Provisioned throughput of the storage pool. Only relevant if the storage pool type is hyperdisk-balanced or hyperdisk-throughput.
    RequestId string
    An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported ( 00000000-0000-0000-0000-000000000000).
    SizeGb string
    Size, in GiB, of the storage pool.
    StoragePoolType string
    Type of the storage pool.
    Zone string
    capacityProvisioningType StoragePoolCapacityProvisioningType
    Provisioning type of the byte capacity of the pool.
    description String
    An optional description of this resource. Provide this property when you create the resource.
    labels Map<String,String>
    Labels to apply to this storage pool. These can be later modified by the setLabels method.
    name String
    Name of the resource. Provided by the client when the resource is created. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression [a-z]([-a-z0-9]*[a-z0-9])? which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.
    performanceProvisioningType StoragePoolPerformanceProvisioningType
    Provisioning type of the performance-related parameters of the pool, such as throughput and IOPS.
    project String
    provisionedIops String
    Provsioned IOPS of the storage pool.
    provisionedThroughput String
    Provisioned throughput of the storage pool. Only relevant if the storage pool type is hyperdisk-balanced or hyperdisk-throughput.
    requestId String
    An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported ( 00000000-0000-0000-0000-000000000000).
    sizeGb String
    Size, in GiB, of the storage pool.
    storagePoolType String
    Type of the storage pool.
    zone String
    capacityProvisioningType StoragePoolCapacityProvisioningType
    Provisioning type of the byte capacity of the pool.
    description string
    An optional description of this resource. Provide this property when you create the resource.
    labels {[key: string]: string}
    Labels to apply to this storage pool. These can be later modified by the setLabels method.
    name string
    Name of the resource. Provided by the client when the resource is created. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression [a-z]([-a-z0-9]*[a-z0-9])? which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.
    performanceProvisioningType StoragePoolPerformanceProvisioningType
    Provisioning type of the performance-related parameters of the pool, such as throughput and IOPS.
    project string
    provisionedIops string
    Provsioned IOPS of the storage pool.
    provisionedThroughput string
    Provisioned throughput of the storage pool. Only relevant if the storage pool type is hyperdisk-balanced or hyperdisk-throughput.
    requestId string
    An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported ( 00000000-0000-0000-0000-000000000000).
    sizeGb string
    Size, in GiB, of the storage pool.
    storagePoolType string
    Type of the storage pool.
    zone string
    capacity_provisioning_type StoragePoolCapacityProvisioningType
    Provisioning type of the byte capacity of the pool.
    description str
    An optional description of this resource. Provide this property when you create the resource.
    labels Mapping[str, str]
    Labels to apply to this storage pool. These can be later modified by the setLabels method.
    name str
    Name of the resource. Provided by the client when the resource is created. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression [a-z]([-a-z0-9]*[a-z0-9])? which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.
    performance_provisioning_type StoragePoolPerformanceProvisioningType
    Provisioning type of the performance-related parameters of the pool, such as throughput and IOPS.
    project str
    provisioned_iops str
    Provsioned IOPS of the storage pool.
    provisioned_throughput str
    Provisioned throughput of the storage pool. Only relevant if the storage pool type is hyperdisk-balanced or hyperdisk-throughput.
    request_id str
    An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported ( 00000000-0000-0000-0000-000000000000).
    size_gb str
    Size, in GiB, of the storage pool.
    storage_pool_type str
    Type of the storage pool.
    zone str
    capacityProvisioningType "ADVANCED" | "STANDARD" | "UNSPECIFIED"
    Provisioning type of the byte capacity of the pool.
    description String
    An optional description of this resource. Provide this property when you create the resource.
    labels Map<String>
    Labels to apply to this storage pool. These can be later modified by the setLabels method.
    name String
    Name of the resource. Provided by the client when the resource is created. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression [a-z]([-a-z0-9]*[a-z0-9])? which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.
    performanceProvisioningType "ADVANCED" | "STANDARD" | "UNSPECIFIED"
    Provisioning type of the performance-related parameters of the pool, such as throughput and IOPS.
    project String
    provisionedIops String
    Provsioned IOPS of the storage pool.
    provisionedThroughput String
    Provisioned throughput of the storage pool. Only relevant if the storage pool type is hyperdisk-balanced or hyperdisk-throughput.
    requestId String
    An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported ( 00000000-0000-0000-0000-000000000000).
    sizeGb String
    Size, in GiB, of the storage pool.
    storagePoolType String
    Type of the storage pool.
    zone String

    Outputs

    All input properties are implicitly available as output properties. Additionally, the StoragePool resource produces the following output properties:

    CreationTimestamp string
    Creation timestamp in RFC3339 text format.
    Id string
    The provider-assigned unique ID for this managed resource.
    Kind string
    Type of the resource. Always compute#storagePool for storage pools.
    LabelFingerprint string
    A fingerprint for the labels being applied to this storage pool, which is essentially a hash of the labels set used for optimistic locking. The fingerprint is initially generated by Compute Engine and changes after every request to modify or update labels. You must always provide an up-to-date fingerprint hash in order to update or change labels, otherwise the request will fail with error 412 conditionNotMet. To see the latest fingerprint, make a get() request to retrieve a storage pool.
    ResourceStatus Pulumi.GoogleNative.Compute.Alpha.Outputs.StoragePoolResourceStatusResponse
    Status information for the storage pool resource.
    SelfLink string
    Server-defined fully-qualified URL for this resource.
    SelfLinkWithId string
    Server-defined URL for this resource's resource id.
    State string
    The status of storage pool creation. - CREATING: Storage pool is provisioning. storagePool. - FAILED: Storage pool creation failed. - READY: Storage pool is ready for use. - DELETING: Storage pool is deleting.
    Status Pulumi.GoogleNative.Compute.Alpha.Outputs.StoragePoolResourceStatusResponse
    Status information for the storage pool resource.
    CreationTimestamp string
    Creation timestamp in RFC3339 text format.
    Id string
    The provider-assigned unique ID for this managed resource.
    Kind string
    Type of the resource. Always compute#storagePool for storage pools.
    LabelFingerprint string
    A fingerprint for the labels being applied to this storage pool, which is essentially a hash of the labels set used for optimistic locking. The fingerprint is initially generated by Compute Engine and changes after every request to modify or update labels. You must always provide an up-to-date fingerprint hash in order to update or change labels, otherwise the request will fail with error 412 conditionNotMet. To see the latest fingerprint, make a get() request to retrieve a storage pool.
    ResourceStatus StoragePoolResourceStatusResponse
    Status information for the storage pool resource.
    SelfLink string
    Server-defined fully-qualified URL for this resource.
    SelfLinkWithId string
    Server-defined URL for this resource's resource id.
    State string
    The status of storage pool creation. - CREATING: Storage pool is provisioning. storagePool. - FAILED: Storage pool creation failed. - READY: Storage pool is ready for use. - DELETING: Storage pool is deleting.
    Status StoragePoolResourceStatusResponse
    Status information for the storage pool resource.
    creationTimestamp String
    Creation timestamp in RFC3339 text format.
    id String
    The provider-assigned unique ID for this managed resource.
    kind String
    Type of the resource. Always compute#storagePool for storage pools.
    labelFingerprint String
    A fingerprint for the labels being applied to this storage pool, which is essentially a hash of the labels set used for optimistic locking. The fingerprint is initially generated by Compute Engine and changes after every request to modify or update labels. You must always provide an up-to-date fingerprint hash in order to update or change labels, otherwise the request will fail with error 412 conditionNotMet. To see the latest fingerprint, make a get() request to retrieve a storage pool.
    resourceStatus StoragePoolResourceStatusResponse
    Status information for the storage pool resource.
    selfLink String
    Server-defined fully-qualified URL for this resource.
    selfLinkWithId String
    Server-defined URL for this resource's resource id.
    state String
    The status of storage pool creation. - CREATING: Storage pool is provisioning. storagePool. - FAILED: Storage pool creation failed. - READY: Storage pool is ready for use. - DELETING: Storage pool is deleting.
    status StoragePoolResourceStatusResponse
    Status information for the storage pool resource.
    creationTimestamp string
    Creation timestamp in RFC3339 text format.
    id string
    The provider-assigned unique ID for this managed resource.
    kind string
    Type of the resource. Always compute#storagePool for storage pools.
    labelFingerprint string
    A fingerprint for the labels being applied to this storage pool, which is essentially a hash of the labels set used for optimistic locking. The fingerprint is initially generated by Compute Engine and changes after every request to modify or update labels. You must always provide an up-to-date fingerprint hash in order to update or change labels, otherwise the request will fail with error 412 conditionNotMet. To see the latest fingerprint, make a get() request to retrieve a storage pool.
    resourceStatus StoragePoolResourceStatusResponse
    Status information for the storage pool resource.
    selfLink string
    Server-defined fully-qualified URL for this resource.
    selfLinkWithId string
    Server-defined URL for this resource's resource id.
    state string
    The status of storage pool creation. - CREATING: Storage pool is provisioning. storagePool. - FAILED: Storage pool creation failed. - READY: Storage pool is ready for use. - DELETING: Storage pool is deleting.
    status StoragePoolResourceStatusResponse
    Status information for the storage pool resource.
    creation_timestamp str
    Creation timestamp in RFC3339 text format.
    id str
    The provider-assigned unique ID for this managed resource.
    kind str
    Type of the resource. Always compute#storagePool for storage pools.
    label_fingerprint str
    A fingerprint for the labels being applied to this storage pool, which is essentially a hash of the labels set used for optimistic locking. The fingerprint is initially generated by Compute Engine and changes after every request to modify or update labels. You must always provide an up-to-date fingerprint hash in order to update or change labels, otherwise the request will fail with error 412 conditionNotMet. To see the latest fingerprint, make a get() request to retrieve a storage pool.
    resource_status StoragePoolResourceStatusResponse
    Status information for the storage pool resource.
    self_link str
    Server-defined fully-qualified URL for this resource.
    self_link_with_id str
    Server-defined URL for this resource's resource id.
    state str
    The status of storage pool creation. - CREATING: Storage pool is provisioning. storagePool. - FAILED: Storage pool creation failed. - READY: Storage pool is ready for use. - DELETING: Storage pool is deleting.
    status StoragePoolResourceStatusResponse
    Status information for the storage pool resource.
    creationTimestamp String
    Creation timestamp in RFC3339 text format.
    id String
    The provider-assigned unique ID for this managed resource.
    kind String
    Type of the resource. Always compute#storagePool for storage pools.
    labelFingerprint String
    A fingerprint for the labels being applied to this storage pool, which is essentially a hash of the labels set used for optimistic locking. The fingerprint is initially generated by Compute Engine and changes after every request to modify or update labels. You must always provide an up-to-date fingerprint hash in order to update or change labels, otherwise the request will fail with error 412 conditionNotMet. To see the latest fingerprint, make a get() request to retrieve a storage pool.
    resourceStatus Property Map
    Status information for the storage pool resource.
    selfLink String
    Server-defined fully-qualified URL for this resource.
    selfLinkWithId String
    Server-defined URL for this resource's resource id.
    state String
    The status of storage pool creation. - CREATING: Storage pool is provisioning. storagePool. - FAILED: Storage pool creation failed. - READY: Storage pool is ready for use. - DELETING: Storage pool is deleting.
    status Property Map
    Status information for the storage pool resource.

    Supporting Types

    StoragePoolCapacityProvisioningType, StoragePoolCapacityProvisioningTypeArgs

    Advanced
    ADVANCEDAdvanced provisioning "thinly" allocates the related resource.
    Standard
    STANDARDStandard provisioning allocates the related resource for the pool disks' exclusive use.
    Unspecified
    UNSPECIFIED
    StoragePoolCapacityProvisioningTypeAdvanced
    ADVANCEDAdvanced provisioning "thinly" allocates the related resource.
    StoragePoolCapacityProvisioningTypeStandard
    STANDARDStandard provisioning allocates the related resource for the pool disks' exclusive use.
    StoragePoolCapacityProvisioningTypeUnspecified
    UNSPECIFIED
    Advanced
    ADVANCEDAdvanced provisioning "thinly" allocates the related resource.
    Standard
    STANDARDStandard provisioning allocates the related resource for the pool disks' exclusive use.
    Unspecified
    UNSPECIFIED
    Advanced
    ADVANCEDAdvanced provisioning "thinly" allocates the related resource.
    Standard
    STANDARDStandard provisioning allocates the related resource for the pool disks' exclusive use.
    Unspecified
    UNSPECIFIED
    ADVANCED
    ADVANCEDAdvanced provisioning "thinly" allocates the related resource.
    STANDARD
    STANDARDStandard provisioning allocates the related resource for the pool disks' exclusive use.
    UNSPECIFIED
    UNSPECIFIED
    "ADVANCED"
    ADVANCEDAdvanced provisioning "thinly" allocates the related resource.
    "STANDARD"
    STANDARDStandard provisioning allocates the related resource for the pool disks' exclusive use.
    "UNSPECIFIED"
    UNSPECIFIED

    StoragePoolPerformanceProvisioningType, StoragePoolPerformanceProvisioningTypeArgs

    Advanced
    ADVANCEDAdvanced provisioning "thinly" allocates the related resource.
    Standard
    STANDARDStandard provisioning allocates the related resource for the pool disks' exclusive use.
    Unspecified
    UNSPECIFIED
    StoragePoolPerformanceProvisioningTypeAdvanced
    ADVANCEDAdvanced provisioning "thinly" allocates the related resource.
    StoragePoolPerformanceProvisioningTypeStandard
    STANDARDStandard provisioning allocates the related resource for the pool disks' exclusive use.
    StoragePoolPerformanceProvisioningTypeUnspecified
    UNSPECIFIED
    Advanced
    ADVANCEDAdvanced provisioning "thinly" allocates the related resource.
    Standard
    STANDARDStandard provisioning allocates the related resource for the pool disks' exclusive use.
    Unspecified
    UNSPECIFIED
    Advanced
    ADVANCEDAdvanced provisioning "thinly" allocates the related resource.
    Standard
    STANDARDStandard provisioning allocates the related resource for the pool disks' exclusive use.
    Unspecified
    UNSPECIFIED
    ADVANCED
    ADVANCEDAdvanced provisioning "thinly" allocates the related resource.
    STANDARD
    STANDARDStandard provisioning allocates the related resource for the pool disks' exclusive use.
    UNSPECIFIED
    UNSPECIFIED
    "ADVANCED"
    ADVANCEDAdvanced provisioning "thinly" allocates the related resource.
    "STANDARD"
    STANDARDStandard provisioning allocates the related resource for the pool disks' exclusive use.
    "UNSPECIFIED"
    UNSPECIFIED

    StoragePoolResourceStatusResponse, StoragePoolResourceStatusResponseArgs

    AggregateDiskProvisionedIops string
    Sum of all the disks' provisioned IOPS.
    AggregateDiskSizeGb string
    Sum of all the capacity provisioned in disks in this storage pool. A disk's provisioned capacity is the same as its total capacity.
    LastResizeTimestamp string
    Timestamp of the last successful resize in RFC3339 text format.
    MaxAggregateDiskSizeGb string
    Maximum allowed aggregate disk size in gigabytes.
    NumberOfDisks string
    Number of disks used.
    UsedBytes string
    Space used by data stored in disks within the storage pool (in bytes).
    UsedReducedBytes string
    Space used by compressed and deduped data stored in disks within the storage pool (in bytes).
    UsedThroughput string
    Sum of all the disks' provisioned throughput in MB/s.
    AggregateDiskProvisionedIops string
    Sum of all the disks' provisioned IOPS.
    AggregateDiskSizeGb string
    Sum of all the capacity provisioned in disks in this storage pool. A disk's provisioned capacity is the same as its total capacity.
    LastResizeTimestamp string
    Timestamp of the last successful resize in RFC3339 text format.
    MaxAggregateDiskSizeGb string
    Maximum allowed aggregate disk size in gigabytes.
    NumberOfDisks string
    Number of disks used.
    UsedBytes string
    Space used by data stored in disks within the storage pool (in bytes).
    UsedReducedBytes string
    Space used by compressed and deduped data stored in disks within the storage pool (in bytes).
    UsedThroughput string
    Sum of all the disks' provisioned throughput in MB/s.
    aggregateDiskProvisionedIops String
    Sum of all the disks' provisioned IOPS.
    aggregateDiskSizeGb String
    Sum of all the capacity provisioned in disks in this storage pool. A disk's provisioned capacity is the same as its total capacity.
    lastResizeTimestamp String
    Timestamp of the last successful resize in RFC3339 text format.
    maxAggregateDiskSizeGb String
    Maximum allowed aggregate disk size in gigabytes.
    numberOfDisks String
    Number of disks used.
    usedBytes String
    Space used by data stored in disks within the storage pool (in bytes).
    usedReducedBytes String
    Space used by compressed and deduped data stored in disks within the storage pool (in bytes).
    usedThroughput String
    Sum of all the disks' provisioned throughput in MB/s.
    aggregateDiskProvisionedIops string
    Sum of all the disks' provisioned IOPS.
    aggregateDiskSizeGb string
    Sum of all the capacity provisioned in disks in this storage pool. A disk's provisioned capacity is the same as its total capacity.
    lastResizeTimestamp string
    Timestamp of the last successful resize in RFC3339 text format.
    maxAggregateDiskSizeGb string
    Maximum allowed aggregate disk size in gigabytes.
    numberOfDisks string
    Number of disks used.
    usedBytes string
    Space used by data stored in disks within the storage pool (in bytes).
    usedReducedBytes string
    Space used by compressed and deduped data stored in disks within the storage pool (in bytes).
    usedThroughput string
    Sum of all the disks' provisioned throughput in MB/s.
    aggregate_disk_provisioned_iops str
    Sum of all the disks' provisioned IOPS.
    aggregate_disk_size_gb str
    Sum of all the capacity provisioned in disks in this storage pool. A disk's provisioned capacity is the same as its total capacity.
    last_resize_timestamp str
    Timestamp of the last successful resize in RFC3339 text format.
    max_aggregate_disk_size_gb str
    Maximum allowed aggregate disk size in gigabytes.
    number_of_disks str
    Number of disks used.
    used_bytes str
    Space used by data stored in disks within the storage pool (in bytes).
    used_reduced_bytes str
    Space used by compressed and deduped data stored in disks within the storage pool (in bytes).
    used_throughput str
    Sum of all the disks' provisioned throughput in MB/s.
    aggregateDiskProvisionedIops String
    Sum of all the disks' provisioned IOPS.
    aggregateDiskSizeGb String
    Sum of all the capacity provisioned in disks in this storage pool. A disk's provisioned capacity is the same as its total capacity.
    lastResizeTimestamp String
    Timestamp of the last successful resize in RFC3339 text format.
    maxAggregateDiskSizeGb String
    Maximum allowed aggregate disk size in gigabytes.
    numberOfDisks String
    Number of disks used.
    usedBytes String
    Space used by data stored in disks within the storage pool (in bytes).
    usedReducedBytes String
    Space used by compressed and deduped data stored in disks within the storage pool (in bytes).
    usedThroughput String
    Sum of all the disks' provisioned throughput in MB/s.

    Package Details

    Repository
    Google Cloud Native pulumi/pulumi-google-native
    License
    Apache-2.0
    google-native logo

    Google Cloud Native is in preview. Google Cloud Classic is fully supported.

    Google Cloud Native v0.32.0 published on Wednesday, Nov 29, 2023 by Pulumi