Class: Google::Apis::ComputeBeta::InstanceGroupManagerAutoHealingPolicy
- Inherits:
-
Object
- Object
- Google::Apis::ComputeBeta::InstanceGroupManagerAutoHealingPolicy
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/compute_beta/classes.rb,
lib/google/apis/compute_beta/representations.rb,
lib/google/apis/compute_beta/representations.rb
Instance Attribute Summary collapse
-
#health_check ⇒ String
The URL for the health check that signals autohealing.
-
#initial_delay_sec ⇒ Fixnum
The initial delay is the number of seconds that a new VM takes to initialize and run its startup script.
Instance Method Summary collapse
-
#initialize(**args) ⇒ InstanceGroupManagerAutoHealingPolicy
constructor
A new instance of InstanceGroupManagerAutoHealingPolicy.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ InstanceGroupManagerAutoHealingPolicy
Returns a new instance of InstanceGroupManagerAutoHealingPolicy.
16449 16450 16451 |
# File 'lib/google/apis/compute_beta/classes.rb', line 16449 def initialize(**args) update!(**args) end |
Instance Attribute Details
#health_check ⇒ String
The URL for the health check that signals autohealing.
Corresponds to the JSON property healthCheck
16436 16437 16438 |
# File 'lib/google/apis/compute_beta/classes.rb', line 16436 def health_check @health_check end |
#initial_delay_sec ⇒ Fixnum
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
16447 16448 16449 |
# File 'lib/google/apis/compute_beta/classes.rb', line 16447 def initial_delay_sec @initial_delay_sec end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
16454 16455 16456 16457 |
# File 'lib/google/apis/compute_beta/classes.rb', line 16454 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 |