Class: Google::Apis::ComputeV1::InstanceGroupManagerAutoHealingPolicy

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ InstanceGroupManagerAutoHealingPolicy

Returns a new instance of InstanceGroupManagerAutoHealingPolicy.



15938
15939
15940
# File 'lib/google/apis/compute_v1/classes.rb', line 15938

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)


15925
15926
15927
# File 'lib/google/apis/compute_v1/classes.rb', line 15925

def health_check
  @health_check
end

#initial_delay_secFixnum

The initial delay is the number of seconds that a new VM takes to initialize and run its startup script. During a VM's initial delay period, the MIG ignores unsuccessful health checks because the VM might be in the startup process. This prevents the MIG from prematurely recreating a VM. If the health check receives a healthy response during the initial delay, it indicates that the startup process is complete and the VM is ready. The value of initial delay must be between 0 and 3600 seconds. The default value is 0. Corresponds to the JSON property initialDelaySec

Returns:

  • (Fixnum)


15936
15937
15938
# File 'lib/google/apis/compute_v1/classes.rb', line 15936

def initial_delay_sec
  @initial_delay_sec
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



15943
15944
15945
15946
# File 'lib/google/apis/compute_v1/classes.rb', line 15943

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