Show / Hide Table of Contents

Class CreateDistributedDatabaseCatalogWithExadbXsNewClusterDetails

Configuration for creating a distributed database catalog on a new ExaDB-XS VM cluster.

Inheritance
object
CreateDistributedDatabaseCatalogDatabaseDetails
CreateDistributedDatabaseCatalogWithExadbXsNewClusterDetails
Inherited Members
CreateDistributedDatabaseCatalogDatabaseDetails.TdeWalletPassword
CreateDistributedDatabaseCatalogDatabaseDetails.TdeWalletPasswordSecretId
CreateDistributedDatabaseCatalogDatabaseDetails.TdeWalletPasswordSecretVersionNumber
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 CreateDistributedDatabaseCatalogWithExadbXsNewClusterDetails : CreateDistributedDatabaseCatalogDatabaseDetails

Properties

AdminPassword

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

The admin password for the catalog associated with Globally distributed database.

AdminPasswordSecretId

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

The OCI vault secret [/Content/General/Concepts/identifiers.htm]OCID. This cannot be used in conjunction with adminPassword.

AdminPasswordSecretVersionNumber

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

The version of the vault secret. If no version is specified, the latest version will be used.

AvailabilityDomain

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

The name of the availability domain that the distributed database catalog will be located in.

Remarks

Required

ExascaleDbStorageVaultId

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

The OCID of the exascale db storage vault.

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.

ProtectionMode

Declaration
[JsonProperty(PropertyName = "protectionMode")]
[JsonConverter(typeof(StringEnumConverter))]
public DistributedDbProtectionMode? ProtectionMode { get; set; }
Property Value
Type Description
DistributedDbProtectionMode?

The protection mode used for the Data Guard association.

TransportType

Declaration
[JsonProperty(PropertyName = "transportType")]
[JsonConverter(typeof(StringEnumConverter))]
public DistributedDbTransportType? TransportType { get; set; }
Property Value
Type Description
DistributedDbTransportType?

The transport type used for the Data Guard association.

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.

VmClusterDetails

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

Required

In this article
Back to top