Class: Google::Apis::ComputeAlpha::InstanceGroupManagerAutoHealingPolicy

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ InstanceGroupManagerAutoHealingPolicy

Returns a new instance of InstanceGroupManagerAutoHealingPolicy.



14367
14368
14369
# File 'generated/google/apis/compute_alpha/classes.rb', line 14367

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

Instance Attribute Details

#health_checkString

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

Returns:

  • (String)


14350
14351
14352
# File 'generated/google/apis/compute_alpha/classes.rb', line 14350

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)


14360
14361
14362
# File 'generated/google/apis/compute_alpha/classes.rb', line 14360

def initial_delay_sec
  @initial_delay_sec
end

#max_unavailableGoogle::Apis::ComputeAlpha::FixedOrPercent

Encapsulates numeric value that can be either absolute or relative. Corresponds to the JSON property maxUnavailable



14365
14366
14367
# File 'generated/google/apis/compute_alpha/classes.rb', line 14365

def max_unavailable
  @max_unavailable
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



14372
14373
14374
14375
14376
# File 'generated/google/apis/compute_alpha/classes.rb', line 14372

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)
  @max_unavailable = args[:max_unavailable] if args.key?(:max_unavailable)
end