Class: Google::Apis::ComputeV1::HealthStatus
- Inherits:
-
Object
- Object
- Google::Apis::ComputeV1::HealthStatus
- 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 for network endpoint.
-
#health_state ⇒ String
Health state of the instance.
-
#instance ⇒ String
URL of the instance resource.
-
#ip_address ⇒ String
For target pool based Network Load Balancing, it indicates the forwarding rule' s IP address assigned to this instance.
-
#port ⇒ Fixnum
The named port of the instance group, not necessarily the port that is health- checked.
-
#weight ⇒ String
Corresponds to the JSON property
weight
. -
#weight_error ⇒ String
Corresponds to the JSON property
weightError
.
Instance Method Summary collapse
-
#initialize(**args) ⇒ HealthStatus
constructor
A new instance of HealthStatus.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ HealthStatus
Returns a new instance of HealthStatus.
10037 10038 10039 |
# File 'lib/google/apis/compute_v1/classes.rb', line 10037 def initialize(**args) update!(**args) end |
Instance Attribute Details
#annotations ⇒ Hash<String,String>
Metadata defined as annotations for network endpoint.
Corresponds to the JSON property annotations
10002 10003 10004 |
# File 'lib/google/apis/compute_v1/classes.rb', line 10002 def annotations @annotations end |
#health_state ⇒ String
Health state of the instance.
Corresponds to the JSON property healthState
10007 10008 10009 |
# File 'lib/google/apis/compute_v1/classes.rb', line 10007 def health_state @health_state end |
#instance ⇒ String
URL of the instance resource.
Corresponds to the JSON property instance
10012 10013 10014 |
# File 'lib/google/apis/compute_v1/classes.rb', line 10012 def instance @instance end |
#ip_address ⇒ String
For target pool based Network Load Balancing, it indicates the forwarding rule'
s IP address assigned to this instance. For other types of load balancing, the
field indicates VM internal ip.
Corresponds to the JSON property ipAddress
10019 10020 10021 |
# File 'lib/google/apis/compute_v1/classes.rb', line 10019 def ip_address @ip_address end |
#port ⇒ Fixnum
The named port of the instance group, not necessarily the port that is health-
checked.
Corresponds to the JSON property port
10025 10026 10027 |
# File 'lib/google/apis/compute_v1/classes.rb', line 10025 def port @port end |
#weight ⇒ String
Corresponds to the JSON property weight
10030 10031 10032 |
# File 'lib/google/apis/compute_v1/classes.rb', line 10030 def weight @weight end |
#weight_error ⇒ String
Corresponds to the JSON property weightError
10035 10036 10037 |
# File 'lib/google/apis/compute_v1/classes.rb', line 10035 def weight_error @weight_error end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
10042 10043 10044 10045 10046 10047 10048 10049 10050 |
# File 'lib/google/apis/compute_v1/classes.rb', line 10042 def update!(**args) @annotations = args[:annotations] if args.key?(:annotations) @health_state = args[:health_state] if args.key?(:health_state) @instance = args[:instance] if args.key?(:instance) @ip_address = args[:ip_address] if args.key?(:ip_address) @port = args[:port] if args.key?(:port) @weight = args[:weight] if args.key?(:weight) @weight_error = args[:weight_error] if args.key?(:weight_error) end |