Show / Hide Table of Contents

Class DbStorageVaultDetails

Details of the request to create exascale db vault storage for shard or catalog of the distributed database.

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

Properties

AdditionalFlashCacheInPercent

Declaration
[JsonProperty(PropertyName = "additionalFlashCacheInPercent")]
public int? AdditionalFlashCacheInPercent { get; set; }
Property Value
Type Description
int?

The size of additional Flash Cache in percentage of High Capacity database storage.

AutoscaleLimitInGBs

Declaration
[JsonProperty(PropertyName = "autoscaleLimitInGBs")]
public int? AutoscaleLimitInGBs { get; set; }
Property Value
Type Description
int?

The maximum limit, in gigabytes, to which the Vault storage size can automatically scale when auto scaling is enabled for the Database Storage Vault.

CompartmentId

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

The OCID of the compartment for Db Storage Vault.

Remarks

Required

HighCapacityDatabaseStorage

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

Total storage capacity in GB for vault storage.

Remarks

Required

IsAutoscaleEnabled

Declaration
[JsonProperty(PropertyName = "isAutoscaleEnabled")]
public bool? IsAutoscaleEnabled { get; set; }
Property Value
Type Description
bool?

Indicates if autoscale feature is enabled for the Database Storage Vault. The default value is FALSE.

SubscriptionId

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

The OCID of the subscription with which resource needs to be associated with.

In this article
Back to top