Show / Hide Table of Contents

Class ConfigureAutonomousDatabaseVaultKeyDetails

Configuration details for the Autonomous Database vault key.

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

Properties

IsUsingOracleManagedKeys

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

True if disable Customer Managed Keys and use Oracle Managed Keys.

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.

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 secretId are required for Customer Managed Keys.

In this article
Back to top