Show / Hide Table of Contents

Class CreateLustreFileSystemDetails

The details to create a Lustre file system.

Inheritance
object
CreateLustreFileSystemDetails
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.LustrefilestorageService.Models
Assembly: OCI.DotNetSDK.Lustrefilestorage.dll
Syntax
public class CreateLustreFileSystemDetails

Properties

AvailabilityDomain

Declaration
[Required(ErrorMessage = "AvailabilityDomain is required.")]
[JsonProperty(PropertyName = "availabilityDomain")]
public string AvailabilityDomain { get; set; }
Property Value
Type Description
string

The availability domain the file system is in. May be unset as a blank or NULL value.
Example: Uocm:PHX-AD-1

Remarks

Required

CapacityInGBs

Declaration
[Required(ErrorMessage = "CapacityInGBs is required.")]
[JsonProperty(PropertyName = "capacityInGBs")]
public int? CapacityInGBs { get; set; }
Property Value
Type Description
int?

Capacity of the Lustre file system in GB. You can increase capacity only in multiples of 5 TB.

Remarks

Required

ClusterPlacementGroupId

Declaration
[JsonProperty(PropertyName = "clusterPlacementGroupId")]
public string ClusterPlacementGroupId { get; set; }
Property Value
Type Description
string

The OCID of the cluster placement group in which the Lustre file system exists.

CompartmentId

Declaration
[Required(ErrorMessage = "CompartmentId is required.")]
[JsonProperty(PropertyName = "compartmentId")]
public string CompartmentId { get; set; }
Property Value
Type Description
string

The OCID of the compartment that contains the Lustre file system.

Remarks

Required

DefinedTags

Declaration
[JsonProperty(PropertyName = "definedTags")]
public Dictionary<string, Dictionary<string, object>> DefinedTags { get; set; }
Property Value
Type Description
Dictionary<string, Dictionary<string, object>>

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

Declaration
[JsonProperty(PropertyName = "displayName")]
public string DisplayName { get; set; }
Property Value
Type Description
string

A user-friendly name. It does not have to be unique, and it is changeable. Avoid entering confidential information.
Example: My Lustre file system

FileSystemDescription

Declaration
[JsonProperty(PropertyName = "fileSystemDescription")]
public string FileSystemDescription { get; set; }
Property Value
Type Description
string

Short description of the Lustre file system. Avoid entering confidential information.

FileSystemName

Declaration
[Required(ErrorMessage = "FileSystemName is required.")]
[JsonProperty(PropertyName = "fileSystemName")]
public string FileSystemName { get; set; }
Property Value
Type Description
string

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.

Remarks

Required

FreeformTags

Declaration
[JsonProperty(PropertyName = "freeformTags")]
public Dictionary<string, string> FreeformTags { get; set; }
Property Value
Type Description
Dictionary<string, string>

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"}

KmsKeyId

Declaration
[JsonProperty(PropertyName = "kmsKeyId")]
public string KmsKeyId { get; set; }
Property Value
Type Description
string

The OCID of the KMS key used to encrypt the encryption keys associated with this file system.

NsgIds

Declaration
[JsonProperty(PropertyName = "nsgIds")]
public List<string> NsgIds { get; set; }
Property Value
Type Description
List<string>

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

Declaration
[Required(ErrorMessage = "PerformanceTier is required.")]
[JsonProperty(PropertyName = "performanceTier")]
[JsonConverter(typeof(StringEnumConverter))]
public CreateLustreFileSystemDetails.PerformanceTierEnum? PerformanceTier { get; set; }
Property Value
Type Description
CreateLustreFileSystemDetails.PerformanceTierEnum?

The Lustre file system performance tier. A value of MBPS_PER_TB_125 represents 125 megabytes per second per terabyte.

Remarks

Required

RootSquashConfiguration

Declaration
[Required(ErrorMessage = "RootSquashConfiguration is required.")]
[JsonProperty(PropertyName = "rootSquashConfiguration")]
public RootSquashConfiguration RootSquashConfiguration { get; set; }
Property Value
Type Description
RootSquashConfiguration
Remarks

Required

SubnetId

Declaration
[Required(ErrorMessage = "SubnetId is required.")]
[JsonProperty(PropertyName = "subnetId")]
public string SubnetId { get; set; }
Property Value
Type Description
string

The OCID of the subnet the Lustre file system is in.

Remarks

Required

In this article
Back to top