google-apis-aiplatform_v1 0.76.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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e707c177f62cfcca93807fe1badc1e7be2fcb33d5d7a27d61071125d7fc69792
|
|
4
|
+
data.tar.gz: 5aa9a56cb1c33f8e866cdedeacbabf583180d7a03892982912d07ace9e930821
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 36a5a1e969fdff71b2f7773e12fdcc76c511a926b97057ef49ca45c08b3937cddc293eab9afdc36f049f5a86f9ed894bd70eeca8276282b1a37c368dd36e5917
|
|
7
|
+
data.tar.gz: 56fd1796826af24ff35bd89d5de92b0ac400c513a66e9b7892412e95f36156e6c6c26de10206a0711c1a12b6c8a3a6c4098a3cf96a3ffef700f566c65d05ae09
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
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
|
+
|
|
7
|
+
### v0.77.0 (2026-01-11)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20260106
|
|
10
|
+
|
|
3
11
|
### v0.76.0 (2025-12-21)
|
|
4
12
|
|
|
5
13
|
* Regenerated from discovery document revision 20251215
|
|
@@ -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
|
|
@@ -2291,6 +2374,11 @@ module Google
|
|
|
2291
2374
|
# @return [String]
|
|
2292
2375
|
attr_accessor :instances_format
|
|
2293
2376
|
|
|
2377
|
+
# The Vertex Multimodal Dataset for the input content.
|
|
2378
|
+
# Corresponds to the JSON property `vertexMultimodalDatasetSource`
|
|
2379
|
+
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1VertexMultimodalDatasetSource]
|
|
2380
|
+
attr_accessor :vertex_multimodal_dataset_source
|
|
2381
|
+
|
|
2294
2382
|
def initialize(**args)
|
|
2295
2383
|
update!(**args)
|
|
2296
2384
|
end
|
|
@@ -2300,6 +2388,7 @@ module Google
|
|
|
2300
2388
|
@bigquery_source = args[:bigquery_source] if args.key?(:bigquery_source)
|
|
2301
2389
|
@gcs_source = args[:gcs_source] if args.key?(:gcs_source)
|
|
2302
2390
|
@instances_format = args[:instances_format] if args.key?(:instances_format)
|
|
2391
|
+
@vertex_multimodal_dataset_source = args[:vertex_multimodal_dataset_source] if args.key?(:vertex_multimodal_dataset_source)
|
|
2303
2392
|
end
|
|
2304
2393
|
end
|
|
2305
2394
|
|
|
@@ -2399,6 +2488,11 @@ module Google
|
|
|
2399
2488
|
# @return [String]
|
|
2400
2489
|
attr_accessor :predictions_format
|
|
2401
2490
|
|
|
2491
|
+
# The details for a Vertex Multimodal Dataset output.
|
|
2492
|
+
# Corresponds to the JSON property `vertexMultimodalDatasetDestination`
|
|
2493
|
+
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1VertexMultimodalDatasetDestination]
|
|
2494
|
+
attr_accessor :vertex_multimodal_dataset_destination
|
|
2495
|
+
|
|
2402
2496
|
def initialize(**args)
|
|
2403
2497
|
update!(**args)
|
|
2404
2498
|
end
|
|
@@ -2408,6 +2502,7 @@ module Google
|
|
|
2408
2502
|
@bigquery_destination = args[:bigquery_destination] if args.key?(:bigquery_destination)
|
|
2409
2503
|
@gcs_destination = args[:gcs_destination] if args.key?(:gcs_destination)
|
|
2410
2504
|
@predictions_format = args[:predictions_format] if args.key?(:predictions_format)
|
|
2505
|
+
@vertex_multimodal_dataset_destination = args[:vertex_multimodal_dataset_destination] if args.key?(:vertex_multimodal_dataset_destination)
|
|
2411
2506
|
end
|
|
2412
2507
|
end
|
|
2413
2508
|
|
|
@@ -2434,6 +2529,13 @@ module Google
|
|
|
2434
2529
|
# @return [String]
|
|
2435
2530
|
attr_accessor :gcs_output_directory
|
|
2436
2531
|
|
|
2532
|
+
# Output only. The resource name of the Vertex Managed Dataset created, into
|
|
2533
|
+
# which the prediction output is written. Format: `projects/`project`/locations/`
|
|
2534
|
+
# location`/datasets/`dataset``
|
|
2535
|
+
# Corresponds to the JSON property `vertexMultimodalDatasetName`
|
|
2536
|
+
# @return [String]
|
|
2537
|
+
attr_accessor :vertex_multimodal_dataset_name
|
|
2538
|
+
|
|
2437
2539
|
def initialize(**args)
|
|
2438
2540
|
update!(**args)
|
|
2439
2541
|
end
|
|
@@ -2443,6 +2545,7 @@ module Google
|
|
|
2443
2545
|
@bigquery_output_dataset = args[:bigquery_output_dataset] if args.key?(:bigquery_output_dataset)
|
|
2444
2546
|
@bigquery_output_table = args[:bigquery_output_table] if args.key?(:bigquery_output_table)
|
|
2445
2547
|
@gcs_output_directory = args[:gcs_output_directory] if args.key?(:gcs_output_directory)
|
|
2548
|
+
@vertex_multimodal_dataset_name = args[:vertex_multimodal_dataset_name] if args.key?(:vertex_multimodal_dataset_name)
|
|
2446
2549
|
end
|
|
2447
2550
|
end
|
|
2448
2551
|
|
|
@@ -5173,6 +5276,25 @@ module Google
|
|
|
5173
5276
|
end
|
|
5174
5277
|
end
|
|
5175
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
|
+
|
|
5176
5298
|
# Specificies a metric that is populated by evaluating user-defined Python code.
|
|
5177
5299
|
class GoogleCloudAiplatformV1CustomCodeExecutionSpec
|
|
5178
5300
|
include Google::Apis::Core::Hashable
|
|
@@ -7855,7 +7977,7 @@ module Google
|
|
|
7855
7977
|
# @return [String]
|
|
7856
7978
|
attr_accessor :model_deployment_monitoring_job
|
|
7857
7979
|
|
|
7858
|
-
#
|
|
7980
|
+
# Identifier. The resource name of the Endpoint.
|
|
7859
7981
|
# Corresponds to the JSON property `name`
|
|
7860
7982
|
# @return [String]
|
|
7861
7983
|
attr_accessor :name
|
|
@@ -8226,6 +8348,31 @@ module Google
|
|
|
8226
8348
|
end
|
|
8227
8349
|
end
|
|
8228
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
|
+
|
|
8229
8376
|
# Request message for EvaluationService.EvaluateInstances.
|
|
8230
8377
|
class GoogleCloudAiplatformV1EvaluateInstancesRequest
|
|
8231
8378
|
include Google::Apis::Core::Hashable
|
|
@@ -25107,6 +25254,26 @@ module Google
|
|
|
25107
25254
|
end
|
|
25108
25255
|
end
|
|
25109
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
|
+
|
|
25110
25277
|
# PSC config that is used to automatically create PSC endpoints in the user
|
|
25111
25278
|
# projects.
|
|
25112
25279
|
class GoogleCloudAiplatformV1PscAutomationConfig
|
|
@@ -25595,7 +25762,10 @@ module Google
|
|
|
25595
25762
|
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1PartMediaResolution]
|
|
25596
25763
|
attr_accessor :media_resolution
|
|
25597
25764
|
|
|
25598
|
-
# 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.
|
|
25599
25769
|
# Corresponds to the JSON property `text`
|
|
25600
25770
|
# @return [String]
|
|
25601
25771
|
attr_accessor :text
|
|
@@ -30743,8 +30913,8 @@ module Google
|
|
|
30743
30913
|
# @return [String]
|
|
30744
30914
|
attr_accessor :pickle_object_gcs_uri
|
|
30745
30915
|
|
|
30746
|
-
# Optional. The Python version. Supported values are 3.9, 3.10, 3.11, 3.12, 3.13
|
|
30747
|
-
# 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.
|
|
30748
30918
|
# Corresponds to the JSON property `pythonVersion`
|
|
30749
30919
|
# @return [String]
|
|
30750
30920
|
attr_accessor :python_version
|
|
@@ -30904,7 +31074,7 @@ module Google
|
|
|
30904
31074
|
attr_accessor :requirements_file
|
|
30905
31075
|
|
|
30906
31076
|
# Optional. The version of Python to use. Support version includes 3.9, 3.10, 3.
|
|
30907
|
-
# 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.
|
|
30908
31078
|
# Corresponds to the JSON property `version`
|
|
30909
31079
|
# @return [String]
|
|
30910
31080
|
attr_accessor :version
|
|
@@ -46413,6 +46583,51 @@ module Google
|
|
|
46413
46583
|
end
|
|
46414
46584
|
end
|
|
46415
46585
|
|
|
46586
|
+
# The details for a Vertex Multimodal Dataset output.
|
|
46587
|
+
class GoogleCloudAiplatformV1VertexMultimodalDatasetDestination
|
|
46588
|
+
include Google::Apis::Core::Hashable
|
|
46589
|
+
|
|
46590
|
+
# The BigQuery location for the output content.
|
|
46591
|
+
# Corresponds to the JSON property `bigqueryDestination`
|
|
46592
|
+
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1BigQueryDestination]
|
|
46593
|
+
attr_accessor :bigquery_destination
|
|
46594
|
+
|
|
46595
|
+
# Optional. Display name of the output dataset.
|
|
46596
|
+
# Corresponds to the JSON property `displayName`
|
|
46597
|
+
# @return [String]
|
|
46598
|
+
attr_accessor :display_name
|
|
46599
|
+
|
|
46600
|
+
def initialize(**args)
|
|
46601
|
+
update!(**args)
|
|
46602
|
+
end
|
|
46603
|
+
|
|
46604
|
+
# Update properties of this object
|
|
46605
|
+
def update!(**args)
|
|
46606
|
+
@bigquery_destination = args[:bigquery_destination] if args.key?(:bigquery_destination)
|
|
46607
|
+
@display_name = args[:display_name] if args.key?(:display_name)
|
|
46608
|
+
end
|
|
46609
|
+
end
|
|
46610
|
+
|
|
46611
|
+
# The Vertex Multimodal Dataset for the input content.
|
|
46612
|
+
class GoogleCloudAiplatformV1VertexMultimodalDatasetSource
|
|
46613
|
+
include Google::Apis::Core::Hashable
|
|
46614
|
+
|
|
46615
|
+
# Required. The resource name of the Vertex Dataset. Format: `projects/`project`/
|
|
46616
|
+
# locations/`location`/datasets/`dataset``
|
|
46617
|
+
# Corresponds to the JSON property `datasetName`
|
|
46618
|
+
# @return [String]
|
|
46619
|
+
attr_accessor :dataset_name
|
|
46620
|
+
|
|
46621
|
+
def initialize(**args)
|
|
46622
|
+
update!(**args)
|
|
46623
|
+
end
|
|
46624
|
+
|
|
46625
|
+
# Update properties of this object
|
|
46626
|
+
def update!(**args)
|
|
46627
|
+
@dataset_name = args[:dataset_name] if args.key?(:dataset_name)
|
|
46628
|
+
end
|
|
46629
|
+
end
|
|
46630
|
+
|
|
46416
46631
|
# Retrieve from Vertex RAG Store for grounding.
|
|
46417
46632
|
class GoogleCloudAiplatformV1VertexRagStore
|
|
46418
46633
|
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.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 = "
|
|
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
|
|
|
@@ -7762,6 +7792,18 @@ module Google
|
|
|
7762
7792
|
include Google::Apis::Core::JsonObjectSupport
|
|
7763
7793
|
end
|
|
7764
7794
|
|
|
7795
|
+
class GoogleCloudAiplatformV1VertexMultimodalDatasetDestination
|
|
7796
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
7797
|
+
|
|
7798
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
7799
|
+
end
|
|
7800
|
+
|
|
7801
|
+
class GoogleCloudAiplatformV1VertexMultimodalDatasetSource
|
|
7802
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
7803
|
+
|
|
7804
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
7805
|
+
end
|
|
7806
|
+
|
|
7765
7807
|
class GoogleCloudAiplatformV1VertexRagStore
|
|
7766
7808
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
7767
7809
|
|
|
@@ -8156,6 +8198,35 @@ module Google
|
|
|
8156
8198
|
end
|
|
8157
8199
|
end
|
|
8158
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
|
+
|
|
8159
8230
|
class GoogleCloudAiplatformV1Annotation
|
|
8160
8231
|
# @private
|
|
8161
8232
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -8580,6 +8651,8 @@ module Google
|
|
|
8580
8651
|
property :gcs_source, as: 'gcsSource', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1GcsSource, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1GcsSource::Representation
|
|
8581
8652
|
|
|
8582
8653
|
property :instances_format, as: 'instancesFormat'
|
|
8654
|
+
property :vertex_multimodal_dataset_source, as: 'vertexMultimodalDatasetSource', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1VertexMultimodalDatasetSource, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1VertexMultimodalDatasetSource::Representation
|
|
8655
|
+
|
|
8583
8656
|
end
|
|
8584
8657
|
end
|
|
8585
8658
|
|
|
@@ -8601,6 +8674,8 @@ module Google
|
|
|
8601
8674
|
property :gcs_destination, as: 'gcsDestination', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1GcsDestination, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1GcsDestination::Representation
|
|
8602
8675
|
|
|
8603
8676
|
property :predictions_format, as: 'predictionsFormat'
|
|
8677
|
+
property :vertex_multimodal_dataset_destination, as: 'vertexMultimodalDatasetDestination', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1VertexMultimodalDatasetDestination, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1VertexMultimodalDatasetDestination::Representation
|
|
8678
|
+
|
|
8604
8679
|
end
|
|
8605
8680
|
end
|
|
8606
8681
|
|
|
@@ -8610,6 +8685,7 @@ module Google
|
|
|
8610
8685
|
property :bigquery_output_dataset, as: 'bigqueryOutputDataset'
|
|
8611
8686
|
property :bigquery_output_table, as: 'bigqueryOutputTable'
|
|
8612
8687
|
property :gcs_output_directory, as: 'gcsOutputDirectory'
|
|
8688
|
+
property :vertex_multimodal_dataset_name, as: 'vertexMultimodalDatasetName'
|
|
8613
8689
|
end
|
|
8614
8690
|
end
|
|
8615
8691
|
|
|
@@ -9493,6 +9569,13 @@ module Google
|
|
|
9493
9569
|
end
|
|
9494
9570
|
end
|
|
9495
9571
|
|
|
9572
|
+
class GoogleCloudAiplatformV1CustomCodeExecutionResult
|
|
9573
|
+
# @private
|
|
9574
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
9575
|
+
property :score, as: 'score'
|
|
9576
|
+
end
|
|
9577
|
+
end
|
|
9578
|
+
|
|
9496
9579
|
class GoogleCloudAiplatformV1CustomCodeExecutionSpec
|
|
9497
9580
|
# @private
|
|
9498
9581
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -10243,6 +10326,16 @@ module Google
|
|
|
10243
10326
|
end
|
|
10244
10327
|
end
|
|
10245
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
|
+
|
|
10246
10339
|
class GoogleCloudAiplatformV1EvaluateInstancesRequest
|
|
10247
10340
|
# @private
|
|
10248
10341
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -15000,6 +15093,13 @@ module Google
|
|
|
15000
15093
|
end
|
|
15001
15094
|
end
|
|
15002
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
|
+
|
|
15003
15103
|
class GoogleCloudAiplatformV1PscAutomationConfig
|
|
15004
15104
|
# @private
|
|
15005
15105
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -21112,6 +21212,22 @@ module Google
|
|
|
21112
21212
|
end
|
|
21113
21213
|
end
|
|
21114
21214
|
|
|
21215
|
+
class GoogleCloudAiplatformV1VertexMultimodalDatasetDestination
|
|
21216
|
+
# @private
|
|
21217
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
21218
|
+
property :bigquery_destination, as: 'bigqueryDestination', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1BigQueryDestination, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1BigQueryDestination::Representation
|
|
21219
|
+
|
|
21220
|
+
property :display_name, as: 'displayName'
|
|
21221
|
+
end
|
|
21222
|
+
end
|
|
21223
|
+
|
|
21224
|
+
class GoogleCloudAiplatformV1VertexMultimodalDatasetSource
|
|
21225
|
+
# @private
|
|
21226
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
21227
|
+
property :dataset_name, as: 'datasetName'
|
|
21228
|
+
end
|
|
21229
|
+
end
|
|
21230
|
+
|
|
21115
21231
|
class GoogleCloudAiplatformV1VertexRagStore
|
|
21116
21232
|
# @private
|
|
21117
21233
|
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
|
-
#
|
|
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
|
-
#
|
|
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.
|
|
@@ -22976,7 +22976,7 @@ module Google
|
|
|
22976
22976
|
# post_startup_script` * `software_config.post_startup_script_config.
|
|
22977
22977
|
# post_startup_script_url` * `software_config.post_startup_script_config.
|
|
22978
22978
|
# post_startup_script_behavior` * `software_config.env` * `software_config.
|
|
22979
|
-
# colab_image.release_name`
|
|
22979
|
+
# colab_image.release_name` * `software_config.custom_container_config.image_uri`
|
|
22980
22980
|
# @param [String] fields
|
|
22981
22981
|
# Selector specifying which fields to include in a partial response.
|
|
22982
22982
|
# @param [String] quota_user
|
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.
|
|
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.
|
|
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:
|