Class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1CreateNotebookExecutionJobRequest

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1CreateNotebookExecutionJobRequest

Returns a new instance of GoogleCloudAiplatformV1beta1CreateNotebookExecutionJobRequest.



6258
6259
6260
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 6258

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

Instance Attribute Details

#notebook_execution_jobGoogle::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1NotebookExecutionJob

NotebookExecutionJob represents an instance of a notebook execution. Corresponds to the JSON property notebookExecutionJob



6245
6246
6247
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 6245

def notebook_execution_job
  @notebook_execution_job
end

#notebook_execution_job_idString

Optional. User specified ID for the NotebookExecutionJob. Corresponds to the JSON property notebookExecutionJobId

Returns:

  • (String)


6250
6251
6252
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 6250

def notebook_execution_job_id
  @notebook_execution_job_id
end

#parentString

Required. The resource name of the Location to create the NotebookExecutionJob. Format: projects/project/locations/location` Corresponds to the JSON propertyparent`

Returns:

  • (String)


6256
6257
6258
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 6256

def parent
  @parent
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



6263
6264
6265
6266
6267
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 6263

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