Class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ListNotebookExecutionJobsResponse
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ListNotebookExecutionJobsResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/aiplatform_v1beta1/classes.rb,
lib/google/apis/aiplatform_v1beta1/representations.rb,
lib/google/apis/aiplatform_v1beta1/representations.rb
Overview
Response message for [NotebookService.CreateNotebookExecutionJob]
Instance Attribute Summary collapse
-
#next_page_token ⇒ String
A token to retrieve next page of results.
-
#notebook_execution_jobs ⇒ Array<Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1NotebookExecutionJob>
List of NotebookExecutionJobs in the requested page.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1ListNotebookExecutionJobsResponse
constructor
A new instance of GoogleCloudAiplatformV1beta1ListNotebookExecutionJobsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1ListNotebookExecutionJobsResponse
Returns a new instance of GoogleCloudAiplatformV1beta1ListNotebookExecutionJobsResponse.
13967 13968 13969 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 13967 def initialize(**args) update!(**args) end |
Instance Attribute Details
#next_page_token ⇒ String
A token to retrieve next page of results. Pass to ListNotebookExecutionJobs.
page_token to obtain that page.
Corresponds to the JSON property nextPageToken
13960 13961 13962 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 13960 def next_page_token @next_page_token end |
#notebook_execution_jobs ⇒ Array<Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1NotebookExecutionJob>
List of NotebookExecutionJobs in the requested page.
Corresponds to the JSON property notebookExecutionJobs
13965 13966 13967 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 13965 def notebook_execution_jobs @notebook_execution_jobs end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
13972 13973 13974 13975 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 13972 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @notebook_execution_jobs = args[:notebook_execution_jobs] if args.key?(:notebook_execution_jobs) end |