Class: Google::Apis::SqladminV1beta4::BackupRetentionSettings

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ BackupRetentionSettings

Returns a new instance of BackupRetentionSettings.



333
334
335
# File 'lib/google/apis/sqladmin_v1beta4/classes.rb', line 333

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#retained_backupsFixnum

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

Returns:

  • (Fixnum)


326
327
328
# File 'lib/google/apis/sqladmin_v1beta4/classes.rb', line 326

def retained_backups
  @retained_backups
end

#retention_unitString

The unit that 'retained_backups' represents. Corresponds to the JSON property retentionUnit

Returns:

  • (String)


331
332
333
# File 'lib/google/apis/sqladmin_v1beta4/classes.rb', line 331

def retention_unit
  @retention_unit
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



338
339
340
341
# File 'lib/google/apis/sqladmin_v1beta4/classes.rb', line 338

def update!(**args)
  @retained_backups = args[:retained_backups] if args.key?(:retained_backups)
  @retention_unit = args[:retention_unit] if args.key?(:retention_unit)
end