Class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1ListNotebookExecutionJobsResponse

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/aiplatform_v1/classes.rb,
lib/google/apis/aiplatform_v1/representations.rb,
lib/google/apis/aiplatform_v1/representations.rb

Overview

Response message for [NotebookService.CreateNotebookExecutionJob]

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudAiplatformV1ListNotebookExecutionJobsResponse

Returns a new instance of GoogleCloudAiplatformV1ListNotebookExecutionJobsResponse.



13352
13353
13354
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 13352

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

Instance Attribute Details

#next_page_tokenString

A token to retrieve next page of results. Pass to ListNotebookExecutionJobs. page_token to obtain that page. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


13345
13346
13347
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 13345

def next_page_token
  @next_page_token
end

#notebook_execution_jobsArray<Google::Apis::AiplatformV1::GoogleCloudAiplatformV1NotebookExecutionJob>

List of NotebookExecutionJobs in the requested page. Corresponds to the JSON property notebookExecutionJobs



13350
13351
13352
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 13350

def notebook_execution_jobs
  @notebook_execution_jobs
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



13357
13358
13359
13360
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 13357

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