Show / Hide Table of Contents

Class StorageCapacityDetails

Capacity details of the Storage disk group.

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

Properties

DiskGroup

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

Disk group name.

LogicalFreeSpaceInGBs

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

The total amount of logical disk space that is currently available for use in a disk group, in gigabytes (GB).

PhyFreeSpaceInGBs

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

The total amount of physical disk space that is currently available for use in a disk group, in gigabytes (GB).

PhyReservedSpaceInGBs

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

The total amount of physical disk space that is reserved for system use in a disk group, in gigabytes (GB).

PhyTotalSpaceInGBs

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

The total amount of physical disk space available in a disk group, in gigabytes (GB).

StorageDiskRedundancy

Declaration
[JsonProperty(PropertyName = "storageDiskRedundancy")]
[JsonConverter(typeof(ResponseEnumConverter))]
public StorageDiskRedundancy? StorageDiskRedundancy { get; set; }
Property Value
Type Description
StorageDiskRedundancy?

The Disk redundancy for Database Infrastructure storage.

In this article
Back to top