oci.Lustre.FileStorageLustreFileSystem
Explore with Pulumi AI
This resource provides the Lustre File System resource in Oracle Cloud Infrastructure Lustre File Storage service.
Creates a Lustre file system.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testLustreFileSystem = new oci.lustre.FileStorageLustreFileSystem("test_lustre_file_system", {
    availabilityDomain: lustreFileSystemAvailabilityDomain,
    capacityInGbs: lustreFileSystemCapacityInGbs,
    compartmentId: compartmentId,
    fileSystemName: testFileSystem.name,
    performanceTier: lustreFileSystemPerformanceTier,
    rootSquashConfiguration: {
        clientExceptions: lustreFileSystemRootSquashConfigurationClientExceptions,
        identitySquash: lustreFileSystemRootSquashConfigurationIdentitySquash,
        squashGid: lustreFileSystemRootSquashConfigurationSquashGid,
        squashUid: lustreFileSystemRootSquashConfigurationSquashUid,
    },
    subnetId: testSubnet.id,
    clusterPlacementGroupId: testClusterPlacementGroup.id,
    definedTags: {
        "Operations.CostCenter": "42",
    },
    displayName: lustreFileSystemDisplayName,
    fileSystemDescription: lustreFileSystemFileSystemDescription,
    freeformTags: {
        Department: "Finance",
    },
    kmsKeyId: testKey.id,
    nsgIds: lustreFileSystemNsgIds,
});
import pulumi
import pulumi_oci as oci
test_lustre_file_system = oci.lustre.FileStorageLustreFileSystem("test_lustre_file_system",
    availability_domain=lustre_file_system_availability_domain,
    capacity_in_gbs=lustre_file_system_capacity_in_gbs,
    compartment_id=compartment_id,
    file_system_name=test_file_system["name"],
    performance_tier=lustre_file_system_performance_tier,
    root_squash_configuration={
        "client_exceptions": lustre_file_system_root_squash_configuration_client_exceptions,
        "identity_squash": lustre_file_system_root_squash_configuration_identity_squash,
        "squash_gid": lustre_file_system_root_squash_configuration_squash_gid,
        "squash_uid": lustre_file_system_root_squash_configuration_squash_uid,
    },
    subnet_id=test_subnet["id"],
    cluster_placement_group_id=test_cluster_placement_group["id"],
    defined_tags={
        "Operations.CostCenter": "42",
    },
    display_name=lustre_file_system_display_name,
    file_system_description=lustre_file_system_file_system_description,
    freeform_tags={
        "Department": "Finance",
    },
    kms_key_id=test_key["id"],
    nsg_ids=lustre_file_system_nsg_ids)
