Class: Google::Apis::SqladminV1beta4::BackupRetentionSettings
- Inherits:
-
Object
- Object
- Google::Apis::SqladminV1beta4::BackupRetentionSettings
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/sqladmin_v1beta4/classes.rb,
lib/google/apis/sqladmin_v1beta4/representations.rb,
lib/google/apis/sqladmin_v1beta4/representations.rb
Overview
We currently only support backup retention by specifying the number of backups we will retain.
Instance Attribute Summary collapse
-
#retained_backups ⇒ Fixnum
Depending on the value of retention_unit, this is used to determine if a backup needs to be deleted.
-
#retention_unit ⇒ String
The unit that 'retained_backups' represents.
Instance Method Summary collapse
-
#initialize(**args) ⇒ BackupRetentionSettings
constructor
A new instance of BackupRetentionSettings.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ BackupRetentionSettings
Returns a new instance of BackupRetentionSettings.
211 212 213 |
# File 'lib/google/apis/sqladmin_v1beta4/classes.rb', line 211 def initialize(**args) update!(**args) end |
Instance Attribute Details
#retained_backups ⇒ Fixnum
Depending on the value of retention_unit, this is used to determine if a
backup needs to be deleted. If retention_unit is 'COUNT', we will retain this
many backups.
Corresponds to the JSON property retainedBackups
204 205 206 |
# File 'lib/google/apis/sqladmin_v1beta4/classes.rb', line 204 def retained_backups @retained_backups end |
#retention_unit ⇒ String
The unit that 'retained_backups' represents.
Corresponds to the JSON property retentionUnit
209 210 211 |
# File 'lib/google/apis/sqladmin_v1beta4/classes.rb', line 209 def retention_unit @retention_unit end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
216 217 218 219 |
# File 'lib/google/apis/sqladmin_v1beta4/classes.rb', line 216 def update!(**args) @retained_backups = args[:retained_backups] if args.key?(:retained_backups) @retention_unit = args[:retention_unit] if args.key?(:retention_unit) end |