Show / Hide Table of Contents

Class ExternalAsmInstanceParameters

The initialization parameters for an ASM instance.

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

Properties

AsmInstanceDisplayName

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

The user-friendly name for the ASM instance. The name does not have to be unique.

Remarks

Required

AsmInstanceId

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

The OCID of the external ASM instance.

Remarks

Required

AutoMountDiskGroups

Declaration
[Required(ErrorMessage = "AutoMountDiskGroups is required.")]
[JsonProperty(PropertyName = "autoMountDiskGroups")]
public List<string> AutoMountDiskGroups { get; set; }
Property Value
Type Description
List<string>

The list of disk group names that an ASM instance mounts at startup or when the ALTER DISKGROUP ALL MOUNT statement is issued.

Remarks

Required

DiskDiscoveryPath

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

An operating system-dependent value used to limit the set of disks considered for discovery.

Remarks

Required

PreferredReadFailureGroups

Declaration
[Required(ErrorMessage = "PreferredReadFailureGroups is required.")]
[JsonProperty(PropertyName = "preferredReadFailureGroups")]
public List<string> PreferredReadFailureGroups { get; set; }
Property Value
Type Description
List<string>

The list of failure groups that contain preferred read disks.

Remarks

Required

RebalancePower

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

The maximum power on an ASM instance for disk rebalancing.

Remarks

Required

In this article
Back to top