class Google::Apis::NotebooksV1::ListInstancesResponse
Response for listing notebook instances.
Attributes
instances[RW]
A list of returned instances. Corresponds to the JSON property `instances` @return [Array<Google::Apis::NotebooksV1::Instance>]
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]
unreachable[RW]
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` @return [Array<String>]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/notebooks_v1/classes.rb, line 1120 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 1125 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