Class: Google::Apis::NotebooksV1::ListRuntimesResponse
- Inherits:
-
Object
- Object
- Google::Apis::NotebooksV1::ListRuntimesResponse
- 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
-
#next_page_token ⇒ String
Page token that can be used to continue listing from the last result in the next list call.
-
#runtimes ⇒ Array<Google::Apis::NotebooksV1::Runtime>
A list of returned Runtimes.
-
#unreachable ⇒ Array<String>
Locations that could not be reached.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListRuntimesResponse
constructor
A new instance of ListRuntimesResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListRuntimesResponse
Returns a new instance of ListRuntimesResponse.
1441 1442 1443 |
# File 'lib/google/apis/notebooks_v1/classes.rb', line 1441 def initialize(**args) update!(**args) end |
Instance Attribute Details
#next_page_token ⇒ String
Page token that can be used to continue listing from the last result in the
next list call.
Corresponds to the JSON property nextPageToken
1428 1429 1430 |
# File 'lib/google/apis/notebooks_v1/classes.rb', line 1428 def next_page_token @next_page_token end |
#runtimes ⇒ Array<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 |
#unreachable ⇒ Array<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
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
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 |