class Google::Apis::NotebooksV1::ListRuntimesResponse

Response for listing Managed Notebook Runtimes.

Attributes

next_page_token[RW]

Page token that can be used to continue listing from the last result in the next list call. Corresponds to the JSON property `nextPageToken` @return [String]

runtimes[RW]

A list of returned Runtimes. Corresponds to the JSON property `runtimes` @return [Array<Google::Apis::NotebooksV1::Runtime>]

unreachable[RW]

Locations that could not be reached. For example, ['us-west1', 'us-central1']. A ListRuntimesResponse will only contain either runtimes or unreachables, Corresponds to the JSON property `unreachable` @return [Array<String>]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/notebooks_v1/classes.rb, line 1203
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 1208
def update!(**args)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
  @runtimes = args[:runtimes] if args.key?(:runtimes)
  @unreachable = args[:unreachable] if args.key?(:unreachable)
end