Show / Hide Table of Contents

Class UpdateLustreFileSystemDetails

The data to update a Lustre file system.

Inheritance
object
UpdateLustreFileSystemDetails
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 UpdateLustreFileSystemDetails

Properties

CapacityInGBs

Declaration
[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.

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.

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.

RootSquashConfiguration

Declaration
[JsonProperty(PropertyName = "rootSquashConfiguration")]
public RootSquashConfiguration RootSquashConfiguration { get; set; }
Property Value
Type Description
RootSquashConfiguration
In this article
Back to top