Class: Google::Apis::NotebooksV1::ListExecutionsResponse
- Inherits:
-
Object
- Object
- Google::Apis::NotebooksV1::ListExecutionsResponse
- 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
-
#executions ⇒ Array<Google::Apis::NotebooksV1::Execution>
A list of returned instances.
-
#next_page_token ⇒ String
Page token that can be used to continue listing from the last result in the next list call.
-
#unreachable ⇒ Array<String>
Executions IDs that could not be reached.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListExecutionsResponse
constructor
A new instance of ListExecutionsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListExecutionsResponse
Returns a new instance of ListExecutionsResponse.
1324 1325 1326 |
# File 'lib/google/apis/notebooks_v1/classes.rb', line 1324 def initialize(**args) update!(**args) end |
Instance Attribute Details
#executions ⇒ Array<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_token ⇒ String
Page token that can be used to continue listing from the last result in the
next list call.
Corresponds to the JSON property nextPageToken
1315 1316 1317 |
# File 'lib/google/apis/notebooks_v1/classes.rb', line 1315 def next_page_token @next_page_token end |
#unreachable ⇒ Array<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
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
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 |