google-apis-aiplatform_v1 0.32.0 → 0.34.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: 6f8aa0a519404afb31414d3589f798e21cad050aedcfa91d4a8d309d34e60bb1
|
4
|
+
data.tar.gz: 453d0ab8513206b394296bbdd3f7a6e5a431b7862d4c3ce91306502f7fcfcb47
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7db3369094726429a58ae5c5a016121a17f4b17f0998cae875ccd8c6b4610679657d8a6e47b074fc2da4be6426b21a68361822e344b8b731368345371911ef24
|
7
|
+
data.tar.gz: 777a12d1c4b61420dbcef73cf8172fa3ee531f90bb346309b94953e2b575a609e61399d3e7a26ae492c288ca9ccccec16cfa0049b58d4bac0c077ca6a609dcf9
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-aiplatform_v1
|
2
2
|
|
3
|
+
### v0.34.0 (2024-09-15)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20240830
|
6
|
+
|
7
|
+
### v0.33.0 (2024-09-01)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20240816
|
10
|
+
|
3
11
|
### v0.32.0 (2024-08-18)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20240809
|
@@ -3566,6 +3566,38 @@ module Google
|
|
3566
3566
|
end
|
3567
3567
|
end
|
3568
3568
|
|
3569
|
+
# Request message for [NotebookService.CreateNotebookExecutionJob]
|
3570
|
+
class GoogleCloudAiplatformV1CreateNotebookExecutionJobRequest
|
3571
|
+
include Google::Apis::Core::Hashable
|
3572
|
+
|
3573
|
+
# NotebookExecutionJob represents an instance of a notebook execution.
|
3574
|
+
# Corresponds to the JSON property `notebookExecutionJob`
|
3575
|
+
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1NotebookExecutionJob]
|
3576
|
+
attr_accessor :notebook_execution_job
|
3577
|
+
|
3578
|
+
# Optional. User specified ID for the NotebookExecutionJob.
|
3579
|
+
# Corresponds to the JSON property `notebookExecutionJobId`
|
3580
|
+
# @return [String]
|
3581
|
+
attr_accessor :notebook_execution_job_id
|
3582
|
+
|
3583
|
+
# Required. The resource name of the Location to create the NotebookExecutionJob.
|
3584
|
+
# Format: `projects/`project`/locations/`location``
|
3585
|
+
# Corresponds to the JSON property `parent`
|
3586
|
+
# @return [String]
|
3587
|
+
attr_accessor :parent
|
3588
|
+
|
3589
|
+
def initialize(**args)
|
3590
|
+
update!(**args)
|
3591
|
+
end
|
3592
|
+
|
3593
|
+
# Update properties of this object
|
3594
|
+
def update!(**args)
|
3595
|
+
@notebook_execution_job = args[:notebook_execution_job] if args.key?(:notebook_execution_job)
|
3596
|
+
@notebook_execution_job_id = args[:notebook_execution_job_id] if args.key?(:notebook_execution_job_id)
|
3597
|
+
@parent = args[:parent] if args.key?(:parent)
|
3598
|
+
end
|
3599
|
+
end
|
3600
|
+
|
3569
3601
|
# Metadata information for NotebookService.CreateNotebookRuntimeTemplate.
|
3570
3602
|
class GoogleCloudAiplatformV1CreateNotebookRuntimeTemplateOperationMetadata
|
3571
3603
|
include Google::Apis::Core::Hashable
|
@@ -8154,16 +8186,35 @@ module Google
|
|
8154
8186
|
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1BigQuerySource]
|
8155
8187
|
attr_accessor :big_query_source
|
8156
8188
|
|
8189
|
+
# Optional. If set, all feature values will be fetched from a single row per
|
8190
|
+
# unique entityId including nulls. If not set, will collapse all rows for each
|
8191
|
+
# unique entityId into a singe row with any non-null values if present, if no
|
8192
|
+
# non-null values are present will sync null. ex: If source has schema (
|
8193
|
+
# entity_id, feature_timestamp, f0, f1) and values (e1, 2020-01-01T10:00:00.123Z,
|
8194
|
+
# 10, 15) (e1, 2020-02-01T10:00:00.123Z, 20, null) If dense is set, (e1, 20,
|
8195
|
+
# null) is synced to online stores. If dense is not set, (e1, 20, 15) is synced
|
8196
|
+
# to online stores.
|
8197
|
+
# Corresponds to the JSON property `dense`
|
8198
|
+
# @return [Boolean]
|
8199
|
+
attr_accessor :dense
|
8200
|
+
alias_method :dense?, :dense
|
8201
|
+
|
8157
8202
|
# Optional. Columns to construct entity_id / row keys. If not provided defaults
|
8158
8203
|
# to `entity_id`.
|
8159
8204
|
# Corresponds to the JSON property `entityIdColumns`
|
8160
8205
|
# @return [Array<String>]
|
8161
8206
|
attr_accessor :entity_id_columns
|
8162
8207
|
|
8208
|
+
# Optional. Set if the data source is not a time-series.
|
8209
|
+
# Corresponds to the JSON property `staticDataSource`
|
8210
|
+
# @return [Boolean]
|
8211
|
+
attr_accessor :static_data_source
|
8212
|
+
alias_method :static_data_source?, :static_data_source
|
8213
|
+
|
8163
8214
|
# Optional. If the source is a time-series source, this can be set to control
|
8164
|
-
# how downstream sources (ex:
|
8165
|
-
#
|
8166
|
-
#
|
8215
|
+
# how downstream sources (ex: FeatureView ) will treat time-series sources. If
|
8216
|
+
# not set, will treat the source as a time-series source with `feature_timestamp`
|
8217
|
+
# as timestamp column and no scan boundary.
|
8167
8218
|
# Corresponds to the JSON property `timeSeries`
|
8168
8219
|
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1FeatureGroupBigQueryTimeSeries]
|
8169
8220
|
attr_accessor :time_series
|
@@ -8175,7 +8226,9 @@ module Google
|
|
8175
8226
|
# Update properties of this object
|
8176
8227
|
def update!(**args)
|
8177
8228
|
@big_query_source = args[:big_query_source] if args.key?(:big_query_source)
|
8229
|
+
@dense = args[:dense] if args.key?(:dense)
|
8178
8230
|
@entity_id_columns = args[:entity_id_columns] if args.key?(:entity_id_columns)
|
8231
|
+
@static_data_source = args[:static_data_source] if args.key?(:static_data_source)
|
8179
8232
|
@time_series = args[:time_series] if args.key?(:time_series)
|
8180
8233
|
end
|
8181
8234
|
end
|
@@ -8185,8 +8238,9 @@ module Google
|
|
8185
8238
|
include Google::Apis::Core::Hashable
|
8186
8239
|
|
8187
8240
|
# Optional. Column hosting timestamp values for a time-series source. Will be
|
8188
|
-
# used to determine the latest
|
8189
|
-
# provided,
|
8241
|
+
# used to determine the latest `feature_values` for each entity. Optional. If
|
8242
|
+
# not provided, column named `feature_timestamp` of type `TIMESTAMP` will be
|
8243
|
+
# used.
|
8190
8244
|
# Corresponds to the JSON property `timestampColumn`
|
8191
8245
|
# @return [String]
|
8192
8246
|
attr_accessor :timestamp_column
|
@@ -8820,6 +8874,11 @@ module Google
|
|
8820
8874
|
# @return [String]
|
8821
8875
|
attr_accessor :update_time
|
8822
8876
|
|
8877
|
+
# A Vertex Rag source for features that need to be synced to Online Store.
|
8878
|
+
# Corresponds to the JSON property `vertexRagSource`
|
8879
|
+
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1FeatureViewVertexRagSource]
|
8880
|
+
attr_accessor :vertex_rag_source
|
8881
|
+
|
8823
8882
|
def initialize(**args)
|
8824
8883
|
update!(**args)
|
8825
8884
|
end
|
@@ -8837,6 +8896,7 @@ module Google
|
|
8837
8896
|
@satisfies_pzs = args[:satisfies_pzs] if args.key?(:satisfies_pzs)
|
8838
8897
|
@sync_config = args[:sync_config] if args.key?(:sync_config)
|
8839
8898
|
@update_time = args[:update_time] if args.key?(:update_time)
|
8899
|
+
@vertex_rag_source = args[:vertex_rag_source] if args.key?(:vertex_rag_source)
|
8840
8900
|
end
|
8841
8901
|
end
|
8842
8902
|
|
@@ -9160,6 +9220,12 @@ module Google
|
|
9160
9220
|
# @return [Fixnum]
|
9161
9221
|
attr_accessor :row_synced
|
9162
9222
|
|
9223
|
+
# Lower bound of the system time watermark for the sync job. This is only set
|
9224
|
+
# for continuously syncing feature views.
|
9225
|
+
# Corresponds to the JSON property `systemWatermarkTime`
|
9226
|
+
# @return [String]
|
9227
|
+
attr_accessor :system_watermark_time
|
9228
|
+
|
9163
9229
|
# Output only. BigQuery slot milliseconds consumed for the sync job.
|
9164
9230
|
# Corresponds to the JSON property `totalSlot`
|
9165
9231
|
# @return [Fixnum]
|
@@ -9172,10 +9238,41 @@ module Google
|
|
9172
9238
|
# Update properties of this object
|
9173
9239
|
def update!(**args)
|
9174
9240
|
@row_synced = args[:row_synced] if args.key?(:row_synced)
|
9241
|
+
@system_watermark_time = args[:system_watermark_time] if args.key?(:system_watermark_time)
|
9175
9242
|
@total_slot = args[:total_slot] if args.key?(:total_slot)
|
9176
9243
|
end
|
9177
9244
|
end
|
9178
9245
|
|
9246
|
+
# A Vertex Rag source for features that need to be synced to Online Store.
|
9247
|
+
class GoogleCloudAiplatformV1FeatureViewVertexRagSource
|
9248
|
+
include Google::Apis::Core::Hashable
|
9249
|
+
|
9250
|
+
# Optional. The RAG corpus id corresponding to this FeatureView.
|
9251
|
+
# Corresponds to the JSON property `ragCorpusId`
|
9252
|
+
# @return [Fixnum]
|
9253
|
+
attr_accessor :rag_corpus_id
|
9254
|
+
|
9255
|
+
# Required. The BigQuery view/table URI that will be materialized on each manual
|
9256
|
+
# sync trigger. The table/view is expected to have the following columns at
|
9257
|
+
# least: Field name Type Mode corpus_id STRING REQUIRED/NULLABLE file_id STRING
|
9258
|
+
# REQUIRED/NULLABLE chunk_id STRING REQUIRED/NULLABLE chunk_data_type STRING
|
9259
|
+
# REQUIRED/NULLABLE chunk_data STRING REQUIRED/NULLABLE embeddings FLOAT
|
9260
|
+
# REPEATED file_original_uri STRING REQUIRED/NULLABLE
|
9261
|
+
# Corresponds to the JSON property `uri`
|
9262
|
+
# @return [String]
|
9263
|
+
attr_accessor :uri
|
9264
|
+
|
9265
|
+
def initialize(**args)
|
9266
|
+
update!(**args)
|
9267
|
+
end
|
9268
|
+
|
9269
|
+
# Update properties of this object
|
9270
|
+
def update!(**args)
|
9271
|
+
@rag_corpus_id = args[:rag_corpus_id] if args.key?(:rag_corpus_id)
|
9272
|
+
@uri = args[:uri] if args.key?(:uri)
|
9273
|
+
end
|
9274
|
+
end
|
9275
|
+
|
9179
9276
|
# Vertex AI Feature Store provides a centralized repository for organizing,
|
9180
9277
|
# storing, and serving ML features. The Featurestore is a top-level container
|
9181
9278
|
# for your features and their values.
|
@@ -10164,11 +10261,18 @@ module Google
|
|
10164
10261
|
|
10165
10262
|
# Schema is used to define the format of input/output data. Represents a select
|
10166
10263
|
# subset of an [OpenAPI 3.0 schema object](https://spec.openapis.org/oas/v3.0.3#
|
10167
|
-
# schema). More fields may be added in the future as needed.
|
10264
|
+
# schema-object). More fields may be added in the future as needed.
|
10168
10265
|
# Corresponds to the JSON property `parameters`
|
10169
10266
|
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1Schema]
|
10170
10267
|
attr_accessor :parameters
|
10171
10268
|
|
10269
|
+
# Schema is used to define the format of input/output data. Represents a select
|
10270
|
+
# subset of an [OpenAPI 3.0 schema object](https://spec.openapis.org/oas/v3.0.3#
|
10271
|
+
# schema-object). More fields may be added in the future as needed.
|
10272
|
+
# Corresponds to the JSON property `response`
|
10273
|
+
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1Schema]
|
10274
|
+
attr_accessor :response
|
10275
|
+
|
10172
10276
|
def initialize(**args)
|
10173
10277
|
update!(**args)
|
10174
10278
|
end
|
@@ -10178,6 +10282,7 @@ module Google
|
|
10178
10282
|
@description = args[:description] if args.key?(:description)
|
10179
10283
|
@name = args[:name] if args.key?(:name)
|
10180
10284
|
@parameters = args[:parameters] if args.key?(:parameters)
|
10285
|
+
@response = args[:response] if args.key?(:response)
|
10181
10286
|
end
|
10182
10287
|
end
|
10183
10288
|
|
@@ -10194,7 +10299,10 @@ module Google
|
|
10194
10299
|
# @return [String]
|
10195
10300
|
attr_accessor :name
|
10196
10301
|
|
10197
|
-
# Required. The function response in JSON object format.
|
10302
|
+
# Required. The function response in JSON object format. Use "output" key to
|
10303
|
+
# specify function output and "error" key to specify error details (if any). If "
|
10304
|
+
# output" and "error" keys are not specified, then whole "response" is treated
|
10305
|
+
# as function output.
|
10198
10306
|
# Corresponds to the JSON property `response`
|
10199
10307
|
# @return [Hash<String,Object>]
|
10200
10308
|
attr_accessor :response
|
@@ -10388,7 +10496,7 @@ module Google
|
|
10388
10496
|
# @return [Fixnum]
|
10389
10497
|
attr_accessor :prompt_token_count
|
10390
10498
|
|
10391
|
-
#
|
10499
|
+
# Total token count for prompt and response candidates.
|
10392
10500
|
# Corresponds to the JSON property `totalTokenCount`
|
10393
10501
|
# @return [Fixnum]
|
10394
10502
|
attr_accessor :total_token_count
|
@@ -10440,12 +10548,12 @@ module Google
|
|
10440
10548
|
|
10441
10549
|
# Schema is used to define the format of input/output data. Represents a select
|
10442
10550
|
# subset of an [OpenAPI 3.0 schema object](https://spec.openapis.org/oas/v3.0.3#
|
10443
|
-
# schema). More fields may be added in the future as needed.
|
10551
|
+
# schema-object). More fields may be added in the future as needed.
|
10444
10552
|
# Corresponds to the JSON property `responseSchema`
|
10445
10553
|
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1Schema]
|
10446
10554
|
attr_accessor :response_schema
|
10447
10555
|
|
10448
|
-
#
|
10556
|
+
# The configuration for routing the request to a specific model.
|
10449
10557
|
# Corresponds to the JSON property `routingConfig`
|
10450
10558
|
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1GenerationConfigRoutingConfig]
|
10451
10559
|
attr_accessor :routing_config
|
@@ -10496,7 +10604,7 @@ module Google
|
|
10496
10604
|
end
|
10497
10605
|
end
|
10498
10606
|
|
10499
|
-
#
|
10607
|
+
# The configuration for routing the request to a specific model.
|
10500
10608
|
class GoogleCloudAiplatformV1GenerationConfigRoutingConfig
|
10501
10609
|
include Google::Apis::Core::Hashable
|
10502
10610
|
|
@@ -10546,8 +10654,8 @@ module Google
|
|
10546
10654
|
class GoogleCloudAiplatformV1GenerationConfigRoutingConfigManualRoutingMode
|
10547
10655
|
include Google::Apis::Core::Hashable
|
10548
10656
|
|
10549
|
-
# The model name to use. Only the public LLM models are accepted. e.g. gemini-1.
|
10550
|
-
# 5-pro-001.
|
10657
|
+
# The model name to use. Only the public LLM models are accepted. e.g. 'gemini-1.
|
10658
|
+
# 5-pro-001'.
|
10551
10659
|
# Corresponds to the JSON property `modelName`
|
10552
10660
|
# @return [String]
|
10553
10661
|
attr_accessor :model_name
|
@@ -16500,11 +16608,11 @@ module Google
|
|
16500
16608
|
end
|
16501
16609
|
|
16502
16610
|
# Numeric filter is used to search a subset of the entities by using boolean
|
16503
|
-
# rules on numeric columns. For example: Database Point 0: `name:
|
16504
|
-
# 42` `name:
|
16505
|
-
# name:
|
16506
|
-
#
|
16507
|
-
# Matches Point 1, 2 `name:
|
16611
|
+
# rules on numeric columns. For example: Database Point 0: `name: "a" value_int:
|
16612
|
+
# 42` `name: "b" value_float: 1.0` Database Point 1: `name: "a" value_int: 10` `
|
16613
|
+
# name: "b" value_float: 2.0` Database Point 2: `name: "a" value_int: -1` `name:
|
16614
|
+
# "b" value_float: 3.0` Query: `name: "a" value_int: 12 operator: LESS` //
|
16615
|
+
# Matches Point 1, 2 `name: "b" value_float: 2.0 operator: EQUAL` // Matches
|
16508
16616
|
# Point 1
|
16509
16617
|
class GoogleCloudAiplatformV1NearestNeighborQueryNumericFilter
|
16510
16618
|
include Google::Apis::Core::Hashable
|
@@ -18014,6 +18122,18 @@ module Google
|
|
18014
18122
|
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1ResourceRuntimeSpec]
|
18015
18123
|
attr_accessor :resource_runtime_spec
|
18016
18124
|
|
18125
|
+
# Output only. Reserved for future use.
|
18126
|
+
# Corresponds to the JSON property `satisfiesPzi`
|
18127
|
+
# @return [Boolean]
|
18128
|
+
attr_accessor :satisfies_pzi
|
18129
|
+
alias_method :satisfies_pzi?, :satisfies_pzi
|
18130
|
+
|
18131
|
+
# Output only. Reserved for future use.
|
18132
|
+
# Corresponds to the JSON property `satisfiesPzs`
|
18133
|
+
# @return [Boolean]
|
18134
|
+
attr_accessor :satisfies_pzs
|
18135
|
+
alias_method :satisfies_pzs?, :satisfies_pzs
|
18136
|
+
|
18017
18137
|
# Output only. Time when the PersistentResource for the first time entered the `
|
18018
18138
|
# RUNNING` state.
|
18019
18139
|
# Corresponds to the JSON property `startTime`
|
@@ -18047,6 +18167,8 @@ module Google
|
|
18047
18167
|
@resource_pools = args[:resource_pools] if args.key?(:resource_pools)
|
18048
18168
|
@resource_runtime = args[:resource_runtime] if args.key?(:resource_runtime)
|
18049
18169
|
@resource_runtime_spec = args[:resource_runtime_spec] if args.key?(:resource_runtime_spec)
|
18170
|
+
@satisfies_pzi = args[:satisfies_pzi] if args.key?(:satisfies_pzi)
|
18171
|
+
@satisfies_pzs = args[:satisfies_pzs] if args.key?(:satisfies_pzs)
|
18050
18172
|
@start_time = args[:start_time] if args.key?(:start_time)
|
18051
18173
|
@state = args[:state] if args.key?(:state)
|
18052
18174
|
@update_time = args[:update_time] if args.key?(:update_time)
|
@@ -19208,6 +19330,11 @@ module Google
|
|
19208
19330
|
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1PublisherModelCallToActionDeployGke]
|
19209
19331
|
attr_accessor :deploy_gke
|
19210
19332
|
|
19333
|
+
# Multiple setups to deploy the PublisherModel.
|
19334
|
+
# Corresponds to the JSON property `multiDeployVertex`
|
19335
|
+
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1PublisherModelCallToActionDeployVertex]
|
19336
|
+
attr_accessor :multi_deploy_vertex
|
19337
|
+
|
19211
19338
|
# The regional resource name or the URI. Key is region, e.g., us-central1,
|
19212
19339
|
# europe-west2, global, etc..
|
19213
19340
|
# Corresponds to the JSON property `openEvaluationPipeline`
|
@@ -19274,6 +19401,7 @@ module Google
|
|
19274
19401
|
@create_application = args[:create_application] if args.key?(:create_application)
|
19275
19402
|
@deploy = args[:deploy] if args.key?(:deploy)
|
19276
19403
|
@deploy_gke = args[:deploy_gke] if args.key?(:deploy_gke)
|
19404
|
+
@multi_deploy_vertex = args[:multi_deploy_vertex] if args.key?(:multi_deploy_vertex)
|
19277
19405
|
@open_evaluation_pipeline = args[:open_evaluation_pipeline] if args.key?(:open_evaluation_pipeline)
|
19278
19406
|
@open_fine_tuning_pipeline = args[:open_fine_tuning_pipeline] if args.key?(:open_fine_tuning_pipeline)
|
19279
19407
|
@open_fine_tuning_pipelines = args[:open_fine_tuning_pipelines] if args.key?(:open_fine_tuning_pipelines)
|
@@ -19421,6 +19549,25 @@ module Google
|
|
19421
19549
|
end
|
19422
19550
|
end
|
19423
19551
|
|
19552
|
+
# Multiple setups to deploy the PublisherModel.
|
19553
|
+
class GoogleCloudAiplatformV1PublisherModelCallToActionDeployVertex
|
19554
|
+
include Google::Apis::Core::Hashable
|
19555
|
+
|
19556
|
+
# Optional. One click deployment configurations.
|
19557
|
+
# Corresponds to the JSON property `multiDeployVertex`
|
19558
|
+
# @return [Array<Google::Apis::AiplatformV1::GoogleCloudAiplatformV1PublisherModelCallToActionDeploy>]
|
19559
|
+
attr_accessor :multi_deploy_vertex
|
19560
|
+
|
19561
|
+
def initialize(**args)
|
19562
|
+
update!(**args)
|
19563
|
+
end
|
19564
|
+
|
19565
|
+
# Update properties of this object
|
19566
|
+
def update!(**args)
|
19567
|
+
@multi_deploy_vertex = args[:multi_deploy_vertex] if args.key?(:multi_deploy_vertex)
|
19568
|
+
end
|
19569
|
+
end
|
19570
|
+
|
19424
19571
|
# Open fine tuning pipelines.
|
19425
19572
|
class GoogleCloudAiplatformV1PublisherModelCallToActionOpenFineTuningPipelines
|
19426
19573
|
include Google::Apis::Core::Hashable
|
@@ -21200,11 +21347,16 @@ module Google
|
|
21200
21347
|
alias_method :disable_attribution?, :disable_attribution
|
21201
21348
|
|
21202
21349
|
# Retrieve from Vertex AI Search datastore for grounding. See https://cloud.
|
21203
|
-
# google.com/
|
21350
|
+
# google.com/products/agent-builder
|
21204
21351
|
# Corresponds to the JSON property `vertexAiSearch`
|
21205
21352
|
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1VertexAiSearch]
|
21206
21353
|
attr_accessor :vertex_ai_search
|
21207
21354
|
|
21355
|
+
# Retrieve from Vertex RAG Store for grounding.
|
21356
|
+
# Corresponds to the JSON property `vertexRagStore`
|
21357
|
+
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1VertexRagStore]
|
21358
|
+
attr_accessor :vertex_rag_store
|
21359
|
+
|
21208
21360
|
def initialize(**args)
|
21209
21361
|
update!(**args)
|
21210
21362
|
end
|
@@ -21213,6 +21365,7 @@ module Google
|
|
21213
21365
|
def update!(**args)
|
21214
21366
|
@disable_attribution = args[:disable_attribution] if args.key?(:disable_attribution)
|
21215
21367
|
@vertex_ai_search = args[:vertex_ai_search] if args.key?(:vertex_ai_search)
|
21368
|
+
@vertex_rag_store = args[:vertex_rag_store] if args.key?(:vertex_rag_store)
|
21216
21369
|
end
|
21217
21370
|
end
|
21218
21371
|
|
@@ -21732,6 +21885,11 @@ module Google
|
|
21732
21885
|
attr_accessor :catch_up
|
21733
21886
|
alias_method :catch_up?, :catch_up
|
21734
21887
|
|
21888
|
+
# Request message for [NotebookService.CreateNotebookExecutionJob]
|
21889
|
+
# Corresponds to the JSON property `createNotebookExecutionJobRequest`
|
21890
|
+
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1CreateNotebookExecutionJobRequest]
|
21891
|
+
attr_accessor :create_notebook_execution_job_request
|
21892
|
+
|
21735
21893
|
# Request message for PipelineService.CreatePipelineJob.
|
21736
21894
|
# Corresponds to the JSON property `createPipelineJobRequest`
|
21737
21895
|
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1CreatePipelineJobRequest]
|
@@ -21839,6 +21997,7 @@ module Google
|
|
21839
21997
|
def update!(**args)
|
21840
21998
|
@allow_queueing = args[:allow_queueing] if args.key?(:allow_queueing)
|
21841
21999
|
@catch_up = args[:catch_up] if args.key?(:catch_up)
|
22000
|
+
@create_notebook_execution_job_request = args[:create_notebook_execution_job_request] if args.key?(:create_notebook_execution_job_request)
|
21842
22001
|
@create_pipeline_job_request = args[:create_pipeline_job_request] if args.key?(:create_pipeline_job_request)
|
21843
22002
|
@create_time = args[:create_time] if args.key?(:create_time)
|
21844
22003
|
@cron = args[:cron] if args.key?(:cron)
|
@@ -21895,6 +22054,14 @@ module Google
|
|
21895
22054
|
attr_accessor :disable_retries
|
21896
22055
|
alias_method :disable_retries?, :disable_retries
|
21897
22056
|
|
22057
|
+
# Optional. This is the maximum duration that a job will wait for the requested
|
22058
|
+
# resources to be provisioned if the scheduling strategy is set to [Strategy.
|
22059
|
+
# DWS_FLEX_START]. If set to 0, the job will wait indefinitely. The default is
|
22060
|
+
# 24 hours.
|
22061
|
+
# Corresponds to the JSON property `maxWaitDuration`
|
22062
|
+
# @return [String]
|
22063
|
+
attr_accessor :max_wait_duration
|
22064
|
+
|
21898
22065
|
# Restarts the entire CustomJob if a worker gets restarted. This feature can be
|
21899
22066
|
# used by distributed training jobs that are not resilient to workers leaving
|
21900
22067
|
# and joining a job.
|
@@ -21920,6 +22087,7 @@ module Google
|
|
21920
22087
|
# Update properties of this object
|
21921
22088
|
def update!(**args)
|
21922
22089
|
@disable_retries = args[:disable_retries] if args.key?(:disable_retries)
|
22090
|
+
@max_wait_duration = args[:max_wait_duration] if args.key?(:max_wait_duration)
|
21923
22091
|
@restart_job_on_worker_restart = args[:restart_job_on_worker_restart] if args.key?(:restart_job_on_worker_restart)
|
21924
22092
|
@strategy = args[:strategy] if args.key?(:strategy)
|
21925
22093
|
@timeout = args[:timeout] if args.key?(:timeout)
|
@@ -21928,7 +22096,7 @@ module Google
|
|
21928
22096
|
|
21929
22097
|
# Schema is used to define the format of input/output data. Represents a select
|
21930
22098
|
# subset of an [OpenAPI 3.0 schema object](https://spec.openapis.org/oas/v3.0.3#
|
21931
|
-
# schema). More fields may be added in the future as needed.
|
22099
|
+
# schema-object). More fields may be added in the future as needed.
|
21932
22100
|
class GoogleCloudAiplatformV1Schema
|
21933
22101
|
include Google::Apis::Core::Hashable
|
21934
22102
|
|
@@ -21964,7 +22132,7 @@ module Google
|
|
21964
22132
|
|
21965
22133
|
# Schema is used to define the format of input/output data. Represents a select
|
21966
22134
|
# subset of an [OpenAPI 3.0 schema object](https://spec.openapis.org/oas/v3.0.3#
|
21967
|
-
# schema). More fields may be added in the future as needed.
|
22135
|
+
# schema-object). More fields may be added in the future as needed.
|
21968
22136
|
# Corresponds to the JSON property `items`
|
21969
22137
|
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1Schema]
|
21970
22138
|
attr_accessor :items
|
@@ -30239,11 +30407,21 @@ module Google
|
|
30239
30407
|
# @return [Fixnum]
|
30240
30408
|
attr_accessor :total_billable_token_count
|
30241
30409
|
|
30410
|
+
# The number of examples in the dataset that have been truncated by any amount.
|
30411
|
+
# Corresponds to the JSON property `totalTruncatedExampleCount`
|
30412
|
+
# @return [Fixnum]
|
30413
|
+
attr_accessor :total_truncated_example_count
|
30414
|
+
|
30242
30415
|
# Output only. Number of tuning characters in the tuning dataset.
|
30243
30416
|
# Corresponds to the JSON property `totalTuningCharacterCount`
|
30244
30417
|
# @return [Fixnum]
|
30245
30418
|
attr_accessor :total_tuning_character_count
|
30246
30419
|
|
30420
|
+
# A partial sample of the indices (starting from 1) of the truncated examples.
|
30421
|
+
# Corresponds to the JSON property `truncatedExampleIndices`
|
30422
|
+
# @return [Array<Fixnum>]
|
30423
|
+
attr_accessor :truncated_example_indices
|
30424
|
+
|
30247
30425
|
# Output only. Number of examples in the tuning dataset.
|
30248
30426
|
# Corresponds to the JSON property `tuningDatasetExampleCount`
|
30249
30427
|
# @return [Fixnum]
|
@@ -30282,7 +30460,9 @@ module Google
|
|
30282
30460
|
def update!(**args)
|
30283
30461
|
@total_billable_character_count = args[:total_billable_character_count] if args.key?(:total_billable_character_count)
|
30284
30462
|
@total_billable_token_count = args[:total_billable_token_count] if args.key?(:total_billable_token_count)
|
30463
|
+
@total_truncated_example_count = args[:total_truncated_example_count] if args.key?(:total_truncated_example_count)
|
30285
30464
|
@total_tuning_character_count = args[:total_tuning_character_count] if args.key?(:total_tuning_character_count)
|
30465
|
+
@truncated_example_indices = args[:truncated_example_indices] if args.key?(:truncated_example_indices)
|
30286
30466
|
@tuning_dataset_example_count = args[:tuning_dataset_example_count] if args.key?(:tuning_dataset_example_count)
|
30287
30467
|
@tuning_step_count = args[:tuning_step_count] if args.key?(:tuning_step_count)
|
30288
30468
|
@user_dataset_examples = args[:user_dataset_examples] if args.key?(:user_dataset_examples)
|
@@ -30437,7 +30617,7 @@ module Google
|
|
30437
30617
|
end
|
30438
30618
|
end
|
30439
30619
|
|
30440
|
-
#
|
30620
|
+
# Response message for FeatureOnlineStoreAdminService.SyncFeatureView.
|
30441
30621
|
class GoogleCloudAiplatformV1SyncFeatureViewResponse
|
30442
30622
|
include Google::Apis::Core::Hashable
|
30443
30623
|
|
@@ -32845,11 +33025,11 @@ module Google
|
|
32845
33025
|
end
|
32846
33026
|
|
32847
33027
|
# Retrieve from Vertex AI Search datastore for grounding. See https://cloud.
|
32848
|
-
# google.com/
|
33028
|
+
# google.com/products/agent-builder
|
32849
33029
|
class GoogleCloudAiplatformV1VertexAiSearch
|
32850
33030
|
include Google::Apis::Core::Hashable
|
32851
33031
|
|
32852
|
-
# Required. Fully-qualified Vertex AI Search
|
33032
|
+
# Required. Fully-qualified Vertex AI Search data store resource ID. Format: `
|
32853
33033
|
# projects/`project`/locations/`location`/collections/`collection`/dataStores/`
|
32854
33034
|
# dataStore``
|
32855
33035
|
# Corresponds to the JSON property `datastore`
|
@@ -32866,6 +33046,72 @@ module Google
|
|
32866
33046
|
end
|
32867
33047
|
end
|
32868
33048
|
|
33049
|
+
# Retrieve from Vertex RAG Store for grounding.
|
33050
|
+
class GoogleCloudAiplatformV1VertexRagStore
|
33051
|
+
include Google::Apis::Core::Hashable
|
33052
|
+
|
33053
|
+
# Optional. Deprecated. Please use rag_resources instead.
|
33054
|
+
# Corresponds to the JSON property `ragCorpora`
|
33055
|
+
# @return [Array<String>]
|
33056
|
+
attr_accessor :rag_corpora
|
33057
|
+
|
33058
|
+
# Optional. The representation of the rag source. It can be used to specify
|
33059
|
+
# corpus only or ragfiles. Currently only support one corpus or multiple files
|
33060
|
+
# from one corpus. In the future we may open up multiple corpora support.
|
33061
|
+
# Corresponds to the JSON property `ragResources`
|
33062
|
+
# @return [Array<Google::Apis::AiplatformV1::GoogleCloudAiplatformV1VertexRagStoreRagResource>]
|
33063
|
+
attr_accessor :rag_resources
|
33064
|
+
|
33065
|
+
# Optional. Number of top k results to return from the selected corpora.
|
33066
|
+
# Corresponds to the JSON property `similarityTopK`
|
33067
|
+
# @return [Fixnum]
|
33068
|
+
attr_accessor :similarity_top_k
|
33069
|
+
|
33070
|
+
# Optional. Only return results with vector distance smaller than the threshold.
|
33071
|
+
# Corresponds to the JSON property `vectorDistanceThreshold`
|
33072
|
+
# @return [Float]
|
33073
|
+
attr_accessor :vector_distance_threshold
|
33074
|
+
|
33075
|
+
def initialize(**args)
|
33076
|
+
update!(**args)
|
33077
|
+
end
|
33078
|
+
|
33079
|
+
# Update properties of this object
|
33080
|
+
def update!(**args)
|
33081
|
+
@rag_corpora = args[:rag_corpora] if args.key?(:rag_corpora)
|
33082
|
+
@rag_resources = args[:rag_resources] if args.key?(:rag_resources)
|
33083
|
+
@similarity_top_k = args[:similarity_top_k] if args.key?(:similarity_top_k)
|
33084
|
+
@vector_distance_threshold = args[:vector_distance_threshold] if args.key?(:vector_distance_threshold)
|
33085
|
+
end
|
33086
|
+
end
|
33087
|
+
|
33088
|
+
# The definition of the Rag resource.
|
33089
|
+
class GoogleCloudAiplatformV1VertexRagStoreRagResource
|
33090
|
+
include Google::Apis::Core::Hashable
|
33091
|
+
|
33092
|
+
# Optional. RagCorpora resource name. Format: `projects/`project`/locations/`
|
33093
|
+
# location`/ragCorpora/`rag_corpus``
|
33094
|
+
# Corresponds to the JSON property `ragCorpus`
|
33095
|
+
# @return [String]
|
33096
|
+
attr_accessor :rag_corpus
|
33097
|
+
|
33098
|
+
# Optional. rag_file_id. The files should be in the same rag_corpus set in
|
33099
|
+
# rag_corpus field.
|
33100
|
+
# Corresponds to the JSON property `ragFileIds`
|
33101
|
+
# @return [Array<String>]
|
33102
|
+
attr_accessor :rag_file_ids
|
33103
|
+
|
33104
|
+
def initialize(**args)
|
33105
|
+
update!(**args)
|
33106
|
+
end
|
33107
|
+
|
33108
|
+
# Update properties of this object
|
33109
|
+
def update!(**args)
|
33110
|
+
@rag_corpus = args[:rag_corpus] if args.key?(:rag_corpus)
|
33111
|
+
@rag_file_ids = args[:rag_file_ids] if args.key?(:rag_file_ids)
|
33112
|
+
end
|
33113
|
+
end
|
33114
|
+
|
32869
33115
|
# Metadata describes the input video content.
|
32870
33116
|
class GoogleCloudAiplatformV1VideoMetadata
|
32871
33117
|
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.34.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.15.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20240830"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|