Show / Hide Table of Contents

Class AdvancedClusterFileSystem

Details of an advanced cluster file system.

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

Properties

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.

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.

Description

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

Description of the advanced cluster file system.

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

Id

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

The OCID of the advanced cluster file system.

Remarks

Required

IsMounted

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

True if the file system is mounted on all VMs within VM Cluster.

Remarks

Required

LifecycleDetails

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

Additional information about the current lifecycle state.

LifecycleState

Declaration
[Required(ErrorMessage = "LifecycleState is required.")]
[JsonProperty(PropertyName = "lifecycleState")]
[JsonConverter(typeof(ResponseEnumConverter))]
public AdvancedClusterFileSystem.LifecycleStateEnum? LifecycleState { get; set; }
Property Value
Type Description
AdvancedClusterFileSystem.LifecycleStateEnum?

The current state of the advanced cluster file system. Valid states are CREATING, AVAILABLE, UPDATING, FAILED, DELETED.

Remarks

Required

MountPoint

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

The mount point of file system.

Remarks

Required

Name

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

The user-friendly name for the Advanced cluster file system. The file system name is unique for a cluster.

Remarks

Required

StorageInGBs

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

The total storage allocated for advanced cluster file system in GBs.

Remarks

Required

SystemTags

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

System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.

TimeCreated

Declaration
[JsonProperty(PropertyName = "timeCreated")]
public DateTime? TimeCreated { get; set; }
Property Value
Type Description
DateTime?

The date and time the advanced cluster file system was created.

TimeUpdated

Declaration
[JsonProperty(PropertyName = "timeUpdated")]
public DateTime? TimeUpdated { get; set; }
Property Value
Type Description
DateTime?

The last date and time that the advanced cluster file system was updated.

VaultId

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

The OCID of the Oracle Cloud Infrastructure vault. This parameter and secretId are required for Customer Managed Keys.

VmClusterId

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

The OCID of the VM cluster.

Remarks

Required

In this article
Back to top