google-apis-aiplatform_v1 0.77.0 → 0.78.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: fb233b613dc04afadf9a2f891adb6888ea72e97222a8f920ee94f1b358690346
4
- data.tar.gz: 966711d9daa9560e808bbaa71f670afe601ab60ca198a104460b826c9094c7b7
3
+ metadata.gz: e707c177f62cfcca93807fe1badc1e7be2fcb33d5d7a27d61071125d7fc69792
4
+ data.tar.gz: 5aa9a56cb1c33f8e866cdedeacbabf583180d7a03892982912d07ace9e930821
5
5
  SHA512:
6
- metadata.gz: 96e84e75a4242f70ae8fde9a57865e29ffb35be304a57353a833c1b7c94c58f5d312892e2026928519a25230ec9223ae195a87273401500bb282669256211ced
7
- data.tar.gz: 7febf3315a06374d92456aee3cda142417f6a47c64d4a79dec0c91d3566085621a5f3b021935e635df23f40472c6d8fef4f370a07ba891b719ccc5bcc7553b6c
6
+ metadata.gz: 36a5a1e969fdff71b2f7773e12fdcc76c511a926b97057ef49ca45c08b3937cddc293eab9afdc36f049f5a86f9ed894bd70eeca8276282b1a37c368dd36e5917
7
+ data.tar.gz: 56fd1796826af24ff35bd89d5de92b0ac400c513a66e9b7892412e95f36156e6c6c26de10206a0711c1a12b6c8a3a6c4098a3cf96a3ffef700f566c65d05ae09
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-aiplatform_v1
2
2
 
3
+ ### v0.78.0 (2026-01-18)
4
+
5
+ * Regenerated from discovery document revision 20260110
6
+
3
7
  ### v0.77.0 (2026-01-11)
4
8
 
5
9
  * Regenerated from discovery document revision 20260106
@@ -758,6 +758,86 @@ module Google
758
758
  end
759
759
  end
760
760
 
761
+ # The aggregation result for the entire dataset and all metrics.
762
+ class GoogleCloudAiplatformV1AggregationOutput
763
+ include Google::Apis::Core::Hashable
764
+
765
+ # One AggregationResult per metric.
766
+ # Corresponds to the JSON property `aggregationResults`
767
+ # @return [Array<Google::Apis::AiplatformV1::GoogleCloudAiplatformV1AggregationResult>]
768
+ attr_accessor :aggregation_results
769
+
770
+ # The dataset used for evaluation.
771
+ # Corresponds to the JSON property `dataset`
772
+ # @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1EvaluationDataset]
773
+ attr_accessor :dataset
774
+
775
+ def initialize(**args)
776
+ update!(**args)
777
+ end
778
+
779
+ # Update properties of this object
780
+ def update!(**args)
781
+ @aggregation_results = args[:aggregation_results] if args.key?(:aggregation_results)
782
+ @dataset = args[:dataset] if args.key?(:dataset)
783
+ end
784
+ end
785
+
786
+ # The aggregation result for a single metric.
787
+ class GoogleCloudAiplatformV1AggregationResult
788
+ include Google::Apis::Core::Hashable
789
+
790
+ # Aggregation metric.
791
+ # Corresponds to the JSON property `aggregationMetric`
792
+ # @return [String]
793
+ attr_accessor :aggregation_metric
794
+
795
+ # Bleu metric value for an instance.
796
+ # Corresponds to the JSON property `bleuMetricValue`
797
+ # @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1BleuMetricValue]
798
+ attr_accessor :bleu_metric_value
799
+
800
+ # Result for custom code execution metric.
801
+ # Corresponds to the JSON property `customCodeExecutionResult`
802
+ # @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1CustomCodeExecutionResult]
803
+ attr_accessor :custom_code_execution_result
804
+
805
+ # Exact match metric value for an instance.
806
+ # Corresponds to the JSON property `exactMatchMetricValue`
807
+ # @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1ExactMatchMetricValue]
808
+ attr_accessor :exact_match_metric_value
809
+
810
+ # Spec for pairwise metric result.
811
+ # Corresponds to the JSON property `pairwiseMetricResult`
812
+ # @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1PairwiseMetricResult]
813
+ attr_accessor :pairwise_metric_result
814
+
815
+ # Spec for pointwise metric result.
816
+ # Corresponds to the JSON property `pointwiseMetricResult`
817
+ # @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1PointwiseMetricResult]
818
+ attr_accessor :pointwise_metric_result
819
+
820
+ # Rouge metric value for an instance.
821
+ # Corresponds to the JSON property `rougeMetricValue`
822
+ # @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1RougeMetricValue]
823
+ attr_accessor :rouge_metric_value
824
+
825
+ def initialize(**args)
826
+ update!(**args)
827
+ end
828
+
829
+ # Update properties of this object
830
+ def update!(**args)
831
+ @aggregation_metric = args[:aggregation_metric] if args.key?(:aggregation_metric)
832
+ @bleu_metric_value = args[:bleu_metric_value] if args.key?(:bleu_metric_value)
833
+ @custom_code_execution_result = args[:custom_code_execution_result] if args.key?(:custom_code_execution_result)
834
+ @exact_match_metric_value = args[:exact_match_metric_value] if args.key?(:exact_match_metric_value)
835
+ @pairwise_metric_result = args[:pairwise_metric_result] if args.key?(:pairwise_metric_result)
836
+ @pointwise_metric_result = args[:pointwise_metric_result] if args.key?(:pointwise_metric_result)
837
+ @rouge_metric_value = args[:rouge_metric_value] if args.key?(:rouge_metric_value)
838
+ end
839
+ end
840
+
761
841
  # Used to assign specific AnnotationSpec to a particular area of a DataItem or
