Class: Google::Apis::AlloydbV1beta::QuantityBasedRetention

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/alloydb_v1beta/classes.rb,
lib/google/apis/alloydb_v1beta/representations.rb,
lib/google/apis/alloydb_v1beta/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.



1870
1871
1872
# File 'lib/google/apis/alloydb_v1beta/classes.rb', line 1870

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

Instance Attribute Details

#countFixnum

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

Returns:

  • (Fixnum)


1868
1869
1870
# File 'lib/google/apis/alloydb_v1beta/classes.rb', line 1868

def count
  @count
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1875
1876
1877
# File 'lib/google/apis/alloydb_v1beta/classes.rb', line 1875

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