Class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1BatchDeletePipelineJobsRequest
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1::GoogleCloudAiplatformV1BatchDeletePipelineJobsRequest
- 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
Request message for PipelineService.BatchDeletePipelineJobs.
Instance Attribute Summary collapse
-
#names ⇒ Array<String>
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1BatchDeletePipelineJobsRequest
constructor
A new instance of GoogleCloudAiplatformV1BatchDeletePipelineJobsRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1BatchDeletePipelineJobsRequest
Returns a new instance of GoogleCloudAiplatformV1BatchDeletePipelineJobsRequest.
1393 1394 1395 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 1393 def initialize(**args) update!(**args) end |
Instance Attribute Details
#names ⇒ Array<String>
Required. The names of the PipelineJobs to delete. A maximum of 32
PipelineJobs can be deleted in a batch. Format: projects/
project/locations/
location/pipelineJobs/
pipelineJob`
Corresponds to the JSON property
names`
1391 1392 1393 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 1391 def names @names end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1398 1399 1400 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 1398 def update!(**args) @names = args[:names] if args.key?(:names) end |