762
842
  # the whole part of the DataItem.
763
843
  class GoogleCloudAiplatformV1Annotation
@@ -1582,7 +1662,10 @@ module Google
1582
1662
  # * `aiplatform.googleapis.com/prediction/online/accelerator/duty_cycle` * `
1583
1663
  # aiplatform.googleapis.com/prediction/online/cpu/utilization` * `aiplatform.
1584
1664
  # googleapis.com/prediction/online/request_count` * `pubsub.googleapis.com/
1585
- # subscription/num_undelivered_messages`
1665
+ # subscription/num_undelivered_messages` * `prometheus.googleapis.com/
1666
+ # vertex_dcgm_fi_dev_gpu_util` * `prometheus.googleapis.com/
1667
+ # vertex_vllm_gpu_cache_usage_perc` * `prometheus.googleapis.com/
1668
+ # vertex_vllm_num_requests_waiting`
1586
1669
  # Corresponds to the JSON property `metricName`
1587
1670
  # @return [String]
1588
1671
  attr_accessor :metric_name
@@ -5193,6 +5276,25 @@ module Google
5193
5276
  end
5194
5277
  end
5195
5278
 
5279
+ # Result for custom code execution metric.
5280
+ class GoogleCloudAiplatformV1CustomCodeExecutionResult
5281
+ include Google::Apis::Core::Hashable
5282
+
5283
+ # Output only. Custom code execution score.
5284
+ # Corresponds to the JSON property `score`
5285
+ # @return [Float]
5286
+ attr_accessor :score
5287
+
5288
+ def initialize(**args)
5289
+ update!(**args)
5290
+ end
5291
+
5292
+ # Update properties of this object
5293
+ def update!(**args)
5294
+ @score = args[:score] if args.key?(:score)
5295
+ end
5296
+ end
5297
+
5196
5298
  # Specificies a metric that is populated by evaluating user-defined Python code.
5197
5299
  class GoogleCloudAiplatformV1CustomCodeExecutionSpec
5198
5300
  include Google::Apis::Core::Hashable
@@ -7875,7 +7977,7 @@ module Google
7875
7977
  # @return [String]
7876
7978
  attr_accessor :model_deployment_monitoring_job
7877
7979
 
7878
- # Output only. The resource name of the Endpoint.
7980
+ # Identifier. The resource name of the Endpoint.
7879
7981
  # Corresponds to the JSON property `name`
7880
7982
  # @return [String]
