Show / Hide Table of Contents

Class DatabaseStorageSizeResponseDetails

The database storage size details. This database option is supported for the Exadata VM cluster on Exascale Infrastructure.

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

Properties

DataStorageSizeInGBs

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

The DATA storage size, in gigabytes, that is applicable for the database.

Remarks

Required

RecoStorageSizeInGBs

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

The RECO storage size, in gigabytes, that is applicable for the database.

Remarks

Required

RedoLogStorageSizeInGBs

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

The REDO Log storage size, in gigabytes, that is applicable for the database.

Remarks

Required

In this article
Back to top