Class: Google::Apis::NotebooksV1::ListInstancesResponse

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 notebook instances.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ListInstancesResponse

Returns a new instance of ListInstancesResponse.

[View source]

1358
1359
1360
# File 'lib/google/apis/notebooks_v1/classes.rb', line 1358

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

Instance Attribute Details

#instancesArray<Google::Apis::NotebooksV1::Instance>

A list of returned instances. Corresponds to the JSON property instances


1343
1344
1345
# File 'lib/google/apis/notebooks_v1/classes.rb', line 1343

def instances
  @instances
end

#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)

1349
1350
1351
# File 'lib/google/apis/notebooks_v1/classes.rb', line 1349

def next_page_token
  @next_page_token
end

#unreachableArray<String>

Locations that could not be reached. For example, ['us-west1-a', 'us-central1- b']. A ListInstancesResponse will only contain either instances or unreachables, Corresponds to the JSON property unreachable

Returns:

  • (Array<String>)

1356
1357
1358
# File 'lib/google/apis/notebooks_v1/classes.rb', line 1356

def unreachable
  @unreachable
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object

[View source]

1363
1364
1365
1366
1367
# File 'lib/google/apis/notebooks_v1/classes.rb', line 1363

def update!(**args)
  @instances = args[:instances] if args.key?(:instances)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
  @unreachable = args[:unreachable] if args.key?(:unreachable)
end