7881
7983
  attr_accessor :name
@@ -8246,6 +8348,31 @@ module Google
8246
8348
  end
8247
8349
  end
8248
8350
 
8351
+ # The results from an evaluation run performed by the EvaluationService.
8352
+ class GoogleCloudAiplatformV1EvaluateDatasetResponse
8353
+ include Google::Apis::Core::Hashable
8354
+
8355
+ # The aggregation result for the entire dataset and all metrics.
8356
+ # Corresponds to the JSON property `aggregationOutput`
8357
+ # @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1AggregationOutput]
8358
+ attr_accessor :aggregation_output
8359
+
8360
+ # Describes the info for output of EvaluationService.
8361
+ # Corresponds to the JSON property `outputInfo`
8362
+ # @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1OutputInfo]
8363
+ attr_accessor :output_info
8364
+
8365
+ def initialize(**args)
8366
+ update!(**args)
8367
+ end
8368
+
8369
+ # Update properties of this object
8370
+ def update!(**args)
8371
+ @aggregation_output = args[:aggregation_output] if args.key?(:aggregation_output)
8372
+ @output_info = args[:output_info] if args.key?(:output_info)
8373
+ end
8374
+ end
8375
+
8249
8376
  # Request message for EvaluationService.EvaluateInstances.
8250
8377
  class GoogleCloudAiplatformV1EvaluateInstancesRequest
8251
8378
  include Google::Apis::Core::Hashable
@@ -25127,6 +25254,26 @@ module Google
25127
25254
  end
25128
25255
  end
25129
25256
 
25257
+ # Describes the info for output of EvaluationService.
25258
+ class GoogleCloudAiplatformV1OutputInfo
25259
+ include Google::Apis::Core::Hashable
25260
+
25261
+ # Output only. The full path of the Cloud Storage directory created, into which
25262
+ # the evaluation results and aggregation results are written.
25263
+ # Corresponds to the JSON property `gcsOutputDirectory`
25264
+ # @return [String]
25265
+ attr_accessor :gcs_output_directory
25266
+
25267
+ def initialize(**args)
25268
+ update!(**args)
25269
+ end
25270
+
25271
+ # Update properties of this object
25272
+ def update!(**args)
25273
+ @gcs_output_directory = args[:gcs_output_directory] if args.key?(:gcs_output_directory)
25274
+ end
25275
+ end
25276
+
25130
25277
  # PSC config that is used to automatically create PSC endpoints in the user
25131
25278
  # projects.
25132
25279
  class GoogleCloudAiplatformV1PscAutomationConfig
@@ -25615,7 +25762,10 @@ module Google
25615
25762
  # @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1PartMediaResolution]
25616
25763
  attr_accessor :media_resolution
25617
25764
 
25618
- # Optional. The text content of the part.
25765
+ # Optional. The text content of the part. When sent from the VSCode Gemini Code
25766
+ # Assist extension, references to @mentioned items will be converted to markdown
25767
+ # boldface text. For example `@my-repo` will be converted to and sent as `**my-
25768
+ # repo**` by the IDE agent.
25619
25769
  # Corresponds to the JSON property `text`
25620
25770
  # @return [String]
25621
25771
  attr_accessor :text
@@ -30763,8 +30913,8 @@ module Google
30763
30913
  # @return [String]
30764
30914
  attr_accessor :pickle_object_gcs_uri
30765
30915
 
30766
- # Optional. The Python version. Supported values are 3.9, 3.10, 3.11, 3.12, 3.13.
30767
- # If not specified, the default value is 3.10.
30916
+ # Optional. The Python version. Supported values are 3.9, 3.10, 3.11, 3.12, 3.13,
30917
+ # 3.14. If not specified, the default value is 3.10.
30768
30918
  # Corresponds to the JSON property `pythonVersion`
30769
30919
  # @return [String]
30770
30920
  attr_accessor :python_version
@@ -30924,7 +31074,7 @@ module Google
30924
31074
  attr_accessor :requirements_file
30925
31075
 
30926
31076
  # Optional. The version of Python to use. Support version includes 3.9, 3.10, 3.
