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.



16573
16574
16575
# File 'lib/google/apis/compute_alpha/classes.rb', line 16573

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)


16571
16572
16573
# File 'lib/google/apis/compute_alpha/classes.rb', line 16571

def on_health_check
  @on_health_check
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



16578
16579
16580
# File 'lib/google/apis/compute_alpha/classes.rb', line 16578

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