Class: Google::Apis::AlloydbV1::QuantityBasedRetention

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/alloydb_v1/classes.rb,
lib/google/apis/alloydb_v1/representations.rb,
lib/google/apis/alloydb_v1/representations.rb

Overview

A quantity based policy specifies that a certain number of the most recent successful backups should be retained.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ QuantityBasedRetention

Returns a new instance of QuantityBasedRetention.



1769
1770
1771
# File 'lib/google/apis/alloydb_v1/classes.rb', line 1769

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

Instance Attribute Details

#countFixnum

The number of backups to retain. Corresponds to the JSON property count

Returns:

  • (Fixnum)


1767
1768
1769
# File 'lib/google/apis/alloydb_v1/classes.rb', line 1767

def count
  @count
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1774
1775
1776
# File 'lib/google/apis/alloydb_v1/classes.rb', line 1774

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