Class: Google::Apis::ComputeAlpha::ManagedInstanceInstanceHealth
- Inherits:
-
Object
- Object
- Google::Apis::ComputeAlpha::ManagedInstanceInstanceHealth
- 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
-
#detailed_health_state ⇒ String
[Output Only] The current detailed instance health state.
-
#health_check ⇒ String
[Output Only] The URL for the health check that verifies whether the instance is healthy.
-
#health_state ⇒ String
[Output Only] The current instance health state.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ManagedInstanceInstanceHealth
constructor
A new instance of ManagedInstanceInstanceHealth.
-
#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) ⇒ ManagedInstanceInstanceHealth
Returns a new instance of ManagedInstanceInstanceHealth
16463 16464 16465 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 16463 def initialize(**args) update!(**args) end |
Instance Attribute Details
#detailed_health_state ⇒ String
[Output Only] The current detailed instance health state.
Corresponds to the JSON property detailedHealthState
16450 16451 16452 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 16450 def detailed_health_state @detailed_health_state end |
#health_check ⇒ String
[Output Only] The URL for the health check that verifies whether the instance
is healthy.
Corresponds to the JSON property healthCheck
16456 16457 16458 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 16456 def health_check @health_check end |
#health_state ⇒ String
[Output Only] The current instance health state.
Corresponds to the JSON property healthState
16461 16462 16463 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 16461 def health_state @health_state end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
16468 16469 16470 16471 16472 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 16468 def update!(**args) @detailed_health_state = args[:detailed_health_state] if args.key?(:detailed_health_state) @health_check = args[:health_check] if args.key?(:health_check) @health_state = args[:health_state] if args.key?(:health_state) end |