published on Friday, May 1, 2026 by Pulumi
published on Friday, May 1, 2026 by Pulumi
A Managed Lustre instance
To get more information about Instance, see:
- API documentation
- How-to Guides
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:
- Capacity
Gib string - The storage capacity of the instance in gibibytes (GiB). Allowed values
are from
9000to7632000, depending on theperUnitStorageThroughput. 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.
- Instance
Id 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}. - Access
Rules InstanceOptions Access Rules Options - 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.
- Dynamic
Tier InstanceOptions Dynamic Tier Options - Dynamic tier options for a Managed Lustre instance. Structure is documented below.
- Gke
Support boolEnabled - Indicates whether you want to enable support for GKE clients. By default, GKE clients are not supported.
- Kms
Key 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
effectiveLabelsfor all of the labels present on the resource. - Maintenance
Policy InstanceMaintenance Policy - Defines a maintenance policy for a resource. Structure is documented below.
- Per
Unit stringStorage Throughput - 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 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 string - The storage capacity of the instance in gibibytes (GiB). Allowed values
are from
9000to7632000, depending on theperUnitStorageThroughput. 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.
- Instance
Id 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}. - Access
Rules InstanceOptions Access Rules Options Args - 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.
- Dynamic
Tier InstanceOptions Dynamic Tier Options Args - Dynamic tier options for a Managed Lustre instance. Structure is documented below.
- Gke
Support boolEnabled - Indicates whether you want to enable support for GKE clients. By default, GKE clients are not supported.
- Kms
Key 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
effectiveLabelsfor all of the labels present on the resource. - Maintenance
Policy InstanceMaintenance Policy Args - Defines a maintenance policy for a resource. Structure is documented below.
- Per
Unit stringStorage Throughput - 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 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 String - The storage capacity of the instance in gibibytes (GiB). Allowed values
are from
9000to7632000, depending on theperUnitStorageThroughput. 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.
- instance
Id 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}. - access
Rules InstanceOptions Access Rules Options - 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.
- dynamic
Tier InstanceOptions Dynamic Tier Options - Dynamic tier options for a Managed Lustre instance. Structure is documented below.
- gke
Support BooleanEnabled - Indicates whether you want to enable support for GKE clients. By default, GKE clients are not supported.
- kms
Key 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
effectiveLabelsfor all of the labels present on the resource. - maintenance
Policy InstanceMaintenance Policy - Defines a maintenance policy for a resource. Structure is documented below.
- per
Unit StringStorage Throughput - 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 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 string - The storage capacity of the instance in gibibytes (GiB). Allowed values
are from
9000to7632000, depending on theperUnitStorageThroughput. 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.
- instance
Id 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}. - access
Rules InstanceOptions Access Rules Options - 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.
- dynamic
Tier InstanceOptions Dynamic Tier Options - Dynamic tier options for a Managed Lustre instance. Structure is documented below.
- gke
Support booleanEnabled - Indicates whether you want to enable support for GKE clients. By default, GKE clients are not supported.
- kms
Key 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
effectiveLabelsfor all of the labels present on the resource. - maintenance
Policy InstanceMaintenance Policy - Defines a maintenance policy for a resource. Structure is documented below.
- per
Unit stringStorage Throughput - 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 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
9000to7632000, depending on theperUnitStorageThroughput. 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_ Instanceoptions Access Rules Options Args - 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_ Instanceoptions Dynamic Tier Options Args - Dynamic tier options for a Managed Lustre instance. Structure is documented below.
- gke_
support_ boolenabled - 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
effectiveLabelsfor all of the labels present on the resource. - maintenance_
policy InstanceMaintenance Policy Args - Defines a maintenance policy for a resource. Structure is documented below.
- per_
unit_ strstorage_ throughput - 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.
- capacity
Gib String - The storage capacity of the instance in gibibytes (GiB). Allowed values
are from
9000to7632000, depending on theperUnitStorageThroughput. 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.
- instance
Id 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}. - access
Rules Property MapOptions - 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.
- dynamic
Tier Property MapOptions - Dynamic tier options for a Managed Lustre instance. Structure is documented below.
- gke
Support BooleanEnabled - Indicates whether you want to enable support for GKE clients. By default, GKE clients are not supported.
- kms
Key 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
effectiveLabelsfor all of the labels present on the resource. - maintenance
Policy Property Map - Defines a maintenance policy for a resource. Structure is documented below.
- per
Unit StringStorage Throughput - 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 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:
- Create
Time string - Timestamp when the instance was created.
- Effective
Labels 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.
- Mount
Point string - Mount point of the instance in the format
IP_ADDRESS@tcp:/FILESYSTEM. - Name string
- Identifier. The name of the instance.
- Pulumi
Labels 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
- State
Reason 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.
- Upcoming
Maintenance List<InstanceSchedules Upcoming Maintenance Schedule> - Represents a scheduled maintenance event. Structure is documented below.
- Update
Time string - Timestamp when the instance was last updated.
- Create
Time string - Timestamp when the instance was created.
- Effective
Labels 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.
- Mount
Point string - Mount point of the instance in the format
IP_ADDRESS@tcp:/FILESYSTEM. - Name string
- Identifier. The name of the instance.
- Pulumi
Labels 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
- State
Reason 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.
- Upcoming
Maintenance []InstanceSchedules Upcoming Maintenance Schedule - Represents a scheduled maintenance event. Structure is documented below.
- Update
Time string - Timestamp when the instance was last updated.
- create
Time String - Timestamp when the instance was created.
- effective
Labels 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.
- mount
Point String - Mount point of the instance in the format
IP_ADDRESS@tcp:/FILESYSTEM. - name String
- Identifier. The name of the instance.
- pulumi
Labels 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
- state
Reason 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.
- upcoming
Maintenance List<InstanceSchedules Upcoming Maintenance Schedule> - Represents a scheduled maintenance event. Structure is documented below.
- update
Time String - Timestamp when the instance was last updated.
- create
Time string - Timestamp when the instance was created.
- effective
Labels {[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.
- mount
Point string - Mount point of the instance in the format
IP_ADDRESS@tcp:/FILESYSTEM. - name string
- Identifier. The name of the instance.
- pulumi
Labels {[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
- state
Reason 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.
- upcoming
Maintenance InstanceSchedules Upcoming Maintenance Schedule[] - Represents a scheduled maintenance event. Structure is documented below.
- update
Time 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_ Sequence[Instanceschedules Upcoming Maintenance Schedule] - Represents a scheduled maintenance event. Structure is documented below.
- update_
time str - Timestamp when the instance was last updated.
- create
Time String - Timestamp when the instance was created.
- effective
Labels 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.
- mount
Point String - Mount point of the instance in the format
IP_ADDRESS@tcp:/FILESYSTEM. - name String
- Identifier. The name of the instance.
- pulumi
Labels 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
- state
Reason 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.
- upcoming
Maintenance List<Property Map>Schedules - Represents a scheduled maintenance event. Structure is documented below.
- update
Time 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) -> Instancefunc 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.
- Access
Rules InstanceOptions Access Rules Options - IP-based access rules for the Managed Lustre instance. These options define the root user squash configuration. Structure is documented below.
- Capacity
Gib string - The storage capacity of the instance in gibibytes (GiB). Allowed values
are from
9000to7632000, depending on theperUnitStorageThroughput. See Performance tiers and maximum storage capacities for specific minimums, maximums, and step sizes for each performance tier. - Create
Time string - Timestamp when the instance was created.
- Description string
- A user-readable description of the instance.
- Dynamic
Tier InstanceOptions Dynamic Tier Options - Dynamic tier options for a Managed Lustre instance. Structure is documented below.
- Effective
Labels 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.
- Gke
Support boolEnabled - Indicates whether you want to enable support for GKE clients. By default, GKE clients are not supported.
- Instance
Id 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.
- Kms
Key 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
effectiveLabelsfor 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. - Maintenance
Policy InstanceMaintenance Policy - Defines a maintenance policy for a resource. Structure is documented below.
- Mount
Point 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}. - Per
Unit stringStorage Throughput - 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 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.
- Pulumi
Labels 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
- State
Reason 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.
- Upcoming
Maintenance List<InstanceSchedules Upcoming Maintenance Schedule> - Represents a scheduled maintenance event. Structure is documented below.
- Update
Time string - Timestamp when the instance was last updated.
- Access
Rules InstanceOptions Access Rules Options Args - IP-based access rules for the Managed Lustre instance. These options define the root user squash configuration. Structure is documented below.
- Capacity
Gib string - The storage capacity of the instance in gibibytes (GiB). Allowed values
are from
9000to7632000, depending on theperUnitStorageThroughput. See Performance tiers and maximum storage capacities for specific minimums, maximums, and step sizes for each performance tier. - Create
Time string - Timestamp when the instance was created.
- Description string
- A user-readable description of the instance.
- Dynamic
Tier InstanceOptions Dynamic Tier Options Args - Dynamic tier options for a Managed Lustre instance. Structure is documented below.
- Effective
Labels 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.
- Gke
Support boolEnabled - Indicates whether you want to enable support for GKE clients. By default, GKE clients are not supported.
- Instance
Id 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.
- Kms
Key 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
effectiveLabelsfor 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. - Maintenance
Policy InstanceMaintenance Policy Args - Defines a maintenance policy for a resource. Structure is documented below.
- Mount
Point 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}. - Per
Unit stringStorage Throughput - 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 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.
- Pulumi
Labels 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
- State
Reason 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.
- Upcoming
Maintenance []InstanceSchedules Upcoming Maintenance Schedule Args - Represents a scheduled maintenance event. Structure is documented below.
- Update
Time string - Timestamp when the instance was last updated.
- access
Rules InstanceOptions Access Rules Options - IP-based access rules for the Managed Lustre instance. These options define the root user squash configuration. Structure is documented below.
- capacity
Gib String - The storage capacity of the instance in gibibytes (GiB). Allowed values
are from
9000to7632000, depending on theperUnitStorageThroughput. See Performance tiers and maximum storage capacities for specific minimums, maximums, and step sizes for each performance tier. - create
Time String - Timestamp when the instance was created.
- description String
- A user-readable description of the instance.
- dynamic
Tier InstanceOptions Dynamic Tier Options - Dynamic tier options for a Managed Lustre instance. Structure is documented below.
- effective
Labels 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.
- gke
Support BooleanEnabled - Indicates whether you want to enable support for GKE clients. By default, GKE clients are not supported.
- instance
Id 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.
- kms
Key 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
effectiveLabelsfor 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. - maintenance
Policy InstanceMaintenance Policy - Defines a maintenance policy for a resource. Structure is documented below.
- mount
Point 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}. - per
Unit StringStorage Throughput - 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 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.
- pulumi
Labels 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
- state
Reason 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.
- upcoming
Maintenance List<InstanceSchedules Upcoming Maintenance Schedule> - Represents a scheduled maintenance event. Structure is documented below.
- update
Time String - Timestamp when the instance was last updated.
- access
Rules InstanceOptions Access Rules Options - IP-based access rules for the Managed Lustre instance. These options define the root user squash configuration. Structure is documented below.
- capacity
Gib string - The storage capacity of the instance in gibibytes (GiB). Allowed values
are from
9000to7632000, depending on theperUnitStorageThroughput. See Performance tiers and maximum storage capacities for specific minimums, maximums, and step sizes for each performance tier. - create
Time string - Timestamp when the instance was created.
- description string
- A user-readable description of the instance.
- dynamic
Tier InstanceOptions Dynamic Tier Options - Dynamic tier options for a Managed Lustre instance. Structure is documented below.
- effective
Labels {[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.
- gke
Support booleanEnabled - Indicates whether you want to enable support for GKE clients. By default, GKE clients are not supported.
- instance
Id 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.
- kms
Key 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
effectiveLabelsfor 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. - maintenance
Policy InstanceMaintenance Policy - Defines a maintenance policy for a resource. Structure is documented below.
- mount
Point 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}. - per
Unit stringStorage Throughput - 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 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.
- pulumi
Labels {[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
- state
Reason 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.
- upcoming
Maintenance InstanceSchedules Upcoming Maintenance Schedule[] - Represents a scheduled maintenance event. Structure is documented below.
- update
Time string - Timestamp when the instance was last updated.
- access_
rules_ Instanceoptions Access Rules Options Args - 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
9000to7632000, depending on theperUnitStorageThroughput. 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_ Instanceoptions Dynamic Tier Options Args - 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_ boolenabled - 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
effectiveLabelsfor 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 InstanceMaintenance Policy Args - 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_ strstorage_ throughput - 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_ Sequence[Instanceschedules Upcoming Maintenance Schedule Args] - Represents a scheduled maintenance event. Structure is documented below.
- update_
time str - Timestamp when the instance was last updated.
- access
Rules Property MapOptions - IP-based access rules for the Managed Lustre instance. These options define the root user squash configuration. Structure is documented below.
- capacity
Gib String - The storage capacity of the instance in gibibytes (GiB). Allowed values
are from
9000to7632000, depending on theperUnitStorageThroughput. See Performance tiers and maximum storage capacities for specific minimums, maximums, and step sizes for each performance tier. - create
Time String - Timestamp when the instance was created.
- description String
- A user-readable description of the instance.
- dynamic
Tier Property MapOptions - Dynamic tier options for a Managed Lustre instance. Structure is documented below.
- effective
Labels 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.
- gke
Support BooleanEnabled - Indicates whether you want to enable support for GKE clients. By default, GKE clients are not supported.
- instance
Id 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.
- kms
Key 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
effectiveLabelsfor 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. - maintenance
Policy Property Map - Defines a maintenance policy for a resource. Structure is documented below.
- mount
Point 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}. - per
Unit StringStorage Throughput - 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 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.
- pulumi
Labels 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
- state
Reason 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.
- upcoming
Maintenance List<Property Map>Schedules - Represents a scheduled maintenance event. Structure is documented below.
- update
Time String - Timestamp when the instance was last updated.
Supporting Types
InstanceAccessRulesOptions, InstanceAccessRulesOptionsArgs
- Default
Squash stringMode - The squash mode for the default access rule. Possible values: NO_SQUASH ROOT_SQUASH
- Access
Rules List<InstanceAccess Rules Options Access Rule> - The access rules for the instance. Structure is documented below.
- Default
Squash intGid - 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 intUid - 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 stringMode - The squash mode for the default access rule. Possible values: NO_SQUASH ROOT_SQUASH
- Access
Rules []InstanceAccess Rules Options Access Rule - The access rules for the instance. Structure is documented below.
- Default
Squash intGid - 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 intUid - 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 StringMode - The squash mode for the default access rule. Possible values: NO_SQUASH ROOT_SQUASH
- access
Rules List<InstanceAccess Rules Options Access Rule> - The access rules for the instance. Structure is documented below.
- default
Squash IntegerGid - 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 IntegerUid - 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 stringMode - The squash mode for the default access rule. Possible values: NO_SQUASH ROOT_SQUASH
- access
Rules InstanceAccess Rules Options Access Rule[] - The access rules for the instance. Structure is documented below.
- default
Squash numberGid - 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 numberUid - 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_ strmode - The squash mode for the default access rule. Possible values: NO_SQUASH ROOT_SQUASH
- access_
rules Sequence[InstanceAccess Rules Options Access Rule] - The access rules for the instance. Structure is documented below.
- default_
squash_ intgid - 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_ intuid - 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 StringMode - The squash mode for the default access rule. Possible values: NO_SQUASH ROOT_SQUASH
- access
Rules List<Property Map> - The access rules for the instance. Structure is documented below.
- default
Squash NumberGid - 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 NumberUid - 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
- Ip
Address List<string>Ranges - 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 '_'.
- Squash
Mode string - Squash mode for the access rule. Possible values: NO_SQUASH ROOT_SQUASH
- Ip
Address []stringRanges - 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 '_'.
- Squash
Mode string - Squash mode for the access rule. Possible values: NO_SQUASH ROOT_SQUASH
- ip
Address List<String>Ranges - 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 '_'.
- squash
Mode String - Squash mode for the access rule. Possible values: NO_SQUASH ROOT_SQUASH
- ip
Address string[]Ranges - 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 '_'.
- squash
Mode string - Squash mode for the access rule. Possible values: NO_SQUASH ROOT_SQUASH
- ip_
address_ Sequence[str]ranges - 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
- ip
Address List<String>Ranges - 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 '_'.
- squash
Mode 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
- Weekly
Maintenance InstanceWindows Maintenance Policy Weekly Maintenance Windows - The weekly maintenance windows for the instance. Currently limited to 1 window. Structure is documented below.
- Maintenance
Exclusion InstanceWindow Maintenance Policy Maintenance Exclusion Window - The exclusion windows for the instance. Currently limited to 1 window. Structure is documented below.
- Weekly
Maintenance InstanceWindows Maintenance Policy Weekly Maintenance Windows - The weekly maintenance windows for the instance. Currently limited to 1 window. Structure is documented below.
- Maintenance
Exclusion InstanceWindow Maintenance Policy Maintenance Exclusion Window - The exclusion windows for the instance. Currently limited to 1 window. Structure is documented below.
- weekly
Maintenance InstanceWindows Maintenance Policy Weekly Maintenance Windows - The weekly maintenance windows for the instance. Currently limited to 1 window. Structure is documented below.
- maintenance
Exclusion InstanceWindow Maintenance Policy Maintenance Exclusion Window - The exclusion windows for the instance. Currently limited to 1 window. Structure is documented below.
- weekly
Maintenance InstanceWindows Maintenance Policy Weekly Maintenance Windows - The weekly maintenance windows for the instance. Currently limited to 1 window. Structure is documented below.
- maintenance
Exclusion InstanceWindow Maintenance Policy Maintenance Exclusion Window - The exclusion windows for the instance. Currently limited to 1 window. Structure is documented below.
- weekly_
maintenance_ Instancewindows Maintenance Policy Weekly Maintenance Windows - The weekly maintenance windows for the instance. Currently limited to 1 window. Structure is documented below.
- maintenance_
exclusion_ Instancewindow Maintenance Policy Maintenance Exclusion Window - The exclusion windows for the instance. Currently limited to 1 window. Structure is documented below.
- weekly
Maintenance Property MapWindows - The weekly maintenance windows for the instance. Currently limited to 1 window. Structure is documented below.
- maintenance
Exclusion Property MapWindow - The exclusion windows for the instance. Currently limited to 1 window. Structure is documented below.
InstanceMaintenancePolicyMaintenanceExclusionWindow, InstanceMaintenancePolicyMaintenanceExclusionWindowArgs
- End
Date InstanceMaintenance Policy Maintenance Exclusion Window End Date - 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 InstanceMaintenance Policy Maintenance Exclusion Window Start Date - 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
Instance
Maintenance Policy Maintenance Exclusion Window Time - 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 InstanceMaintenance Policy Maintenance Exclusion Window End Date - 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 InstanceMaintenance Policy Maintenance Exclusion Window Start Date - 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
Instance
Maintenance Policy Maintenance Exclusion Window Time - 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 InstanceMaintenance Policy Maintenance Exclusion Window End Date - 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 InstanceMaintenance Policy Maintenance Exclusion Window Start Date - 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
Instance
Maintenance Policy Maintenance Exclusion Window Time - 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 InstanceMaintenance Policy Maintenance Exclusion Window End Date - 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 InstanceMaintenance Policy Maintenance Exclusion Window Start Date - 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
Instance
Maintenance Policy Maintenance Exclusion Window Time - 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 InstanceMaintenance Policy Maintenance Exclusion Window End Date - 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 InstanceMaintenance Policy Maintenance Exclusion Window Start Date - 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
Instance
Maintenance Policy Maintenance Exclusion Window Time - 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 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.
- start
Date 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
- Day
Of stringWeek - Possible values: MONDAY TUESDAY WEDNESDAY THURSDAY FRIDAY SATURDAY SUNDAY
- Start
Time InstanceMaintenance Policy Weekly Maintenance Windows Start Time - 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 stringWeek - Possible values: MONDAY TUESDAY WEDNESDAY THURSDAY FRIDAY SATURDAY SUNDAY
- Start
Time InstanceMaintenance Policy Weekly Maintenance Windows Start Time - 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 StringWeek - Possible values: MONDAY TUESDAY WEDNESDAY THURSDAY FRIDAY SATURDAY SUNDAY
- start
Time InstanceMaintenance Policy Weekly Maintenance Windows Start Time - 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 stringWeek - Possible values: MONDAY TUESDAY WEDNESDAY THURSDAY FRIDAY SATURDAY SUNDAY
- start
Time InstanceMaintenance Policy Weekly Maintenance Windows Start Time - 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_ strweek - Possible values: MONDAY TUESDAY WEDNESDAY THURSDAY FRIDAY SATURDAY SUNDAY
- start_
time InstanceMaintenance Policy Weekly Maintenance Windows Start Time - 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 StringWeek - Possible values: MONDAY TUESDAY WEDNESDAY THURSDAY FRIDAY SATURDAY SUNDAY
- start
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.
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
- end_
time str - (Output) The scheduled end time for the maintenance.
- start_
time str - (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-betaTerraform Provider.
published on Friday, May 1, 2026 by Pulumi
