Class: Google::Apis::ComputeAlpha::InstanceGroupManagerAutoHealingPolicy
- Inherits:
-
Object
- Object
- Google::Apis::ComputeAlpha::InstanceGroupManagerAutoHealingPolicy
- 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
-
#auto_healing_triggers ⇒ Google::Apis::ComputeAlpha::InstanceGroupManagerAutoHealingPolicyAutoHealingTriggers
Restricts what triggers autohealing.
-
#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.
-
#max_unavailable ⇒ Google::Apis::ComputeAlpha::FixedOrPercent
Encapsulates numeric value that can be either absolute or relative.
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.
17355 17356 17357 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 17355 def initialize(**args) update!(**args) end |
Instance Attribute Details
#auto_healing_triggers ⇒ Google::Apis::ComputeAlpha::InstanceGroupManagerAutoHealingPolicyAutoHealingTriggers
Restricts what triggers autohealing.
Corresponds to the JSON property autoHealingTriggers
17332 17333 17334 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 17332 def auto_healing_triggers @auto_healing_triggers end |
#health_check ⇒ String
The URL for the health check that signals autohealing.
Corresponds to the JSON property healthCheck
17337 17338 17339 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 17337 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
17348 17349 17350 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 17348 def initial_delay_sec @initial_delay_sec end |
#max_unavailable ⇒ Google::Apis::ComputeAlpha::FixedOrPercent
Encapsulates numeric value that can be either absolute or relative.
Corresponds to the JSON property maxUnavailable
17353 17354 17355 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 17353 def max_unavailable @max_unavailable end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
17360 17361 17362 17363 17364 17365 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 17360 def update!(**args) @auto_healing_triggers = args[:auto_healing_triggers] if args.key?(:auto_healing_triggers) @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 |