Class: Google::Apis::NotebooksV1::ListExecutionsResponse

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 scheduled notebook executions

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ListExecutionsResponse

Returns a new instance of ListExecutionsResponse.

[View source]

1324
1325
1326
# File 'lib/google/apis/notebooks_v1/classes.rb', line 1324

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

Instance Attribute Details

#executionsArray<Google::Apis::NotebooksV1::Execution>

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


1309
1310
1311
# File 'lib/google/apis/notebooks_v1/classes.rb', line 1309

def executions
  @executions
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)

1315
1316
1317
# File 'lib/google/apis/notebooks_v1/classes.rb', line 1315

def next_page_token
  @next_page_token
end

#unreachableArray<String>

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

Returns:

  • (Array<String>)

1322
1323
1324
# File 'lib/google/apis/notebooks_v1/classes.rb', line 1322

def unreachable
  @unreachable
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object

[View source]

1329
1330
1331
1332
1333
# File 'lib/google/apis/notebooks_v1/classes.rb', line 1329

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