Class: Google::Apis::ComputeAlpha::ResourcePolicySnapshotSchedulePolicyRetentionPolicy
- Inherits:
-
Object
- Object
- Google::Apis::ComputeAlpha::ResourcePolicySnapshotSchedulePolicyRetentionPolicy
- Defined in:
- generated/google/apis/compute_alpha/classes.rb,
generated/google/apis/compute_alpha/representations.rb,
generated/google/apis/compute_alpha/representations.rb
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_policy_switch ⇒ String
Specifies the behavior to apply to existing, scheduled snapshots snapshots if the policy is changed.
-
#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
23007 23008 23009 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 23007 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
22993 22994 22995 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 22993 def max_retention_days @max_retention_days end |
#on_policy_switch ⇒ String
Specifies the behavior to apply to existing, scheduled snapshots snapshots if
the policy is changed.
Corresponds to the JSON property onPolicySwitch
22999 23000 23001 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 22999 def on_policy_switch @on_policy_switch 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
23005 23006 23007 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 23005 def on_source_disk_delete @on_source_disk_delete end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
23012 23013 23014 23015 23016 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 23012 def update!(**args) @max_retention_days = args[:max_retention_days] if args.key?(:max_retention_days) @on_policy_switch = args[:on_policy_switch] if args.key?(:on_policy_switch) @on_source_disk_delete = args[:on_source_disk_delete] if args.key?(:on_source_disk_delete) end |