30927
- # 11, 3.12, 3.13. If not specified, default value is 3.10.
31077
+ # 11, 3.12, 3.13, 3.14. If not specified, default value is 3.10.
30928
31078
  # Corresponds to the JSON property `version`
30929
31079
  # @return [String]
30930
31080
  attr_accessor :version
@@ -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.77.0"
19
+ GEM_VERSION = "0.78.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.18.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20260106"
25
+ REVISION = "20260110"
26
26
  end
27
27
  end
28
28
  end
@@ -160,6 +160,18 @@ module Google
160
160
  include Google::Apis::Core::JsonObjectSupport
161
161
  end
162
162
 
163
+ class GoogleCloudAiplatformV1AggregationOutput
164
+ class Representation < Google::Apis::Core::JsonRepresentation; end
165
+
166
+ include Google::Apis::Core::JsonObjectSupport
167
+ end
168
+
169
+ class GoogleCloudAiplatformV1AggregationResult
170
+ class Representation < Google::Apis::Core::JsonRepresentation; end
171
+
172
+ include Google::Apis::Core::JsonObjectSupport
173
+ end
174
+
163
175
  class GoogleCloudAiplatformV1Annotation
164
176
  class Representation < Google::Apis::Core::JsonRepresentation; end
165
177
 
@@ -1018,6 +1030,12 @@ module Google
1018
1030
  include Google::Apis::Core::JsonObjectSupport
1019
1031
  end
1020
1032
 
1033
+ class GoogleCloudAiplatformV1CustomCodeExecutionResult
1034
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1035
+
1036
+ include Google::Apis::Core::JsonObjectSupport
1037
+ end
1038
+
1021
1039
  class GoogleCloudAiplatformV1CustomCodeExecutionSpec
1022
1040
  class Representation < Google::Apis::Core::JsonRepresentation; end
1023
1041
 
@@ -1402,6 +1420,12 @@ module Google
1402
1420
  include Google::Apis::Core::JsonObjectSupport
1403
1421
  end
1404
1422
 
1423
+ class GoogleCloudAiplatformV1EvaluateDatasetResponse
1424
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1425
+
1426
+ include Google::Apis::Core::JsonObjectSupport
1427
+ end
1428
+
1405
1429
  class GoogleCloudAiplatformV1EvaluateInstancesRequest
1406
1430
  class Representation < Google::Apis::Core::JsonRepresentation; end
1407
1431
 
@@ -4024,6 +4048,12 @@ module Google
4024
4048
  include Google::Apis::Core::JsonObjectSupport
4025
4049
  end
4026
4050
 
4051
+ class GoogleCloudAiplatformV1OutputInfo
4052
+ class Representation < Google::Apis::Core::JsonRepresentation; end
4053
+
4054
+ include Google::Apis::Core::JsonObjectSupport
4055
+ end
4056
+
4027
4057
  class GoogleCloudAiplatformV1PscAutomationConfig
4028
4058
  class Representation < Google::Apis::Core::JsonRepresentation; end
4029
4059
 
@@ -8168,6 +8198,35 @@ module Google
8168
8198
  end
8169
8199
  end
8170
8200
 
8201
+ class GoogleCloudAiplatformV1AggregationOutput
8202
+ # @private
8203
+ class Representation < Google::Apis::Core::JsonRepresentation
8204
+ collection :aggregation_results, as: 'aggregationResults', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1AggregationResult, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1AggregationResult::Representation
8205
+
8206
+ property :dataset, as: 'dataset', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1EvaluationDataset, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1EvaluationDataset::Representation
8207
+
8208
+ end
8209
+ end
8210
+
8211
+ class GoogleCloudAiplatformV1AggregationResult
8212
+ # @private
8213
+ class Representation < Google::Apis::Core::JsonRepresentation
8214
+ property :aggregation_metric, as: 'aggregationMetric'
8215
+ property :bleu_metric_value, as: 'bleuMetricValue', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1BleuMetricValue, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1BleuMetricValue::Representation
8216
+
8217
+ property :custom_code_execution_result, as: 'customCodeExecutionResult', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1CustomCodeExecutionResult, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1CustomCodeExecutionResult::Representation
8218
+
8219
+ property :exact_match_metric_value, as: 'exactMatchMetricValue', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1ExactMatchMetricValue, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1ExactMatchMetricValue::Representation
8220
+
8221
+ property :pairwise_metric_result, as: 'pairwiseMetricResult', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1PairwiseMetricResult, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1PairwiseMetricResult::Representation
8222
+
8223
+ property :pointwise_metric_result, as: 'pointwiseMetricResult', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1PointwiseMetricResult, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1PointwiseMetricResult::Representation
8224
+
8225
+ property :rouge_metric_value, as: 'rougeMetricValue', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1RougeMetricValue, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1RougeMetricValue::Representation
8226
+
8227
+ end
8228
+ end
8229
+
8171
8230
  class GoogleCloudAiplatformV1Annotation
