Show / Hide Table of Contents

Class CreateDistributedDatabaseShardWithExadbXsDetails

Globally distributed database shard based on exadbxs.

Inheritance
object
CreateDistributedDatabaseShardDetails
CreateDistributedDatabaseShardWithExadbXsDetails
Inherited Members
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 CreateDistributedDatabaseShardWithExadbXsDetails : CreateDistributedDatabaseShardDetails

Properties

AdminPassword

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

The admin password for the shard associated with Globally distributed 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.

PeerVmClusterIds

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

The collection of OCID of the peer VmClusterIds.

ShardSpace

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

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

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.

VmClusterId

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

The OCID of the VmCluster.

Remarks

Required

In this article
Back to top