Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

EncryptionInfo

import type { EncryptionInfo } from "https://googleapis.deno.dev/v1/spanner:v1.ts";

Encryption information for a Cloud Spanner database or backup.

interface EncryptionInfo {
readonly encryptionStatus?: Status;
readonly encryptionType?: "TYPE_UNSPECIFIED" | "GOOGLE_DEFAULT_ENCRYPTION" | "CUSTOMER_MANAGED_ENCRYPTION";
readonly kmsKeyVersion?: string;
}

§Properties

§
readonly encryptionStatus?: Status
[src]

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.

§
readonly encryptionType?: "TYPE_UNSPECIFIED" | "GOOGLE_DEFAULT_ENCRYPTION" | "CUSTOMER_MANAGED_ENCRYPTION"
[src]

Output only. The type of encryption.

§
readonly kmsKeyVersion?: string
[src]

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