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
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.
1269 1270 1271 |
# File 'lib/google/apis/notebooks_v1/classes.rb', line 1269 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
1254 1255 1256 |
# File 'lib/google/apis/notebooks_v1/classes.rb', line 1254 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
1260 1261 1262 |
# File 'lib/google/apis/notebooks_v1/classes.rb', line 1260 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
1267 1268 1269 |
# File 'lib/google/apis/notebooks_v1/classes.rb', line 1267 def unreachable @unreachable end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1274 1275 1276 1277 1278 |
# File 'lib/google/apis/notebooks_v1/classes.rb', line 1274 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 |