Class: Google::Cloud::Sql::V1::BackupReencryptionConfig

Inherits:
Object
  • Object
show all
Extended by:
Protobuf::MessageExts::ClassMethods
Includes:
Protobuf::MessageExts
Defined in:
proto_docs/google/cloud/sql/v1/cloud_sql_instances.rb

Overview

Backup Reencryption Config

Defined Under Namespace

Modules: BackupType

Instance Attribute Summary collapse

Instance Attribute Details

#backup_limit::Integer

Returns Backup re-encryption limit.

Returns:

  • (::Integer)

    Backup re-encryption limit



535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
# File 'proto_docs/google/cloud/sql/v1/cloud_sql_instances.rb', line 535

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::V1::BackupReencryptionConfig::BackupType

Returns Type of backups users want to re-encrypt.

Returns:



535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
# File 'proto_docs/google/cloud/sql/v1/cloud_sql_instances.rb', line 535

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