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
3253 3254 3255 |
# File 'generated/google/apis/compute_beta/classes.rb', line 3253 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
3245 3246 3247 |
# File 'generated/google/apis/compute_beta/classes.rb', line 3245 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
3251 3252 3253 |
# File 'generated/google/apis/compute_beta/classes.rb', line 3251 def kind @kind end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3258 3259 3260 3261 |
# File 'generated/google/apis/compute_beta/classes.rb', line 3258 def update!(**args) @health_status = args[:health_status] if args.key?(:health_status) @kind = args[:kind] if args.key?(:kind) end |