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 number of seconds that the managed instance group waits before it applies autohealing policies to new instances or recently recreated instances.
-
#max_unavailable ⇒ Google::Apis::ComputeAlpha::FixedOrPercent
Encapsulates numeric value that can be either absolute or relative.
-
#update_instances ⇒ String
Corresponds to the JSON property
updateInstances
.
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.
15610 15611 15612 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 15610 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
15583 15584 15585 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 15583 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
15588 15589 15590 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 15588 def health_check @health_check end |
#initial_delay_sec ⇒ Fixnum
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
15598 15599 15600 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 15598 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
15603 15604 15605 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 15603 def max_unavailable @max_unavailable end |
#update_instances ⇒ String
Corresponds to the JSON property updateInstances
15608 15609 15610 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 15608 def update_instances @update_instances end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
15615 15616 15617 15618 15619 15620 15621 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 15615 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) @update_instances = args[:update_instances] if args.key?(:update_instances) end |