Class: Google::Apis::ComputeV1::BackendServiceGroupHealth
- Inherits:
-
Object
- Object
- Google::Apis::ComputeV1::BackendServiceGroupHealth
- 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
-
#annotations ⇒ Hash<String,String>
Metadata defined as annotations on the network endpoint group.
-
#health_status ⇒ Array<Google::Apis::ComputeV1::HealthStatus>
Health state of the backend instances or endpoints in requested instance or network endpoint group, determined based on configured health checks.
-
#kind ⇒ String
[Output Only] Type of resource.
Instance Method Summary collapse
-
#initialize(**args) ⇒ BackendServiceGroupHealth
constructor
A new instance of BackendServiceGroupHealth.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ BackendServiceGroupHealth
Returns a new instance of BackendServiceGroupHealth.
3657 3658 3659 |
# File 'lib/google/apis/compute_v1/classes.rb', line 3657 def initialize(**args) update!(**args) end |
Instance Attribute Details
#annotations ⇒ Hash<String,String>
Metadata defined as annotations on the network endpoint group.
Corresponds to the JSON property annotations
3643 3644 3645 |
# File 'lib/google/apis/compute_v1/classes.rb', line 3643 def annotations @annotations end |
#health_status ⇒ Array<Google::Apis::ComputeV1::HealthStatus>
Health state of the backend instances or endpoints in requested instance or
network endpoint group, determined based on configured health checks.
Corresponds to the JSON property healthStatus
3649 3650 3651 |
# File 'lib/google/apis/compute_v1/classes.rb', line 3649 def health_status @health_status end |
#kind ⇒ String
[Output Only] Type of resource. Always compute#backendServiceGroupHealth for
the health of backend services.
Corresponds to the JSON property kind
3655 3656 3657 |
# File 'lib/google/apis/compute_v1/classes.rb', line 3655 def kind @kind end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3662 3663 3664 3665 3666 |
# File 'lib/google/apis/compute_v1/classes.rb', line 3662 def update!(**args) @annotations = args[:annotations] if args.key?(:annotations) @health_status = args[:health_status] if args.key?(:health_status) @kind = args[:kind] if args.key?(:kind) end |