Class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1CreatePipelineJobRequest

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 PipelineService.CreatePipelineJob.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1CreatePipelineJobRequest

Returns a new instance of GoogleCloudAiplatformV1beta1CreatePipelineJobRequest.



4154
4155
4156
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 4154

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

Instance Attribute Details

#parentString

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

Returns:

  • (String)


4132
4133
4134
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 4132

def parent
  @parent
end

#pipeline_jobGoogle::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1PipelineJob

An instance of a machine learning PipelineJob. Corresponds to the JSON property pipelineJob



4137
4138
4139
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 4137

def pipeline_job
  @pipeline_job
end

#pipeline_job_idString

The ID to use for the PipelineJob, which will become the final component of the PipelineJob name. If not provided, an ID will be automatically generated. This value should be less than 128 characters, and valid characters are /a-z-/ . Corresponds to the JSON property pipelineJobId

Returns:

  • (String)


4145
4146
4147
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 4145

def pipeline_job_id
  @pipeline_job_id
end

#preflight_validationsBoolean Also known as: preflight_validations?

Optional. Whether to do component level validations before job creation. Currently we only support Google First Party Component/Pipelines. Corresponds to the JSON property preflightValidations

Returns:

  • (Boolean)


4151
4152
4153
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 4151

def preflight_validations
  @preflight_validations
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4159
4160
4161
4162
4163
4164
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 4159

def update!(**args)
  @parent = args[:parent] if args.key?(:parent)
  @pipeline_job = args[:pipeline_job] if args.key?(:pipeline_job)
  @pipeline_job_id = args[:pipeline_job_id] if args.key?(:pipeline_job_id)
  @preflight_validations = args[:preflight_validations] if args.key?(:preflight_validations)
end