Show / Hide Table of Contents

Class DiskGroupDetails

Information about a diskgroup which includes diskgroup name and ASM name.

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

Properties

AsmName

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

The ASM name.

Remarks

Required

DiskgroupName

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

The diskgroup name.

Remarks

Required

In this article
Back to top