Class: Google::Apis::ComputeV1::InstanceGroupManagerAutoHealingPolicy
- Inherits:
-
Object
- Object
- Google::Apis::ComputeV1::InstanceGroupManagerAutoHealingPolicy
- 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
-
#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.
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.
14034 14035 14036 |
# File 'lib/google/apis/compute_v1/classes.rb', line 14034 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
14022 14023 14024 |
# File 'lib/google/apis/compute_v1/classes.rb', line 14022 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
14032 14033 14034 |
# File 'lib/google/apis/compute_v1/classes.rb', line 14032 def initial_delay_sec @initial_delay_sec end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
14039 14040 14041 14042 |
# File 'lib/google/apis/compute_v1/classes.rb', line 14039 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 |