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[_lustre.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:
- Availability
Domain string - 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 string - (Updatable) The OCID of the compartment that contains the Lustre file system.
- File
System 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.
- Performance
Tier string - The Lustre file system performance tier. A value of
MBPS_PER_TB_125
represents 125 megabytes per second per terabyte. - Root
Squash 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.
- Subnet
Id 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
- Cluster
Placement 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"}
- Display
Name 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
- File
System 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"}
- Kms
Key stringId - (Updatable) The OCID of the KMS key used to encrypt the encryption keys associated with this file system.
- Nsg
Ids 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"}
- Availability
Domain string - 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 string - (Updatable) The OCID of the compartment that contains the Lustre file system.
- File
System 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.
- Performance
Tier string - The Lustre file system performance tier. A value of
MBPS_PER_TB_125
represents 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 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
- Cluster
Placement 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"}
- Display
Name 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
- File
System 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"}
- Kms
Key stringId - (Updatable) The OCID of the KMS key used to encrypt the encryption keys associated with this file system.
- Nsg
Ids []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"}
- availability
Domain String - The availability domain the file system is in. May be unset as a blank or NULL value. Example:
Uocm:PHX-AD-1
- capacity
In IntegerGbs - (Updatable) Capacity of the Lustre file system in GB. You can increase capacity only in multiples of 5 TB.
- compartment
Id String - (Updatable) The OCID of the compartment that contains the Lustre file system.
- file
System 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.
- performance
Tier String - The Lustre file system performance tier. A value of
MBPS_PER_TB_125
represents 125 megabytes per second per terabyte. - root
Squash 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.
- subnet
Id 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
- cluster
Placement 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"}
- display
Name 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
- file
System 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"}
- kms
Key StringId - (Updatable) The OCID of the KMS key used to encrypt the encryption keys associated with this file system.
- nsg
Ids 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"}
- availability
Domain string - The availability domain the file system is in. May be unset as a blank or NULL value. Example:
Uocm:PHX-AD-1
- capacity
In numberGbs - (Updatable) Capacity of the Lustre file system in GB. You can increase capacity only in multiples of 5 TB.
- compartment
Id string - (Updatable) The OCID of the compartment that contains the Lustre file system.
- file
System 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.
- performance
Tier string - The Lustre file system performance tier. A value of
MBPS_PER_TB_125
represents 125 megabytes per second per terabyte. - root
Squash 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.
- subnet
Id 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
- cluster
Placement 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"}
- display
Name 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
- file
System 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"}
- kms
Key stringId - (Updatable) The OCID of the KMS key used to encrypt the encryption keys associated with this file system.
- nsg
Ids 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_125
represents 125 megabytes per second per terabyte. - root_
squash_ lustre.configuration File 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"}
- availability
Domain String - The availability domain the file system is in. May be unset as a blank or NULL value. Example:
Uocm:PHX-AD-1
- capacity
In NumberGbs - (Updatable) Capacity of the Lustre file system in GB. You can increase capacity only in multiples of 5 TB.
- compartment
Id String - (Updatable) The OCID of the compartment that contains the Lustre file system.
- file
System 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.
- performance
Tier String - The Lustre file system performance tier. A value of
MBPS_PER_TB_125
represents 125 megabytes per second per terabyte. - root
Squash 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.
- subnet
Id 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
- cluster
Placement 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"}
- display
Name 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
- file
System 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"}
- kms
Key StringId - (Updatable) The OCID of the KMS key used to encrypt the encryption keys associated with this file system.
- nsg
Ids 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.
- Lifecycle
Details 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
- Maintenance
Windows List<FileStorage Lustre File System Maintenance Window> - The preferred day and time to perform maintenance.
- Major
Version string - Major version of Lustre running in the Lustre file system. Example:
2.15
- Management
Service 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.
- Time
Billing 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
- Time
Created string - 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 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.
- Lifecycle
Details 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
- Maintenance
Windows []FileStorage Lustre File System Maintenance Window - The preferred day and time to perform maintenance.
- Major
Version string - Major version of Lustre running in the Lustre file system. Example:
2.15
- Management
Service 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.
- Time
Billing 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
- Time
Created string - 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 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.
- lifecycle
Details 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
- maintenance
Windows List<FileStorage File System Maintenance Window> - The preferred day and time to perform maintenance.
- major
Version String - Major version of Lustre running in the Lustre file system. Example:
2.15
- management
Service 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.
- time
Billing 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
- time
Created String - 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 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.
- lifecycle
Details 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
- maintenance
Windows FileStorage Lustre File System Maintenance Window[] - The preferred day and time to perform maintenance.
- major
Version string - Major version of Lustre running in the Lustre file system. Example:
2.15
- management
Service 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.
- time
Billing 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
- time
Created string - 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 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[lustre.File Storage 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.
- lifecycle
Details 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
- maintenance
Windows List<Property Map> - The preferred day and time to perform maintenance.
- major
Version String - Major version of Lustre running in the Lustre file system. Example:
2.15
- management
Service 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.
- time
Billing 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
- time
Created String - 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 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[_lustre.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[_lustre.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) -> FileStorageLustreFileSystem
func 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.
- Availability
Domain string - 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 stringGroup Id - The OCID of the cluster placement group in which the Lustre file system exists.
- Compartment
Id 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"}
- Display
Name 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
- File
System stringDescription - (Updatable) Short description of the Lustre file system. Avoid entering confidential information.
- File
System 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"}
- Kms
Key stringId - (Updatable) The OCID of the KMS key used to encrypt the encryption keys associated with this file system.
- Lifecycle
Details 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
- Maintenance
Windows List<FileStorage Lustre File System Maintenance Window> - The preferred day and time to perform maintenance.
- Major
Version string - Major version of Lustre running in the Lustre file system. Example:
2.15
- Management
Service stringAddress - The IPv4 address of MGS (Lustre Management Service) used by clients to mount the file system. For example '10.0.0.4'.
- Nsg
Ids 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.
- Performance
Tier string - The Lustre file system performance tier. A value of
MBPS_PER_TB_125
represents 125 megabytes per second per terabyte. - Root
Squash 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.
- Subnet
Id 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"}
- Time
Billing 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
- Time
Created string - 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 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 string - 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 stringGroup Id - The OCID of the cluster placement group in which the Lustre file system exists.
- Compartment
Id 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"}
- Display
Name 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
- File
System stringDescription - (Updatable) Short description of the Lustre file system. Avoid entering confidential information.
- File
System 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"}
- Kms
Key stringId - (Updatable) The OCID of the KMS key used to encrypt the encryption keys associated with this file system.
- Lifecycle
Details 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
- Maintenance
Windows []FileStorage Lustre File System Maintenance Window Args - The preferred day and time to perform maintenance.
- Major
Version string - Major version of Lustre running in the Lustre file system. Example:
2.15
- Management
Service stringAddress - The IPv4 address of MGS (Lustre Management Service) used by clients to mount the file system. For example '10.0.0.4'.
- Nsg
Ids []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.
- Performance
Tier string - The Lustre file system performance tier. A value of
MBPS_PER_TB_125
represents 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 string
- The current state of the Lustre file system.
- Subnet
Id 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"}
- Time
Billing 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
- Time
Created string - 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 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 String - The availability domain the file system is in. May be unset as a blank or NULL value. Example:
Uocm:PHX-AD-1
- capacity
In IntegerGbs - (Updatable) Capacity of the Lustre file system in GB. You can increase capacity only in multiples of 5 TB.
- cluster
Placement StringGroup Id - The OCID of the cluster placement group in which the Lustre file system exists.
- compartment
Id 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"}
- display
Name 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
- file
System StringDescription - (Updatable) Short description of the Lustre file system. Avoid entering confidential information.
- file
System 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"}
- kms
Key StringId - (Updatable) The OCID of the KMS key used to encrypt the encryption keys associated with this file system.
- lifecycle
Details 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
- maintenance
Windows List<FileStorage File System Maintenance Window> - The preferred day and time to perform maintenance.
- major
Version String - Major version of Lustre running in the Lustre file system. Example:
2.15
- management
Service StringAddress - The IPv4 address of MGS (Lustre Management Service) used by clients to mount the file system. For example '10.0.0.4'.
- nsg
Ids 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.
- performance
Tier String - The Lustre file system performance tier. A value of
MBPS_PER_TB_125
represents 125 megabytes per second per terabyte. - root
Squash 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.
- subnet
Id 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"}
- time
Billing 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
- time
Created String - 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 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 string - The availability domain the file system is in. May be unset as a blank or NULL value. Example:
Uocm:PHX-AD-1
- capacity
In numberGbs - (Updatable) Capacity of the Lustre file system in GB. You can increase capacity only in multiples of 5 TB.
- cluster
Placement stringGroup Id - The OCID of the cluster placement group in which the Lustre file system exists.
- compartment
Id 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"}
- display
Name 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
- file
System stringDescription - (Updatable) Short description of the Lustre file system. Avoid entering confidential information.
- file
System 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"}
- kms
Key stringId - (Updatable) The OCID of the KMS key used to encrypt the encryption keys associated with this file system.
- lifecycle
Details 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
- maintenance
Windows FileStorage Lustre File System Maintenance Window[] - The preferred day and time to perform maintenance.
- major
Version string - Major version of Lustre running in the Lustre file system. Example:
2.15
- management
Service stringAddress - The IPv4 address of MGS (Lustre Management Service) used by clients to mount the file system. For example '10.0.0.4'.
- nsg
Ids 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.
- performance
Tier string - The Lustre file system performance tier. A value of
MBPS_PER_TB_125
represents 125 megabytes per second per terabyte. - root
Squash 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.
- subnet
Id 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"}
- time
Billing 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
- time
Created string - 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 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[lustre.File Storage 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_125
represents 125 megabytes per second per terabyte. - root_
squash_ lustre.configuration File 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
- availability
Domain String - The availability domain the file system is in. May be unset as a blank or NULL value. Example:
Uocm:PHX-AD-1
- capacity
In NumberGbs - (Updatable) Capacity of the Lustre file system in GB. You can increase capacity only in multiples of 5 TB.
- cluster
Placement StringGroup Id - The OCID of the cluster placement group in which the Lustre file system exists.
- compartment
Id 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"}
- display
Name 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
- file
System StringDescription - (Updatable) Short description of the Lustre file system. Avoid entering confidential information.
- file
System 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"}
- kms
Key StringId - (Updatable) The OCID of the KMS key used to encrypt the encryption keys associated with this file system.
- lifecycle
Details 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
- maintenance
Windows List<Property Map> - The preferred day and time to perform maintenance.
- major
Version String - Major version of Lustre running in the Lustre file system. Example:
2.15
- management
Service StringAddress - The IPv4 address of MGS (Lustre Management Service) used by clients to mount the file system. For example '10.0.0.4'.
- nsg
Ids 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.
- performance
Tier String - The Lustre file system performance tier. A value of
MBPS_PER_TB_125
represents 125 megabytes per second per terabyte. - root
Squash 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.
- subnet
Id 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"}
- time
Billing 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
- time
Created String - 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 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
- Client
Exceptions List<string> - (Updatable) A list of NIDs allowed with this lustre file system not to be squashed. A maximum of 10 is allowed.
- Identity
Squash string - (Updatable) Used when clients accessing the Lustre file system have their UID and GID remapped to
squashUid
andsquashGid
. IfROOT
, only the root user and group (UID/GID 0) are remapped; ifNONE
, no remapping is done. If unspecified, defaults toNONE
. - Squash
Gid string - (Updatable) The GID value to remap to when squashing a client GID. See
identitySquash
for more details. If unspecified, defaults to65534
. - Squash
Uid string - (Updatable) The UID value to remap to when squashing a client UID. See
identitySquash
for more details. If unspecified, defaults to65534
.
- Client
Exceptions []string - (Updatable) A list of NIDs allowed with this lustre file system not to be squashed. A maximum of 10 is allowed.
- Identity
Squash string - (Updatable) Used when clients accessing the Lustre file system have their UID and GID remapped to
squashUid
andsquashGid
. IfROOT
, only the root user and group (UID/GID 0) are remapped; ifNONE
, no remapping is done. If unspecified, defaults toNONE
. - Squash
Gid string - (Updatable) The GID value to remap to when squashing a client GID. See
identitySquash
for more details. If unspecified, defaults to65534
. - Squash
Uid string - (Updatable) The UID value to remap to when squashing a client UID. See
identitySquash
for more details. If unspecified, defaults to65534
.
- client
Exceptions List<String> - (Updatable) A list of NIDs allowed with this lustre file system not to be squashed. A maximum of 10 is allowed.
- identity
Squash String - (Updatable) Used when clients accessing the Lustre file system have their UID and GID remapped to
squashUid
andsquashGid
. IfROOT
, only the root user and group (UID/GID 0) are remapped; ifNONE
, no remapping is done. If unspecified, defaults toNONE
. - squash
Gid String - (Updatable) The GID value to remap to when squashing a client GID. See
identitySquash
for more details. If unspecified, defaults to65534
. - squash
Uid String - (Updatable) The UID value to remap to when squashing a client UID. See
identitySquash
for more details. If unspecified, defaults to65534
.
- client
Exceptions string[] - (Updatable) A list of NIDs allowed with this lustre file system not to be squashed. A maximum of 10 is allowed.
- identity
Squash string - (Updatable) Used when clients accessing the Lustre file system have their UID and GID remapped to
squashUid
andsquashGid
. IfROOT
, only the root user and group (UID/GID 0) are remapped; ifNONE
, no remapping is done. If unspecified, defaults toNONE
. - squash
Gid string - (Updatable) The GID value to remap to when squashing a client GID. See
identitySquash
for more details. If unspecified, defaults to65534
. - squash
Uid string - (Updatable) The UID value to remap to when squashing a client UID. See
identitySquash
for 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
squashUid
andsquashGid
. 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
identitySquash
for more details. If unspecified, defaults to65534
. - squash_
uid str - (Updatable) The UID value to remap to when squashing a client UID. See
identitySquash
for more details. If unspecified, defaults to65534
.
- client
Exceptions List<String> - (Updatable) A list of NIDs allowed with this lustre file system not to be squashed. A maximum of 10 is allowed.
- identity
Squash String - (Updatable) Used when clients accessing the Lustre file system have their UID and GID remapped to
squashUid
andsquashGid
. IfROOT
, only the root user and group (UID/GID 0) are remapped; ifNONE
, no remapping is done. If unspecified, defaults toNONE
. - squash
Gid String - (Updatable) The GID value to remap to when squashing a client GID. See
identitySquash
for more details. If unspecified, defaults to65534
. - squash
Uid String - (Updatable) The UID value to remap to when squashing a client UID. See
identitySquash
for 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
oci
Terraform Provider.