Show / Hide Table of Contents

Class DefinedFileSystemConfiguration

Details of the file system configuration of the Exadata infrastructure.

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

Properties

IsBackupPartition

Declaration
[JsonProperty(PropertyName = "isBackupPartition")]
public bool? IsBackupPartition { get; set; }
Property Value
Type Description
bool?

If true, the file system is used to create a backup prior to Exadata VM OS update.

IsResizable

Declaration
[JsonProperty(PropertyName = "isResizable")]
public bool? IsResizable { get; set; }
Property Value
Type Description
bool?

If true, the file system resize is allowed for the Exadata Infrastructure cluster. If false, the file system resize is not allowed.

MinSizeGb

Declaration
[JsonProperty(PropertyName = "minSizeGb")]
public int? MinSizeGb { get; set; }
Property Value
Type Description
int?

The minimum size of file system.

MountPoint

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

The mount point of file system.

In this article
Back to top