Show / Hide Table of Contents

Class DiskGroupCapacityDetails

Capacity details of the storage disk group.

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

Properties

FreeSpaceInGbs

Declaration
[JsonProperty(PropertyName = "freeSpaceInGbs")]
public double FreeSpaceInGbs { get; set; }
Property Value
Type Description
double

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

ReservedSpaceInGbs

Declaration
[JsonProperty(PropertyName = "reservedSpaceInGbs")]
public double ReservedSpaceInGbs { get; set; }
Property Value
Type Description
double

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

StorageType

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

The storage type for the Cloud Database Infrastructure.

TotalSpaceInGbs

Declaration
[JsonProperty(PropertyName = "totalSpaceInGbs")]
public double TotalSpaceInGbs { get; set; }
Property Value
Type Description
double

The total amount of logical disk space available, in gigabytes (GB).

In this article
Back to top