Class: Google::Apis::NotebooksV1::GetInstanceHealthResponse

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

Overview

Response for checking if a notebook instance is healthy.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GetInstanceHealthResponse

Returns a new instance of GetInstanceHealthResponse.

[View source]

849
850
851
# File 'lib/google/apis/notebooks_v1/classes.rb', line 849

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

Instance Attribute Details

#health_infoHash<String,String>

Output only. Additional information about instance health. Example: healthInfo" : "docker_proxy_agent_status": "1", "docker_status": "1", " jupyterlab_api_status": "-1", "jupyterlab_status": "-1", "updated": "2020-10- 18 09:40:03.573409" Corresponds to the JSON property healthInfo

Returns:

  • (Hash<String,String>)

842
843
844
# File 'lib/google/apis/notebooks_v1/classes.rb', line 842

def health_info
  @health_info
end

#health_stateString

Output only. Runtime health_state. Corresponds to the JSON property healthState

Returns:

  • (String)

847
848
849
# File 'lib/google/apis/notebooks_v1/classes.rb', line 847

def health_state
  @health_state
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object

[View source]

854
855
856
857
# File 'lib/google/apis/notebooks_v1/classes.rb', line 854

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