Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(docs): correct docs for CUSTOMER_MANAGED_ENCRYPTION #737

Merged
merged 2 commits into from Apr 19, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Expand Up @@ -32,13 +32,16 @@ public enum Type {
com.google.bigtable.admin.v2.EncryptionInfo.EncryptionType.ENCRYPTION_TYPE_UNSPECIFIED),
/**
* The data backing this resource is encrypted at rest with a key that is fully managed by
* Google. No key version or status will be populated.
* Google. No key version or status will be populated. This is the default state.
*/
GOOGLE_DEFAULT_ENCRYPTION(
com.google.bigtable.admin.v2.EncryptionInfo.EncryptionType.GOOGLE_DEFAULT_ENCRYPTION),
/**
* The data backing this resource is encrypted at rest with a key that is fully managed by
* Google. No key version or status will be populated. This is the default state.
* The data backing this resource is encrypted at rest with a key that is managed by the
* customer. The in-use version of the key and its status are populated for CMEK-protected
* tables. CMEK-protected backups are pinned to the key version that was in use at the time the
* backup was taken. This key version is populated but its status is not tracked and is reported
* as `UNKNOWN`.
*/
CUSTOMER_MANAGED_ENCRYPTION(
com.google.bigtable.admin.v2.EncryptionInfo.EncryptionType.CUSTOMER_MANAGED_ENCRYPTION),
Expand Down