Show / Hide Table of Contents

Class AzureKeyDetails

Details for Azure encryption key.

Inheritance
object
AutonomousDatabaseEncryptionKeyDetails
AzureKeyDetails
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 AzureKeyDetails : AutonomousDatabaseEncryptionKeyDetails

Properties

KeyName

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

Azure key name

Remarks

Required

VaultUri

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

Azure vault URI

Remarks

Required

In this article
Back to top