Class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1CreateNotebookExecutionJobRequest
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1CreateNotebookExecutionJobRequest
- 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
Request message for [NotebookService.CreateNotebookExecutionJob]
Instance Attribute Summary collapse
-
#notebook_execution_job ⇒ Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1NotebookExecutionJob
NotebookExecutionJob represents an instance of a notebook execution.
-
#notebook_execution_job_id ⇒ String
Optional.
-
#parent ⇒ String
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1CreateNotebookExecutionJobRequest
constructor
A new instance of GoogleCloudAiplatformV1beta1CreateNotebookExecutionJobRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1CreateNotebookExecutionJobRequest
Returns a new instance of GoogleCloudAiplatformV1beta1CreateNotebookExecutionJobRequest.
4036 4037 4038 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 4036 def initialize(**args) update!(**args) end |
Instance Attribute Details
#notebook_execution_job ⇒ Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1NotebookExecutionJob
NotebookExecutionJob represents an instance of a notebook execution.
Corresponds to the JSON property notebookExecutionJob
4023 4024 4025 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 4023 def notebook_execution_job @notebook_execution_job end |
#notebook_execution_job_id ⇒ String
Optional. User specified ID for the NotebookExecutionJob.
Corresponds to the JSON property notebookExecutionJobId
4028 4029 4030 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 4028 def notebook_execution_job_id @notebook_execution_job_id end |
#parent ⇒ String
Required. The resource name of the Location to create the NotebookExecutionJob.
Format: projects/
project/locations/
location`
Corresponds to the JSON property
parent`
4034 4035 4036 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 4034 def parent @parent end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4041 4042 4043 4044 4045 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 4041 def update!(**args) @notebook_execution_job = args[:notebook_execution_job] if args.key?(:notebook_execution_job) @notebook_execution_job_id = args[:notebook_execution_job_id] if args.key?(:notebook_execution_job_id) @parent = args[:parent] if args.key?(:parent) end |