Show / Hide Table of Contents

Class CreateDistributedDatabaseCatalogDatabaseWithDbHomeDetails

Configuration for creating a distributed database catalog using a pre-existing Database Home.

Inheritance
object
CreateDistributedDatabaseCatalogDatabaseDetails
CreateDistributedDatabaseCatalogDatabaseWithDbHomeDetails
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 CreateDistributedDatabaseCatalogDatabaseWithDbHomeDetails : CreateDistributedDatabaseCatalogDatabaseDetails

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 catalog associated with Globally distributed database.

Remarks

Required

DbHomeId

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

The OCID of the Database Home.

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.

In this article
Back to top