Show / Hide Table of Contents

Class EncryptDataDetails

Encrypt data details.

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

Properties

KeyGenerationType

Declaration
[Required(ErrorMessage = "KeyGenerationType is required.")]
[JsonProperty(PropertyName = "keyGenerationType")]
[JsonConverter(typeof(ResponseEnumConverter))]
public KeyGenerationType? KeyGenerationType { get; set; }
Property Value
Type Description
KeyGenerationType?

Select whether to use Oracle-managed key (SYSTEM) or your own key (BYOK).

Remarks

Required

KeyId

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

The OCID of the key to use.

In this article
Back to top