google-apis-aiplatform_v1 0.15.0 → 0.16.0
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 04ed12ba2ecb19ef93af13a66775c8d4e94b31ec6b1e623fbc8238e94862de1e
|
4
|
+
data.tar.gz: f47e2c8850af9b80e995d57c84e5ca0af9f0ad2e221b23772be919b49d94f916
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0e8d8cb5c890f6fefd818ae3c59c6deb6b3a723f42d2e7b480abbc50b8499217e36dd12f524760044152a6649f9bd2e16a102eb0fac1e27dd6ce9aa692b411dd
|
7
|
+
data.tar.gz: 4532c92fdef13fa18f574624c7de606d4a0a88f05ff61e9320f562000f1f995837c52ed82fe04e4ad2ae6d95208be769c1891893f6b99209093bf730e1ab0335
|
data/CHANGELOG.md
CHANGED
@@ -1858,6 +1858,27 @@ module Google
|
|
1858
1858
|
end
|
1859
1859
|
end
|
1860
1860
|
|
1861
|
+
# Request message for PipelineService.BatchCancelPipelineJobs.
|
1862
|
+
class GoogleCloudAiplatformV1BatchCancelPipelineJobsRequest
|
1863
|
+
include Google::Apis::Core::Hashable
|
1864
|
+
|
1865
|
+
# Required. The names of the PipelineJobs to cancel. A maximum of 32
|
1866
|
+
# PipelineJobs can be cancelled in a batch. Format: `projects/`project`/
|
1867
|
+
# locations/`location`/pipelineJobs/`pipelineJob``
|
1868
|
+
# Corresponds to the JSON property `names`
|
1869
|
+
# @return [Array<String>]
|
1870
|
+
attr_accessor :names
|
1871
|
+
|
1872
|
+
def initialize(**args)
|
1873
|
+
update!(**args)
|
1874
|
+
end
|
1875
|
+
|
1876
|
+
# Update properties of this object
|
1877
|
+
def update!(**args)
|
1878
|
+
@names = args[:names] if args.key?(:names)
|
1879
|
+
end
|
1880
|
+
end
|
1881
|
+
|
1861
1882
|
# Details of operations that perform batch create Features.
|
1862
1883
|
class GoogleCloudAiplatformV1BatchCreateFeaturesOperationMetadata
|
1863
1884
|
include Google::Apis::Core::Hashable
|
@@ -2031,6 +2052,27 @@ module Google
|
|
2031
2052
|
end
|
2032
2053
|
end
|
2033
2054
|
|
2055
|
+
# Request message for PipelineService.BatchDeletePipelineJobs.
|
2056
|
+
class GoogleCloudAiplatformV1BatchDeletePipelineJobsRequest
|
2057
|
+
include Google::Apis::Core::Hashable
|
2058
|
+
|
2059
|
+
# Required. The names of the PipelineJobs to delete. A maximum of 32
|
2060
|
+
# PipelineJobs can be deleted in a batch. Format: `projects/`project`/locations/`
|
2061
|
+
# location`/pipelineJobs/`pipelineJob``
|
2062
|
+
# Corresponds to the JSON property `names`
|
2063
|
+
# @return [Array<String>]
|
2064
|
+
attr_accessor :names
|
2065
|
+
|
2066
|
+
def initialize(**args)
|
2067
|
+
update!(**args)
|
2068
|
+
end
|
2069
|
+
|
2070
|
+
# Update properties of this object
|
2071
|
+
def update!(**args)
|
2072
|
+
@names = args[:names] if args.key?(:names)
|
2073
|
+
end
|
2074
|
+
end
|
2075
|
+
|
2034
2076
|
# Request message for ModelService.BatchImportEvaluatedAnnotations
|
2035
2077
|
class GoogleCloudAiplatformV1BatchImportEvaluatedAnnotationsRequest
|
2036
2078
|
include Google::Apis::Core::Hashable
|
@@ -4811,7 +4853,7 @@ module Google
|
|
4811
4853
|
# @return [String]
|
4812
4854
|
attr_accessor :etag
|
4813
4855
|
|
4814
|
-
# Required. Additional information about the DatasetVersion.
|
4856
|
+
# Required. Output only. Additional information about the DatasetVersion.
|
4815
4857
|
# Corresponds to the JSON property `metadata`
|
4816
4858
|
# @return [Object]
|
4817
4859
|
attr_accessor :metadata
|
@@ -9727,6 +9769,26 @@ module Google
|
|
9727
9769
|
end
|
9728
9770
|
end
|
9729
9771
|
|
9772
|
+
# Contains information about the source of the models generated from Generative
|
9773
|
+
# AI Studio.
|
9774
|
+
class GoogleCloudAiplatformV1GenieSource
|
9775
|
+
include Google::Apis::Core::Hashable
|
9776
|
+
|
9777
|
+
# Required. The public base model URI.
|
9778
|
+
# Corresponds to the JSON property `baseModelUri`
|
9779
|
+
# @return [String]
|
9780
|
+
attr_accessor :base_model_uri
|
9781
|
+
|
9782
|
+
def initialize(**args)
|
9783
|
+
update!(**args)
|
9784
|
+
end
|
9785
|
+
|
9786
|
+
# Update properties of this object
|
9787
|
+
def update!(**args)
|
9788
|
+
@base_model_uri = args[:base_model_uri] if args.key?(:base_model_uri)
|
9789
|
+
end
|
9790
|
+
end
|
9791
|
+
|
9730
9792
|
# Grounding attribution.
|
9731
9793
|
class GoogleCloudAiplatformV1GroundingAttribution
|
9732
9794
|
include Google::Apis::Core::Hashable
|
@@ -12896,6 +12958,12 @@ module Google
|
|
12896
12958
|
# @return [String]
|
12897
12959
|
attr_accessor :artifact_uri
|
12898
12960
|
|
12961
|
+
# User input field to specify the base model source. Currently it only supports
|
12962
|
+
# specifing the Model Garden models and Genie models.
|
12963
|
+
# Corresponds to the JSON property `baseModelSource`
|
12964
|
+
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1ModelBaseModelSource]
|
12965
|
+
attr_accessor :base_model_source
|
12966
|
+
|
12899
12967
|
# Specification of a container for serving predictions. Some fields in this
|
12900
12968
|
# message correspond to fields in the [Kubernetes Container v1 core
|
12901
12969
|
# specification](https://kubernetes.io/docs/reference/generated/kubernetes-api/
|
@@ -13118,6 +13186,7 @@ module Google
|
|
13118
13186
|
# Update properties of this object
|
13119
13187
|
def update!(**args)
|
13120
13188
|
@artifact_uri = args[:artifact_uri] if args.key?(:artifact_uri)
|
13189
|
+
@base_model_source = args[:base_model_source] if args.key?(:base_model_source)
|
13121
13190
|
@container_spec = args[:container_spec] if args.key?(:container_spec)
|
13122
13191
|
@create_time = args[:create_time] if args.key?(:create_time)
|
13123
13192
|
@data_stats = args[:data_stats] if args.key?(:data_stats)
|
@@ -13150,6 +13219,34 @@ module Google
|
|
13150
13219
|
end
|
13151
13220
|
end
|
13152
13221
|
|
13222
|
+
# User input field to specify the base model source. Currently it only supports
|
13223
|
+
# specifing the Model Garden models and Genie models.
|
13224
|
+
class GoogleCloudAiplatformV1ModelBaseModelSource
|
13225
|
+
include Google::Apis::Core::Hashable
|
13226
|
+
|
13227
|
+
# Contains information about the source of the models generated from Generative
|
13228
|
+
# AI Studio.
|
13229
|
+
# Corresponds to the JSON property `genieSource`
|
13230
|
+
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1GenieSource]
|
13231
|
+
attr_accessor :genie_source
|
13232
|
+
|
13233
|
+
# Contains information about the source of the models generated from Model
|
13234
|
+
# Garden.
|
13235
|
+
# Corresponds to the JSON property `modelGardenSource`
|
13236
|
+
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1ModelGardenSource]
|
13237
|
+
attr_accessor :model_garden_source
|
13238
|
+
|
13239
|
+
def initialize(**args)
|
13240
|
+
update!(**args)
|
13241
|
+
end
|
13242
|
+
|
13243
|
+
# Update properties of this object
|
13244
|
+
def update!(**args)
|
13245
|
+
@genie_source = args[:genie_source] if args.key?(:genie_source)
|
13246
|
+
@model_garden_source = args[:model_garden_source] if args.key?(:model_garden_source)
|
13247
|
+
end
|
13248
|
+
end
|
13249
|
+
|
13153
13250
|
# Specification of a container for serving predictions. Some fields in this
|
13154
13251
|
# message correspond to fields in the [Kubernetes Container v1 core
|
13155
13252
|
# specification](https://kubernetes.io/docs/reference/generated/kubernetes-api/
|
@@ -14140,6 +14237,26 @@ module Google
|
|
14140
14237
|
end
|
14141
14238
|
end
|
14142
14239
|
|
14240
|
+
# Contains information about the source of the models generated from Model
|
14241
|
+
# Garden.
|
14242
|
+
class GoogleCloudAiplatformV1ModelGardenSource
|
14243
|
+
include Google::Apis::Core::Hashable
|
14244
|
+
|
14245
|
+
# Required. The model garden source model resource name.
|
14246
|
+
# Corresponds to the JSON property `publicModelName`
|
14247
|
+
# @return [String]
|
14248
|
+
attr_accessor :public_model_name
|
14249
|
+
|
14250
|
+
def initialize(**args)
|
14251
|
+
update!(**args)
|
14252
|
+
end
|
14253
|
+
|
14254
|
+
# Update properties of this object
|
14255
|
+
def update!(**args)
|
14256
|
+
@public_model_name = args[:public_model_name] if args.key?(:public_model_name)
|
14257
|
+
end
|
14258
|
+
end
|
14259
|
+
|
14143
14260
|
# The alert config for model monitoring.
|
14144
14261
|
class GoogleCloudAiplatformV1ModelMonitoringAlertConfig
|
14145
14262
|
include Google::Apis::Core::Hashable
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module AiplatformV1
|
18
18
|
# Version of the google-apis-aiplatform_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.16.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.14.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20240229"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -328,6 +328,12 @@ module Google
|
|
328
328
|
include Google::Apis::Core::JsonObjectSupport
|
329
329
|
end
|
330
330
|
|
331
|
+
class GoogleCloudAiplatformV1BatchCancelPipelineJobsRequest
|
332
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
333
|
+
|
334
|
+
include Google::Apis::Core::JsonObjectSupport
|
335
|
+
end
|
336
|
+
|
331
337
|
class GoogleCloudAiplatformV1BatchCreateFeaturesOperationMetadata
|
332
338
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
333
339
|
|
@@ -376,6 +382,12 @@ module Google
|
|
376
382
|
include Google::Apis::Core::JsonObjectSupport
|
377
383
|
end
|
378
384
|
|
385
|
+
class GoogleCloudAiplatformV1BatchDeletePipelineJobsRequest
|
386
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
387
|
+
|
388
|
+
include Google::Apis::Core::JsonObjectSupport
|
389
|
+
end
|
390
|
+
|
379
391
|
class GoogleCloudAiplatformV1BatchImportEvaluatedAnnotationsRequest
|
380
392
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
381
393
|
|
@@ -1642,6 +1654,12 @@ module Google
|
|
1642
1654
|
include Google::Apis::Core::JsonObjectSupport
|
1643
1655
|
end
|
1644
1656
|
|
1657
|
+
class GoogleCloudAiplatformV1GenieSource
|
1658
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1659
|
+
|
1660
|
+
include Google::Apis::Core::JsonObjectSupport
|
1661
|
+
end
|
1662
|
+
|
1645
1663
|
class GoogleCloudAiplatformV1GroundingAttribution
|
1646
1664
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1647
1665
|
|
@@ -2218,6 +2236,12 @@ module Google
|
|
2218
2236
|
include Google::Apis::Core::JsonObjectSupport
|
2219
2237
|
end
|
2220
2238
|
|
2239
|
+
class GoogleCloudAiplatformV1ModelBaseModelSource
|
2240
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2241
|
+
|
2242
|
+
include Google::Apis::Core::JsonObjectSupport
|
2243
|
+
end
|
2244
|
+
|
2221
2245
|
class GoogleCloudAiplatformV1ModelContainerSpec
|
2222
2246
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2223
2247
|
|
@@ -2320,6 +2344,12 @@ module Google
|
|
2320
2344
|
include Google::Apis::Core::JsonObjectSupport
|
2321
2345
|
end
|
2322
2346
|
|
2347
|
+
class GoogleCloudAiplatformV1ModelGardenSource
|
2348
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2349
|
+
|
2350
|
+
include Google::Apis::Core::JsonObjectSupport
|
2351
|
+
end
|
2352
|
+
|
2323
2353
|
class GoogleCloudAiplatformV1ModelMonitoringAlertConfig
|
2324
2354
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2325
2355
|
|
@@ -5678,6 +5708,13 @@ module Google
|
|
5678
5708
|
end
|
5679
5709
|
end
|
5680
5710
|
|
5711
|
+
class GoogleCloudAiplatformV1BatchCancelPipelineJobsRequest
|
5712
|
+
# @private
|
5713
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
5714
|
+
collection :names, as: 'names'
|
5715
|
+
end
|
5716
|
+
end
|
5717
|
+
|
5681
5718
|
class GoogleCloudAiplatformV1BatchCreateFeaturesOperationMetadata
|
5682
5719
|
# @private
|
5683
5720
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -5744,6 +5781,13 @@ module Google
|
|
5744
5781
|
end
|
5745
5782
|
end
|
5746
5783
|
|
5784
|
+
class GoogleCloudAiplatformV1BatchDeletePipelineJobsRequest
|
5785
|
+
# @private
|
5786
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
5787
|
+
collection :names, as: 'names'
|
5788
|
+
end
|
5789
|
+
end
|
5790
|
+
|
5747
5791
|
class GoogleCloudAiplatformV1BatchImportEvaluatedAnnotationsRequest
|
5748
5792
|
# @private
|
5749
5793
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -7872,6 +7916,13 @@ module Google
|
|
7872
7916
|
end
|
7873
7917
|
end
|
7874
7918
|
|
7919
|
+
class GoogleCloudAiplatformV1GenieSource
|
7920
|
+
# @private
|
7921
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
7922
|
+
property :base_model_uri, as: 'baseModelUri'
|
7923
|
+
end
|
7924
|
+
end
|
7925
|
+
|
7875
7926
|
class GoogleCloudAiplatformV1GroundingAttribution
|
7876
7927
|
# @private
|
7877
7928
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -8813,6 +8864,8 @@ module Google
|
|
8813
8864
|
# @private
|
8814
8865
|
class Representation < Google::Apis::Core::JsonRepresentation
|
8815
8866
|
property :artifact_uri, as: 'artifactUri'
|
8867
|
+
property :base_model_source, as: 'baseModelSource', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1ModelBaseModelSource, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1ModelBaseModelSource::Representation
|
8868
|
+
|
8816
8869
|
property :container_spec, as: 'containerSpec', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1ModelContainerSpec, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1ModelContainerSpec::Representation
|
8817
8870
|
|
8818
8871
|
property :create_time, as: 'createTime'
|
@@ -8854,6 +8907,16 @@ module Google
|
|
8854
8907
|
end
|
8855
8908
|
end
|
8856
8909
|
|
8910
|
+
class GoogleCloudAiplatformV1ModelBaseModelSource
|
8911
|
+
# @private
|
8912
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
8913
|
+
property :genie_source, as: 'genieSource', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1GenieSource, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1GenieSource::Representation
|
8914
|
+
|
8915
|
+
property :model_garden_source, as: 'modelGardenSource', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1ModelGardenSource, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1ModelGardenSource::Representation
|
8916
|
+
|
8917
|
+
end
|
8918
|
+
end
|
8919
|
+
|
8857
8920
|
class GoogleCloudAiplatformV1ModelContainerSpec
|
8858
8921
|
# @private
|
8859
8922
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -9066,6 +9129,13 @@ module Google
|
|
9066
9129
|
end
|
9067
9130
|
end
|
9068
9131
|
|
9132
|
+
class GoogleCloudAiplatformV1ModelGardenSource
|
9133
|
+
# @private
|
9134
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
9135
|
+
property :public_model_name, as: 'publicModelName'
|
9136
|
+
end
|
9137
|
+
end
|
9138
|
+
|
9069
9139
|
class GoogleCloudAiplatformV1ModelMonitoringAlertConfig
|
9070
9140
|
# @private
|
9071
9141
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -13674,6 +13674,79 @@ module Google
|
|
13674
13674
|
execute_or_queue_command(command, &block)
|
13675
13675
|
end
|
13676
13676
|
|
13677
|
+
# Batch cancel PipelineJobs. Firstly the server will check if all the jobs are
|
13678
|
+
# in non-terminal states, and skip the jobs that are already terminated. If the
|
13679
|
+
# operation failed, none of the pipeline jobs are cancelled. The server will
|
13680
|
+
# poll the states of all the pipeline jobs periodically to check the
|
13681
|
+
# cancellation status. This operation will return an LRO.
|
13682
|
+
# @param [String] parent
|
13683
|
+
# Required. The name of the PipelineJobs' parent resource. Format: `projects/`
|
13684
|
+
# project`/locations/`location``
|
13685
|
+
# @param [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1BatchCancelPipelineJobsRequest] google_cloud_aiplatform_v1_batch_cancel_pipeline_jobs_request_object
|
13686
|
+
# @param [String] fields
|
13687
|
+
# Selector specifying which fields to include in a partial response.
|
13688
|
+
# @param [String] quota_user
|
13689
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
13690
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
13691
|
+
# @param [Google::Apis::RequestOptions] options
|
13692
|
+
# Request-specific options
|
13693
|
+
#
|
13694
|
+
# @yield [result, err] Result & error if block supplied
|
13695
|
+
# @yieldparam result [Google::Apis::AiplatformV1::GoogleLongrunningOperation] parsed result object
|
13696
|
+
# @yieldparam err [StandardError] error object if request failed
|
13697
|
+
#
|
13698
|
+
# @return [Google::Apis::AiplatformV1::GoogleLongrunningOperation]
|
13699
|
+
#
|
13700
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
13701
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
13702
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
13703
|
+
def batch_project_location_pipeline_job_cancel(parent, google_cloud_aiplatform_v1_batch_cancel_pipeline_jobs_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
|
13704
|
+
command = make_simple_command(:post, 'v1/{+parent}/pipelineJobs:batchCancel', options)
|
13705
|
+
command.request_representation = Google::Apis::AiplatformV1::GoogleCloudAiplatformV1BatchCancelPipelineJobsRequest::Representation
|
13706
|
+
command.request_object = google_cloud_aiplatform_v1_batch_cancel_pipeline_jobs_request_object
|
13707
|
+
command.response_representation = Google::Apis::AiplatformV1::GoogleLongrunningOperation::Representation
|
13708
|
+
command.response_class = Google::Apis::AiplatformV1::GoogleLongrunningOperation
|
13709
|
+
command.params['parent'] = parent unless parent.nil?
|
13710
|
+
command.query['fields'] = fields unless fields.nil?
|
13711
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
13712
|
+
execute_or_queue_command(command, &block)
|
13713
|
+
end
|
13714
|
+
|
13715
|
+
# Batch deletes PipelineJobs The Operation is atomic. If it fails, none of the
|
13716
|
+
# PipelineJobs are deleted. If it succeeds, all of the PipelineJobs are deleted.
|
13717
|
+
# @param [String] parent
|
13718
|
+
# Required. The name of the PipelineJobs' parent resource. Format: `projects/`
|
13719
|
+
# project`/locations/`location``
|
13720
|
+
# @param [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1BatchDeletePipelineJobsRequest] google_cloud_aiplatform_v1_batch_delete_pipeline_jobs_request_object
|
13721
|
+
# @param [String] fields
|
13722
|
+
# Selector specifying which fields to include in a partial response.
|
13723
|
+
# @param [String] quota_user
|
13724
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
13725
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
13726
|
+
# @param [Google::Apis::RequestOptions] options
|
13727
|
+
# Request-specific options
|
13728
|
+
#
|
13729
|
+
# @yield [result, err] Result & error if block supplied
|
13730
|
+
# @yieldparam result [Google::Apis::AiplatformV1::GoogleLongrunningOperation] parsed result object
|
13731
|
+
# @yieldparam err [StandardError] error object if request failed
|
13732
|
+
#
|
13733
|
+
# @return [Google::Apis::AiplatformV1::GoogleLongrunningOperation]
|
13734
|
+
#
|
13735
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
13736
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
13737
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
13738
|
+
def batch_project_location_pipeline_job_delete(parent, google_cloud_aiplatform_v1_batch_delete_pipeline_jobs_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
|
13739
|
+
command = make_simple_command(:post, 'v1/{+parent}/pipelineJobs:batchDelete', options)
|
13740
|
+
command.request_representation = Google::Apis::AiplatformV1::GoogleCloudAiplatformV1BatchDeletePipelineJobsRequest::Representation
|
13741
|
+
command.request_object = google_cloud_aiplatform_v1_batch_delete_pipeline_jobs_request_object
|
13742
|
+
command.response_representation = Google::Apis::AiplatformV1::GoogleLongrunningOperation::Representation
|
13743
|
+
command.response_class = Google::Apis::AiplatformV1::GoogleLongrunningOperation
|
13744
|
+
command.params['parent'] = parent unless parent.nil?
|
13745
|
+
command.query['fields'] = fields unless fields.nil?
|
13746
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
13747
|
+
execute_or_queue_command(command, &block)
|
13748
|
+
end
|
13749
|
+
|
13677
13750
|
# Cancels a PipelineJob. Starts asynchronous cancellation on the PipelineJob.
|
13678
13751
|
# The server makes a best effort to cancel the pipeline, but success is not
|
13679
13752
|
# guaranteed. Clients can use PipelineService.GetPipelineJob or other methods to
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-aiplatform_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.16.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-03-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -58,7 +58,7 @@ licenses:
|
|
58
58
|
metadata:
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-aiplatform_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-aiplatform_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-aiplatform_v1/v0.16.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-aiplatform_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|