Show / Hide Table of Contents

Class AssignEncryptionKeyDetails

This is the input used to assign customer encryption key.

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

Properties

KeyId

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

This is the key OCID for encryption key.

Remarks

Required

KeyType

Declaration
[Required(ErrorMessage = "KeyType is required.")]
[JsonProperty(PropertyName = "keyType")]
[JsonConverter(typeof(StringEnumConverter))]
public EncryptionKeyType? KeyType { get; set; }
Property Value
Type Description
EncryptionKeyType?

This is the type of data to be encrypted. It can be either active or archival.

Remarks

Required

In this article
Back to top