1. Packages
  2. Packages
  3. Google Cloud (GCP) Classic
  4. API Docs
  5. lustre
  6. Instance
Viewing docs for Google Cloud v9.22.0
published on Friday, May 1, 2026 by Pulumi
gcp logo
Viewing docs for Google Cloud v9.22.0
published on Friday, May 1, 2026 by Pulumi

    A Managed Lustre instance

    To get more information about Instance, see:

    Example Usage

    Lustre Instance Basic

    import * as pulumi from "@pulumi/pulumi";
    import * as gcp from "@pulumi/gcp";
    
    // This example assumes this network already exists.
    // The API creates a tenant network per network authorized for a
    // Lustre instance and that network is not deleted when the user-created
    // network (authorized_network) is deleted, so this prevents issues
    // with tenant network quota.
    // If this network hasn't been created and you are using this example in your
    // config, add an additional network resource or change
    // this from "data"to "resource"
    const lustre_network = gcp.compute.getNetwork({
        name: "my-network",
    });
    const instance = new gcp.lustre.Instance("instance", {
        instanceId: "my-instance",
        location: "us-central1-a",
        description: "test lustre instance",
        filesystem: "testfs",
        capacityGib: "18000",
        network: lustre_network.then(lustre_network => lustre_network.id),
        perUnitStorageThroughput: "1000",
        labels: {
            test: "value",
        },
    });
    
    import pulumi
    import pulumi_gcp as gcp
    
    # This example assumes this network already exists.
    # The API creates a tenant network per network authorized for a
    # Lustre instance and that network is not deleted when the user-created
    # network (authorized_network) is deleted, so this prevents issues
    # with tenant network quota.
    # If this network hasn't been created and you are using this example in your
    # config, add an additional network resource or change
    # this from "data"to "resource"
    lustre_network = gcp.compute.get_network(name="my-network")
    instance = gcp.lustre.Instance("instance",
        instance_id="my-instance",
        location="us-central1-a",
        description="test lustre instance",
        filesystem="testfs",
        capacity_gib="18000",
        network=lustre_network.id,
        per_unit_storage_throughput="1000",
        labels={
            "test": "value",
        })
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-gcp/sdk/v9/go/gcp/compute"
    	"github.com/pulumi/pulumi-gcp/sdk/v9/go/gcp/lustre"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		// This example assumes this network already exists.
    		// The API creates a tenant network per network authorized for a
    		// Lustre instance and that network is not deleted when the user-created
    		// network (authorized_network) is deleted, so this prevents issues
    		// with tenant network quota.
    		// If this network hasn't been created and you are using this example in your
    		// config, add an additional network resource or change
    		// this from "data"to "resource"
    		lustre_network, err := compute.LookupNetwork(ctx, &compute.LookupNetworkArgs{
    			Name: "my-network",
    		}, nil)
    		if err != nil {
    			return err
    		}
    		_, err = lustre.NewInstance(ctx, "instance", &lustre.InstanceArgs{
    			InstanceId:               pulumi.String("my-instance"),
    			Location:                 pulumi.String("us-central1-a"),
    			Description:              pulumi.String("test lustre instance"),
    			Filesystem:               pulumi.String("testfs"),
    			CapacityGib:              pulumi.String("18000"),
    			Network:                  pulumi.String(pulumi.String(lustre_network.Id)),
    			PerUnitStorageThroughput: pulumi.String("1000"),
    			Labels: pulumi.StringMap{
    				"test": pulumi.String("value"),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Gcp = Pulumi.Gcp;
    
    return await Deployment.RunAsync(() => 
    {
        // This example assumes this network already exists.
        // The API creates a tenant network per network authorized for a
        // Lustre instance and that network is not deleted when the user-created
        // network (authorized_network) is deleted, so this prevents issues
        // with tenant network quota.
        // If this network hasn't been created and you are using this example in your
        // config, add an additional network resource or change
        // this from "data"to "resource"
        var lustre_network = Gcp.Compute.GetNetwork.Invoke(new()
        {
            Name = "my-network",
        });
    
        var instance = new Gcp.Lustre.Instance("instance", new()
        {
            InstanceId = "my-instance",
            Location = "us-central1-a",
            Description = "test lustre instance",
            Filesystem = "testfs",
            CapacityGib = "18000",
            Network = lustre_network.Apply(lustre_network => lustre_network.Apply(getNetworkResult => getNetworkResult.Id)),
            PerUnitStorageThroughput = "1000",
            Labels = 
            {
                { "test", "value" },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.gcp.compute.ComputeFunctions;
    import com.pulumi.gcp.compute.inputs.GetNetworkArgs;
    import com.pulumi.gcp.lustre.Instance;
    import com.pulumi.gcp.lustre.InstanceArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            // This example assumes this network already exists.
            // The API creates a tenant network per network authorized for a
            // Lustre instance and that network is not deleted when the user-created
            // network (authorized_network) is deleted, so this prevents issues
            // with tenant network quota.
            // If this network hasn't been created and you are using this example in your
            // config, add an additional network resource or change
            // this from "data"to "resource"
            final var lustre-network = ComputeFunctions.getNetwork(GetNetworkArgs.builder()
                .name("my-network")
                .build());
    
            var instance = new Instance("instance", InstanceArgs.builder()
                .instanceId("my-instance")
                .location("us-central1-a")
                .description("test lustre instance")
                .filesystem("testfs")
                .capacityGib("18000")
                .network(lustre_network.id())
                .perUnitStorageThroughput("1000")
                .labels(Map.of("test", "value"))
                .build());
    
        }
    }
    
    resources:
      instance:
        type: gcp:lustre:Instance
        properties:
          instanceId: my-instance
          location: us-central1-a
          description: test lustre instance
          filesystem: testfs
          capacityGib: 18000
          network: ${["lustre-network"].id}
          perUnitStorageThroughput: 1000
          labels:
            test: value
    variables:
      # This example assumes this network already exists.
      # // The API creates a tenant network per network authorized for a
      # // Lustre instance and that network is not deleted when the user-created
      # // network (authorized_network) is deleted, so this prevents issues
      # // with tenant network quota.
      # // If this network hasn't been created and you are using this example in your
      # // config, add an additional network resource or change
      # // this from "data"to "resource"
      lustre-network:
        fn::invoke:
          function: gcp:compute:getNetwork
          arguments:
            name: my-network
    

    Create Instance Resource

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

    Constructor syntax

    new Instance(name: string, args: InstanceArgs, opts?: CustomResourceOptions);
    @overload
    def Instance(resource_name: str,
                 args: InstanceArgs,
                 opts: Optional[ResourceOptions] = None)
    
    @overload
    def Instance(resource_name: str,
                 opts: Optional[ResourceOptions] = None,
                 location: Optional[str] = None,
                 capacity_gib: Optional[str] = None,
                 network: Optional[str] = None,
                 instance_id: Optional[str] = None,
                 filesystem: Optional[str] = None,
                 maintenance_policy: Optional[InstanceMaintenancePolicyArgs] = None,
                 gke_support_enabled: Optional[bool] = None,
                 labels: Optional[Mapping[str, str]] = None,
                 dynamic_tier_options: Optional[InstanceDynamicTierOptionsArgs] = None,
                 access_rules_options: Optional[InstanceAccessRulesOptionsArgs] = None,
                 kms_key: Optional[str] = None,
                 description: Optional[str] = None,
                 per_unit_storage_throughput: Optional[str] = None,
                 placement_policy: Optional[str] = None,
                 project: Optional[str] = None)
    func NewInstance(ctx *Context, name string, args InstanceArgs, opts ...ResourceOption) (*Instance, error)
    public Instance(string name, InstanceArgs args, CustomResourceOptions? opts = null)
    public Instance(String name, InstanceArgs args)
    public Instance(String name, InstanceArgs args, CustomResourceOptions options)
    
    type: gcp:lustre:Instance
    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 InstanceArgs
    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 InstanceArgs
    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 InstanceArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args InstanceArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args InstanceArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Instance Resource Properties

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

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The Instance resource accepts the following input properties:

    CapacityGib string
    The storage capacity of the instance in gibibytes (GiB). Allowed values are from 9000 to 7632000, depending on the perUnitStorageThroughput. See Performance tiers and maximum storage capacities for specific minimums, maximums, and step sizes for each performance tier.
    Filesystem string
    The filesystem name for this instance. This name is used by client-side tools, including when mounting the instance. Must be eight characters or less and can only contain letters and numbers.
    InstanceId string
    The name of the Managed Lustre instance.

    • Must contain only lowercase letters, numbers, and hyphens.
    • Must start with a letter.
    • Must be between 1-63 characters.
    • Must end with a number or a letter.
    Location string
    Resource ID segment making up resource name. It identifies the resource within its parent collection as described in https://google.aip.dev/122.
    Network string
    The full name of the VPC network to which the instance is connected. Must be in the format projects/{project_id}/global/networks/{network_name}.
    AccessRulesOptions InstanceAccessRulesOptions
    IP-based access rules for the Managed Lustre instance. These options define the root user squash configuration. Structure is documented below.
    Description string
    A user-readable description of the instance.
    DynamicTierOptions InstanceDynamicTierOptions
    Dynamic tier options for a Managed Lustre instance. Structure is documented below.
    GkeSupportEnabled bool
    Indicates whether you want to enable support for GKE clients. By default, GKE clients are not supported.
    KmsKey string
    The Cloud KMS key name to use for data encryption. If not set, the instance will use Google-managed encryption keys. If set, the instance will use customer-managed encryption keys. The key must be in the same region as the instance. The key format is: projects/{project}/locations/{location}/keyRings/{key_ring}/cryptoKeys/{key}
    Labels Dictionary<string, string>
    Labels as key value pairs. Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field effectiveLabels for all of the labels present on the resource.
    MaintenancePolicy InstanceMaintenancePolicy
    Defines a maintenance policy for a resource. Structure is documented below.
    PerUnitStorageThroughput string
    The throughput of the instance in MBps per TiB. Valid values are 125, 250, 500, 1000. See Performance tiers and maximum storage capacities for more information. If the instance is using the Dynamic tier, this field must not be set or must be set to zero.
    PlacementPolicy string
    The placement policy name for the instance in the format of projects/{project}/locations/{location}/resourcePolicies/{resource_policy}
    Project string
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    CapacityGib string
    The storage capacity of the instance in gibibytes (GiB). Allowed values are from 9000 to 7632000, depending on the perUnitStorageThroughput. See Performance tiers and maximum storage capacities for specific minimums, maximums, and step sizes for each performance tier.
    Filesystem string
    The filesystem name for this instance. This name is used by client-side tools, including when mounting the instance. Must be eight characters or less and can only contain letters and numbers.
    InstanceId string
    The name of the Managed Lustre instance.

    • Must contain only lowercase letters, numbers, and hyphens.
    • Must start with a letter.
    • Must be between 1-63 characters.
    • Must end with a number or a letter.
    Location string
    Resource ID segment making up resource name. It identifies the resource within its parent collection as described in https://google.aip.dev/122.
    Network string
    The full name of the VPC network to which the instance is connected. Must be in the format projects/{project_id}/global/networks/{network_name}.
    AccessRulesOptions InstanceAccessRulesOptionsArgs
    IP-based access rules for the Managed Lustre instance. These options define the root user squash configuration. Structure is documented below.
    Description string
    A user-readable description of the instance.
    DynamicTierOptions InstanceDynamicTierOptionsArgs
    Dynamic tier options for a Managed Lustre instance. Structure is documented below.
    GkeSupportEnabled bool
    Indicates whether you want to enable support for GKE clients. By default, GKE clients are not supported.
    KmsKey string
    The Cloud KMS key name to use for data encryption. If not set, the instance will use Google-managed encryption keys. If set, the instance will use customer-managed encryption keys. The key must be in the same region as the instance. The key format is: projects/{project}/locations/{location}/keyRings/{key_ring}/cryptoKeys/{key}
    Labels map[string]string
    Labels as key value pairs. Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field effectiveLabels for all of the labels present on the resource.
    MaintenancePolicy InstanceMaintenancePolicyArgs
    Defines a maintenance policy for a resource. Structure is documented below.
    PerUnitStorageThroughput string
    The throughput of the instance in MBps per TiB. Valid values are 125, 250, 500, 1000. See Performance tiers and maximum storage capacities for more information. If the instance is using the Dynamic tier, this field must not be set or must be set to zero.
    PlacementPolicy string
    The placement policy name for the instance in the format of projects/{project}/locations/{location}/resourcePolicies/{resource_policy}
    Project string
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    capacityGib String
    The storage capacity of the instance in gibibytes (GiB). Allowed values are from 9000 to 7632000, depending on the perUnitStorageThroughput. See Performance tiers and maximum storage capacities for specific minimums, maximums, and step sizes for each performance tier.
    filesystem String
    The filesystem name for this instance. This name is used by client-side tools, including when mounting the instance. Must be eight characters or less and can only contain letters and numbers.
    instanceId String
    The name of the Managed Lustre instance.

    • Must contain only lowercase letters, numbers, and hyphens.
    • Must start with a letter.
    • Must be between 1-63 characters.
    • Must end with a number or a letter.
    location String
    Resource ID segment making up resource name. It identifies the resource within its parent collection as described in https://google.aip.dev/122.
    network String
    The full name of the VPC network to which the instance is connected. Must be in the format projects/{project_id}/global/networks/{network_name}.
    accessRulesOptions InstanceAccessRulesOptions
    IP-based access rules for the Managed Lustre instance. These options define the root user squash configuration. Structure is documented below.
    description String
    A user-readable description of the instance.
    dynamicTierOptions InstanceDynamicTierOptions
    Dynamic tier options for a Managed Lustre instance. Structure is documented below.
    gkeSupportEnabled Boolean
    Indicates whether you want to enable support for GKE clients. By default, GKE clients are not supported.
    kmsKey String
    The Cloud KMS key name to use for data encryption. If not set, the instance will use Google-managed encryption keys. If set, the instance will use customer-managed encryption keys. The key must be in the same region as the instance. The key format is: projects/{project}/locations/{location}/keyRings/{key_ring}/cryptoKeys/{key}
    labels Map<String,String>
    Labels as key value pairs. Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field effectiveLabels for all of the labels present on the resource.
    maintenancePolicy InstanceMaintenancePolicy
    Defines a maintenance policy for a resource. Structure is documented below.
    perUnitStorageThroughput String
    The throughput of the instance in MBps per TiB. Valid values are 125, 250, 500, 1000. See Performance tiers and maximum storage capacities for more information. If the instance is using the Dynamic tier, this field must not be set or must be set to zero.
    placementPolicy String
    The placement policy name for the instance in the format of projects/{project}/locations/{location}/resourcePolicies/{resource_policy}
    project String
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    capacityGib string
    The storage capacity of the instance in gibibytes (GiB). Allowed values are from 9000 to 7632000, depending on the perUnitStorageThroughput. See Performance tiers and maximum storage capacities for specific minimums, maximums, and step sizes for each performance tier.
    filesystem string
    The filesystem name for this instance. This name is used by client-side tools, including when mounting the instance. Must be eight characters or less and can only contain letters and numbers.
    instanceId string
    The name of the Managed Lustre instance.

    • Must contain only lowercase letters, numbers, and hyphens.
    • Must start with a letter.
    • Must be between 1-63 characters.
    • Must end with a number or a letter.
    location string
    Resource ID segment making up resource name. It identifies the resource within its parent collection as described in https://google.aip.dev/122.
    network string
    The full name of the VPC network to which the instance is connected. Must be in the format projects/{project_id}/global/networks/{network_name}.
    accessRulesOptions InstanceAccessRulesOptions
    IP-based access rules for the Managed Lustre instance. These options define the root user squash configuration. Structure is documented below.
    description string
    A user-readable description of the instance.
    dynamicTierOptions InstanceDynamicTierOptions
    Dynamic tier options for a Managed Lustre instance. Structure is documented below.
    gkeSupportEnabled boolean
    Indicates whether you want to enable support for GKE clients. By default, GKE clients are not supported.
    kmsKey string
    The Cloud KMS key name to use for data encryption. If not set, the instance will use Google-managed encryption keys. If set, the instance will use customer-managed encryption keys. The key must be in the same region as the instance. The key format is: projects/{project}/locations/{location}/keyRings/{key_ring}/cryptoKeys/{key}
    labels {[key: string]: string}
    Labels as key value pairs. Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field effectiveLabels for all of the labels present on the resource.
    maintenancePolicy InstanceMaintenancePolicy
    Defines a maintenance policy for a resource. Structure is documented below.
    perUnitStorageThroughput string
    The throughput of the instance in MBps per TiB. Valid values are 125, 250, 500, 1000. See Performance tiers and maximum storage capacities for more information. If the instance is using the Dynamic tier, this field must not be set or must be set to zero.
    placementPolicy string
    The placement policy name for the instance in the format of projects/{project}/locations/{location}/resourcePolicies/{resource_policy}
    project string
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    capacity_gib str
    The storage capacity of the instance in gibibytes (GiB). Allowed values are from 9000 to 7632000, depending on the perUnitStorageThroughput. See Performance tiers and maximum storage capacities for specific minimums, maximums, and step sizes for each performance tier.
    filesystem str
    The filesystem name for this instance. This name is used by client-side tools, including when mounting the instance. Must be eight characters or less and can only contain letters and numbers.
    instance_id str
    The name of the Managed Lustre instance.

    • Must contain only lowercase letters, numbers, and hyphens.
    • Must start with a letter.
    • Must be between 1-63 characters.
    • Must end with a number or a letter.
    location str
    Resource ID segment making up resource name. It identifies the resource within its parent collection as described in https://google.aip.dev/122.
    network str
    The full name of the VPC network to which the instance is connected. Must be in the format projects/{project_id}/global/networks/{network_name}.
    access_rules_options InstanceAccessRulesOptionsArgs
    IP-based access rules for the Managed Lustre instance. These options define the root user squash configuration. Structure is documented below.
    description str
    A user-readable description of the instance.
    dynamic_tier_options InstanceDynamicTierOptionsArgs
    Dynamic tier options for a Managed Lustre instance. Structure is documented below.
    gke_support_enabled bool
    Indicates whether you want to enable support for GKE clients. By default, GKE clients are not supported.
    kms_key str
    The Cloud KMS key name to use for data encryption. If not set, the instance will use Google-managed encryption keys. If set, the instance will use customer-managed encryption keys. The key must be in the same region as the instance. The key format is: projects/{project}/locations/{location}/keyRings/{key_ring}/cryptoKeys/{key}
    labels Mapping[str, str]
    Labels as key value pairs. Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field effectiveLabels for all of the labels present on the resource.
    maintenance_policy InstanceMaintenancePolicyArgs
    Defines a maintenance policy for a resource. Structure is documented below.
    per_unit_storage_throughput str
    The throughput of the instance in MBps per TiB. Valid values are 125, 250, 500, 1000. See Performance tiers and maximum storage capacities for more information. If the instance is using the Dynamic tier, this field must not be set or must be set to zero.
    placement_policy str
    The placement policy name for the instance in the format of projects/{project}/locations/{location}/resourcePolicies/{resource_policy}
    project str
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    capacityGib String
    The storage capacity of the instance in gibibytes (GiB). Allowed values are from 9000 to 7632000, depending on the perUnitStorageThroughput. See Performance tiers and maximum storage capacities for specific minimums, maximums, and step sizes for each performance tier.
    filesystem String
    The filesystem name for this instance. This name is used by client-side tools, including when mounting the instance. Must be eight characters or less and can only contain letters and numbers.
    instanceId String
    The name of the Managed Lustre instance.

    • Must contain only lowercase letters, numbers, and hyphens.
    • Must start with a letter.
    • Must be between 1-63 characters.
    • Must end with a number or a letter.
    location String
    Resource ID segment making up resource name. It identifies the resource within its parent collection as described in https://google.aip.dev/122.
    network String
    The full name of the VPC network to which the instance is connected. Must be in the format projects/{project_id}/global/networks/{network_name}.
    accessRulesOptions Property Map
    IP-based access rules for the Managed Lustre instance. These options define the root user squash configuration. Structure is documented below.
    description String
    A user-readable description of the instance.
    dynamicTierOptions Property Map
    Dynamic tier options for a Managed Lustre instance. Structure is documented below.
    gkeSupportEnabled Boolean
    Indicates whether you want to enable support for GKE clients. By default, GKE clients are not supported.
    kmsKey String
    The Cloud KMS key name to use for data encryption. If not set, the instance will use Google-managed encryption keys. If set, the instance will use customer-managed encryption keys. The key must be in the same region as the instance. The key format is: projects/{project}/locations/{location}/keyRings/{key_ring}/cryptoKeys/{key}
    labels Map<String>
    Labels as key value pairs. Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field effectiveLabels for all of the labels present on the resource.
    maintenancePolicy Property Map
    Defines a maintenance policy for a resource. Structure is documented below.
    perUnitStorageThroughput String
    The throughput of the instance in MBps per TiB. Valid values are 125, 250, 500, 1000. See Performance tiers and maximum storage capacities for more information. If the instance is using the Dynamic tier, this field must not be set or must be set to zero.
    placementPolicy String
    The placement policy name for the instance in the format of projects/{project}/locations/{location}/resourcePolicies/{resource_policy}
    project String
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.

    Outputs

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

    CreateTime string
    Timestamp when the instance was created.
    EffectiveLabels Dictionary<string, string>
    All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
    Id string
    The provider-assigned unique ID for this managed resource.
    MountPoint string
    Mount point of the instance in the format IP_ADDRESS@tcp:/FILESYSTEM.
    Name string
    Identifier. The name of the instance.
    PulumiLabels Dictionary<string, string>
    The combination of labels configured directly on the resource and default labels configured on the provider.
    State string
    The state of the instance. Possible values: ACTIVE CREATING DELETING UPGRADING REPAIRING STOPPED UPDATING SUSPENDED
    StateReason string
    The reason why the instance is in a certain state (e.g. SUSPENDED).
    Uid string
    Unique ID of the resource. This is unrelated to the access rules which allow specifying the root squash uid.
    UpcomingMaintenanceSchedules List<InstanceUpcomingMaintenanceSchedule>
    Represents a scheduled maintenance event. Structure is documented below.
    UpdateTime string
    Timestamp when the instance was last updated.
    CreateTime string
    Timestamp when the instance was created.
    EffectiveLabels map[string]string
    All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
    Id string
    The provider-assigned unique ID for this managed resource.
    MountPoint string
    Mount point of the instance in the format IP_ADDRESS@tcp:/FILESYSTEM.
    Name string
    Identifier. The name of the instance.
    PulumiLabels map[string]string
    The combination of labels configured directly on the resource and default labels configured on the provider.
    State string
    The state of the instance. Possible values: ACTIVE CREATING DELETING UPGRADING REPAIRING STOPPED UPDATING SUSPENDED
    StateReason string
    The reason why the instance is in a certain state (e.g. SUSPENDED).
    Uid string
    Unique ID of the resource. This is unrelated to the access rules which allow specifying the root squash uid.
    UpcomingMaintenanceSchedules []InstanceUpcomingMaintenanceSchedule
    Represents a scheduled maintenance event. Structure is documented below.
    UpdateTime string
    Timestamp when the instance was last updated.
    createTime String
    Timestamp when the instance was created.
    effectiveLabels Map<String,String>
    All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
    id String
    The provider-assigned unique ID for this managed resource.
    mountPoint String
    Mount point of the instance in the format IP_ADDRESS@tcp:/FILESYSTEM.
    name String
    Identifier. The name of the instance.
    pulumiLabels Map<String,String>
    The combination of labels configured directly on the resource and default labels configured on the provider.
    state String
    The state of the instance. Possible values: ACTIVE CREATING DELETING UPGRADING REPAIRING STOPPED UPDATING SUSPENDED
    stateReason String
    The reason why the instance is in a certain state (e.g. SUSPENDED).
    uid String
    Unique ID of the resource. This is unrelated to the access rules which allow specifying the root squash uid.
    upcomingMaintenanceSchedules List<InstanceUpcomingMaintenanceSchedule>
    Represents a scheduled maintenance event. Structure is documented below.
    updateTime String
    Timestamp when the instance was last updated.
    createTime string
    Timestamp when the instance was created.
    effectiveLabels {[key: string]: string}
    All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
    id string
    The provider-assigned unique ID for this managed resource.
    mountPoint string
    Mount point of the instance in the format IP_ADDRESS@tcp:/FILESYSTEM.
    name string
    Identifier. The name of the instance.
    pulumiLabels {[key: string]: string}
    The combination of labels configured directly on the resource and default labels configured on the provider.
    state string
    The state of the instance. Possible values: ACTIVE CREATING DELETING UPGRADING REPAIRING STOPPED UPDATING SUSPENDED
    stateReason string
    The reason why the instance is in a certain state (e.g. SUSPENDED).
    uid string
    Unique ID of the resource. This is unrelated to the access rules which allow specifying the root squash uid.
    upcomingMaintenanceSchedules InstanceUpcomingMaintenanceSchedule[]
    Represents a scheduled maintenance event. Structure is documented below.
    updateTime string
    Timestamp when the instance was last updated.
    create_time str
    Timestamp when the instance was created.
    effective_labels Mapping[str, str]
    All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
    id str
    The provider-assigned unique ID for this managed resource.
    mount_point str
    Mount point of the instance in the format IP_ADDRESS@tcp:/FILESYSTEM.
    name str
    Identifier. The name of the instance.
    pulumi_labels Mapping[str, str]
    The combination of labels configured directly on the resource and default labels configured on the provider.
    state str
    The state of the instance. Possible values: ACTIVE CREATING DELETING UPGRADING REPAIRING STOPPED UPDATING SUSPENDED
    state_reason str
    The reason why the instance is in a certain state (e.g. SUSPENDED).
    uid str
    Unique ID of the resource. This is unrelated to the access rules which allow specifying the root squash uid.
    upcoming_maintenance_schedules Sequence[InstanceUpcomingMaintenanceSchedule]
    Represents a scheduled maintenance event. Structure is documented below.
    update_time str
    Timestamp when the instance was last updated.
    createTime String
    Timestamp when the instance was created.
    effectiveLabels Map<String>
    All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
    id String
    The provider-assigned unique ID for this managed resource.
    mountPoint String
    Mount point of the instance in the format IP_ADDRESS@tcp:/FILESYSTEM.
    name String
    Identifier. The name of the instance.
    pulumiLabels Map<String>
    The combination of labels configured directly on the resource and default labels configured on the provider.
    state String
    The state of the instance. Possible values: ACTIVE CREATING DELETING UPGRADING REPAIRING STOPPED UPDATING SUSPENDED
    stateReason String
    The reason why the instance is in a certain state (e.g. SUSPENDED).
    uid String
    Unique ID of the resource. This is unrelated to the access rules which allow specifying the root squash uid.
    upcomingMaintenanceSchedules List<Property Map>
    Represents a scheduled maintenance event. Structure is documented below.
    updateTime String
    Timestamp when the instance was last updated.

    Look up Existing Instance Resource

    Get an existing Instance resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: InstanceState, opts?: CustomResourceOptions): Instance
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            access_rules_options: Optional[InstanceAccessRulesOptionsArgs] = None,
            capacity_gib: Optional[str] = None,
            create_time: Optional[str] = None,
            description: Optional[str] = None,
            dynamic_tier_options: Optional[InstanceDynamicTierOptionsArgs] = None,
            effective_labels: Optional[Mapping[str, str]] = None,
            filesystem: Optional[str] = None,
            gke_support_enabled: Optional[bool] = None,
            instance_id: Optional[str] = None,
            kms_key: Optional[str] = None,
            labels: Optional[Mapping[str, str]] = None,
            location: Optional[str] = None,
            maintenance_policy: Optional[InstanceMaintenancePolicyArgs] = None,
            mount_point: Optional[str] = None,
            name: Optional[str] = None,
            network: Optional[str] = None,
            per_unit_storage_throughput: Optional[str] = None,
            placement_policy: Optional[str] = None,
            project: Optional[str] = None,
            pulumi_labels: Optional[Mapping[str, str]] = None,
            state: Optional[str] = None,
            state_reason: Optional[str] = None,
            uid: Optional[str] = None,
            upcoming_maintenance_schedules: Optional[Sequence[InstanceUpcomingMaintenanceScheduleArgs]] = None,
            update_time: Optional[str] = None) -> Instance
    func GetInstance(ctx *Context, name string, id IDInput, state *InstanceState, opts ...ResourceOption) (*Instance, error)
    public static Instance Get(string name, Input<string> id, InstanceState? state, CustomResourceOptions? opts = null)
    public static Instance get(String name, Output<String> id, InstanceState state, CustomResourceOptions options)
    resources:  _:    type: gcp:lustre:Instance    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    AccessRulesOptions InstanceAccessRulesOptions
    IP-based access rules for the Managed Lustre instance. These options define the root user squash configuration. Structure is documented below.
    CapacityGib string
    The storage capacity of the instance in gibibytes (GiB). Allowed values are from 9000 to 7632000, depending on the perUnitStorageThroughput. See Performance tiers and maximum storage capacities for specific minimums, maximums, and step sizes for each performance tier.
    CreateTime string
    Timestamp when the instance was created.
    Description string
    A user-readable description of the instance.
    DynamicTierOptions InstanceDynamicTierOptions
    Dynamic tier options for a Managed Lustre instance. Structure is documented below.
    EffectiveLabels Dictionary<string, string>
    All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
    Filesystem string
    The filesystem name for this instance. This name is used by client-side tools, including when mounting the instance. Must be eight characters or less and can only contain letters and numbers.
    GkeSupportEnabled bool
    Indicates whether you want to enable support for GKE clients. By default, GKE clients are not supported.
    InstanceId string
    The name of the Managed Lustre instance.

    • Must contain only lowercase letters, numbers, and hyphens.
    • Must start with a letter.
    • Must be between 1-63 characters.
    • Must end with a number or a letter.
    KmsKey string
    The Cloud KMS key name to use for data encryption. If not set, the instance will use Google-managed encryption keys. If set, the instance will use customer-managed encryption keys. The key must be in the same region as the instance. The key format is: projects/{project}/locations/{location}/keyRings/{key_ring}/cryptoKeys/{key}
    Labels Dictionary<string, string>
    Labels as key value pairs. Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field effectiveLabels for all of the labels present on the resource.
    Location string
    Resource ID segment making up resource name. It identifies the resource within its parent collection as described in https://google.aip.dev/122.
    MaintenancePolicy InstanceMaintenancePolicy
    Defines a maintenance policy for a resource. Structure is documented below.
    MountPoint string
    Mount point of the instance in the format IP_ADDRESS@tcp:/FILESYSTEM.
    Name string
    Identifier. The name of the instance.
    Network string
    The full name of the VPC network to which the instance is connected. Must be in the format projects/{project_id}/global/networks/{network_name}.
    PerUnitStorageThroughput string
    The throughput of the instance in MBps per TiB. Valid values are 125, 250, 500, 1000. See Performance tiers and maximum storage capacities for more information. If the instance is using the Dynamic tier, this field must not be set or must be set to zero.
    PlacementPolicy string
    The placement policy name for the instance in the format of projects/{project}/locations/{location}/resourcePolicies/{resource_policy}
    Project string
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    PulumiLabels Dictionary<string, string>
    The combination of labels configured directly on the resource and default labels configured on the provider.
    State string
    The state of the instance. Possible values: ACTIVE CREATING DELETING UPGRADING REPAIRING STOPPED UPDATING SUSPENDED
    StateReason string
    The reason why the instance is in a certain state (e.g. SUSPENDED).
    Uid string
    Unique ID of the resource. This is unrelated to the access rules which allow specifying the root squash uid.
    UpcomingMaintenanceSchedules List<InstanceUpcomingMaintenanceSchedule>
    Represents a scheduled maintenance event. Structure is documented below.
    UpdateTime string
    Timestamp when the instance was last updated.
    AccessRulesOptions InstanceAccessRulesOptionsArgs
    IP-based access rules for the Managed Lustre instance. These options define the root user squash configuration. Structure is documented below.
    CapacityGib string
    The storage capacity of the instance in gibibytes (GiB). Allowed values are from 9000 to 7632000, depending on the perUnitStorageThroughput. See Performance tiers and maximum storage capacities for specific minimums, maximums, and step sizes for each performance tier.
    CreateTime string
    Timestamp when the instance was created.
    Description string
    A user-readable description of the instance.
    DynamicTierOptions InstanceDynamicTierOptionsArgs
    Dynamic tier options for a Managed Lustre instance. Structure is documented below.
    EffectiveLabels map[string]string
    All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
    Filesystem string
    The filesystem name for this instance. This name is used by client-side tools, including when mounting the instance. Must be eight characters or less and can only contain letters and numbers.
    GkeSupportEnabled bool
    Indicates whether you want to enable support for GKE clients. By default, GKE clients are not supported.
    InstanceId string
    The name of the Managed Lustre instance.

    • Must contain only lowercase letters, numbers, and hyphens.
    • Must start with a letter.
    • Must be between 1-63 characters.
    • Must end with a number or a letter.
    KmsKey string
    The Cloud KMS key name to use for data encryption. If not set, the instance will use Google-managed encryption keys. If set, the instance will use customer-managed encryption keys. The key must be in the same region as the instance. The key format is: projects/{project}/locations/{location}/keyRings/{key_ring}/cryptoKeys/{key}
    Labels map[string]string
    Labels as key value pairs. Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field effectiveLabels for all of the labels present on the resource.
    Location string
    Resource ID segment making up resource name. It identifies the resource within its parent collection as described in https://google.aip.dev/122.
    MaintenancePolicy InstanceMaintenancePolicyArgs
    Defines a maintenance policy for a resource. Structure is documented below.
    MountPoint string
    Mount point of the instance in the format IP_ADDRESS@tcp:/FILESYSTEM.
    Name string
    Identifier. The name of the instance.
    Network string
    The full name of the VPC network to which the instance is connected. Must be in the format projects/{project_id}/global/networks/{network_name}.
    PerUnitStorageThroughput string
    The throughput of the instance in MBps per TiB. Valid values are 125, 250, 500, 1000. See Performance tiers and maximum storage capacities for more information. If the instance is using the Dynamic tier, this field must not be set or must be set to zero.
    PlacementPolicy string
    The placement policy name for the instance in the format of projects/{project}/locations/{location}/resourcePolicies/{resource_policy}
    Project string
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    PulumiLabels map[string]string
    The combination of labels configured directly on the resource and default labels configured on the provider.
    State string
    The state of the instance. Possible values: ACTIVE CREATING DELETING UPGRADING REPAIRING STOPPED UPDATING SUSPENDED
    StateReason string
    The reason why the instance is in a certain state (e.g. SUSPENDED).
    Uid string
    Unique ID of the resource. This is unrelated to the access rules which allow specifying the root squash uid.
    UpcomingMaintenanceSchedules []InstanceUpcomingMaintenanceScheduleArgs
    Represents a scheduled maintenance event. Structure is documented below.
    UpdateTime string
    Timestamp when the instance was last updated.
    accessRulesOptions InstanceAccessRulesOptions
    IP-based access rules for the Managed Lustre instance. These options define the root user squash configuration. Structure is documented below.
    capacityGib String
    The storage capacity of the instance in gibibytes (GiB). Allowed values are from 9000 to 7632000, depending on the perUnitStorageThroughput. See Performance tiers and maximum storage capacities for specific minimums, maximums, and step sizes for each performance tier.
    createTime String
    Timestamp when the instance was created.
    description String
    A user-readable description of the instance.
    dynamicTierOptions InstanceDynamicTierOptions
    Dynamic tier options for a Managed Lustre instance. Structure is documented below.
    effectiveLabels Map<String,String>
    All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
    filesystem String
    The filesystem name for this instance. This name is used by client-side tools, including when mounting the instance. Must be eight characters or less and can only contain letters and numbers.
    gkeSupportEnabled Boolean
    Indicates whether you want to enable support for GKE clients. By default, GKE clients are not supported.
    instanceId String
    The name of the Managed Lustre instance.

    • Must contain only lowercase letters, numbers, and hyphens.
    • Must start with a letter.
    • Must be between 1-63 characters.
    • Must end with a number or a letter.
    kmsKey String
    The Cloud KMS key name to use for data encryption. If not set, the instance will use Google-managed encryption keys. If set, the instance will use customer-managed encryption keys. The key must be in the same region as the instance. The key format is: projects/{project}/locations/{location}/keyRings/{key_ring}/cryptoKeys/{key}
    labels Map<String,String>
    Labels as key value pairs. Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field effectiveLabels for all of the labels present on the resource.
    location String
    Resource ID segment making up resource name. It identifies the resource within its parent collection as described in https://google.aip.dev/122.
    maintenancePolicy InstanceMaintenancePolicy
    Defines a maintenance policy for a resource. Structure is documented below.
    mountPoint String
    Mount point of the instance in the format IP_ADDRESS@tcp:/FILESYSTEM.
    name String
    Identifier. The name of the instance.
    network String
    The full name of the VPC network to which the instance is connected. Must be in the format projects/{project_id}/global/networks/{network_name}.
    perUnitStorageThroughput String
    The throughput of the instance in MBps per TiB. Valid values are 125, 250, 500, 1000. See Performance tiers and maximum storage capacities for more information. If the instance is using the Dynamic tier, this field must not be set or must be set to zero.
    placementPolicy String
    The placement policy name for the instance in the format of projects/{project}/locations/{location}/resourcePolicies/{resource_policy}
    project String
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    pulumiLabels Map<String,String>
    The combination of labels configured directly on the resource and default labels configured on the provider.
    state String
    The state of the instance. Possible values: ACTIVE CREATING DELETING UPGRADING REPAIRING STOPPED UPDATING SUSPENDED
    stateReason String
    The reason why the instance is in a certain state (e.g. SUSPENDED).
    uid String
    Unique ID of the resource. This is unrelated to the access rules which allow specifying the root squash uid.
    upcomingMaintenanceSchedules List<InstanceUpcomingMaintenanceSchedule>
    Represents a scheduled maintenance event. Structure is documented below.
    updateTime String
    Timestamp when the instance was last updated.
    accessRulesOptions InstanceAccessRulesOptions
    IP-based access rules for the Managed Lustre instance. These options define the root user squash configuration. Structure is documented below.
    capacityGib string
    The storage capacity of the instance in gibibytes (GiB). Allowed values are from 9000 to 7632000, depending on the perUnitStorageThroughput. See Performance tiers and maximum storage capacities for specific minimums, maximums, and step sizes for each performance tier.
    createTime string
    Timestamp when the instance was created.
    description string
    A user-readable description of the instance.
    dynamicTierOptions InstanceDynamicTierOptions
    Dynamic tier options for a Managed Lustre instance. Structure is documented below.
    effectiveLabels {[key: string]: string}
    All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
    filesystem string
    The filesystem name for this instance. This name is used by client-side tools, including when mounting the instance. Must be eight characters or less and can only contain letters and numbers.
    gkeSupportEnabled boolean
    Indicates whether you want to enable support for GKE clients. By default, GKE clients are not supported.
    instanceId string
    The name of the Managed Lustre instance.

    • Must contain only lowercase letters, numbers, and hyphens.
    • Must start with a letter.
    • Must be between 1-63 characters.
    • Must end with a number or a letter.
    kmsKey string
    The Cloud KMS key name to use for data encryption. If not set, the instance will use Google-managed encryption keys. If set, the instance will use customer-managed encryption keys. The key must be in the same region as the instance. The key format is: projects/{project}/locations/{location}/keyRings/{key_ring}/cryptoKeys/{key}
    labels {[key: string]: string}
    Labels as key value pairs. Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field effectiveLabels for all of the labels present on the resource.
    location string
    Resource ID segment making up resource name. It identifies the resource within its parent collection as described in https://google.aip.dev/122.
    maintenancePolicy InstanceMaintenancePolicy
    Defines a maintenance policy for a resource. Structure is documented below.
    mountPoint string
    Mount point of the instance in the format IP_ADDRESS@tcp:/FILESYSTEM.
    name string
    Identifier. The name of the instance.
    network string
    The full name of the VPC network to which the instance is connected. Must be in the format projects/{project_id}/global/networks/{network_name}.
    perUnitStorageThroughput string
    The throughput of the instance in MBps per TiB. Valid values are 125, 250, 500, 1000. See Performance tiers and maximum storage capacities for more information. If the instance is using the Dynamic tier, this field must not be set or must be set to zero.
    placementPolicy string
    The placement policy name for the instance in the format of projects/{project}/locations/{location}/resourcePolicies/{resource_policy}
    project string
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    pulumiLabels {[key: string]: string}
    The combination of labels configured directly on the resource and default labels configured on the provider.
    state string
    The state of the instance. Possible values: ACTIVE CREATING DELETING UPGRADING REPAIRING STOPPED UPDATING SUSPENDED
    stateReason string
    The reason why the instance is in a certain state (e.g. SUSPENDED).
    uid string
    Unique ID of the resource. This is unrelated to the access rules which allow specifying the root squash uid.
    upcomingMaintenanceSchedules InstanceUpcomingMaintenanceSchedule[]
    Represents a scheduled maintenance event. Structure is documented below.
    updateTime string
    Timestamp when the instance was last updated.
    access_rules_options InstanceAccessRulesOptionsArgs
    IP-based access rules for the Managed Lustre instance. These options define the root user squash configuration. Structure is documented below.
    capacity_gib str
    The storage capacity of the instance in gibibytes (GiB). Allowed values are from 9000 to 7632000, depending on the perUnitStorageThroughput. See Performance tiers and maximum storage capacities for specific minimums, maximums, and step sizes for each performance tier.
    create_time str
    Timestamp when the instance was created.
    description str
    A user-readable description of the instance.
    dynamic_tier_options InstanceDynamicTierOptionsArgs
    Dynamic tier options for a Managed Lustre instance. Structure is documented below.
    effective_labels Mapping[str, str]
    All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
    filesystem str
    The filesystem name for this instance. This name is used by client-side tools, including when mounting the instance. Must be eight characters or less and can only contain letters and numbers.
    gke_support_enabled bool
    Indicates whether you want to enable support for GKE clients. By default, GKE clients are not supported.
    instance_id str
    The name of the Managed Lustre instance.

    • Must contain only lowercase letters, numbers, and hyphens.
    • Must start with a letter.
    • Must be between 1-63 characters.
    • Must end with a number or a letter.
    kms_key str
    The Cloud KMS key name to use for data encryption. If not set, the instance will use Google-managed encryption keys. If set, the instance will use customer-managed encryption keys. The key must be in the same region as the instance. The key format is: projects/{project}/locations/{location}/keyRings/{key_ring}/cryptoKeys/{key}
    labels Mapping[str, str]
    Labels as key value pairs. Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field effectiveLabels for all of the labels present on the resource.
    location str
    Resource ID segment making up resource name. It identifies the resource within its parent collection as described in https://google.aip.dev/122.
    maintenance_policy InstanceMaintenancePolicyArgs
    Defines a maintenance policy for a resource. Structure is documented below.
    mount_point str
    Mount point of the instance in the format IP_ADDRESS@tcp:/FILESYSTEM.
    name str
    Identifier. The name of the instance.
    network str
    The full name of the VPC network to which the instance is connected. Must be in the format projects/{project_id}/global/networks/{network_name}.
    per_unit_storage_throughput str
    The throughput of the instance in MBps per TiB. Valid values are 125, 250, 500, 1000. See Performance tiers and maximum storage capacities for more information. If the instance is using the Dynamic tier, this field must not be set or must be set to zero.
    placement_policy str
    The placement policy name for the instance in the format of projects/{project}/locations/{location}/resourcePolicies/{resource_policy}
    project str
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    pulumi_labels Mapping[str, str]
    The combination of labels configured directly on the resource and default labels configured on the provider.
    state str
    The state of the instance. Possible values: ACTIVE CREATING DELETING UPGRADING REPAIRING STOPPED UPDATING SUSPENDED
    state_reason str
    The reason why the instance is in a certain state (e.g. SUSPENDED).
    uid str
    Unique ID of the resource. This is unrelated to the access rules which allow specifying the root squash uid.
    upcoming_maintenance_schedules Sequence[InstanceUpcomingMaintenanceScheduleArgs]
    Represents a scheduled maintenance event. Structure is documented below.
    update_time str
    Timestamp when the instance was last updated.
    accessRulesOptions Property Map
    IP-based access rules for the Managed Lustre instance. These options define the root user squash configuration. Structure is documented below.
    capacityGib String
    The storage capacity of the instance in gibibytes (GiB). Allowed values are from 9000 to 7632000, depending on the perUnitStorageThroughput. See Performance tiers and maximum storage capacities for specific minimums, maximums, and step sizes for each performance tier.
    createTime String
    Timestamp when the instance was created.
    description String
    A user-readable description of the instance.
    dynamicTierOptions Property Map
    Dynamic tier options for a Managed Lustre instance. Structure is documented below.
    effectiveLabels Map<String>
    All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
    filesystem String
    The filesystem name for this instance. This name is used by client-side tools, including when mounting the instance. Must be eight characters or less and can only contain letters and numbers.
    gkeSupportEnabled Boolean
    Indicates whether you want to enable support for GKE clients. By default, GKE clients are not supported.
    instanceId String
    The name of the Managed Lustre instance.

    • Must contain only lowercase letters, numbers, and hyphens.
    • Must start with a letter.
    • Must be between 1-63 characters.
    • Must end with a number or a letter.
    kmsKey String
    The Cloud KMS key name to use for data encryption. If not set, the instance will use Google-managed encryption keys. If set, the instance will use customer-managed encryption keys. The key must be in the same region as the instance. The key format is: projects/{project}/locations/{location}/keyRings/{key_ring}/cryptoKeys/{key}
    labels Map<String>
    Labels as key value pairs. Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field effectiveLabels for all of the labels present on the resource.
    location String
    Resource ID segment making up resource name. It identifies the resource within its parent collection as described in https://google.aip.dev/122.
    maintenancePolicy Property Map
    Defines a maintenance policy for a resource. Structure is documented below.
    mountPoint String
    Mount point of the instance in the format IP_ADDRESS@tcp:/FILESYSTEM.
    name String
    Identifier. The name of the instance.
    network String
    The full name of the VPC network to which the instance is connected. Must be in the format projects/{project_id}/global/networks/{network_name}.
    perUnitStorageThroughput String
    The throughput of the instance in MBps per TiB. Valid values are 125, 250, 500, 1000. See Performance tiers and maximum storage capacities for more information. If the instance is using the Dynamic tier, this field must not be set or must be set to zero.
    placementPolicy String
    The placement policy name for the instance in the format of projects/{project}/locations/{location}/resourcePolicies/{resource_policy}
    project String
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    pulumiLabels Map<String>
    The combination of labels configured directly on the resource and default labels configured on the provider.
    state String
    The state of the instance. Possible values: ACTIVE CREATING DELETING UPGRADING REPAIRING STOPPED UPDATING SUSPENDED
    stateReason String
    The reason why the instance is in a certain state (e.g. SUSPENDED).
    uid String
    Unique ID of the resource. This is unrelated to the access rules which allow specifying the root squash uid.
    upcomingMaintenanceSchedules List<Property Map>
    Represents a scheduled maintenance event. Structure is documented below.
    updateTime String
    Timestamp when the instance was last updated.

    Supporting Types

    InstanceAccessRulesOptions, InstanceAccessRulesOptionsArgs

    DefaultSquashMode string
    The squash mode for the default access rule. Possible values: NO_SQUASH ROOT_SQUASH
    AccessRules List<InstanceAccessRulesOptionsAccessRule>
    The access rules for the instance. Structure is documented below.
    DefaultSquashGid int
    The user squash GID for the default access rule. This user squash GID applies to all root users connecting from clients that are not matched by any of the access rules. If not set, the default is 0 (no GID squash).
    DefaultSquashUid int
    The user squash UID for the default access rule. This user squash UID applies to all root users connecting from clients that are not matched by any of the access rules. If not set, the default is 0 (no UID squash).
    DefaultSquashMode string
    The squash mode for the default access rule. Possible values: NO_SQUASH ROOT_SQUASH
    AccessRules []InstanceAccessRulesOptionsAccessRule
    The access rules for the instance. Structure is documented below.
    DefaultSquashGid int
    The user squash GID for the default access rule. This user squash GID applies to all root users connecting from clients that are not matched by any of the access rules. If not set, the default is 0 (no GID squash).
    DefaultSquashUid int
    The user squash UID for the default access rule. This user squash UID applies to all root users connecting from clients that are not matched by any of the access rules. If not set, the default is 0 (no UID squash).
    defaultSquashMode String
    The squash mode for the default access rule. Possible values: NO_SQUASH ROOT_SQUASH
    accessRules List<InstanceAccessRulesOptionsAccessRule>
    The access rules for the instance. Structure is documented below.
    defaultSquashGid Integer
    The user squash GID for the default access rule. This user squash GID applies to all root users connecting from clients that are not matched by any of the access rules. If not set, the default is 0 (no GID squash).
    defaultSquashUid Integer
    The user squash UID for the default access rule. This user squash UID applies to all root users connecting from clients that are not matched by any of the access rules. If not set, the default is 0 (no UID squash).
    defaultSquashMode string
    The squash mode for the default access rule. Possible values: NO_SQUASH ROOT_SQUASH
    accessRules InstanceAccessRulesOptionsAccessRule[]
    The access rules for the instance. Structure is documented below.
    defaultSquashGid number
    The user squash GID for the default access rule. This user squash GID applies to all root users connecting from clients that are not matched by any of the access rules. If not set, the default is 0 (no GID squash).
    defaultSquashUid number
    The user squash UID for the default access rule. This user squash UID applies to all root users connecting from clients that are not matched by any of the access rules. If not set, the default is 0 (no UID squash).
    default_squash_mode str
    The squash mode for the default access rule. Possible values: NO_SQUASH ROOT_SQUASH
    access_rules Sequence[InstanceAccessRulesOptionsAccessRule]
    The access rules for the instance. Structure is documented below.
    default_squash_gid int
    The user squash GID for the default access rule. This user squash GID applies to all root users connecting from clients that are not matched by any of the access rules. If not set, the default is 0 (no GID squash).
    default_squash_uid int
    The user squash UID for the default access rule. This user squash UID applies to all root users connecting from clients that are not matched by any of the access rules. If not set, the default is 0 (no UID squash).
    defaultSquashMode String
    The squash mode for the default access rule. Possible values: NO_SQUASH ROOT_SQUASH
    accessRules List<Property Map>
    The access rules for the instance. Structure is documented below.
    defaultSquashGid Number
    The user squash GID for the default access rule. This user squash GID applies to all root users connecting from clients that are not matched by any of the access rules. If not set, the default is 0 (no GID squash).
    defaultSquashUid Number
    The user squash UID for the default access rule. This user squash UID applies to all root users connecting from clients that are not matched by any of the access rules. If not set, the default is 0 (no UID squash).

    InstanceAccessRulesOptionsAccessRule, InstanceAccessRulesOptionsAccessRuleArgs

    IpAddressRanges List<string>
    The IP address ranges to which to apply this access rule. Accepts non-overlapping CIDR ranges (e.g., 192.168.1.0/24) and IP addresses (e.g., 192.168.1.0).
    Name string
    The name of the access rule policy group. Must be 16 characters or less and include only alphanumeric characters or '_'.
    SquashMode string
    Squash mode for the access rule. Possible values: NO_SQUASH ROOT_SQUASH
    IpAddressRanges []string
    The IP address ranges to which to apply this access rule. Accepts non-overlapping CIDR ranges (e.g., 192.168.1.0/24) and IP addresses (e.g., 192.168.1.0).
    Name string
    The name of the access rule policy group. Must be 16 characters or less and include only alphanumeric characters or '_'.
    SquashMode string
    Squash mode for the access rule. Possible values: NO_SQUASH ROOT_SQUASH
    ipAddressRanges List<String>
    The IP address ranges to which to apply this access rule. Accepts non-overlapping CIDR ranges (e.g., 192.168.1.0/24) and IP addresses (e.g., 192.168.1.0).
    name String
    The name of the access rule policy group. Must be 16 characters or less and include only alphanumeric characters or '_'.
    squashMode String
    Squash mode for the access rule. Possible values: NO_SQUASH ROOT_SQUASH
    ipAddressRanges string[]
    The IP address ranges to which to apply this access rule. Accepts non-overlapping CIDR ranges (e.g., 192.168.1.0/24) and IP addresses (e.g., 192.168.1.0).
    name string
    The name of the access rule policy group. Must be 16 characters or less and include only alphanumeric characters or '_'.
    squashMode string
    Squash mode for the access rule. Possible values: NO_SQUASH ROOT_SQUASH
    ip_address_ranges Sequence[str]
    The IP address ranges to which to apply this access rule. Accepts non-overlapping CIDR ranges (e.g., 192.168.1.0/24) and IP addresses (e.g., 192.168.1.0).
    name str
    The name of the access rule policy group. Must be 16 characters or less and include only alphanumeric characters or '_'.
    squash_mode str
    Squash mode for the access rule. Possible values: NO_SQUASH ROOT_SQUASH
    ipAddressRanges List<String>
    The IP address ranges to which to apply this access rule. Accepts non-overlapping CIDR ranges (e.g., 192.168.1.0/24) and IP addresses (e.g., 192.168.1.0).
    name String
    The name of the access rule policy group. Must be 16 characters or less and include only alphanumeric characters or '_'.
    squashMode String
    Squash mode for the access rule. Possible values: NO_SQUASH ROOT_SQUASH

    InstanceDynamicTierOptions, InstanceDynamicTierOptionsArgs

    Mode string
    The dynamic tier mode of the instance. Possible values: DISABLED DEFAULT_CACHE
    Mode string
    The dynamic tier mode of the instance. Possible values: DISABLED DEFAULT_CACHE
    mode String
    The dynamic tier mode of the instance. Possible values: DISABLED DEFAULT_CACHE
    mode string
    The dynamic tier mode of the instance. Possible values: DISABLED DEFAULT_CACHE
    mode str
    The dynamic tier mode of the instance. Possible values: DISABLED DEFAULT_CACHE
    mode String
    The dynamic tier mode of the instance. Possible values: DISABLED DEFAULT_CACHE

    InstanceMaintenancePolicy, InstanceMaintenancePolicyArgs

    WeeklyMaintenanceWindows InstanceMaintenancePolicyWeeklyMaintenanceWindows
    The weekly maintenance windows for the instance. Currently limited to 1 window. Structure is documented below.
    MaintenanceExclusionWindow InstanceMaintenancePolicyMaintenanceExclusionWindow
    The exclusion windows for the instance. Currently limited to 1 window. Structure is documented below.
    WeeklyMaintenanceWindows InstanceMaintenancePolicyWeeklyMaintenanceWindows
    The weekly maintenance windows for the instance. Currently limited to 1 window. Structure is documented below.
    MaintenanceExclusionWindow InstanceMaintenancePolicyMaintenanceExclusionWindow
    The exclusion windows for the instance. Currently limited to 1 window. Structure is documented below.
    weeklyMaintenanceWindows InstanceMaintenancePolicyWeeklyMaintenanceWindows
    The weekly maintenance windows for the instance. Currently limited to 1 window. Structure is documented below.
    maintenanceExclusionWindow InstanceMaintenancePolicyMaintenanceExclusionWindow
    The exclusion windows for the instance. Currently limited to 1 window. Structure is documented below.
    weeklyMaintenanceWindows InstanceMaintenancePolicyWeeklyMaintenanceWindows
    The weekly maintenance windows for the instance. Currently limited to 1 window. Structure is documented below.
    maintenanceExclusionWindow InstanceMaintenancePolicyMaintenanceExclusionWindow
    The exclusion windows for the instance. Currently limited to 1 window. Structure is documented below.
    weekly_maintenance_windows InstanceMaintenancePolicyWeeklyMaintenanceWindows
    The weekly maintenance windows for the instance. Currently limited to 1 window. Structure is documented below.
    maintenance_exclusion_window InstanceMaintenancePolicyMaintenanceExclusionWindow
    The exclusion windows for the instance. Currently limited to 1 window. Structure is documented below.
    weeklyMaintenanceWindows Property Map
    The weekly maintenance windows for the instance. Currently limited to 1 window. Structure is documented below.
    maintenanceExclusionWindow Property Map
    The exclusion windows for the instance. Currently limited to 1 window. Structure is documented below.

    InstanceMaintenancePolicyMaintenanceExclusionWindow, InstanceMaintenancePolicyMaintenanceExclusionWindowArgs

    EndDate InstanceMaintenancePolicyMaintenanceExclusionWindowEndDate
    Represents a whole or partial calendar date, such as a birthday. The time of day and time zone are either specified elsewhere or are insignificant. The date is relative to the Gregorian Calendar. This can represent one of the following:

    • A full date, with non-zero year, month, and day values.
    • A month and day, with a zero year (for example, an anniversary).
    • A year on its own, with a zero month and a zero day.
    • A year and month, with a zero day (for example, a credit card expiration date). Related types:
    • google.type.TimeOfDay
    • google.type.DateTime
    • google.protobuf.Timestamp Structure is documented below.
    StartDate InstanceMaintenancePolicyMaintenanceExclusionWindowStartDate
    Represents a whole or partial calendar date, such as a birthday. The time of day and time zone are either specified elsewhere or are insignificant. The date is relative to the Gregorian Calendar. This can represent one of the following:

    • A full date, with non-zero year, month, and day values.
    • A month and day, with a zero year (for example, an anniversary).
    • A year on its own, with a zero month and a zero day.
    • A year and month, with a zero day (for example, a credit card expiration date). Related types:
    • google.type.TimeOfDay
    • google.type.DateTime
    • google.protobuf.Timestamp Structure is documented below.
    Time InstanceMaintenancePolicyMaintenanceExclusionWindowTime
    Represents a time of day. The date and time zone are either not significant or are specified elsewhere. An API may choose to allow leap seconds. Related types are google.type.Date and google.protobuf.Timestamp. Structure is documented below.
    EndDate InstanceMaintenancePolicyMaintenanceExclusionWindowEndDate
    Represents a whole or partial calendar date, such as a birthday. The time of day and time zone are either specified elsewhere or are insignificant. The date is relative to the Gregorian Calendar. This can represent one of the following:

    • A full date, with non-zero year, month, and day values.
    • A month and day, with a zero year (for example, an anniversary).
    • A year on its own, with a zero month and a zero day.
    • A year and month, with a zero day (for example, a credit card expiration date). Related types:
    • google.type.TimeOfDay
    • google.type.DateTime
    • google.protobuf.Timestamp Structure is documented below.
    StartDate InstanceMaintenancePolicyMaintenanceExclusionWindowStartDate
    Represents a whole or partial calendar date, such as a birthday. The time of day and time zone are either specified elsewhere or are insignificant. The date is relative to the Gregorian Calendar. This can represent one of the following:

    • A full date, with non-zero year, month, and day values.
    • A month and day, with a zero year (for example, an anniversary).
    • A year on its own, with a zero month and a zero day.
    • A year and month, with a zero day (for example, a credit card expiration date). Related types:
    • google.type.TimeOfDay
    • google.type.DateTime
    • google.protobuf.Timestamp Structure is documented below.
    Time InstanceMaintenancePolicyMaintenanceExclusionWindowTime
    Represents a time of day. The date and time zone are either not significant or are specified elsewhere. An API may choose to allow leap seconds. Related types are google.type.Date and google.protobuf.Timestamp. Structure is documented below.
    endDate InstanceMaintenancePolicyMaintenanceExclusionWindowEndDate
    Represents a whole or partial calendar date, such as a birthday. The time of day and time zone are either specified elsewhere or are insignificant. The date is relative to the Gregorian Calendar. This can represent one of the following:

    • A full date, with non-zero year, month, and day values.
    • A month and day, with a zero year (for example, an anniversary).
    • A year on its own, with a zero month and a zero day.
    • A year and month, with a zero day (for example, a credit card expiration date). Related types:
    • google.type.TimeOfDay
    • google.type.DateTime
    • google.protobuf.Timestamp Structure is documented below.
    startDate InstanceMaintenancePolicyMaintenanceExclusionWindowStartDate
    Represents a whole or partial calendar date, such as a birthday. The time of day and time zone are either specified elsewhere or are insignificant. The date is relative to the Gregorian Calendar. This can represent one of the following:

    • A full date, with non-zero year, month, and day values.
    • A month and day, with a zero year (for example, an anniversary).
    • A year on its own, with a zero month and a zero day.
    • A year and month, with a zero day (for example, a credit card expiration date). Related types:
    • google.type.TimeOfDay
    • google.type.DateTime
    • google.protobuf.Timestamp Structure is documented below.
    time InstanceMaintenancePolicyMaintenanceExclusionWindowTime
    Represents a time of day. The date and time zone are either not significant or are specified elsewhere. An API may choose to allow leap seconds. Related types are google.type.Date and google.protobuf.Timestamp. Structure is documented below.
    endDate InstanceMaintenancePolicyMaintenanceExclusionWindowEndDate
    Represents a whole or partial calendar date, such as a birthday. The time of day and time zone are either specified elsewhere or are insignificant. The date is relative to the Gregorian Calendar. This can represent one of the following:

    • A full date, with non-zero year, month, and day values.
    • A month and day, with a zero year (for example, an anniversary).
    • A year on its own, with a zero month and a zero day.
    • A year and month, with a zero day (for example, a credit card expiration date). Related types:
    • google.type.TimeOfDay
    • google.type.DateTime
    • google.protobuf.Timestamp Structure is documented below.
    startDate InstanceMaintenancePolicyMaintenanceExclusionWindowStartDate
    Represents a whole or partial calendar date, such as a birthday. The time of day and time zone are either specified elsewhere or are insignificant. The date is relative to the Gregorian Calendar. This can represent one of the following:

    • A full date, with non-zero year, month, and day values.
    • A month and day, with a zero year (for example, an anniversary).
    • A year on its own, with a zero month and a zero day.
    • A year and month, with a zero day (for example, a credit card expiration date). Related types:
    • google.type.TimeOfDay
    • google.type.DateTime
    • google.protobuf.Timestamp Structure is documented below.
    time InstanceMaintenancePolicyMaintenanceExclusionWindowTime
    Represents a time of day. The date and time zone are either not significant or are specified elsewhere. An API may choose to allow leap seconds. Related types are google.type.Date and google.protobuf.Timestamp. Structure is documented below.
    end_date InstanceMaintenancePolicyMaintenanceExclusionWindowEndDate
    Represents a whole or partial calendar date, such as a birthday. The time of day and time zone are either specified elsewhere or are insignificant. The date is relative to the Gregorian Calendar. This can represent one of the following:

    • A full date, with non-zero year, month, and day values.
    • A month and day, with a zero year (for example, an anniversary).
    • A year on its own, with a zero month and a zero day.
    • A year and month, with a zero day (for example, a credit card expiration date). Related types:
    • google.type.TimeOfDay
    • google.type.DateTime
    • google.protobuf.Timestamp Structure is documented below.
    start_date InstanceMaintenancePolicyMaintenanceExclusionWindowStartDate
    Represents a whole or partial calendar date, such as a birthday. The time of day and time zone are either specified elsewhere or are insignificant. The date is relative to the Gregorian Calendar. This can represent one of the following:

    • A full date, with non-zero year, month, and day values.
    • A month and day, with a zero year (for example, an anniversary).
    • A year on its own, with a zero month and a zero day.
    • A year and month, with a zero day (for example, a credit card expiration date). Related types:
    • google.type.TimeOfDay
    • google.type.DateTime
    • google.protobuf.Timestamp Structure is documented below.
    time InstanceMaintenancePolicyMaintenanceExclusionWindowTime
    Represents a time of day. The date and time zone are either not significant or are specified elsewhere. An API may choose to allow leap seconds. Related types are google.type.Date and google.protobuf.Timestamp. Structure is documented below.
    endDate Property Map
    Represents a whole or partial calendar date, such as a birthday. The time of day and time zone are either specified elsewhere or are insignificant. The date is relative to the Gregorian Calendar. This can represent one of the following:

    • A full date, with non-zero year, month, and day values.
    • A month and day, with a zero year (for example, an anniversary).
    • A year on its own, with a zero month and a zero day.
    • A year and month, with a zero day (for example, a credit card expiration date). Related types:
    • google.type.TimeOfDay
    • google.type.DateTime
    • google.protobuf.Timestamp Structure is documented below.
    startDate Property Map
    Represents a whole or partial calendar date, such as a birthday. The time of day and time zone are either specified elsewhere or are insignificant. The date is relative to the Gregorian Calendar. This can represent one of the following:

    • A full date, with non-zero year, month, and day values.
    • A month and day, with a zero year (for example, an anniversary).
    • A year on its own, with a zero month and a zero day.
    • A year and month, with a zero day (for example, a credit card expiration date). Related types:
    • google.type.TimeOfDay
    • google.type.DateTime
    • google.protobuf.Timestamp Structure is documented below.
    time Property Map
    Represents a time of day. The date and time zone are either not significant or are specified elsewhere. An API may choose to allow leap seconds. Related types are google.type.Date and google.protobuf.Timestamp. Structure is documented below.

    InstanceMaintenancePolicyMaintenanceExclusionWindowEndDate, InstanceMaintenancePolicyMaintenanceExclusionWindowEndDateArgs

    Day int
    Day of a month. Must be from 1 to 31 and valid for the year and month, or 0 to specify a year by itself or a year and month where the day isn't significant.
    Month int
    Month of a year. Must be from 1 to 12, or 0 to specify a year without a month and day.
    Year int
    Year of the date. Must be from 1 to 9999, or 0 to specify a date without a year.
    Day int
    Day of a month. Must be from 1 to 31 and valid for the year and month, or 0 to specify a year by itself or a year and month where the day isn't significant.
    Month int
    Month of a year. Must be from 1 to 12, or 0 to specify a year without a month and day.
    Year int
    Year of the date. Must be from 1 to 9999, or 0 to specify a date without a year.
    day Integer
    Day of a month. Must be from 1 to 31 and valid for the year and month, or 0 to specify a year by itself or a year and month where the day isn't significant.
    month Integer
    Month of a year. Must be from 1 to 12, or 0 to specify a year without a month and day.
    year Integer
    Year of the date. Must be from 1 to 9999, or 0 to specify a date without a year.
    day number
    Day of a month. Must be from 1 to 31 and valid for the year and month, or 0 to specify a year by itself or a year and month where the day isn't significant.
    month number
    Month of a year. Must be from 1 to 12, or 0 to specify a year without a month and day.
    year number
    Year of the date. Must be from 1 to 9999, or 0 to specify a date without a year.
    day int
    Day of a month. Must be from 1 to 31 and valid for the year and month, or 0 to specify a year by itself or a year and month where the day isn't significant.
    month int
    Month of a year. Must be from 1 to 12, or 0 to specify a year without a month and day.
    year int
    Year of the date. Must be from 1 to 9999, or 0 to specify a date without a year.
    day Number
    Day of a month. Must be from 1 to 31 and valid for the year and month, or 0 to specify a year by itself or a year and month where the day isn't significant.
    month Number
    Month of a year. Must be from 1 to 12, or 0 to specify a year without a month and day.
    year Number
    Year of the date. Must be from 1 to 9999, or 0 to specify a date without a year.

    InstanceMaintenancePolicyMaintenanceExclusionWindowStartDate, InstanceMaintenancePolicyMaintenanceExclusionWindowStartDateArgs

    Day int
    Day of a month. Must be from 1 to 31 and valid for the year and month, or 0 to specify a year by itself or a year and month where the day isn't significant.
    Month int
    Month of a year. Must be from 1 to 12, or 0 to specify a year without a month and day.
    Year int
    Year of the date. Must be from 1 to 9999, or 0 to specify a date without a year.
    Day int
    Day of a month. Must be from 1 to 31 and valid for the year and month, or 0 to specify a year by itself or a year and month where the day isn't significant.
    Month int
    Month of a year. Must be from 1 to 12, or 0 to specify a year without a month and day.
    Year int
    Year of the date. Must be from 1 to 9999, or 0 to specify a date without a year.
    day Integer
    Day of a month. Must be from 1 to 31 and valid for the year and month, or 0 to specify a year by itself or a year and month where the day isn't significant.
    month Integer
    Month of a year. Must be from 1 to 12, or 0 to specify a year without a month and day.
    year Integer
    Year of the date. Must be from 1 to 9999, or 0 to specify a date without a year.
    day number
    Day of a month. Must be from 1 to 31 and valid for the year and month, or 0 to specify a year by itself or a year and month where the day isn't significant.
    month number
    Month of a year. Must be from 1 to 12, or 0 to specify a year without a month and day.
    year number
    Year of the date. Must be from 1 to 9999, or 0 to specify a date without a year.
    day int
    Day of a month. Must be from 1 to 31 and valid for the year and month, or 0 to specify a year by itself or a year and month where the day isn't significant.
    month int
    Month of a year. Must be from 1 to 12, or 0 to specify a year without a month and day.
    year int
    Year of the date. Must be from 1 to 9999, or 0 to specify a date without a year.
    day Number
    Day of a month. Must be from 1 to 31 and valid for the year and month, or 0 to specify a year by itself or a year and month where the day isn't significant.
    month Number
    Month of a year. Must be from 1 to 12, or 0 to specify a year without a month and day.
    year Number
    Year of the date. Must be from 1 to 9999, or 0 to specify a date without a year.

    InstanceMaintenancePolicyMaintenanceExclusionWindowTime, InstanceMaintenancePolicyMaintenanceExclusionWindowTimeArgs

    Hours int
    Hours of a day in 24 hour format. Must be greater than or equal to 0 and typically must be less than or equal to 23. An API may choose to allow the value "24:00:00" for scenarios like business closing time.
    Minutes int
    Minutes of an hour. Must be greater than or equal to 0 and less than or equal to 59.
    Nanos int
    Fractions of seconds, in nanoseconds. Must be greater than or equal to 0 and less than or equal to 999,999,999.
    Seconds int
    Seconds of a minute. Must be greater than or equal to 0 and typically must be less than or equal to 59. An API may allow the value 60 if it allows leap-seconds.
    Hours int
    Hours of a day in 24 hour format. Must be greater than or equal to 0 and typically must be less than or equal to 23. An API may choose to allow the value "24:00:00" for scenarios like business closing time.
    Minutes int
    Minutes of an hour. Must be greater than or equal to 0 and less than or equal to 59.
    Nanos int
    Fractions of seconds, in nanoseconds. Must be greater than or equal to 0 and less than or equal to 999,999,999.
    Seconds int
    Seconds of a minute. Must be greater than or equal to 0 and typically must be less than or equal to 59. An API may allow the value 60 if it allows leap-seconds.
    hours Integer
    Hours of a day in 24 hour format. Must be greater than or equal to 0 and typically must be less than or equal to 23. An API may choose to allow the value "24:00:00" for scenarios like business closing time.
    minutes Integer
    Minutes of an hour. Must be greater than or equal to 0 and less than or equal to 59.
    nanos Integer
    Fractions of seconds, in nanoseconds. Must be greater than or equal to 0 and less than or equal to 999,999,999.
    seconds Integer
    Seconds of a minute. Must be greater than or equal to 0 and typically must be less than or equal to 59. An API may allow the value 60 if it allows leap-seconds.
    hours number
    Hours of a day in 24 hour format. Must be greater than or equal to 0 and typically must be less than or equal to 23. An API may choose to allow the value "24:00:00" for scenarios like business closing time.
    minutes number
    Minutes of an hour. Must be greater than or equal to 0 and less than or equal to 59.
    nanos number
    Fractions of seconds, in nanoseconds. Must be greater than or equal to 0 and less than or equal to 999,999,999.
    seconds number
    Seconds of a minute. Must be greater than or equal to 0 and typically must be less than or equal to 59. An API may allow the value 60 if it allows leap-seconds.
    hours int
    Hours of a day in 24 hour format. Must be greater than or equal to 0 and typically must be less than or equal to 23. An API may choose to allow the value "24:00:00" for scenarios like business closing time.
    minutes int
    Minutes of an hour. Must be greater than or equal to 0 and less than or equal to 59.
    nanos int
    Fractions of seconds, in nanoseconds. Must be greater than or equal to 0 and less than or equal to 999,999,999.
    seconds int
    Seconds of a minute. Must be greater than or equal to 0 and typically must be less than or equal to 59. An API may allow the value 60 if it allows leap-seconds.
    hours Number
    Hours of a day in 24 hour format. Must be greater than or equal to 0 and typically must be less than or equal to 23. An API may choose to allow the value "24:00:00" for scenarios like business closing time.
    minutes Number
    Minutes of an hour. Must be greater than or equal to 0 and less than or equal to 59.
    nanos Number
    Fractions of seconds, in nanoseconds. Must be greater than or equal to 0 and less than or equal to 999,999,999.
    seconds Number
    Seconds of a minute. Must be greater than or equal to 0 and typically must be less than or equal to 59. An API may allow the value 60 if it allows leap-seconds.

    InstanceMaintenancePolicyWeeklyMaintenanceWindows, InstanceMaintenancePolicyWeeklyMaintenanceWindowsArgs

    DayOfWeek string
    Possible values: MONDAY TUESDAY WEDNESDAY THURSDAY FRIDAY SATURDAY SUNDAY
    StartTime InstanceMaintenancePolicyWeeklyMaintenanceWindowsStartTime
    Represents a time of day. The date and time zone are either not significant or are specified elsewhere. An API may choose to allow leap seconds. Related types are google.type.Date and google.protobuf.Timestamp. Structure is documented below.
    DayOfWeek string
    Possible values: MONDAY TUESDAY WEDNESDAY THURSDAY FRIDAY SATURDAY SUNDAY
    StartTime InstanceMaintenancePolicyWeeklyMaintenanceWindowsStartTime
    Represents a time of day. The date and time zone are either not significant or are specified elsewhere. An API may choose to allow leap seconds. Related types are google.type.Date and google.protobuf.Timestamp. Structure is documented below.
    dayOfWeek String
    Possible values: MONDAY TUESDAY WEDNESDAY THURSDAY FRIDAY SATURDAY SUNDAY
    startTime InstanceMaintenancePolicyWeeklyMaintenanceWindowsStartTime
    Represents a time of day. The date and time zone are either not significant or are specified elsewhere. An API may choose to allow leap seconds. Related types are google.type.Date and google.protobuf.Timestamp. Structure is documented below.
    dayOfWeek string
    Possible values: MONDAY TUESDAY WEDNESDAY THURSDAY FRIDAY SATURDAY SUNDAY
    startTime InstanceMaintenancePolicyWeeklyMaintenanceWindowsStartTime
    Represents a time of day. The date and time zone are either not significant or are specified elsewhere. An API may choose to allow leap seconds. Related types are google.type.Date and google.protobuf.Timestamp. Structure is documented below.
    day_of_week str
    Possible values: MONDAY TUESDAY WEDNESDAY THURSDAY FRIDAY SATURDAY SUNDAY
    start_time InstanceMaintenancePolicyWeeklyMaintenanceWindowsStartTime
    Represents a time of day. The date and time zone are either not significant or are specified elsewhere. An API may choose to allow leap seconds. Related types are google.type.Date and google.protobuf.Timestamp. Structure is documented below.
    dayOfWeek String
    Possible values: MONDAY TUESDAY WEDNESDAY THURSDAY FRIDAY SATURDAY SUNDAY
    startTime Property Map
    Represents a time of day. The date and time zone are either not significant or are specified elsewhere. An API may choose to allow leap seconds. Related types are google.type.Date and google.protobuf.Timestamp. Structure is documented below.

    InstanceMaintenancePolicyWeeklyMaintenanceWindowsStartTime, InstanceMaintenancePolicyWeeklyMaintenanceWindowsStartTimeArgs

    Hours int
    Hours of a day in 24 hour format. Must be greater than or equal to 0 and typically must be less than or equal to 23. An API may choose to allow the value "24:00:00" for scenarios like business closing time.
    Minutes int
    Minutes of an hour. Must be greater than or equal to 0 and less than or equal to 59.
    Nanos int
    Fractions of seconds, in nanoseconds. Must be greater than or equal to 0 and less than or equal to 999,999,999.
    Seconds int
    Seconds of a minute. Must be greater than or equal to 0 and typically must be less than or equal to 59. An API may allow the value 60 if it allows leap-seconds.
    Hours int
    Hours of a day in 24 hour format. Must be greater than or equal to 0 and typically must be less than or equal to 23. An API may choose to allow the value "24:00:00" for scenarios like business closing time.
    Minutes int
    Minutes of an hour. Must be greater than or equal to 0 and less than or equal to 59.
    Nanos int
    Fractions of seconds, in nanoseconds. Must be greater than or equal to 0 and less than or equal to 999,999,999.
    Seconds int
    Seconds of a minute. Must be greater than or equal to 0 and typically must be less than or equal to 59. An API may allow the value 60 if it allows leap-seconds.
    hours Integer
    Hours of a day in 24 hour format. Must be greater than or equal to 0 and typically must be less than or equal to 23. An API may choose to allow the value "24:00:00" for scenarios like business closing time.
    minutes Integer
    Minutes of an hour. Must be greater than or equal to 0 and less than or equal to 59.
    nanos Integer
    Fractions of seconds, in nanoseconds. Must be greater than or equal to 0 and less than or equal to 999,999,999.
    seconds Integer
    Seconds of a minute. Must be greater than or equal to 0 and typically must be less than or equal to 59. An API may allow the value 60 if it allows leap-seconds.
    hours number
    Hours of a day in 24 hour format. Must be greater than or equal to 0 and typically must be less than or equal to 23. An API may choose to allow the value "24:00:00" for scenarios like business closing time.
    minutes number
    Minutes of an hour. Must be greater than or equal to 0 and less than or equal to 59.
    nanos number
    Fractions of seconds, in nanoseconds. Must be greater than or equal to 0 and less than or equal to 999,999,999.
    seconds number
    Seconds of a minute. Must be greater than or equal to 0 and typically must be less than or equal to 59. An API may allow the value 60 if it allows leap-seconds.
    hours int
    Hours of a day in 24 hour format. Must be greater than or equal to 0 and typically must be less than or equal to 23. An API may choose to allow the value "24:00:00" for scenarios like business closing time.
    minutes int
    Minutes of an hour. Must be greater than or equal to 0 and less than or equal to 59.
    nanos int
    Fractions of seconds, in nanoseconds. Must be greater than or equal to 0 and less than or equal to 999,999,999.
    seconds int
    Seconds of a minute. Must be greater than or equal to 0 and typically must be less than or equal to 59. An API may allow the value 60 if it allows leap-seconds.
    hours Number
    Hours of a day in 24 hour format. Must be greater than or equal to 0 and typically must be less than or equal to 23. An API may choose to allow the value "24:00:00" for scenarios like business closing time.
    minutes Number
    Minutes of an hour. Must be greater than or equal to 0 and less than or equal to 59.
    nanos Number
    Fractions of seconds, in nanoseconds. Must be greater than or equal to 0 and less than or equal to 999,999,999.
    seconds Number
    Seconds of a minute. Must be greater than or equal to 0 and typically must be less than or equal to 59. An API may allow the value 60 if it allows leap-seconds.

    InstanceUpcomingMaintenanceSchedule, InstanceUpcomingMaintenanceScheduleArgs

    EndTime string
    (Output) The scheduled end time for the maintenance.
    StartTime string
    (Output) The scheduled start time for the maintenance.
    EndTime string
    (Output) The scheduled end time for the maintenance.
    StartTime string
    (Output) The scheduled start time for the maintenance.
    endTime String
    (Output) The scheduled end time for the maintenance.
    startTime String
    (Output) The scheduled start time for the maintenance.
    endTime string
    (Output) The scheduled end time for the maintenance.
    startTime string
    (Output) The scheduled start time for the maintenance.
    end_time str
    (Output) The scheduled end time for the maintenance.
    start_time str
    (Output) The scheduled start time for the maintenance.
    endTime String
    (Output) The scheduled end time for the maintenance.
    startTime String
    (Output) The scheduled start time for the maintenance.

    Import

    Instance can be imported using any of these accepted formats:

    • projects/{{project}}/locations/{{location}}/instances/{{instance_id}}
    • {{project}}/{{location}}/{{instance_id}}
    • {{location}}/{{instance_id}}

    When using the pulumi import command, Instance can be imported using one of the formats above. For example:

    $ pulumi import gcp:lustre/instance:Instance default projects/{{project}}/locations/{{location}}/instances/{{instance_id}}
    $ pulumi import gcp:lustre/instance:Instance default {{project}}/{{location}}/{{instance_id}}
    $ pulumi import gcp:lustre/instance:Instance default {{location}}/{{instance_id}}
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    Google Cloud (GCP) Classic pulumi/pulumi-gcp
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the google-beta Terraform Provider.
    gcp logo
    Viewing docs for Google Cloud v9.22.0
    published on Friday, May 1, 2026 by Pulumi
      Try Pulumi Cloud free. Your team will thank you.