Class: Google::Apis::ComputeBeta::BackendServiceGroupHealth
- Inherits:
-
Object
- Object
- Google::Apis::ComputeBeta::BackendServiceGroupHealth
- Defined in:
- generated/google/apis/compute_beta/classes.rb,
generated/google/apis/compute_beta/representations.rb,
generated/google/apis/compute_beta/representations.rb
Instance Attribute Summary collapse
-
#health_status ⇒ Array<Google::Apis::ComputeBeta::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.
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ BackendServiceGroupHealth
Returns a new instance of BackendServiceGroupHealth
3049 3050 3051 |
# File 'generated/google/apis/compute_beta/classes.rb', line 3049 def initialize(**args) update!(**args) end |
Instance Attribute Details
#health_status ⇒ Array<Google::Apis::ComputeBeta::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
3041 3042 3043 |
# File 'generated/google/apis/compute_beta/classes.rb', line 3041 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
3047 3048 3049 |
# File 'generated/google/apis/compute_beta/classes.rb', line 3047 def kind @kind end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3054 3055 3056 3057 |
# File 'generated/google/apis/compute_beta/classes.rb', line 3054 def update!(**args) @health_status = args[:health_status] if args.key?(:health_status) @kind = args[:kind] if args.key?(:kind) end |