package main
import (
	"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/lustre"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := lustre.NewFileStorageLustreFileSystem(ctx, "test_lustre_file_system", &lustre.FileStorageLustreFileSystemArgs{
			AvailabilityDomain: pulumi.Any(lustreFileSystemAvailabilityDomain),
			CapacityInGbs:      pulumi.Any(lustreFileSystemCapacityInGbs),
			CompartmentId:      pulumi.Any(compartmentId),
			FileSystemName:     pulumi.Any(testFileSystem.Name),
			PerformanceTier:    pulumi.Any(lustreFileSystemPerformanceTier),
			RootSquashConfiguration: &lustre.FileStorageLustreFileSystemRootSquashConfigurationArgs{
				ClientExceptions: pulumi.Any(lustreFileSystemRootSquashConfigurationClientExceptions),
				IdentitySquash:   pulumi.Any(lustreFileSystemRootSquashConfigurationIdentitySquash),
				SquashGid:        pulumi.Any(lustreFileSystemRootSquashConfigurationSquashGid),
				SquashUid:        pulumi.Any(lustreFileSystemRootSquashConfigurationSquashUid),
			},
			SubnetId:                pulumi.Any(testSubnet.Id),
			ClusterPlacementGroupId: pulumi.Any(testClusterPlacementGroup.Id),
			DefinedTags: pulumi.StringMap{
				"Operations.CostCenter": pulumi.String("42"),
			},
			DisplayName:           pulumi.Any(lustreFileSystemDisplayName),
			FileSystemDescription: pulumi.Any(lustreFileSystemFileSystemDescription),
			FreeformTags: pulumi.StringMap{
				"Department": pulumi.String("Finance"),
			},
			KmsKeyId: pulumi.Any(testKey.Id),
			NsgIds:   pulumi.Any(lustreFileSystemNsgIds),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;
return await Deployment.RunAsync(() => 
{
    var testLustreFileSystem = new Oci.Lustre.FileStorageLustreFileSystem("test_lustre_file_system", new()
    {
        AvailabilityDomain = lustreFileSystemAvailabilityDomain,
        CapacityInGbs = lustreFileSystemCapacityInGbs,
        CompartmentId = compartmentId,
        FileSystemName = testFileSystem.Name,
        PerformanceTier = lustreFileSystemPerformanceTier,
        RootSquashConfiguration = new Oci.Lustre.Inputs.FileStorageLustreFileSystemRootSquashConfigurationArgs
        {
            ClientExceptions = lustreFileSystemRootSquashConfigurationClientExceptions,
            IdentitySquash = lustreFileSystemRootSquashConfigurationIdentitySquash,
            SquashGid = lustreFileSystemRootSquashConfigurationSquashGid,
            SquashUid = lustreFileSystemRootSquashConfigurationSquashUid,
        },
        SubnetId = testSubnet.Id,
        ClusterPlacementGroupId = testClusterPlacementGroup.Id,
        DefinedTags = 
        {
            { "Operations.CostCenter", "42" },
        },
        DisplayName = lustreFileSystemDisplayName,
        FileSystemDescription = lustreFileSystemFileSystemDescription,
        FreeformTags = 
        {
            { "Department", "Finance" },
        },
        KmsKeyId = testKey.Id,
        NsgIds = lustreFileSystemNsgIds,
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.Lustre.FileStorageLustreFileSystem;
import com.pulumi.oci.Lustre.FileStorageLustreFileSystemArgs;
import com.pulumi.oci.Lustre.inputs.FileStorageLustreFileSystemRootSquashConfigurationArgs;
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) {
        var testLustreFileSystem = new FileStorageLustreFileSystem("testLustreFileSystem", FileStorageLustreFileSystemArgs.builder()
            .availabilityDomain(lustreFileSystemAvailabilityDomain)
            .capacityInGbs(lustreFileSystemCapacityInGbs)
            .compartmentId(compartmentId)
            .fileSystemName(testFileSystem.name())
            .performanceTier(lustreFileSystemPerformanceTier)
            .rootSquashConfiguration(FileStorageLustreFileSystemRootSquashConfigurationArgs.builder()
                .clientExceptions(lustreFileSystemRootSquashConfigurationClientExceptions)
                .identitySquash(lustreFileSystemRootSquashConfigurationIdentitySquash)
                .squashGid(lustreFileSystemRootSquashConfigurationSquashGid)
                .squashUid(lustreFileSystemRootSquashConfigurationSquashUid)
                .build())
            .subnetId(testSubnet.id())
            .clusterPlacementGroupId(testClusterPlacementGroup.id())
            .definedTags(Map.of("Operations.CostCenter", "42"))
            .displayName(lustreFileSystemDisplayName)
            .fileSystemDescription(lustreFileSystemFileSystemDescription)
            .freeformTags(Map.of("Department", "Finance"))
            .kmsKeyId(testKey.id())
            .nsgIds(lustreFileSystemNsgIds)
            .build());
    }
}
resources:
  testLustreFileSystem:
    type: oci:Lustre:FileStorageLustreFileSystem
    name: test_lustre_file_system
    properties:
      availabilityDomain: ${lustreFileSystemAvailabilityDomain}
      capacityInGbs: ${lustreFileSystemCapacityInGbs}
      compartmentId: ${compartmentId}
      fileSystemName: ${testFileSystem.name}
      performanceTier: ${lustreFileSystemPerformanceTier}
      rootSquashConfiguration:
        clientExceptions: ${lustreFileSystemRootSquashConfigurationClientExceptions}
        identitySquash: ${lustreFileSystemRootSquashConfigurationIdentitySquash}
        squashGid: ${lustreFileSystemRootSquashConfigurationSquashGid}
        squashUid: ${lustreFileSystemRootSquashConfigurationSquashUid}
      subnetId: ${testSubnet.id}
      clusterPlacementGroupId: ${testClusterPlacementGroup.id}
      definedTags:
        Operations.CostCenter: '42'
      displayName: ${lustreFileSystemDisplayName}
      fileSystemDescription: ${lustreFileSystemFileSystemDescription}
      freeformTags:
        Department: Finance
      kmsKeyId: ${testKey.id}
      nsgIds: ${lustreFileSystemNsgIds}
Create FileStorageLustreFileSystem Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new FileStorageLustreFileSystem(name: string, args: FileStorageLustreFileSystemArgs, opts?: CustomResourceOptions);@overload
def FileStorageLustreFileSystem(resource_name: str,
                                args: FileStorageLustreFileSystemArgs,
                                opts: Optional[ResourceOptions] = None)
@overload
def FileStorageLustreFileSystem(resource_name: str,
                                opts: Optional[ResourceOptions] = None,
                                file_system_name: Optional[str] = None,
                                capacity_in_gbs: Optional[int] = None,
                                subnet_id: Optional[str] = None,
                                compartment_id: Optional[str] = None,
                                root_squash_configuration: Optional[FileStorageLustreFileSystemRootSquashConfigurationArgs] = None,
                                performance_tier: Optional[str] = None,
                                availability_domain: Optional[str] = None,
                                file_system_description: Optional[str] = None,
                                freeform_tags: Optional[Mapping[str, str]] = None,
                                kms_key_id: Optional[str] = None,
                                nsg_ids: Optional[Sequence[str]] = None,
                                display_name: Optional[str] = None,
                                defined_tags: Optional[Mapping[str, str]] = None,
                                cluster_placement_group_id: Optional[str] = None,
                                system_tags: Optional[Mapping[str, str]] = None)func NewFileStorageLustreFileSystem(ctx *Context, name string, args FileStorageLustreFileSystemArgs, opts ...ResourceOption) (*FileStorageLustreFileSystem, error)public FileStorageLustreFileSystem(string name, FileStorageLustreFileSystemArgs args, CustomResourceOptions? opts = null)
public FileStorageLustreFileSystem(String name, FileStorageLustreFileSystemArgs args)
public FileStorageLustreFileSystem(String name, FileStorageLustreFileSystemArgs args, CustomResourceOptions options)
type: oci:Lustre:FileStorageLustreFileSystem
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 FileStorageLustreFileSystemArgs
- 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 FileStorageLustreFileSystemArgs
- 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 FileStorageLustreFileSystemArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args FileStorageLustreFileSystemArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args FileStorageLustreFileSystemArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var fileStorageLustreFileSystemResource = new Oci.Lustre.FileStorageLustreFileSystem("fileStorageLustreFileSystemResource", new()
{
    FileSystemName = "string",
    CapacityInGbs = 0,
    SubnetId = "string",
    CompartmentId = "string",
    RootSquashConfiguration = new Oci.Lustre.Inputs.FileStorageLustreFileSystemRootSquashConfigurationArgs
    {
        ClientExceptions = new[]
        {
            "string",
        },
        IdentitySquash = "string",
        SquashGid = "string",
        SquashUid = "string",
    },
    PerformanceTier = "string",
    AvailabilityDomain = "string",
    FileSystemDescription = "string",
    FreeformTags = 
    {
        { "string", "string" },
    },
    KmsKeyId = "string",
    NsgIds = new[]
    {
        "string",
    },
    DisplayName = "string",
    DefinedTags = 
    {
        { "string", "string" },
    },
    ClusterPlacementGroupId = "string",
    SystemTags = 
    {
        { "string", "string" },
    },
});
example, err := lustre.NewFileStorageLustreFileSystem(ctx, "fileStorageLustreFileSystemResource", &lustre.FileStorageLustreFileSystemArgs{
	FileSystemName: pulumi.String("string"),
	CapacityInGbs:  pulumi.Int(0),
	SubnetId:       pulumi.String("string"),
	CompartmentId:  pulumi.String("string"),
	RootSquashConfiguration: &lustre.FileStorageLustreFileSystemRootSquashConfigurationArgs{
		ClientExceptions: pulumi.StringArray{
			pulumi.String("string"),
		},
		IdentitySquash: pulumi.String("string"),
		SquashGid:      pulumi.String("string"),
		SquashUid:      pulumi.String("string"),
	},
	PerformanceTier:       pulumi.String("string"),
	AvailabilityDomain:    pulumi.String("string"),
	FileSystemDescription: pulumi.String("string"),
	FreeformTags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	KmsKeyId: pulumi.String("string"),
	NsgIds: pulumi.StringArray{
		pulumi.String("string"),
	},
	DisplayName: pulumi.String("string"),
	DefinedTags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	ClusterPlacementGroupId: pulumi.String("string"),
	SystemTags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
})
var fileStorageLustreFileSystemResource = new FileStorageLustreFileSystem("fileStorageLustreFileSystemResource", FileStorageLustreFileSystemArgs.builder()
    .fileSystemName("string")
    .capacityInGbs(0)
    .subnetId("string")
    .compartmentId("string")
    .rootSquashConfiguration(FileStorageLustreFileSystemRootSquashConfigurationArgs.builder()
        .clientExceptions("string")
        .identitySquash("string")
        .squashGid("string")
        .squashUid("string")
        .build())
    .performanceTier("string")
    .availabilityDomain("string")
    .fileSystemDescription("string")
    .freeformTags(Map.of("string", "string"))
    .kmsKeyId("string")
    .nsgIds("string")
    .displayName("string")
    .definedTags(Map.of("string", "string"))
    .clusterPlacementGroupId("string")
    .systemTags(Map.of("string", "string"))
    .build());
file_storage_lustre_file_system_resource = oci.lustre.FileStorageLustreFileSystem("fileStorageLustreFileSystemResource",
    file_system_name="string",
    capacity_in_gbs=0,
    subnet_id="string",
    compartment_id="string",
    root_squash_configuration={
        "client_exceptions": ["string"],
        "identity_squash": "string",
        "squash_gid": "string",
        "squash_uid": "string",
    },
    performance_tier="string",
    availability_domain="string",
    file_system_description="string",
    freeform_tags={
        "string": "string",
    },
    kms_key_id="string",
    nsg_ids=["string"],
    display_name="string",
    defined_tags={
        "string": "string",
    },
    cluster_placement_group_id="string",
    system_tags={
        "string": "string",
    })
const fileStorageLustreFileSystemResource = new oci.lustre.FileStorageLustreFileSystem("fileStorageLustreFileSystemResource", {
    fileSystemName: "string",
    capacityInGbs: 0,
    subnetId: "string",
    compartmentId: "string",
    rootSquashConfiguration: {
        clientExceptions: ["string"],
        identitySquash: "string",
        squashGid: "string",
        squashUid: "string",
    },
    performanceTier: "string",
    availabilityDomain: "string",
    fileSystemDescription: "string",
    freeformTags: {
        string: "string",
    },
    kmsKeyId: "string",
    nsgIds: ["string"],
    displayName: "string",
    definedTags: {
        string: "string",
    },
    clusterPlacementGroupId: "string",
    systemTags: {
        string: "string",
    },
});
type: oci:Lustre:FileStorageLustreFileSystem
properties:
    availabilityDomain: string
    capacityInGbs: 0
    clusterPlacementGroupId: string
    compartmentId: string
    definedTags:
        string: string
    displayName: string
    fileSystemDescription: string
    fileSystemName: string
    freeformTags:
        string: string
    kmsKeyId: string
    nsgIds:
        - string
    performanceTier: string
    rootSquashConfiguration:
        clientExceptions:
            - string
        identitySquash: string
        squashGid: string
        squashUid: string
    subnetId: string
    systemTags:
        string: string
FileStorageLustreFileSystem 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 FileStorageLustreFileSystem resource accepts the following input properties:
- AvailabilityDomain string
- The availability domain the file system is in. May be unset as a blank or NULL value. Example: Uocm:PHX-AD-1
- CapacityIn intGbs 
- (Updatable) Capacity of the Lustre file system in GB. You can increase capacity only in multiples of 5 TB.
- CompartmentId string
- (Updatable) The OCID of the compartment that contains the Lustre file system.
- FileSystem stringName 
- The Lustre file system name. This is used in mount commands and other aspects of the client command line interface. The file system name is limited to 8 characters. Allowed characters are lower and upper case English letters, numbers, and '_'. If you have multiple Lustre file systems mounted on the same clients, this name can help distinguish them.
- PerformanceTier string
- The Lustre file system performance tier. A value of MBPS_PER_TB_125represents 125 megabytes per second per terabyte.
- RootSquash FileConfiguration Storage Lustre File System Root Squash Configuration 
- (Updatable) An administrative feature that allows you to restrict root level access from clients that try to access your Lustre file system as root.
- SubnetId string
- The OCID of the subnet the Lustre file system is in. - ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
- ClusterPlacement stringGroup Id 
- The OCID of the cluster placement group in which the Lustre file system exists.
- Dictionary<string, string>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
- DisplayName string
- (Updatable) A user-friendly name. It does not have to be unique, and it is changeable. Avoid entering confidential information. Example: My Lustre file system
- FileSystem stringDescription 
- (Updatable) Short description of the Lustre file system. Avoid entering confidential information.
- Dictionary<string, string>
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
- KmsKey stringId 
- (Updatable) The OCID of the KMS key used to encrypt the encryption keys associated with this file system.
- NsgIds List<string>
- (Updatable) A list of Network Security Group OCIDs associated with this lustre file system. A maximum of 5 is allowed. Setting this to an empty array after the list is created removes the lustre file system from all NSGs. For more information about NSGs, see Security Rules.
- Dictionary<string, string>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
- AvailabilityDomain string
- The availability domain the file system is in. May be unset as a blank or NULL value. Example: Uocm:PHX-AD-1
- CapacityIn intGbs 
- (Updatable) Capacity of the Lustre file system in GB. You can increase capacity only in multiples of 5 TB.
- CompartmentId string
- (Updatable) The OCID of the compartment that contains the Lustre file system.
- FileSystem stringName 
- The Lustre file system name. This is used in mount commands and other aspects of the client command line interface. The file system name is limited to 8 characters. Allowed characters are lower and upper case English letters, numbers, and '_'. If you have multiple Lustre file systems mounted on the same clients, this name can help distinguish them.
- PerformanceTier string
- The Lustre file system performance tier. A value of MBPS_PER_TB_125represents 125 megabytes per second per terabyte.
- RootSquash FileConfiguration Storage Lustre File System Root Squash Configuration Args 
- (Updatable) An administrative feature that allows you to restrict root level access from clients that try to access your Lustre file system as root.
- SubnetId string
- The OCID of the subnet the Lustre file system is in. - ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
- ClusterPlacement stringGroup Id 
- The OCID of the cluster placement group in which the Lustre file system exists.
- map[string]string
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
- DisplayName string
- (Updatable) A user-friendly name. It does not have to be unique, and it is changeable. Avoid entering confidential information. Example: My Lustre file system
- FileSystem stringDescription 
- (Updatable) Short description of the Lustre file system. Avoid entering confidential information.
- map[string]string
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
- KmsKey stringId 
- (Updatable) The OCID of the KMS key used to encrypt the encryption keys associated with this file system.
- NsgIds []string
- (Updatable) A list of Network Security Group OCIDs associated with this lustre file system. A maximum of 5 is allowed. Setting this to an empty array after the list is created removes the lustre file system from all NSGs. For more information about NSGs, see Security Rules.
- map[string]string
- System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
- availabilityDomain String
- The availability domain the file system is in. May be unset as a blank or NULL value. Example: Uocm:PHX-AD-1
- capacityIn IntegerGbs 
- (Updatable) Capacity of the Lustre file system in GB. You can increase capacity only in multiples of 5 TB.
- compartmentId String
- (Updatable) The OCID of the compartment that contains the Lustre file system.
- fileSystem StringName 
- The Lustre file system name. This is used in mount commands and other aspects of the client command line interface. The file system name is limited to 8 characters. Allowed characters are lower and upper case English letters, numbers, and '_'. If you have multiple Lustre file systems mounted on the same clients, this name can help distinguish them.
- performanceTier String
- The Lustre file system performance tier. A value of MBPS_PER_TB_125represents 125 megabytes per second per terabyte.
- rootSquash FileConfiguration Storage File System Root Squash Configuration 
- (Updatable) An administrative feature that allows you to restrict root level access from clients that try to access your Lustre file system as root.
- subnetId String
- The OCID of the subnet the Lustre file system is in. - ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
- clusterPlacement StringGroup Id 
- The OCID of the cluster placement group in which the Lustre file system exists.
- Map<String,String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
- displayName String
- (Updatable) A user-friendly name. It does not have to be unique, and it is changeable. Avoid entering confidential information. Example: My Lustre file system
- fileSystem StringDescription 
- (Updatable) Short description of the Lustre file system. Avoid entering confidential information.
- Map<String,String>
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
- kmsKey StringId 
- (Updatable) The OCID of the KMS key used to encrypt the encryption keys associated with this file system.
- nsgIds List<String>
- (Updatable) A list of Network Security Group OCIDs associated with this lustre file system. A maximum of 5 is allowed. Setting this to an empty array after the list is created removes the lustre file system from all NSGs. For more information about NSGs, see Security Rules.
- Map<String,String>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
- availabilityDomain string
- The availability domain the file system is in. May be unset as a blank or NULL value. Example: Uocm:PHX-AD-1
- capacityIn numberGbs 
- (Updatable) Capacity of the Lustre file system in GB. You can increase capacity only in multiples of 5 TB.
- compartmentId string
- (Updatable) The OCID of the compartment that contains the Lustre file system.
- fileSystem stringName 
- The Lustre file system name. This is used in mount commands and other aspects of the client command line interface. The file system name is limited to 8 characters. Allowed characters are lower and upper case English letters, numbers, and '_'. If you have multiple Lustre file systems mounted on the same clients, this name can help distinguish them.
- performanceTier string
- The Lustre file system performance tier. A value of MBPS_PER_TB_125represents 125 megabytes per second per terabyte.
- rootSquash FileConfiguration Storage Lustre File System Root Squash Configuration 
- (Updatable) An administrative feature that allows you to restrict root level access from clients that try to access your Lustre file system as root.
- subnetId string
- The OCID of the subnet the Lustre file system is in. - ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
- clusterPlacement stringGroup Id 
- The OCID of the cluster placement group in which the Lustre file system exists.
- {[key: string]: string}
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
- displayName string
- (Updatable) A user-friendly name. It does not have to be unique, and it is changeable. Avoid entering confidential information. Example: My Lustre file system
- fileSystem stringDescription 
- (Updatable) Short description of the Lustre file system. Avoid entering confidential information.
- {[key: string]: string}
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
- kmsKey stringId 
- (Updatable) The OCID of the KMS key used to encrypt the encryption keys associated with this file system.
- nsgIds string[]
- (Updatable) A list of Network Security Group OCIDs associated with this lustre file system. A maximum of 5 is allowed. Setting this to an empty array after the list is created removes the lustre file system from all NSGs. For more information about NSGs, see Security Rules.
- {[key: string]: string}
- System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
- availability_domain str
- The availability domain the file system is in. May be unset as a blank or NULL value. Example: Uocm:PHX-AD-1
- capacity_in_ intgbs 
- (Updatable) Capacity of the Lustre file system in GB. You can increase capacity only in multiples of 5 TB.
- compartment_id str
- (Updatable) The OCID of the compartment that contains the Lustre file system.
- file_system_ strname 
- The Lustre file system name. This is used in mount commands and other aspects of the client command line interface. The file system name is limited to 8 characters. Allowed characters are lower and upper case English letters, numbers, and '_'. If you have multiple Lustre file systems mounted on the same clients, this name can help distinguish them.
- performance_tier str
- The Lustre file system performance tier. A value of MBPS_PER_TB_125represents 125 megabytes per second per terabyte.
- root_squash_ Fileconfiguration Storage Lustre File System Root Squash Configuration Args 
- (Updatable) An administrative feature that allows you to restrict root level access from clients that try to access your Lustre file system as root.
- subnet_id str
- The OCID of the subnet the Lustre file system is in. - ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
- cluster_placement_ strgroup_ id 
- The OCID of the cluster placement group in which the Lustre file system exists.
- Mapping[str, str]
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
- display_name str
- (Updatable) A user-friendly name. It does not have to be unique, and it is changeable. Avoid entering confidential information. Example: My Lustre file system
- file_system_ strdescription 
- (Updatable) Short description of the Lustre file system. Avoid entering confidential information.
- Mapping[str, str]
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
- kms_key_ strid 
- (Updatable) The OCID of the KMS key used to encrypt the encryption keys associated with this file system.
- nsg_ids Sequence[str]
- (Updatable) A list of Network Security Group OCIDs associated with this lustre file system. A maximum of 5 is allowed. Setting this to an empty array after the list is created removes the lustre file system from all NSGs. For more information about NSGs, see Security Rules.
- Mapping[str, str]
- System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
- availabilityDomain String
- The availability domain the file system is in. May be unset as a blank or NULL value. Example: Uocm:PHX-AD-1
- capacityIn NumberGbs 
- (Updatable) Capacity of the Lustre file system in GB. You can increase capacity only in multiples of 5 TB.
- compartmentId String
- (Updatable) The OCID of the compartment that contains the Lustre file system.
- fileSystem StringName 
- The Lustre file system name. This is used in mount commands and other aspects of the client command line interface. The file system name is limited to 8 characters. Allowed characters are lower and upper case English letters, numbers, and '_'. If you have multiple Lustre file systems mounted on the same clients, this name can help distinguish them.
- performanceTier String
- The Lustre file system performance tier. A value of MBPS_PER_TB_125represents 125 megabytes per second per terabyte.
- rootSquash Property MapConfiguration 
- (Updatable) An administrative feature that allows you to restrict root level access from clients that try to access your Lustre file system as root.
- subnetId String
- The OCID of the subnet the Lustre file system is in. - ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
- clusterPlacement StringGroup Id 
- The OCID of the cluster placement group in which the Lustre file system exists.
- Map<String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
- displayName String
- (Updatable) A user-friendly name. It does not have to be unique, and it is changeable. Avoid entering confidential information. Example: My Lustre file system
- fileSystem StringDescription 
- (Updatable) Short description of the Lustre file system. Avoid entering confidential information.
- Map<String>
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
- kmsKey StringId 
- (Updatable) The OCID of the KMS key used to encrypt the encryption keys associated with this file system.
- nsgIds List<String>
- (Updatable) A list of Network Security Group OCIDs associated with this lustre file system. A maximum of 5 is allowed. Setting this to an empty array after the list is created removes the lustre file system from all NSGs. For more information about NSGs, see Security Rules.
- Map<String>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
Outputs
All input properties are implicitly available as output properties. Additionally, the FileStorageLustreFileSystem resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- LifecycleDetails string
- A message that describes the current state of the Lustre file system in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
- Lnet string
- Type of network used by clients to mount the file system. Example: tcp
- MaintenanceWindows List<FileStorage Lustre File System Maintenance Window> 
- The preferred day and time to perform maintenance.
- MajorVersion string
- Major version of Lustre running in the Lustre file system. Example: 2.15
- ManagementService stringAddress 
- The IPv4 address of MGS (Lustre Management Service) used by clients to mount the file system. For example '10.0.0.4'.
- State string
- The current state of the Lustre file system.
- TimeBilling stringCycle End 
- The date and time that the current billing cycle for the file system will end, expressed in RFC 3339 timestamp format. After the current cycle ends, this date is updated automatically to the next timestamp, which is 30 days later. File systems deleted earlier than this time will still incur charges until the billing cycle ends. Example: 2016-08-25T21:10:29.600Z
- TimeCreated string
- The date and time the Lustre file system was created, expressed in RFC 3339 timestamp format. Example: 2024-04-25T21:10:29.600Z
- TimeUpdated string
- The date and time the Lustre file system was updated, in the format defined by RFC 3339. Example: 2024-04-25T21:10:29.600Z
- Id string
- The provider-assigned unique ID for this managed resource.
- LifecycleDetails string
- A message that describes the current state of the Lustre file system in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
- Lnet string
- Type of network used by clients to mount the file system. Example: tcp
- MaintenanceWindows []FileStorage Lustre File System Maintenance Window 
- The preferred day and time to perform maintenance.
- MajorVersion string
- Major version of Lustre running in the Lustre file system. Example: 2.15
- ManagementService stringAddress 
- The IPv4 address of MGS (Lustre Management Service) used by clients to mount the file system. For example '10.0.0.4'.
- State string
- The current state of the Lustre file system.
- TimeBilling stringCycle End 
- The date and time that the current billing cycle for the file system will end, expressed in RFC 3339 timestamp format. After the current cycle ends, this date is updated automatically to the next timestamp, which is 30 days later. File systems deleted earlier than this time will still incur charges until the billing cycle ends. Example: 2016-08-25T21:10:29.600Z
- TimeCreated string
- The date and time the Lustre file system was created, expressed in RFC 3339 timestamp format. Example: 2024-04-25T21:10:29.600Z
- TimeUpdated string
- The date and time the Lustre file system was updated, in the format defined by RFC 3339. Example: 2024-04-25T21:10:29.600Z
- id String
- The provider-assigned unique ID for this managed resource.
- lifecycleDetails String
- A message that describes the current state of the Lustre file system in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
- lnet String
- Type of network used by clients to mount the file system. Example: tcp
- maintenanceWindows List<FileStorage File System Maintenance Window> 
- The preferred day and time to perform maintenance.
- majorVersion String
- Major version of Lustre running in the Lustre file system. Example: 2.15
- managementService StringAddress 
- The IPv4 address of MGS (Lustre Management Service) used by clients to mount the file system. For example '10.0.0.4'.
- state String
- The current state of the Lustre file system.
- timeBilling StringCycle End 
- The date and time that the current billing cycle for the file system will end, expressed in RFC 3339 timestamp format. After the current cycle ends, this date is updated automatically to the next timestamp, which is 30 days later. File systems deleted earlier than this time will still incur charges until the billing cycle ends. Example: 2016-08-25T21:10:29.600Z
- timeCreated String
- The date and time the Lustre file system was created, expressed in RFC 3339 timestamp format. Example: 2024-04-25T21:10:29.600Z
- timeUpdated String
- The date and time the Lustre file system was updated, in the format defined by RFC 3339. Example: 2024-04-25T21:10:29.600Z
- id string
- The provider-assigned unique ID for this managed resource.
- lifecycleDetails string
- A message that describes the current state of the Lustre file system in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
- lnet string
- Type of network used by clients to mount the file system. Example: tcp
- maintenanceWindows FileStorage Lustre File System Maintenance Window[] 
- The preferred day and time to perform maintenance.
- majorVersion string
- Major version of Lustre running in the Lustre file system. Example: 2.15
- managementService stringAddress 
- The IPv4 address of MGS (Lustre Management Service) used by clients to mount the file system. For example '10.0.0.4'.
- state string
- The current state of the Lustre file system.
- timeBilling stringCycle End 
- The date and time that the current billing cycle for the file system will end, expressed in RFC 3339 timestamp format. After the current cycle ends, this date is updated automatically to the next timestamp, which is 30 days later. File systems deleted earlier than this time will still incur charges until the billing cycle ends. Example: 2016-08-25T21:10:29.600Z
- timeCreated string
- The date and time the Lustre file system was created, expressed in RFC 3339 timestamp format. Example: 2024-04-25T21:10:29.600Z
- timeUpdated string
- The date and time the Lustre file system was updated, in the format defined by RFC 3339. Example: 2024-04-25T21:10:29.600Z
- id str
- The provider-assigned unique ID for this managed resource.
- lifecycle_details str
- A message that describes the current state of the Lustre file system in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
- lnet str
- Type of network used by clients to mount the file system. Example: tcp
- maintenance_windows Sequence[FileStorage Lustre File System Maintenance Window] 
- The preferred day and time to perform maintenance.
- major_version str
- Major version of Lustre running in the Lustre file system. Example: 2.15
- management_service_ straddress 
- The IPv4 address of MGS (Lustre Management Service) used by clients to mount the file system. For example '10.0.0.4'.
- state str
- The current state of the Lustre file system.
- time_billing_ strcycle_ end 
- The date and time that the current billing cycle for the file system will end, expressed in RFC 3339 timestamp format. After the current cycle ends, this date is updated automatically to the next timestamp, which is 30 days later. File systems deleted earlier than this time will still incur charges until the billing cycle ends. Example: 2016-08-25T21:10:29.600Z
- time_created str
- The date and time the Lustre file system was created, expressed in RFC 3339 timestamp format. Example: 2024-04-25T21:10:29.600Z
- time_updated str
- The date and time the Lustre file system was updated, in the format defined by RFC 3339. Example: 2024-04-25T21:10:29.600Z
- id String
- The provider-assigned unique ID for this managed resource.
- lifecycleDetails String
- A message that describes the current state of the Lustre file system in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
- lnet String
- Type of network used by clients to mount the file system. Example: tcp
- maintenanceWindows List<Property Map>
- The preferred day and time to perform maintenance.
- majorVersion String
- Major version of Lustre running in the Lustre file system. Example: 2.15
- managementService StringAddress 
- The IPv4 address of MGS (Lustre Management Service) used by clients to mount the file system. For example '10.0.0.4'.
- state String
- The current state of the Lustre file system.
- timeBilling StringCycle End 
- The date and time that the current billing cycle for the file system will end, expressed in RFC 3339 timestamp format. After the current cycle ends, this date is updated automatically to the next timestamp, which is 30 days later. File systems deleted earlier than this time will still incur charges until the billing cycle ends. Example: 2016-08-25T21:10:29.600Z
- timeCreated String
- The date and time the Lustre file system was created, expressed in RFC 3339 timestamp format. Example: 2024-04-25T21:10:29.600Z
- timeUpdated String
- The date and time the Lustre file system was updated, in the format defined by RFC 3339. Example: 2024-04-25T21:10:29.600Z
Look up Existing FileStorageLustreFileSystem Resource
Get an existing FileStorageLustreFileSystem 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?: FileStorageLustreFileSystemState, opts?: CustomResourceOptions): FileStorageLustreFileSystem@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        availability_domain: Optional[str] = None,
        capacity_in_gbs: Optional[int] = None,
        cluster_placement_group_id: Optional[str] = None,
        compartment_id: Optional[str] = None,
        defined_tags: Optional[Mapping[str, str]] = None,
        display_name: Optional[str] = None,
        file_system_description: Optional[str] = None,
        file_system_name: Optional[str] = None,
        freeform_tags: Optional[Mapping[str, str]] = None,
        kms_key_id: Optional[str] = None,
        lifecycle_details: Optional[str] = None,
        lnet: Optional[str] = None,
        maintenance_windows: Optional[Sequence[FileStorageLustreFileSystemMaintenanceWindowArgs]] = None,
        major_version: Optional[str] = None,
        management_service_address: Optional[str] = None,
        nsg_ids: Optional[Sequence[str]] = None,
        performance_tier: Optional[str] = None,
        root_squash_configuration: Optional[FileStorageLustreFileSystemRootSquashConfigurationArgs] = None,
        state: Optional[str] = None,
        subnet_id: Optional[str] = None,
        system_tags: Optional[Mapping[str, str]] = None,
        time_billing_cycle_end: Optional[str] = None,
        time_created: Optional[str] = None,
        time_updated: Optional[str] = None) -> FileStorageLustreFileSystemfunc GetFileStorageLustreFileSystem(ctx *Context, name string, id IDInput, state *FileStorageLustreFileSystemState, opts ...ResourceOption) (*FileStorageLustreFileSystem, error)public static FileStorageLustreFileSystem Get(string name, Input<string> id, FileStorageLustreFileSystemState? state, CustomResourceOptions? opts = null)public static FileStorageLustreFileSystem get(String name, Output<String> id, FileStorageLustreFileSystemState state, CustomResourceOptions options)resources:  _:    type: oci:Lustre:FileStorageLustreFileSystem    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.
- AvailabilityDomain string
- The availability domain the file system is in. May be unset as a blank or NULL value. Example: Uocm:PHX-AD-1
- CapacityIn intGbs 
- (Updatable) Capacity of the Lustre file system in GB. You can increase capacity only in multiples of 5 TB.
- ClusterPlacement stringGroup Id 
- The OCID of the cluster placement group in which the Lustre file system exists.
- CompartmentId string
- (Updatable) The OCID of the compartment that contains the Lustre file system.
- Dictionary<string, string>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
- DisplayName string
- (Updatable) A user-friendly name. It does not have to be unique, and it is changeable. Avoid entering confidential information. Example: My Lustre file system
- FileSystem stringDescription 
- (Updatable) Short description of the Lustre file system. Avoid entering confidential information.
- FileSystem stringName 
- The Lustre file system name. This is used in mount commands and other aspects of the client command line interface. The file system name is limited to 8 characters. Allowed characters are lower and upper case English letters, numbers, and '_'. If you have multiple Lustre file systems mounted on the same clients, this name can help distinguish them.
- Dictionary<string, string>
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
- KmsKey stringId 
- (Updatable) The OCID of the KMS key used to encrypt the encryption keys associated with this file system.
- LifecycleDetails string
- A message that describes the current state of the Lustre file system in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
- Lnet string
- Type of network used by clients to mount the file system. Example: tcp
- MaintenanceWindows List<FileStorage Lustre File System Maintenance Window> 
- The preferred day and time to perform maintenance.
- MajorVersion string
- Major version of Lustre running in the Lustre file system. Example: 2.15
- ManagementService stringAddress 
- The IPv4 address of MGS (Lustre Management Service) used by clients to mount the file system. For example '10.0.0.4'.
- NsgIds List<string>
- (Updatable) A list of Network Security Group OCIDs associated with this lustre file system. A maximum of 5 is allowed. Setting this to an empty array after the list is created removes the lustre file system from all NSGs. For more information about NSGs, see Security Rules.
- PerformanceTier string
- The Lustre file system performance tier. A value of MBPS_PER_TB_125represents 125 megabytes per second per terabyte.
- RootSquash FileConfiguration Storage Lustre File System Root Squash Configuration 
- (Updatable) An administrative feature that allows you to restrict root level access from clients that try to access your Lustre file system as root.
- State string
- The current state of the Lustre file system.
- SubnetId string
- The OCID of the subnet the Lustre file system is in. - ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
- Dictionary<string, string>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
- TimeBilling stringCycle End 
- The date and time that the current billing cycle for the file system will end, expressed in RFC 3339 timestamp format. After the current cycle ends, this date is updated automatically to the next timestamp, which is 30 days later. File systems deleted earlier than this time will still incur charges until the billing cycle ends. Example: 2016-08-25T21:10:29.600Z
- TimeCreated string
- The date and time the Lustre file system was created, expressed in RFC 3339 timestamp format. Example: 2024-04-25T21:10:29.600Z
- TimeUpdated string
- The date and time the Lustre file system was updated, in the format defined by RFC 3339. Example: 2024-04-25T21:10:29.600Z
- AvailabilityDomain string
- The availability domain the file system is in. May be unset as a blank or NULL value. Example: Uocm:PHX-AD-1
- CapacityIn intGbs 
- (Updatable) Capacity of the Lustre file system in GB. You can increase capacity only in multiples of 5 TB.
- ClusterPlacement stringGroup Id 
- The OCID of the cluster placement group in which the Lustre file system exists.
- CompartmentId string
- (Updatable) The OCID of the compartment that contains the Lustre file system.
- map[string]string
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
- DisplayName string
- (Updatable) A user-friendly name. It does not have to be unique, and it is changeable. Avoid entering confidential information. Example: My Lustre file system
- FileSystem stringDescription 
- (Updatable) Short description of the Lustre file system. Avoid entering confidential information.
- FileSystem stringName 
- The Lustre file system name. This is used in mount commands and other aspects of the client command line interface. The file system name is limited to 8 characters. Allowed characters are lower and upper case English letters, numbers, and '_'. If you have multiple Lustre file systems mounted on the same clients, this name can help distinguish them.
- map[string]string
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
- KmsKey stringId 
- (Updatable) The OCID of the KMS key used to encrypt the encryption keys associated with this file system.
- LifecycleDetails string
- A message that describes the current state of the Lustre file system in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
- Lnet string
- Type of network used by clients to mount the file system. Example: tcp
- MaintenanceWindows []FileStorage Lustre File System Maintenance Window Args 
- The preferred day and time to perform maintenance.
- MajorVersion string
- Major version of Lustre running in the Lustre file system. Example: 2.15
- ManagementService stringAddress 
- The IPv4 address of MGS (Lustre Management Service) used by clients to mount the file system. For example '10.0.0.4'.
- NsgIds []string
- (Updatable) A list of Network Security Group OCIDs associated with this lustre file system. A maximum of 5 is allowed. Setting this to an empty array after the list is created removes the lustre file system from all NSGs. For more information about NSGs, see Security Rules.
- PerformanceTier string
- The Lustre file system performance tier. A value of MBPS_PER_TB_125represents 125 megabytes per second per terabyte.
- RootSquash FileConfiguration Storage Lustre File System Root Squash Configuration Args 
- (Updatable) An administrative feature that allows you to restrict root level access from clients that try to access your Lustre file system as root.
- State string
- The current state of the Lustre file system.
- SubnetId string
- The OCID of the subnet the Lustre file system is in. - ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
- map[string]string
- System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
- TimeBilling stringCycle End 
- The date and time that the current billing cycle for the file system will end, expressed in RFC 3339 timestamp format. After the current cycle ends, this date is updated automatically to the next timestamp, which is 30 days later. File systems deleted earlier than this time will still incur charges until the billing cycle ends. Example: 2016-08-25T21:10:29.600Z
- TimeCreated string
- The date and time the Lustre file system was created, expressed in RFC 3339 timestamp format. Example: 2024-04-25T21:10:29.600Z
- TimeUpdated string
- The date and time the Lustre file system was updated, in the format defined by RFC 3339. Example: 2024-04-25T21:10:29.600Z
- availabilityDomain String
- The availability domain the file system is in. May be unset as a blank or NULL value. Example: Uocm:PHX-AD-1
- capacityIn IntegerGbs 
- (Updatable) Capacity of the Lustre file system in GB. You can increase capacity only in multiples of 5 TB.
- clusterPlacement StringGroup Id 
- The OCID of the cluster placement group in which the Lustre file system exists.
- compartmentId String
- (Updatable) The OCID of the compartment that contains the Lustre file system.
- Map<String,String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
- displayName String
- (Updatable) A user-friendly name. It does not have to be unique, and it is changeable. Avoid entering confidential information. Example: My Lustre file system
- fileSystem StringDescription 
- (Updatable) Short description of the Lustre file system. Avoid entering confidential information.
- fileSystem StringName 
- The Lustre file system name. This is used in mount commands and other aspects of the client command line interface. The file system name is limited to 8 characters. Allowed characters are lower and upper case English letters, numbers, and '_'. If you have multiple Lustre file systems mounted on the same clients, this name can help distinguish them.
- Map<String,String>
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
- kmsKey StringId 
- (Updatable) The OCID of the KMS key used to encrypt the encryption keys associated with this file system.
- lifecycleDetails String
- A message that describes the current state of the Lustre file system in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
- lnet String
- Type of network used by clients to mount the file system. Example: tcp
- maintenanceWindows List<FileStorage File System Maintenance Window> 
- The preferred day and time to perform maintenance.
- majorVersion String
- Major version of Lustre running in the Lustre file system. Example: 2.15
- managementService StringAddress 
- The IPv4 address of MGS (Lustre Management Service) used by clients to mount the file system. For example '10.0.0.4'.
- nsgIds List<String>
- (Updatable) A list of Network Security Group OCIDs associated with this lustre file system. A maximum of 5 is allowed. Setting this to an empty array after the list is created removes the lustre file system from all NSGs. For more information about NSGs, see Security Rules.
- performanceTier String
- The Lustre file system performance tier. A value of MBPS_PER_TB_125represents 125 megabytes per second per terabyte.
- rootSquash FileConfiguration Storage File System Root Squash Configuration 
- (Updatable) An administrative feature that allows you to restrict root level access from clients that try to access your Lustre file system as root.
- state String
- The current state of the Lustre file system.
- subnetId String
- The OCID of the subnet the Lustre file system is in. - ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
- Map<String,String>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
- timeBilling StringCycle End 
- The date and time that the current billing cycle for the file system will end, expressed in RFC 3339 timestamp format. After the current cycle ends, this date is updated automatically to the next timestamp, which is 30 days later. File systems deleted earlier than this time will still incur charges until the billing cycle ends. Example: 2016-08-25T21:10:29.600Z
- timeCreated String
- The date and time the Lustre file system was created, expressed in RFC 3339 timestamp format. Example: 2024-04-25T21:10:29.600Z
- timeUpdated String
- The date and time the Lustre file system was updated, in the format defined by RFC 3339. Example: 2024-04-25T21:10:29.600Z
- availabilityDomain string
- The availability domain the file system is in. May be unset as a blank or NULL value. Example: Uocm:PHX-AD-1
- capacityIn numberGbs 
- (Updatable) Capacity of the Lustre file system in GB. You can increase capacity only in multiples of 5 TB.
- clusterPlacement stringGroup Id 
- The OCID of the cluster placement group in which the Lustre file system exists.
- compartmentId string
- (Updatable) The OCID of the compartment that contains the Lustre file system.
- {[key: string]: string}
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
- displayName string
- (Updatable) A user-friendly name. It does not have to be unique, and it is changeable. Avoid entering confidential information. Example: My Lustre file system
- fileSystem stringDescription 
- (Updatable) Short description of the Lustre file system. Avoid entering confidential information.
- fileSystem stringName 
- The Lustre file system name. This is used in mount commands and other aspects of the client command line interface. The file system name is limited to 8 characters. Allowed characters are lower and upper case English letters, numbers, and '_'. If you have multiple Lustre file systems mounted on the same clients, this name can help distinguish them.
- {[key: string]: string}
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
- kmsKey stringId 
- (Updatable) The OCID of the KMS key used to encrypt the encryption keys associated with this file system.
- lifecycleDetails string
- A message that describes the current state of the Lustre file system in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
- lnet string
- Type of network used by clients to mount the file system. Example: tcp
- maintenanceWindows FileStorage Lustre File System Maintenance Window[] 
- The preferred day and time to perform maintenance.
- majorVersion string
- Major version of Lustre running in the Lustre file system. Example: 2.15
- managementService stringAddress 
- The IPv4 address of MGS (Lustre Management Service) used by clients to mount the file system. For example '10.0.0.4'.
- nsgIds string[]
- (Updatable) A list of Network Security Group OCIDs associated with this lustre file system. A maximum of 5 is allowed. Setting this to an empty array after the list is created removes the lustre file system from all NSGs. For more information about NSGs, see Security Rules.
- performanceTier string
- The Lustre file system performance tier. A value of MBPS_PER_TB_125represents 125 megabytes per second per terabyte.
- rootSquash FileConfiguration Storage Lustre File System Root Squash Configuration 
- (Updatable) An administrative feature that allows you to restrict root level access from clients that try to access your Lustre file system as root.
- state string
- The current state of the Lustre file system.
- subnetId string
- The OCID of the subnet the Lustre file system is in. - ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
- {[key: string]: string}
- System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
- timeBilling stringCycle End 
- The date and time that the current billing cycle for the file system will end, expressed in RFC 3339 timestamp format. After the current cycle ends, this date is updated automatically to the next timestamp, which is 30 days later. File systems deleted earlier than this time will still incur charges until the billing cycle ends. Example: 2016-08-25T21:10:29.600Z
- timeCreated string
- The date and time the Lustre file system was created, expressed in RFC 3339 timestamp format. Example: 2024-04-25T21:10:29.600Z
- timeUpdated string
- The date and time the Lustre file system was updated, in the format defined by RFC 3339. Example: 2024-04-25T21:10:29.600Z
- availability_domain str
- The availability domain the file system is in. May be unset as a blank or NULL value. Example: Uocm:PHX-AD-1
- capacity_in_ intgbs 
- (Updatable) Capacity of the Lustre file system in GB. You can increase capacity only in multiples of 5 TB.
- cluster_placement_ strgroup_ id 
- The OCID of the cluster placement group in which the Lustre file system exists.
- compartment_id str
- (Updatable) The OCID of the compartment that contains the Lustre file system.
- Mapping[str, str]
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
- display_name str
- (Updatable) A user-friendly name. It does not have to be unique, and it is changeable. Avoid entering confidential information. Example: My Lustre file system
- file_system_ strdescription 
- (Updatable) Short description of the Lustre file system. Avoid entering confidential information.
- file_system_ strname 
- The Lustre file system name. This is used in mount commands and other aspects of the client command line interface. The file system name is limited to 8 characters. Allowed characters are lower and upper case English letters, numbers, and '_'. If you have multiple Lustre file systems mounted on the same clients, this name can help distinguish them.
- Mapping[str, str]
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
- kms_key_ strid 
- (Updatable) The OCID of the KMS key used to encrypt the encryption keys associated with this file system.
- lifecycle_details str
- A message that describes the current state of the Lustre file system in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
- lnet str
- Type of network used by clients to mount the file system. Example: tcp
- maintenance_windows Sequence[FileStorage Lustre File System Maintenance Window Args] 
- The preferred day and time to perform maintenance.
- major_version str
- Major version of Lustre running in the Lustre file system. Example: 2.15
- management_service_ straddress 
- The IPv4 address of MGS (Lustre Management Service) used by clients to mount the file system. For example '10.0.0.4'.
- nsg_ids Sequence[str]
- (Updatable) A list of Network Security Group OCIDs associated with this lustre file system. A maximum of 5 is allowed. Setting this to an empty array after the list is created removes the lustre file system from all NSGs. For more information about NSGs, see Security Rules.
- performance_tier str
- The Lustre file system performance tier. A value of MBPS_PER_TB_125represents 125 megabytes per second per terabyte.
- root_squash_ Fileconfiguration Storage Lustre File System Root Squash Configuration Args 
- (Updatable) An administrative feature that allows you to restrict root level access from clients that try to access your Lustre file system as root.
- state str
- The current state of the Lustre file system.
- subnet_id str
- The OCID of the subnet the Lustre file system is in. - ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
- Mapping[str, str]
- System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
- time_billing_ strcycle_ end 
- The date and time that the current billing cycle for the file system will end, expressed in RFC 3339 timestamp format. After the current cycle ends, this date is updated automatically to the next timestamp, which is 30 days later. File systems deleted earlier than this time will still incur charges until the billing cycle ends. Example: 2016-08-25T21:10:29.600Z
- time_created str
- The date and time the Lustre file system was created, expressed in RFC 3339 timestamp format. Example: 2024-04-25T21:10:29.600Z
- time_updated str
- The date and time the Lustre file system was updated, in the format defined by RFC 3339. Example: 2024-04-25T21:10:29.600Z
- availabilityDomain String
- The availability domain the file system is in. May be unset as a blank or NULL value. Example: Uocm:PHX-AD-1
- capacityIn NumberGbs 
- (Updatable) Capacity of the Lustre file system in GB. You can increase capacity only in multiples of 5 TB.
- clusterPlacement StringGroup Id 
- The OCID of the cluster placement group in which the Lustre file system exists.
- compartmentId String
- (Updatable) The OCID of the compartment that contains the Lustre file system.
- Map<String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
- displayName String
- (Updatable) A user-friendly name. It does not have to be unique, and it is changeable. Avoid entering confidential information. Example: My Lustre file system
- fileSystem StringDescription 
- (Updatable) Short description of the Lustre file system. Avoid entering confidential information.
- fileSystem StringName 
- The Lustre file system name. This is used in mount commands and other aspects of the client command line interface. The file system name is limited to 8 characters. Allowed characters are lower and upper case English letters, numbers, and '_'. If you have multiple Lustre file systems mounted on the same clients, this name can help distinguish them.
- Map<String>
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
- kmsKey StringId 
- (Updatable) The OCID of the KMS key used to encrypt the encryption keys associated with this file system.
- lifecycleDetails String
- A message that describes the current state of the Lustre file system in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
- lnet String
- Type of network used by clients to mount the file system. Example: tcp
- maintenanceWindows List<Property Map>
- The preferred day and time to perform maintenance.
- majorVersion String
- Major version of Lustre running in the Lustre file system. Example: 2.15
- managementService StringAddress 
- The IPv4 address of MGS (Lustre Management Service) used by clients to mount the file system. For example '10.0.0.4'.
- nsgIds List<String>
- (Updatable) A list of Network Security Group OCIDs associated with this lustre file system. A maximum of 5 is allowed. Setting this to an empty array after the list is created removes the lustre file system from all NSGs. For more information about NSGs, see Security Rules.
- performanceTier String
- The Lustre file system performance tier. A value of MBPS_PER_TB_125represents 125 megabytes per second per terabyte.
- rootSquash Property MapConfiguration 
- (Updatable) An administrative feature that allows you to restrict root level access from clients that try to access your Lustre file system as root.
- state String
- The current state of the Lustre file system.
- subnetId String
- The OCID of the subnet the Lustre file system is in. - ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
- Map<String>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
- timeBilling StringCycle End 
- The date and time that the current billing cycle for the file system will end, expressed in RFC 3339 timestamp format. After the current cycle ends, this date is updated automatically to the next timestamp, which is 30 days later. File systems deleted earlier than this time will still incur charges until the billing cycle ends. Example: 2016-08-25T21:10:29.600Z
- timeCreated String
- The date and time the Lustre file system was created, expressed in RFC 3339 timestamp format. Example: 2024-04-25T21:10:29.600Z
- timeUpdated String
- The date and time the Lustre file system was updated, in the format defined by RFC 3339. Example: 2024-04-25T21:10:29.600Z
Supporting Types
FileStorageLustreFileSystemMaintenanceWindow, FileStorageLustreFileSystemMaintenanceWindowArgs              
- day_of_ strweek 
- Day of the week when the maintainence window starts.
- time_start str
- The time to start the maintenance window. The format is 'HH:MM', 'HH:MM' represents the time in UTC. Example: 22:00
FileStorageLustreFileSystemRootSquashConfiguration, FileStorageLustreFileSystemRootSquashConfigurationArgs                
- ClientExceptions List<string>
- (Updatable) A list of NIDs allowed with this lustre file system not to be squashed. A maximum of 10 is allowed.
- IdentitySquash string
- (Updatable) Used when clients accessing the Lustre file system have their UID and GID remapped to squashUidandsquashGid. IfROOT, only the root user and group (UID/GID 0) are remapped; ifNONE, no remapping is done. If unspecified, defaults toNONE.
- SquashGid string
- (Updatable) The GID value to remap to when squashing a client GID. See identitySquashfor more details. If unspecified, defaults to65534.
- SquashUid string
- (Updatable) The UID value to remap to when squashing a client UID. See identitySquashfor more details. If unspecified, defaults to65534.
- ClientExceptions []string
- (Updatable) A list of NIDs allowed with this lustre file system not to be squashed. A maximum of 10 is allowed.
- IdentitySquash string
- (Updatable) Used when clients accessing the Lustre file system have their UID and GID remapped to squashUidandsquashGid. IfROOT, only the root user and group (UID/GID 0) are remapped; ifNONE, no remapping is done. If unspecified, defaults toNONE.
- SquashGid string
- (Updatable) The GID value to remap to when squashing a client GID. See identitySquashfor more details. If unspecified, defaults to65534.
- SquashUid string
- (Updatable) The UID value to remap to when squashing a client UID. See identitySquashfor more details. If unspecified, defaults to65534.
- clientExceptions List<String>
- (Updatable) A list of NIDs allowed with this lustre file system not to be squashed. A maximum of 10 is allowed.
- identitySquash String
- (Updatable) Used when clients accessing the Lustre file system have their UID and GID remapped to squashUidandsquashGid. IfROOT, only the root user and group (UID/GID 0) are remapped; ifNONE, no remapping is done. If unspecified, defaults toNONE.
- squashGid String
- (Updatable) The GID value to remap to when squashing a client GID. See identitySquashfor more details. If unspecified, defaults to65534.
- squashUid String
- (Updatable) The UID value to remap to when squashing a client UID. See identitySquashfor more details. If unspecified, defaults to65534.
- clientExceptions string[]
- (Updatable) A list of NIDs allowed with this lustre file system not to be squashed. A maximum of 10 is allowed.
- identitySquash string
- (Updatable) Used when clients accessing the Lustre file system have their UID and GID remapped to squashUidandsquashGid. IfROOT, only the root user and group (UID/GID 0) are remapped; ifNONE, no remapping is done. If unspecified, defaults toNONE.
- squashGid string
- (Updatable) The GID value to remap to when squashing a client GID. See identitySquashfor more details. If unspecified, defaults to65534.
- squashUid string
- (Updatable) The UID value to remap to when squashing a client UID. See identitySquashfor more details. If unspecified, defaults to65534.
- client_exceptions Sequence[str]
- (Updatable) A list of NIDs allowed with this lustre file system not to be squashed. A maximum of 10 is allowed.
- identity_squash str
- (Updatable) Used when clients accessing the Lustre file system have their UID and GID remapped to squashUidandsquashGid. IfROOT, only the root user and group (UID/GID 0) are remapped; ifNONE, no remapping is done. If unspecified, defaults toNONE.
- squash_gid str
- (Updatable) The GID value to remap to when squashing a client GID. See identitySquashfor more details. If unspecified, defaults to65534.
- squash_uid str
- (Updatable) The UID value to remap to when squashing a client UID. See identitySquashfor more details. If unspecified, defaults to65534.
- clientExceptions List<String>
- (Updatable) A list of NIDs allowed with this lustre file system not to be squashed. A maximum of 10 is allowed.
- identitySquash String
- (Updatable) Used when clients accessing the Lustre file system have their UID and GID remapped to squashUidandsquashGid. IfROOT, only the root user and group (UID/GID 0) are remapped; ifNONE, no remapping is done. If unspecified, defaults toNONE.
- squashGid String
- (Updatable) The GID value to remap to when squashing a client GID. See identitySquashfor more details. If unspecified, defaults to65534.
- squashUid String
- (Updatable) The UID value to remap to when squashing a client UID. See identitySquashfor more details. If unspecified, defaults to65534.
Import
LustreFileSystems can be imported using the id, e.g.
$ pulumi import oci:Lustre/fileStorageLustreFileSystem:FileStorageLustreFileSystem test_lustre_file_system "id"
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the ociTerraform Provider.