Show / Hide Table of Contents

Class OkvKeyDetails

Details for OKV encryption key.

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

Properties

CertificateDirectoryName

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

OKV certificate directory name

Remarks

Required

CertificateId

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

OKV certificate id

DirectoryName

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

OKV wallet directory name

Remarks

Required

OkvKmsKey

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

UUID of OKV KMS Key

Remarks

Required

OkvUri

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

URI of OKV server

Remarks

Required

In this article
Back to top