Class: Google::Apis::ComputeBeta::InstanceGroupManagerAutoHealingPolicy

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
generated/google/apis/compute_beta/classes.rb,
generated/google/apis/compute_beta/representations.rb,
generated/google/apis/compute_beta/representations.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Google::Apis::Core::JsonObjectSupport

#to_json

Methods included from Google::Apis::Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ InstanceGroupManagerAutoHealingPolicy

Returns a new instance of InstanceGroupManagerAutoHealingPolicy.



4389
4390
4391
# File 'generated/google/apis/compute_beta/classes.rb', line 4389

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

Instance Attribute Details

#health_checkString

The URL for the HealthCheck that signals autohealing. Corresponds to the JSON property healthCheck

Returns:

  • (String)


4377
4378
4379
# File 'generated/google/apis/compute_beta/classes.rb', line 4377

def health_check
  @health_check
end

#initial_delay_secFixnum

The number of seconds that the managed instance group waits before it applies autohealing policies to new instances or recently recreated instances. This initial delay allows instances to initialize and run their startup scripts before the instance group determines that they are UNHEALTHY. This prevents the managed instance group from recreating its instances prematurely. This value must be from range [0, 3600]. Corresponds to the JSON property initialDelaySec

Returns:

  • (Fixnum)


4387
4388
4389
# File 'generated/google/apis/compute_beta/classes.rb', line 4387

def initial_delay_sec
  @initial_delay_sec
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4394
4395
4396
4397
# File 'generated/google/apis/compute_beta/classes.rb', line 4394

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