Class: Google::Apis::ComputeBeta::ResourcePolicySnapshotSchedulePolicyRetentionPolicy
- Inherits:
-
Object
- Object
- Google::Apis::ComputeBeta::ResourcePolicySnapshotSchedulePolicyRetentionPolicy
- Defined in:
- generated/google/apis/compute_beta/classes.rb,
generated/google/apis/compute_beta/representations.rb,
generated/google/apis/compute_beta/representations.rb more...
Overview
Policy for retention of scheduled snapshots.
Instance Attribute Summary collapse
-
#max_retention_days ⇒ Fixnum
Maximum age of the snapshot that is allowed to be kept.
-
#on_source_disk_delete ⇒ String
Specifies the behavior to apply to scheduled snapshots when the source disk is deleted.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ResourcePolicySnapshotSchedulePolicyRetentionPolicy
constructor
A new instance of ResourcePolicySnapshotSchedulePolicyRetentionPolicy.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ ResourcePolicySnapshotSchedulePolicyRetentionPolicy
Returns a new instance of ResourcePolicySnapshotSchedulePolicyRetentionPolicy
19448 19449 19450 |
# File 'generated/google/apis/compute_beta/classes.rb', line 19448 def initialize(**args) update!(**args) end |
Instance Attribute Details
#max_retention_days ⇒ Fixnum
Maximum age of the snapshot that is allowed to be kept.
Corresponds to the JSON property maxRetentionDays
19440 19441 19442 |
# File 'generated/google/apis/compute_beta/classes.rb', line 19440 def max_retention_days @max_retention_days end |
#on_source_disk_delete ⇒ String
Specifies the behavior to apply to scheduled snapshots when the source disk is
deleted.
Corresponds to the JSON property onSourceDiskDelete
19446 19447 19448 |
# File 'generated/google/apis/compute_beta/classes.rb', line 19446 def on_source_disk_delete @on_source_disk_delete end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
19453 19454 19455 19456 |
# File 'generated/google/apis/compute_beta/classes.rb', line 19453 def update!(**args) @max_retention_days = args[:max_retention_days] if args.key?(:max_retention_days) @on_source_disk_delete = args[:on_source_disk_delete] if args.key?(:on_source_disk_delete) end |