Class: Google::Apis::ComputeAlpha::InstanceGroupManagerAutoHealingPolicyAutoHealingTriggers

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ InstanceGroupManagerAutoHealingPolicyAutoHealingTriggers

Returns a new instance of InstanceGroupManagerAutoHealingPolicyAutoHealingTriggers.



16935
16936
16937
# File 'lib/google/apis/compute_alpha/classes.rb', line 16935

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

Instance Attribute Details

#on_health_checkString

If you have configured an application-based health check for the group, this field controls whether to trigger VM autohealing based on a failed health check. Valid values are: - ON (default): The group recreates running VMs that fail the application-based health check. - OFF: When set to OFF, you can still observe instance health state, but the group does not recreate VMs that fail the application-based health check. This is useful for troubleshooting and setting up your health check configuration. Corresponds to the JSON property onHealthCheck

Returns:

  • (String)


16933
16934
16935
# File 'lib/google/apis/compute_alpha/classes.rb', line 16933

def on_health_check
  @on_health_check
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



16940
16941
16942
# File 'lib/google/apis/compute_alpha/classes.rb', line 16940

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