class Google::Apis::NotebooksV1::ListEnvironmentsResponse

Response for listing environments.

Attributes

environments[RW]

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

next_page_token[RW]

A 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. 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 1052
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 1057
def update!(**args)
  @environments = args[:environments] if args.key?(:environments)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
  @unreachable = args[:unreachable] if args.key?(:unreachable)
end