Class AssignEncryptionKeyDetails
This is the input used to assign customer encryption key.
Inherited Members
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