Class: Google::Apis::ComputeV1::ManagedInstanceInstanceHealth
- Inherits:
-
Object
- Object
- Google::Apis::ComputeV1::ManagedInstanceInstanceHealth
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- generated/google/apis/compute_v1/classes.rb,
generated/google/apis/compute_v1/representations.rb,
generated/google/apis/compute_v1/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.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ManagedInstanceInstanceHealth
constructor
A new instance of ManagedInstanceInstanceHealth.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ManagedInstanceInstanceHealth
Returns a new instance of ManagedInstanceInstanceHealth.
16808 16809 16810 |
# File 'generated/google/apis/compute_v1/classes.rb', line 16808 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
16800 16801 16802 |
# File 'generated/google/apis/compute_v1/classes.rb', line 16800 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
16806 16807 16808 |
# File 'generated/google/apis/compute_v1/classes.rb', line 16806 def health_check @health_check end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
16813 16814 16815 16816 |
# File 'generated/google/apis/compute_v1/classes.rb', line 16813 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) end |