Class CopyBackupEncryptionConfig (3.46.0)

CopyBackupEncryptionConfig(mapping=None, *, ignore_unknown_fields=False, **kwargs)

Encryption configuration for the copied backup.

Attributes

NameDescription
encryption_type google.cloud.spanner_admin_database_v1.types.CopyBackupEncryptionConfig.EncryptionType
Required. The encryption type of the backup.
kms_key_name str
Optional. The Cloud KMS key that will be used to protect the backup. This field should be set only when encryption_type][google.spanner.admin.database.v1.CopyBackupEncryptionConfig.encryption_type] is CUSTOMER_MANAGED_ENCRYPTION. Values are of the form projects/.

Classes

EncryptionType

EncryptionType(value)

Encryption types for the backup.

Enum values:

ENCRYPTION_TYPE_UNSPECIFIED (0):
    Unspecified. Do not use.
USE_CONFIG_DEFAULT_OR_BACKUP_ENCRYPTION (1):
    This is the default option for
    `CopyBackup][google.spanner.admin.database.v1.DatabaseAdmin.CopyBackup]`
    when
    `encryption_config][google.spanner.admin.database.v1.CopyBackupEncryptionConfig]`
    is not specified. For example, if the source backup is using
    `Customer_Managed_Encryption`, the backup will be using
    the same Cloud KMS key as the source backup.
GOOGLE_DEFAULT_ENCRYPTION (2):
    Use Google default encryption.
CUSTOMER_MANAGED_ENCRYPTION (3):
    Use customer managed encryption. If specified,
    `kms_key_name` must contain a valid Cloud KMS key.