class Google::Apis::NotebooksV1::GetInstanceHealthResponse

Response for checking if a notebook instance is healthy.

Attributes

health_info[RW]

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` @return [Hash<String,String>]

health_state[RW]

Output only. Runtime health_state. Corresponds to the JSON property `healthState` @return [String]

Public Class Methods

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

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/notebooks_v1/classes.rb, line 677
def update!(**args)
  @health_info = args[:health_info] if args.key?(:health_info)
  @health_state = args[:health_state] if args.key?(:health_state)
end