Show / Hide Table of Contents

Class ExternalAsmDiskGroupSummary

The summary of an external ASM disk group.

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

Properties

Databases

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

The unique names of the databases using the disk group.

DismountingInstanceCount

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

The number of ASM instances that have the disk group in dismounted state.

IsSparse

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

Indicates whether the disk group is a sparse disk group or not.

MountingInstanceCount

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

The number of ASM instances that have the disk group in mounted state.

Name

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

The name of the ASM disk group.

Remarks

Required

RedundancyType

Declaration
[JsonProperty(PropertyName = "redundancyType")]
[JsonConverter(typeof(ResponseEnumConverter))]
public ExternalAsmDiskGroupSummary.RedundancyTypeEnum? RedundancyType { get; set; }
Property Value
Type Description
ExternalAsmDiskGroupSummary.RedundancyTypeEnum?

The redundancy type of the disk group.

TotalSizeInMBs

Declaration
[JsonProperty(PropertyName = "totalSizeInMBs")]
public long? TotalSizeInMBs { get; set; }
Property Value
Type Description
long?

The total capacity of the disk group (in megabytes).

UsedPercent

Declaration
[JsonProperty(PropertyName = "usedPercent")]
public float? UsedPercent { get; set; }
Property Value
Type Description
float?

The percentage of used space in the disk group.

UsedSizeInMBs

Declaration
[JsonProperty(PropertyName = "usedSizeInMBs")]
public long? UsedSizeInMBs { get; set; }
Property Value
Type Description
long?

The used capacity of the disk group (in megabytes).

In this article
Back to top