Show / Hide Table of Contents

Class EncryptionInfo

Encryption information for a Cloud Spanner database or backup.

Inheritance
System.Object
EncryptionInfo
Implements
IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.Spanner.v1.Data
Assembly: Google.Apis.Spanner.v1.dll
Syntax
public class EncryptionInfo : IDirectResponseSchema

Properties

EncryptionStatus

Output only. If present, the status of a recent encrypt/decrypt call on underlying data for this database or backup. Regardless of status, data is always encrypted at rest.

Declaration
[JsonProperty("encryptionStatus")]
public virtual Status EncryptionStatus { get; set; }
Property Value
Type Description
Status

EncryptionType

Output only. The type of encryption.

Declaration
[JsonProperty("encryptionType")]
public virtual string EncryptionType { get; set; }
Property Value
Type Description
System.String

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

KmsKeyVersion

Output only. A Cloud KMS key version that is being used to protect the database or backup.

Declaration
[JsonProperty("kmsKeyVersion")]
public virtual string KmsKeyVersion { get; set; }
Property Value
Type Description
System.String

Implements

IDirectResponseSchema
In This Article
Back to top