8172
8231
  # @private
8173
8232
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -9510,6 +9569,13 @@ module Google
9510
9569
  end
9511
9570
  end
9512
9571
 
9572
+ class GoogleCloudAiplatformV1CustomCodeExecutionResult
9573
+ # @private
9574
+ class Representation < Google::Apis::Core::JsonRepresentation
9575
+ property :score, as: 'score'
9576
+ end
9577
+ end
9578
+
9513
9579
  class GoogleCloudAiplatformV1CustomCodeExecutionSpec
9514
9580
  # @private
9515
9581
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -10260,6 +10326,16 @@ module Google
10260
10326
  end
10261
10327
  end
10262
10328
 
10329
+ class GoogleCloudAiplatformV1EvaluateDatasetResponse
10330
+ # @private
10331
+ class Representation < Google::Apis::Core::JsonRepresentation
10332
+ property :aggregation_output, as: 'aggregationOutput', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1AggregationOutput, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1AggregationOutput::Representation
10333
+
10334
+ property :output_info, as: 'outputInfo', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1OutputInfo, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1OutputInfo::Representation
10335
+
10336
+ end
10337
+ end
10338
+
10263
10339
  class GoogleCloudAiplatformV1EvaluateInstancesRequest
10264
10340
  # @private
10265
10341
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -15017,6 +15093,13 @@ module Google
15017
15093
  end
15018
15094
  end
15019
15095
 
15096
+ class GoogleCloudAiplatformV1OutputInfo
15097
+ # @private
15098
+ class Representation < Google::Apis::Core::JsonRepresentation
15099
+ property :gcs_output_directory, as: 'gcsOutputDirectory'
15100
+ end
15101
+ end
15102
+
15020
15103
  class GoogleCloudAiplatformV1PscAutomationConfig
15021
15104
  # @private
15022
15105
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -11465,7 +11465,7 @@ module Google
11465
11465
 
11466
11466
  # Updates an Endpoint.
11467
11467
  # @param [String] name
11468
- # Output only. The resource name of the Endpoint.
11468
+ # Identifier. The resource name of the Endpoint.
11469
11469
  # @param [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1Endpoint] google_cloud_aiplatform_v1_endpoint_object
11470
11470
  # @param [String] update_mask
11471
11471
  # Required. The update mask applies to the resource. See google.protobuf.
@@ -11749,7 +11749,7 @@ module Google
11749
11749
 
11750
11750
  # Updates an Endpoint with a long running operation.
11751
11751
  # @param [String] name
11752
- # Output only. The resource name of the Endpoint.
11752
+ # Identifier. The resource name of the Endpoint.
11753
11753
  # @param [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1UpdateEndpointLongRunningRequest] google_cloud_aiplatform_v1_update_endpoint_long_running_request_object
11754
11754
  # @param [String] fields
11755
11755
  # Selector specifying which fields to include in a partial response.
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-aiplatform_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.77.0
4
+ version: 0.78.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
@@ -57,7 +57,7 @@ licenses:
57
57
  metadata:
58
58
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
59
59
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-aiplatform_v1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-aiplatform_v1/v0.77.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-aiplatform_v1/v0.78.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-aiplatform_v1
62
62
  rdoc_options: []
63
63
  require_paths: