Skip to content

Commit b3bb7f7

Browse files
authored
fix(docs): correct docs for CUSTOMER_MANAGED_ENCRYPTION (#737)
* fix(docs): correct docs for CUSTOMER_MANAGED_ENCRYPTION * fix(docs): correct docs for CUSTOMER_MANAGED_ENCRYPTION
1 parent 8bc6ab4 commit b3bb7f7

File tree

1 file changed

+6
-3
lines changed
  • google-cloud-bigtable/src/main/java/com/google/cloud/bigtable/admin/v2/models

1 file changed

+6
-3
lines changed

google-cloud-bigtable/src/main/java/com/google/cloud/bigtable/admin/v2/models/EncryptionInfo.java

+6-3
Original file line numberDiff line numberDiff line change
@@ -32,13 +32,16 @@ public enum Type {
3232
com.google.bigtable.admin.v2.EncryptionInfo.EncryptionType.ENCRYPTION_TYPE_UNSPECIFIED),
3333
/**
3434
* The data backing this resource is encrypted at rest with a key that is fully managed by
35-
* Google. No key version or status will be populated.
35+
* Google. No key version or status will be populated. This is the default state.
3636
*/
3737
GOOGLE_DEFAULT_ENCRYPTION(
3838
com.google.bigtable.admin.v2.EncryptionInfo.EncryptionType.GOOGLE_DEFAULT_ENCRYPTION),
3939
/**
40-
* The data backing this resource is encrypted at rest with a key that is fully managed by
41-
* Google. No key version or status will be populated. This is the default state.
40+
* The data backing this resource is encrypted at rest with a key that is managed by the
41+
* customer. The in-use version of the key and its status are populated for CMEK-protected
42+
* tables. CMEK-protected backups are pinned to the key version that was in use at the time the
43+
* backup was taken. This key version is populated but its status is not tracked and is reported
44+
* as `UNKNOWN`.
4245
*/
4346
CUSTOMER_MANAGED_ENCRYPTION(
4447
com.google.bigtable.admin.v2.EncryptionInfo.EncryptionType.CUSTOMER_MANAGED_ENCRYPTION),

0 commit comments

Comments
 (0)