Class: Google::Apis::ComputeAlpha::ManagedInstanceInstanceHealth

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
lib/google/apis/compute_alpha/classes.rb,
lib/google/apis/compute_alpha/representations.rb,
lib/google/apis/compute_alpha/representations.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ManagedInstanceInstanceHealth

Returns a new instance of ManagedInstanceInstanceHealth.



21497
21498
21499
# File 'lib/google/apis/compute_alpha/classes.rb', line 21497

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#detailed_health_stateString

[Output Only] The current detailed instance health state. Corresponds to the JSON property detailedHealthState

Returns:

  • (String)


21482
21483
21484
# File 'lib/google/apis/compute_alpha/classes.rb', line 21482

def detailed_health_state
  @detailed_health_state
end

#health_checkString

[Output Only] The URL for the health check that verifies whether the instance is healthy. Corresponds to the JSON property healthCheck

Returns:

  • (String)


21488
21489
21490
# File 'lib/google/apis/compute_alpha/classes.rb', line 21488

def health_check
  @health_check
end

#health_stateString

[Output Only] The current instance health state. This field will not get promoted to beta/GA and might be removed from alpha APIs after 01/12/2019. Please use detailed_health_state field instead. Corresponds to the JSON property healthState

Returns:

  • (String)


21495
21496
21497
# File 'lib/google/apis/compute_alpha/classes.rb', line 21495

def health_state
  @health_state
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



21502
21503
21504
21505
21506
# File 'lib/google/apis/compute_alpha/classes.rb', line 21502

def update!(**args)
  @detailed_health_state = args[:detailed_health_state] if args.key?(:detailed_health_state)
  @health_check = args[:health_check] if args.key?(:health_check)
  @health_state = args[:health_state] if args.key?(:health_state)
end