Class: Google::Apis::AlloydbV1::QuantityBasedRetention
- Inherits:
-
Object
- Object
- Google::Apis::AlloydbV1::QuantityBasedRetention
- 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
-
#count ⇒ Fixnum
The number of backups to retain.
Instance Method Summary collapse
-
#initialize(**args) ⇒ QuantityBasedRetention
constructor
A new instance of QuantityBasedRetention.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ QuantityBasedRetention
Returns a new instance of QuantityBasedRetention.
1712 1713 1714 |
# File 'lib/google/apis/alloydb_v1/classes.rb', line 1712 def initialize(**args) update!(**args) end |
Instance Attribute Details
#count ⇒ Fixnum
The number of backups to retain.
Corresponds to the JSON property count
1710 1711 1712 |
# File 'lib/google/apis/alloydb_v1/classes.rb', line 1710 def count @count end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1717 1718 1719 |
# File 'lib/google/apis/alloydb_v1/classes.rb', line 1717 def update!(**args) @count = args[:count] if args.key?(:count) end |