Show / Hide Table of Contents

Class DatabaseStorageSizeDetails

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

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

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

In this article
Back to top