Show / Hide Table of Contents

Class DistributedAutonomousDatabaseShardWithDedicatedInfra

Globally distributed autonomous database shard with dedicated autonomous infrastructure.

Inheritance
object
DistributedAutonomousDatabaseShard
DistributedAutonomousDatabaseShardWithDedicatedInfra
Inherited Members
DistributedAutonomousDatabaseShard.Name
DistributedAutonomousDatabaseShard.TimeCreated
DistributedAutonomousDatabaseShard.TimeUpdated
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.DistributeddatabaseService.Models
Assembly: OCI.DotNetSDK.Distributeddatabase.dll
Syntax
public class DistributedAutonomousDatabaseShardWithDedicatedInfra : DistributedAutonomousDatabaseShard

Properties

CloudAutonomousVmClusterId

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

The OCID of the cloudAutonomousVmCluster.

Remarks

Required

ComputeCount

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

The compute count for the shard database. It has to be in multiples of 2.

Remarks

Required

ContainerDatabaseId

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

the identifier of the container database for underlying supporting resource.

DataStorageSizeInGbs

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

The data disk group size to be allocated in GBs for the shard database.

Remarks

Required

IsAutoScalingEnabled

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

Determines the auto-scaling mode for the shard database.

Remarks

Required

KmsKeyId

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

The OCID of the key container that is used as the master encryption key in database transparent data encryption (TDE) operations.

KmsKeyVersionId

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

The OCID of the key container version that is used in database transparent data encryption (TDE) operations KMS Key can have multiple key versions.

Metadata

Declaration
[JsonProperty(PropertyName = "metadata")]
public DistributedAutonomousDbMetadata Metadata { get; set; }
Property Value
Type Description
DistributedAutonomousDbMetadata

PeerCloudAutonomousVmClusterIds

Declaration
[JsonProperty(PropertyName = "peerCloudAutonomousVmClusterIds")]
public List<string> PeerCloudAutonomousVmClusterIds { get; set; }
Property Value
Type Description
List<string>

The collection of OCID of the peer cloudAutonomousVmClusters.

PeerDetails

Declaration
[JsonProperty(PropertyName = "peerDetails")]
public List<ShardPeerWithDedicatedInfra> PeerDetails { get; set; }
Property Value
Type Description
List<ShardPeerWithDedicatedInfra>

Peer details for the shard with dedicated infrastructure.

ShardGroup

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

The name of the shardGroup for the shard.

Remarks

Required

ShardSpace

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

The shard space name for the Globally distributed autonomous database. Shard space for existing shard cannot be changed, once shard is created. Shard space name shall be used while creation of new shards.

Status

Declaration
[Required(ErrorMessage = "Status is required.")]
[JsonProperty(PropertyName = "status")]
[JsonConverter(typeof(ResponseEnumConverter))]
public DistributedAutonomousDatabaseShardWithDedicatedInfra.StatusEnum? Status { get; set; }
Property Value
Type Description
DistributedAutonomousDatabaseShardWithDedicatedInfra.StatusEnum?

Status of shard with dedicated infrastructure for the Globally distributed autonomous database.

Remarks

Required

SupportingResourceId

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

the identifier of the underlying supporting resource.

VaultId

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

The OCID of the Oracle Cloud Infrastructure vault. This parameter and kmsKeyId are required for Customer Managed Keys.

In this article
Back to top