class Google::Apis::ComputeV1::BackendServiceGroupHealth

Attributes

annotations[RW]

Metadata defined as annotations on the network endpoint group. Corresponds to the JSON property `annotations` @return [Hash<String,String>]

health_status[RW]

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` @return [Array<Google::Apis::ComputeV1::HealthStatus>]

kind[RW]
Output Only

Type of resource. Always compute#backendServiceGroupHealth for

the health of backend services. Corresponds to the JSON property `kind` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/compute_v1/classes.rb, line 3890
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/compute_v1/classes.rb, line 3895
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