Class: Google::Apis::ComputeAlpha::InstanceGroupManagerAutoHealingPolicy
- Inherits:
-
Object
- Object
- Google::Apis::ComputeAlpha::InstanceGroupManagerAutoHealingPolicy
- 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
-
#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.
-
#mode ⇒ String
Defines operating mode for this policy.
Instance Method Summary collapse
-
#initialize(**args) ⇒ InstanceGroupManagerAutoHealingPolicy
constructor
A new instance of InstanceGroupManagerAutoHealingPolicy.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ InstanceGroupManagerAutoHealingPolicy
Returns a new instance of InstanceGroupManagerAutoHealingPolicy
10061 10062 10063 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 10061 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
10039 10040 10041 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 10039 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
10049 10050 10051 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 10049 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
10054 10055 10056 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 10054 def max_unavailable @max_unavailable end |
#mode ⇒ String
Defines operating mode for this policy.
Corresponds to the JSON property mode
10059 10060 10061 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 10059 def mode @mode end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
10066 10067 10068 10069 10070 10071 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 10066 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) @mode = args[:mode] if args.key?(:mode) end |