Class: Google::Apis::ComputeAlpha::InstanceGroupManagerInstanceLifecyclePolicy
- Inherits:
-
Object
- Object
- Google::Apis::ComputeAlpha::InstanceGroupManagerInstanceLifecyclePolicy
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/compute_alpha/classes.rb,
lib/google/apis/compute_alpha/representations.rb,
lib/google/apis/compute_alpha/representations.rb
Instance Attribute Summary collapse
-
#default_action_on_failure ⇒ String
Defines behaviour for all instance or failures Corresponds to the JSON property
defaultActionOnFailure
. -
#force_update_on_repair ⇒ String
A bit indicating whether to forcefully apply the group's latest configuration when repairing a VM.
-
#metadata_based_readiness_signal ⇒ Google::Apis::ComputeAlpha::InstanceGroupManagerInstanceLifecyclePolicyMetadataBasedReadinessSignal
The configuration for metadata based readiness signal sent by the instance during initialization when stopping / suspending an instance.
Instance Method Summary collapse
-
#initialize(**args) ⇒ InstanceGroupManagerInstanceLifecyclePolicy
constructor
A new instance of InstanceGroupManagerInstanceLifecyclePolicy.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ InstanceGroupManagerInstanceLifecyclePolicy
Returns a new instance of InstanceGroupManagerInstanceLifecyclePolicy.
16564 16565 16566 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 16564 def initialize(**args) update!(**args) end |
Instance Attribute Details
#default_action_on_failure ⇒ String
Defines behaviour for all instance or failures
Corresponds to the JSON property defaultActionOnFailure
16539 16540 16541 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 16539 def default_action_on_failure @default_action_on_failure end |
#force_update_on_repair ⇒ String
A bit indicating whether to forcefully apply the group's latest configuration
when repairing a VM. Valid options are: - NO (default): If configuration
updates are available, they are not forcefully applied during repair. Instead,
configuration updates are applied according to the group's update policy. -
YES: If configuration updates are available, they are applied during repair.
Corresponds to the JSON property forceUpdateOnRepair
16548 16549 16550 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 16548 def force_update_on_repair @force_update_on_repair end |
#metadata_based_readiness_signal ⇒ Google::Apis::ComputeAlpha::InstanceGroupManagerInstanceLifecyclePolicyMetadataBasedReadinessSignal
The configuration for metadata based readiness signal sent by the instance
during initialization when stopping / suspending an instance. The Instance
Group Manager will wait for a signal that indicates successful initialization
before stopping / suspending an instance. If a successful readiness signal is
not sent before timeout, the corresponding instance will not be stopped /
suspended. Instead, an error will be visible in the lastAttempt.errors field
of the managed instance in the listmanagedinstances method. If
metadataBasedReadinessSignal.timeoutSec is unset, the Instance Group Manager
will directly proceed to suspend / stop instances, skipping initialization on
them.
Corresponds to the JSON property metadataBasedReadinessSignal
16562 16563 16564 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 16562 def @metadata_based_readiness_signal end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
16569 16570 16571 16572 16573 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 16569 def update!(**args) @default_action_on_failure = args[:default_action_on_failure] if args.key?(:default_action_on_failure) @force_update_on_repair = args[:force_update_on_repair] if args.key?(:force_update_on_repair) @metadata_based_readiness_signal = args[:metadata_based_readiness_signal] if args.key?(:metadata_based_readiness_signal) end |