Show / Hide Table of Contents

Class KeyStoreTypeFromOracleKeyVaultDetails

Details for Oracle Key Vault

Inheritance
object
KeyStoreTypeDetails
KeyStoreTypeFromOracleKeyVaultDetails
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 KeyStoreTypeFromOracleKeyVaultDetails : KeyStoreTypeDetails

Properties

AdminUsername

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

The administrator username to connect to Oracle Key Vault

Remarks

Required

ConnectionIps

Declaration
[Required(ErrorMessage = "ConnectionIps is required.")]
[JsonProperty(PropertyName = "connectionIps")]
public List<string> ConnectionIps { get; set; }
Property Value
Type Description
List<string>

The list of Oracle Key Vault connection IP addresses.

Remarks

Required

SecretId

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

The OCID of the Oracle Cloud Infrastructure secret.

Remarks

Required

VaultId

Declaration
[Required(ErrorMessage = "VaultId is required.")]
[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.

Remarks

Required

In this article
Back to top