class Google::Apis::NotebooksV1::ListExecutionsResponse

Response for listing scheduled notebook executions

Attributes

executions[RW]

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

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]

Executions IDs that could not be reached. For example, ['projects/`project_id`/ location/`location`/executions/imagenet_test1', 'projects/`project_id`/ location/`location`/executions/classifier_train1']. 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 1086
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 1091
def update!(**args)
  @executions = args[:executions] if args.key?(:executions)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
  @unreachable = args[:unreachable] if args.key?(:unreachable)
end