Class: Google::Apis::NotebooksV1::ListRuntimesResponse

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 listing Managed Notebook Runtimes.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ListRuntimesResponse

Returns a new instance of ListRuntimesResponse.

[View source]

1441
1442
1443
# File 'lib/google/apis/notebooks_v1/classes.rb', line 1441

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

Instance Attribute Details

#next_page_tokenString

Page token that can be used to continue listing from the last result in the next list call. Corresponds to the JSON property nextPageToken

Returns:

  • (String)

1428
1429
1430
# File 'lib/google/apis/notebooks_v1/classes.rb', line 1428

def next_page_token
  @next_page_token
end

#runtimesArray<Google::Apis::NotebooksV1::Runtime>

A list of returned Runtimes. Corresponds to the JSON property runtimes


1433
1434
1435
# File 'lib/google/apis/notebooks_v1/classes.rb', line 1433

def runtimes
  @runtimes
end

#unreachableArray<String>

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

Returns:

  • (Array<String>)

1439
1440
1441
# File 'lib/google/apis/notebooks_v1/classes.rb', line 1439

def unreachable
  @unreachable
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object

[View source]

1446
1447
1448
1449
1450
# File 'lib/google/apis/notebooks_v1/classes.rb', line 1446

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