google-apis-aiplatform_v1 0.76.0 → 0.77.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: fb233b613dc04afadf9a2f891adb6888ea72e97222a8f920ee94f1b358690346
|
|
4
|
+
data.tar.gz: 966711d9daa9560e808bbaa71f670afe601ab60ca198a104460b826c9094c7b7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 96e84e75a4242f70ae8fde9a57865e29ffb35be304a57353a833c1b7c94c58f5d312892e2026928519a25230ec9223ae195a87273401500bb282669256211ced
|
|
7
|
+
data.tar.gz: 7febf3315a06374d92456aee3cda142417f6a47c64d4a79dec0c91d3566085621a5f3b021935e635df23f40472c6d8fef4f370a07ba891b719ccc5bcc7553b6c
|
data/CHANGELOG.md
CHANGED
|
@@ -2291,6 +2291,11 @@ module Google
|
|
|
2291
2291
|
# @return [String]
|
|
2292
2292
|
attr_accessor :instances_format
|
|
2293
2293
|
|
|
2294
|
+
# The Vertex Multimodal Dataset for the input content.
|
|
2295
|
+
# Corresponds to the JSON property `vertexMultimodalDatasetSource`
|
|
2296
|
+
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1VertexMultimodalDatasetSource]
|
|
2297
|
+
attr_accessor :vertex_multimodal_dataset_source
|
|
2298
|
+
|
|
2294
2299
|
def initialize(**args)
|
|
2295
2300
|
update!(**args)
|
|
2296
2301
|
end
|
|
@@ -2300,6 +2305,7 @@ module Google
|
|
|
2300
2305
|
@bigquery_source = args[:bigquery_source] if args.key?(:bigquery_source)
|
|
2301
2306
|
@gcs_source = args[:gcs_source] if args.key?(:gcs_source)
|
|
2302
2307
|
@instances_format = args[:instances_format] if args.key?(:instances_format)
|
|
2308
|
+
@vertex_multimodal_dataset_source = args[:vertex_multimodal_dataset_source] if args.key?(:vertex_multimodal_dataset_source)
|
|
2303
2309
|
end
|
|
2304
2310
|
end
|
|
2305
2311
|
|
|
@@ -2399,6 +2405,11 @@ module Google
|
|
|
2399
2405
|
# @return [String]
|
|
2400
2406
|
attr_accessor :predictions_format
|
|
2401
2407
|
|
|
2408
|
+
# The details for a Vertex Multimodal Dataset output.
|
|
2409
|
+
# Corresponds to the JSON property `vertexMultimodalDatasetDestination`
|
|
2410
|
+
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1VertexMultimodalDatasetDestination]
|
|
2411
|
+
attr_accessor :vertex_multimodal_dataset_destination
|
|
2412
|
+
|
|
2402
2413
|
def initialize(**args)
|
|
2403
2414
|
update!(**args)
|
|
2404
2415
|
end
|
|
@@ -2408,6 +2419,7 @@ module Google
|
|
|
2408
2419
|
@bigquery_destination = args[:bigquery_destination] if args.key?(:bigquery_destination)
|
|
2409
2420
|
@gcs_destination = args[:gcs_destination] if args.key?(:gcs_destination)
|
|
2410
2421
|
@predictions_format = args[:predictions_format] if args.key?(:predictions_format)
|
|
2422
|
+
@vertex_multimodal_dataset_destination = args[:vertex_multimodal_dataset_destination] if args.key?(:vertex_multimodal_dataset_destination)
|
|
2411
2423
|
end
|
|
2412
2424
|
end
|
|
2413
2425
|
|
|
@@ -2434,6 +2446,13 @@ module Google
|
|
|
2434
2446
|
# @return [String]
|
|
2435
2447
|
attr_accessor :gcs_output_directory
|
|
2436
2448
|
|
|
2449
|
+
# Output only. The resource name of the Vertex Managed Dataset created, into
|
|
2450
|
+
# which the prediction output is written. Format: `projects/`project`/locations/`
|
|
2451
|
+
# location`/datasets/`dataset``
|
|
2452
|
+
# Corresponds to the JSON property `vertexMultimodalDatasetName`
|
|
2453
|
+
# @return [String]
|
|
2454
|
+
attr_accessor :vertex_multimodal_dataset_name
|
|
2455
|
+
|
|
2437
2456
|
def initialize(**args)
|
|
2438
2457
|
update!(**args)
|
|
2439
2458
|
end
|
|
@@ -2443,6 +2462,7 @@ module Google
|
|
|
2443
2462
|
@bigquery_output_dataset = args[:bigquery_output_dataset] if args.key?(:bigquery_output_dataset)
|
|
2444
2463
|
@bigquery_output_table = args[:bigquery_output_table] if args.key?(:bigquery_output_table)
|
|
2445
2464
|
@gcs_output_directory = args[:gcs_output_directory] if args.key?(:gcs_output_directory)
|
|
2465
|
+
@vertex_multimodal_dataset_name = args[:vertex_multimodal_dataset_name] if args.key?(:vertex_multimodal_dataset_name)
|
|
2446
2466
|
end
|
|
2447
2467
|
end
|
|
2448
2468
|
|
|
@@ -46413,6 +46433,51 @@ module Google
|
|
|
46413
46433
|
end
|
|
46414
46434
|
end
|
|
46415
46435
|
|
|
46436
|
+
# The details for a Vertex Multimodal Dataset output.
|
|
46437
|
+
class GoogleCloudAiplatformV1VertexMultimodalDatasetDestination
|
|
46438
|
+
include Google::Apis::Core::Hashable
|
|
46439
|
+
|
|
46440
|
+
# The BigQuery location for the output content.
|
|
46441
|
+
# Corresponds to the JSON property `bigqueryDestination`
|
|
46442
|
+
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1BigQueryDestination]
|
|
46443
|
+
attr_accessor :bigquery_destination
|
|
46444
|
+
|
|
46445
|
+
# Optional. Display name of the output dataset.
|
|
46446
|
+
# Corresponds to the JSON property `displayName`
|
|
46447
|
+
# @return [String]
|
|
46448
|
+
attr_accessor :display_name
|
|
46449
|
+
|
|
46450
|
+
def initialize(**args)
|
|
46451
|
+
update!(**args)
|
|
46452
|
+
end
|
|
46453
|
+
|
|
46454
|
+
# Update properties of this object
|
|
46455
|
+
def update!(**args)
|
|
46456
|
+
@bigquery_destination = args[:bigquery_destination] if args.key?(:bigquery_destination)
|
|
46457
|
+
@display_name = args[:display_name] if args.key?(:display_name)
|
|
46458
|
+
end
|
|
46459
|
+
end
|
|
46460
|
+
|
|
46461
|
+
# The Vertex Multimodal Dataset for the input content.
|
|
46462
|
+
class GoogleCloudAiplatformV1VertexMultimodalDatasetSource
|
|
46463
|
+
include Google::Apis::Core::Hashable
|
|
46464
|
+
|
|
46465
|
+
# Required. The resource name of the Vertex Dataset. Format: `projects/`project`/
|
|
46466
|
+
# locations/`location`/datasets/`dataset``
|
|
46467
|
+
# Corresponds to the JSON property `datasetName`
|
|
46468
|
+
# @return [String]
|
|
46469
|
+
attr_accessor :dataset_name
|
|
46470
|
+
|
|
46471
|
+
def initialize(**args)
|
|
46472
|
+
update!(**args)
|
|
46473
|
+
end
|
|
46474
|
+
|
|
46475
|
+
# Update properties of this object
|
|
46476
|
+
def update!(**args)
|
|
46477
|
+
@dataset_name = args[:dataset_name] if args.key?(:dataset_name)
|
|
46478
|
+
end
|
|
46479
|
+
end
|
|
46480
|
+
|
|
46416
46481
|
# Retrieve from Vertex RAG Store for grounding.
|
|
46417
46482
|
class GoogleCloudAiplatformV1VertexRagStore
|
|
46418
46483
|
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.77.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 = "20260106"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -7762,6 +7762,18 @@ module Google
|
|
|
7762
7762
|
include Google::Apis::Core::JsonObjectSupport
|
|
7763
7763
|
end
|
|
7764
7764
|
|
|
7765
|
+
class GoogleCloudAiplatformV1VertexMultimodalDatasetDestination
|
|
7766
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
7767
|
+
|
|
7768
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
7769
|
+
end
|
|
7770
|
+
|
|
7771
|
+
class GoogleCloudAiplatformV1VertexMultimodalDatasetSource
|
|
7772
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
7773
|
+
|
|
7774
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
7775
|
+
end
|
|
7776
|
+
|
|
7765
7777
|
class GoogleCloudAiplatformV1VertexRagStore
|
|
7766
7778
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
7767
7779
|
|
|
@@ -8580,6 +8592,8 @@ module Google
|
|
|
8580
8592
|
property :gcs_source, as: 'gcsSource', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1GcsSource, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1GcsSource::Representation
|
|
8581
8593
|
|
|
8582
8594
|
property :instances_format, as: 'instancesFormat'
|
|
8595
|
+
property :vertex_multimodal_dataset_source, as: 'vertexMultimodalDatasetSource', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1VertexMultimodalDatasetSource, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1VertexMultimodalDatasetSource::Representation
|
|
8596
|
+
|
|
8583
8597
|
end
|
|
8584
8598
|
end
|
|
8585
8599
|
|
|
@@ -8601,6 +8615,8 @@ module Google
|
|
|
8601
8615
|
property :gcs_destination, as: 'gcsDestination', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1GcsDestination, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1GcsDestination::Representation
|
|
8602
8616
|
|
|
8603
8617
|
property :predictions_format, as: 'predictionsFormat'
|
|
8618
|
+
property :vertex_multimodal_dataset_destination, as: 'vertexMultimodalDatasetDestination', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1VertexMultimodalDatasetDestination, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1VertexMultimodalDatasetDestination::Representation
|
|
8619
|
+
|
|
8604
8620
|
end
|
|
8605
8621
|
end
|
|
8606
8622
|
|
|
@@ -8610,6 +8626,7 @@ module Google
|
|
|
8610
8626
|
property :bigquery_output_dataset, as: 'bigqueryOutputDataset'
|
|
8611
8627
|
property :bigquery_output_table, as: 'bigqueryOutputTable'
|
|
8612
8628
|
property :gcs_output_directory, as: 'gcsOutputDirectory'
|
|
8629
|
+
property :vertex_multimodal_dataset_name, as: 'vertexMultimodalDatasetName'
|
|
8613
8630
|
end
|
|
8614
8631
|
end
|
|
8615
8632
|
|
|
@@ -21112,6 +21129,22 @@ module Google
|
|
|
21112
21129
|
end
|
|
21113
21130
|
end
|
|
21114
21131
|
|
|
21132
|
+
class GoogleCloudAiplatformV1VertexMultimodalDatasetDestination
|
|
21133
|
+
# @private
|
|
21134
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
21135
|
+
property :bigquery_destination, as: 'bigqueryDestination', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1BigQueryDestination, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1BigQueryDestination::Representation
|
|
21136
|
+
|
|
21137
|
+
property :display_name, as: 'displayName'
|
|
21138
|
+
end
|
|
21139
|
+
end
|
|
21140
|
+
|
|
21141
|
+
class GoogleCloudAiplatformV1VertexMultimodalDatasetSource
|
|
21142
|
+
# @private
|
|
21143
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
21144
|
+
property :dataset_name, as: 'datasetName'
|
|
21145
|
+
end
|
|
21146
|
+
end
|
|
21147
|
+
|
|
21115
21148
|
class GoogleCloudAiplatformV1VertexRagStore
|
|
21116
21149
|
# @private
|
|
21117
21150
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -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.77.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.77.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:
|