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.



15678
15679
15680
# File 'lib/google/apis/compute_alpha/classes.rb', line 15678

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)


15676
15677
15678
# File 'lib/google/apis/compute_alpha/classes.rb', line 15676

def on_health_check
  @on_health_check
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



15683
15684
15685
# File 'lib/google/apis/compute_alpha/classes.rb', line 15683

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