Class: Google::Cloud::Sql::V1beta4::BackupReencryptionConfig
- Inherits:
-
Object
- Object
- Google::Cloud::Sql::V1beta4::BackupReencryptionConfig
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/cloud/sql/v1beta4/cloud_sql.rb
Overview
Backup Reencryption Config
Defined Under Namespace
Modules: BackupType
Instance Attribute Summary collapse
-
#backup_limit ⇒ ::Integer
Backup re-encryption limit.
-
#backup_type ⇒ ::Google::Cloud::Sql::V1beta4::BackupReencryptionConfig::BackupType
Type of backups users want to re-encrypt.
Instance Attribute Details
#backup_limit ⇒ ::Integer
Returns Backup re-encryption limit.
721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 |
# File 'proto_docs/google/cloud/sql/v1beta4/cloud_sql.rb', line 721 class BackupReencryptionConfig include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Backup type for re-encryption module BackupType # Unknown backup type, will be defaulted to AUTOMATIC backup type BACKUP_TYPE_UNSPECIFIED = 0 # Reencrypt automatic backups AUTOMATED = 1 # Reencrypt on-demand backups ON_DEMAND = 2 end end |
#backup_type ⇒ ::Google::Cloud::Sql::V1beta4::BackupReencryptionConfig::BackupType
Returns Type of backups users want to re-encrypt.
721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 |
# File 'proto_docs/google/cloud/sql/v1beta4/cloud_sql.rb', line 721 class BackupReencryptionConfig include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Backup type for re-encryption module BackupType # Unknown backup type, will be defaulted to AUTOMATIC backup type BACKUP_TYPE_UNSPECIFIED = 0 # Reencrypt automatic backups AUTOMATED = 1 # Reencrypt on-demand backups ON_DEMAND = 2 end end |