google-apis-aiplatform_v1 0.59.0 → 0.61.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: 7231fcfdfab08158567caf1632441866813361c28f19d121779542ee5a2a49b5
|
4
|
+
data.tar.gz: edb15aa7ea41c5f57dbb6207ac70a05445c6a00dddfcfcf08772667e8d64ca44
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bb60f8d1e453514719249c7f91d7c0810ae0b6c02a5c35192df843bbf38e6731c2124d15e7dd8d4857306666a6cf5a0ad5ea4913cc718d4241e24adcde03b02d
|
7
|
+
data.tar.gz: f1c084f586268325deb80d9d5ab5d7fd77cf41fff8f7bf3a90723caf47b0ed7563971a79e7fc57dc2edf5a1999bc92c6196e7ba1bba48dc6b1aa12eb75b8c532
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-aiplatform_v1
|
2
2
|
|
3
|
+
### v0.61.0 (2025-08-03)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250728
|
6
|
+
|
7
|
+
### v0.60.0 (2025-07-27)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20250715
|
10
|
+
|
3
11
|
### v0.59.0 (2025-07-06)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20250701
|
@@ -4389,6 +4389,12 @@ module Google
|
|
4389
4389
|
class GoogleCloudAiplatformV1CreateEndpointOperationMetadata
|
4390
4390
|
include Google::Apis::Core::Hashable
|
4391
4391
|
|
4392
|
+
# Output only. The deployment stage of the model. Only populated if this
|
4393
|
+
# CreateEndpoint request deploys a model at the same time.
|
4394
|
+
# Corresponds to the JSON property `deploymentStage`
|
4395
|
+
# @return [String]
|
4396
|
+
attr_accessor :deployment_stage
|
4397
|
+
|
4392
4398
|
# Generic Metadata shared by all operations.
|
4393
4399
|
# Corresponds to the JSON property `genericMetadata`
|
4394
4400
|
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1GenericOperationMetadata]
|
@@ -4400,6 +4406,7 @@ module Google
|
|
4400
4406
|
|
4401
4407
|
# Update properties of this object
|
4402
4408
|
def update!(**args)
|
4409
|
+
@deployment_stage = args[:deployment_stage] if args.key?(:deployment_stage)
|
4403
4410
|
@generic_metadata = args[:generic_metadata] if args.key?(:generic_metadata)
|
4404
4411
|
end
|
4405
4412
|
end
|
@@ -6100,6 +6107,11 @@ module Google
|
|
6100
6107
|
class GoogleCloudAiplatformV1DeployModelOperationMetadata
|
6101
6108
|
include Google::Apis::Core::Hashable
|
6102
6109
|
|
6110
|
+
# Output only. The deployment stage of the model.
|
6111
|
+
# Corresponds to the JSON property `deploymentStage`
|
6112
|
+
# @return [String]
|
6113
|
+
attr_accessor :deployment_stage
|
6114
|
+
|
6103
6115
|
# Generic Metadata shared by all operations.
|
6104
6116
|
# Corresponds to the JSON property `genericMetadata`
|
6105
6117
|
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1GenericOperationMetadata]
|
@@ -6111,6 +6123,7 @@ module Google
|
|
6111
6123
|
|
6112
6124
|
# Update properties of this object
|
6113
6125
|
def update!(**args)
|
6126
|
+
@deployment_stage = args[:deployment_stage] if args.key?(:deployment_stage)
|
6114
6127
|
@generic_metadata = args[:generic_metadata] if args.key?(:generic_metadata)
|
6115
6128
|
end
|
6116
6129
|
end
|
@@ -6361,6 +6374,15 @@ module Google
|
|
6361
6374
|
# @return [String]
|
6362
6375
|
attr_accessor :model_display_name
|
6363
6376
|
|
6377
|
+
# Optional. The ID to use for the uploaded Model, which will become the final
|
6378
|
+
# component of the model resource name. When not provided, Vertex AI will
|
6379
|
+
# generate a value for this ID. When Model Registry model is provided, this
|
6380
|
+
# field will be ignored. This value may be up to 63 characters, and valid
|
6381
|
+
# characters are `[a-z0-9_-]`. The first character cannot be a number or hyphen.
|
6382
|
+
# Corresponds to the JSON property `modelUserId`
|
6383
|
+
# @return [String]
|
6384
|
+
attr_accessor :model_user_id
|
6385
|
+
|
6364
6386
|
def initialize(**args)
|
6365
6387
|
update!(**args)
|
6366
6388
|
end
|
@@ -6372,6 +6394,7 @@ module Google
|
|
6372
6394
|
@hugging_face_access_token = args[:hugging_face_access_token] if args.key?(:hugging_face_access_token)
|
6373
6395
|
@hugging_face_cache_enabled = args[:hugging_face_cache_enabled] if args.key?(:hugging_face_cache_enabled)
|
6374
6396
|
@model_display_name = args[:model_display_name] if args.key?(:model_display_name)
|
6397
|
+
@model_user_id = args[:model_user_id] if args.key?(:model_user_id)
|
6375
6398
|
end
|
6376
6399
|
end
|
6377
6400
|
|
@@ -6466,6 +6489,17 @@ module Google
|
|
6466
6489
|
attr_accessor :enable_access_logging
|
6467
6490
|
alias_method :enable_access_logging?, :enable_access_logging
|
6468
6491
|
|
6492
|
+
# Optional. If true, logs to Cloud Logging errors relating to datapoint upserts.
|
6493
|
+
# Under normal operation conditions, these log entries should be very rare.
|
6494
|
+
# However, if incompatible datapoint updates are being uploaded to an index, a
|
6495
|
+
# high volume of log entries may be generated in a short period of time. Note
|
6496
|
+
# that logs may incur a cost, especially if the deployed index receives a high
|
6497
|
+
# volume of datapoint upserts. Estimate your costs before enabling this option.
|
6498
|
+
# Corresponds to the JSON property `enableDatapointUpsertLogging`
|
6499
|
+
# @return [Boolean]
|
6500
|
+
attr_accessor :enable_datapoint_upsert_logging
|
6501
|
+
alias_method :enable_datapoint_upsert_logging?, :enable_datapoint_upsert_logging
|
6502
|
+
|
6469
6503
|
# Required. The user specified ID of the DeployedIndex. The ID can be up to 128
|
6470
6504
|
# characters long and must start with a letter and only contain letters, numbers,
|
6471
6505
|
# and underscores. The ID must be unique within the project it is created in.
|
@@ -6533,6 +6567,7 @@ module Google
|
|
6533
6567
|
@deployment_group = args[:deployment_group] if args.key?(:deployment_group)
|
6534
6568
|
@display_name = args[:display_name] if args.key?(:display_name)
|
6535
6569
|
@enable_access_logging = args[:enable_access_logging] if args.key?(:enable_access_logging)
|
6570
|
+
@enable_datapoint_upsert_logging = args[:enable_datapoint_upsert_logging] if args.key?(:enable_datapoint_upsert_logging)
|
6536
6571
|
@id = args[:id] if args.key?(:id)
|
6537
6572
|
@index = args[:index] if args.key?(:index)
|
6538
6573
|
@index_sync_time = args[:index_sync_time] if args.key?(:index_sync_time)
|
@@ -6693,6 +6728,12 @@ module Google
|
|
6693
6728
|
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1FasterDeploymentConfig]
|
6694
6729
|
attr_accessor :faster_deployment_config
|
6695
6730
|
|
6731
|
+
# GDC pretrained / Gemini model name. The model name is a plain model name, e.g.
|
6732
|
+
# gemini-1.5-flash-002.
|
6733
|
+
# Corresponds to the JSON property `gdcConnectedModel`
|
6734
|
+
# @return [String]
|
6735
|
+
attr_accessor :gdc_connected_model
|
6736
|
+
|
6696
6737
|
# Immutable. The ID of the DeployedModel. If not provided upon deployment,
|
6697
6738
|
# Vertex AI will generate a value for this ID. This value should be 1-10
|
6698
6739
|
# characters, and valid characters are `/[0-9]/`.
|
@@ -6771,6 +6812,7 @@ module Google
|
|
6771
6812
|
@enable_access_logging = args[:enable_access_logging] if args.key?(:enable_access_logging)
|
6772
6813
|
@explanation_spec = args[:explanation_spec] if args.key?(:explanation_spec)
|
6773
6814
|
@faster_deployment_config = args[:faster_deployment_config] if args.key?(:faster_deployment_config)
|
6815
|
+
@gdc_connected_model = args[:gdc_connected_model] if args.key?(:gdc_connected_model)
|
6774
6816
|
@id = args[:id] if args.key?(:id)
|
6775
6817
|
@model = args[:model] if args.key?(:model)
|
6776
6818
|
@model_version_id = args[:model_version_id] if args.key?(:model_version_id)
|
@@ -7266,6 +7308,11 @@ module Google
|
|
7266
7308
|
# @return [String]
|
7267
7309
|
attr_accessor :etag
|
7268
7310
|
|
7311
|
+
# Google Distributed Cloud (GDC) config.
|
7312
|
+
# Corresponds to the JSON property `gdcConfig`
|
7313
|
+
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1GdcConfig]
|
7314
|
+
attr_accessor :gdc_config
|
7315
|
+
|
7269
7316
|
# Configuration for GenAiAdvancedFeatures.
|
7270
7317
|
# Corresponds to the JSON property `genAiAdvancedFeaturesConfig`
|
7271
7318
|
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1GenAiAdvancedFeaturesConfig]
|
@@ -7357,6 +7404,7 @@ module Google
|
|
7357
7404
|
@enable_private_service_connect = args[:enable_private_service_connect] if args.key?(:enable_private_service_connect)
|
7358
7405
|
@encryption_spec = args[:encryption_spec] if args.key?(:encryption_spec)
|
7359
7406
|
@etag = args[:etag] if args.key?(:etag)
|
7407
|
+
@gdc_config = args[:gdc_config] if args.key?(:gdc_config)
|
7360
7408
|
@gen_ai_advanced_features_config = args[:gen_ai_advanced_features_config] if args.key?(:gen_ai_advanced_features_config)
|
7361
7409
|
@labels = args[:labels] if args.key?(:labels)
|
7362
7410
|
@model_deployment_monitoring_job = args[:model_deployment_monitoring_job] if args.key?(:model_deployment_monitoring_job)
|
@@ -10965,6 +11013,133 @@ module Google
|
|
10965
11013
|
end
|
10966
11014
|
end
|
10967
11015
|
|
11016
|
+
# Request message for FeatureOnlineStoreService.FeatureViewDirectWrite.
|
11017
|
+
class GoogleCloudAiplatformV1FeatureViewDirectWriteRequest
|
11018
|
+
include Google::Apis::Core::Hashable
|
11019
|
+
|
11020
|
+
# Required. The data keys and associated feature values.
|
11021
|
+
# Corresponds to the JSON property `dataKeyAndFeatureValues`
|
11022
|
+
# @return [Array<Google::Apis::AiplatformV1::GoogleCloudAiplatformV1FeatureViewDirectWriteRequestDataKeyAndFeatureValues>]
|
11023
|
+
attr_accessor :data_key_and_feature_values
|
11024
|
+
|
11025
|
+
def initialize(**args)
|
11026
|
+
update!(**args)
|
11027
|
+
end
|
11028
|
+
|
11029
|
+
# Update properties of this object
|
11030
|
+
def update!(**args)
|
11031
|
+
@data_key_and_feature_values = args[:data_key_and_feature_values] if args.key?(:data_key_and_feature_values)
|
11032
|
+
end
|
11033
|
+
end
|
11034
|
+
|
11035
|
+
# A data key and associated feature values to write to the feature view.
|
11036
|
+
class GoogleCloudAiplatformV1FeatureViewDirectWriteRequestDataKeyAndFeatureValues
|
11037
|
+
include Google::Apis::Core::Hashable
|
11038
|
+
|
11039
|
+
# Lookup key for a feature view.
|
11040
|
+
# Corresponds to the JSON property `dataKey`
|
11041
|
+
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1FeatureViewDataKey]
|
11042
|
+
attr_accessor :data_key
|
11043
|
+
|
11044
|
+
# List of features to write.
|
11045
|
+
# Corresponds to the JSON property `features`
|
11046
|
+
# @return [Array<Google::Apis::AiplatformV1::GoogleCloudAiplatformV1FeatureViewDirectWriteRequestDataKeyAndFeatureValuesFeature>]
|
11047
|
+
attr_accessor :features
|
11048
|
+
|
11049
|
+
def initialize(**args)
|
11050
|
+
update!(**args)
|
11051
|
+
end
|
11052
|
+
|
11053
|
+
# Update properties of this object
|
11054
|
+
def update!(**args)
|
11055
|
+
@data_key = args[:data_key] if args.key?(:data_key)
|
11056
|
+
@features = args[:features] if args.key?(:features)
|
11057
|
+
end
|
11058
|
+
end
|
11059
|
+
|
11060
|
+
# Feature name & value pair.
|
11061
|
+
class GoogleCloudAiplatformV1FeatureViewDirectWriteRequestDataKeyAndFeatureValuesFeature
|
11062
|
+
include Google::Apis::Core::Hashable
|
11063
|
+
|
11064
|
+
# Feature short name.
|
11065
|
+
# Corresponds to the JSON property `name`
|
11066
|
+
# @return [String]
|
11067
|
+
attr_accessor :name
|
11068
|
+
|
11069
|
+
# Value for a feature.
|
11070
|
+
# Corresponds to the JSON property `value`
|
11071
|
+
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1FeatureValue]
|
11072
|
+
attr_accessor :value
|
11073
|
+
|
11074
|
+
def initialize(**args)
|
11075
|
+
update!(**args)
|
11076
|
+
end
|
11077
|
+
|
11078
|
+
# Update properties of this object
|
11079
|
+
def update!(**args)
|
11080
|
+
@name = args[:name] if args.key?(:name)
|
11081
|
+
@value = args[:value] if args.key?(:value)
|
11082
|
+
end
|
11083
|
+
end
|
11084
|
+
|
11085
|
+
# Response message for FeatureOnlineStoreService.FeatureViewDirectWrite.
|
11086
|
+
class GoogleCloudAiplatformV1FeatureViewDirectWriteResponse
|
11087
|
+
include Google::Apis::Core::Hashable
|
11088
|
+
|
11089
|
+
# The `Status` type defines a logical error model that is suitable for different
|
11090
|
+
# programming environments, including REST APIs and RPC APIs. It is used by [
|
11091
|
+
# gRPC](https://github.com/grpc). Each `Status` message contains three pieces of
|
11092
|
+
# data: error code, error message, and error details. You can find out more
|
11093
|
+
# about this error model and how to work with it in the [API Design Guide](https:
|
11094
|
+
# //cloud.google.com/apis/design/errors).
|
11095
|
+
# Corresponds to the JSON property `status`
|
11096
|
+
# @return [Google::Apis::AiplatformV1::GoogleRpcStatus]
|
11097
|
+
attr_accessor :status
|
11098
|
+
|
11099
|
+
# Details about write for each key. If status is not OK, WriteResponse.data_key
|
11100
|
+
# will have the key with error, but WriteResponse.online_store_write_time will
|
11101
|
+
# not be present.
|
11102
|
+
# Corresponds to the JSON property `writeResponses`
|
11103
|
+
# @return [Array<Google::Apis::AiplatformV1::GoogleCloudAiplatformV1FeatureViewDirectWriteResponseWriteResponse>]
|
11104
|
+
attr_accessor :write_responses
|
11105
|
+
|
11106
|
+
def initialize(**args)
|
11107
|
+
update!(**args)
|
11108
|
+
end
|
11109
|
+
|
11110
|
+
# Update properties of this object
|
11111
|
+
def update!(**args)
|
11112
|
+
@status = args[:status] if args.key?(:status)
|
11113
|
+
@write_responses = args[:write_responses] if args.key?(:write_responses)
|
11114
|
+
end
|
11115
|
+
end
|
11116
|
+
|
11117
|
+
# Details about the write for each key.
|
11118
|
+
class GoogleCloudAiplatformV1FeatureViewDirectWriteResponseWriteResponse
|
11119
|
+
include Google::Apis::Core::Hashable
|
11120
|
+
|
11121
|
+
# Lookup key for a feature view.
|
11122
|
+
# Corresponds to the JSON property `dataKey`
|
11123
|
+
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1FeatureViewDataKey]
|
11124
|
+
attr_accessor :data_key
|
11125
|
+
|
11126
|
+
# When the feature values were written to the online store. If
|
11127
|
+
# FeatureViewDirectWriteResponse.status is not OK, this field is not populated.
|
11128
|
+
# Corresponds to the JSON property `onlineStoreWriteTime`
|
11129
|
+
# @return [String]
|
11130
|
+
attr_accessor :online_store_write_time
|
11131
|
+
|
11132
|
+
def initialize(**args)
|
11133
|
+
update!(**args)
|
11134
|
+
end
|
11135
|
+
|
11136
|
+
# Update properties of this object
|
11137
|
+
def update!(**args)
|
11138
|
+
@data_key = args[:data_key] if args.key?(:data_key)
|
11139
|
+
@online_store_write_time = args[:online_store_write_time] if args.key?(:online_store_write_time)
|
11140
|
+
end
|
11141
|
+
end
|
11142
|
+
|
10968
11143
|
# A Feature Registry source for features that need to be synced to Online Store.
|
10969
11144
|
class GoogleCloudAiplatformV1FeatureViewFeatureRegistrySource
|
10970
11145
|
include Google::Apis::Core::Hashable
|
@@ -12456,6 +12631,25 @@ module Google
|
|
12456
12631
|
end
|
12457
12632
|
end
|
12458
12633
|
|
12634
|
+
# Google Distributed Cloud (GDC) config.
|
12635
|
+
class GoogleCloudAiplatformV1GdcConfig
|
12636
|
+
include Google::Apis::Core::Hashable
|
12637
|
+
|
12638
|
+
# GDC zone. A cluster will be designated for the Vertex AI workload in this zone.
|
12639
|
+
# Corresponds to the JSON property `zone`
|
12640
|
+
# @return [String]
|
12641
|
+
attr_accessor :zone
|
12642
|
+
|
12643
|
+
def initialize(**args)
|
12644
|
+
update!(**args)
|
12645
|
+
end
|
12646
|
+
|
12647
|
+
# Update properties of this object
|
12648
|
+
def update!(**args)
|
12649
|
+
@zone = args[:zone] if args.key?(:zone)
|
12650
|
+
end
|
12651
|
+
end
|
12652
|
+
|
12459
12653
|
# Configuration for GenAiAdvancedFeatures.
|
12460
12654
|
class GoogleCloudAiplatformV1GenAiAdvancedFeaturesConfig
|
12461
12655
|
include Google::Apis::Core::Hashable
|
@@ -13163,6 +13357,32 @@ module Google
|
|
13163
13357
|
end
|
13164
13358
|
end
|
13165
13359
|
|
13360
|
+
# Tool to retrieve public maps data for grounding, powered by Google.
|
13361
|
+
class GoogleCloudAiplatformV1GoogleMaps
|
13362
|
+
include Google::Apis::Core::Hashable
|
13363
|
+
|
13364
|
+
# The generic reusable api auth config. Deprecated. Please use AuthConfig (
|
13365
|
+
# google/cloud/aiplatform/master/auth.proto) instead.
|
13366
|
+
# Corresponds to the JSON property `apiAuth`
|
13367
|
+
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1ApiAuth]
|
13368
|
+
attr_accessor :api_auth
|
13369
|
+
|
13370
|
+
# Auth configuration to run the extension.
|
13371
|
+
# Corresponds to the JSON property `authConfig`
|
13372
|
+
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1AuthConfig]
|
13373
|
+
attr_accessor :auth_config
|
13374
|
+
|
13375
|
+
def initialize(**args)
|
13376
|
+
update!(**args)
|
13377
|
+
end
|
13378
|
+
|
13379
|
+
# Update properties of this object
|
13380
|
+
def update!(**args)
|
13381
|
+
@api_auth = args[:api_auth] if args.key?(:api_auth)
|
13382
|
+
@auth_config = args[:auth_config] if args.key?(:auth_config)
|
13383
|
+
end
|
13384
|
+
end
|
13385
|
+
|
13166
13386
|
# Tool to retrieve public web data for grounding, powered by Google.
|
13167
13387
|
class GoogleCloudAiplatformV1GoogleSearchRetrieval
|
13168
13388
|
include Google::Apis::Core::Hashable
|
@@ -13287,6 +13507,11 @@ module Google
|
|
13287
13507
|
class GoogleCloudAiplatformV1GroundingChunk
|
13288
13508
|
include Google::Apis::Core::Hashable
|
13289
13509
|
|
13510
|
+
# Chunk from Google Maps.
|
13511
|
+
# Corresponds to the JSON property `maps`
|
13512
|
+
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1GroundingChunkMaps]
|
13513
|
+
attr_accessor :maps
|
13514
|
+
|
13290
13515
|
# Chunk from context retrieved by the retrieval tools.
|
13291
13516
|
# Corresponds to the JSON property `retrievedContext`
|
13292
13517
|
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1GroundingChunkRetrievedContext]
|
@@ -13303,11 +13528,157 @@ module Google
|
|
13303
13528
|
|
13304
13529
|
# Update properties of this object
|
13305
13530
|
def update!(**args)
|
13531
|
+
@maps = args[:maps] if args.key?(:maps)
|
13306
13532
|
@retrieved_context = args[:retrieved_context] if args.key?(:retrieved_context)
|
13307
13533
|
@web = args[:web] if args.key?(:web)
|
13308
13534
|
end
|
13309
13535
|
end
|
13310
13536
|
|
13537
|
+
# Chunk from Google Maps.
|
13538
|
+
class GoogleCloudAiplatformV1GroundingChunkMaps
|
13539
|
+
include Google::Apis::Core::Hashable
|
13540
|
+
|
13541
|
+
# Sources used to generate the place answer.
|
13542
|
+
# Corresponds to the JSON property `placeAnswerSources`
|
13543
|
+
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1GroundingChunkMapsPlaceAnswerSources]
|
13544
|
+
attr_accessor :place_answer_sources
|
13545
|
+
|
13546
|
+
# This Place's resource name, in `places/`place_id`` format. Can be used to look
|
13547
|
+
# up the Place.
|
13548
|
+
# Corresponds to the JSON property `placeId`
|
13549
|
+
# @return [String]
|
13550
|
+
attr_accessor :place_id
|
13551
|
+
|
13552
|
+
# Text of the chunk.
|
13553
|
+
# Corresponds to the JSON property `text`
|
13554
|
+
# @return [String]
|
13555
|
+
attr_accessor :text
|
13556
|
+
|
13557
|
+
# Title of the chunk.
|
13558
|
+
# Corresponds to the JSON property `title`
|
13559
|
+
# @return [String]
|
13560
|
+
attr_accessor :title
|
13561
|
+
|
13562
|
+
# URI reference of the chunk.
|
13563
|
+
# Corresponds to the JSON property `uri`
|
13564
|
+
# @return [String]
|
13565
|
+
attr_accessor :uri
|
13566
|
+
|
13567
|
+
def initialize(**args)
|
13568
|
+
update!(**args)
|
13569
|
+
end
|
13570
|
+
|
13571
|
+
# Update properties of this object
|
13572
|
+
def update!(**args)
|
13573
|
+
@place_answer_sources = args[:place_answer_sources] if args.key?(:place_answer_sources)
|
13574
|
+
@place_id = args[:place_id] if args.key?(:place_id)
|
13575
|
+
@text = args[:text] if args.key?(:text)
|
13576
|
+
@title = args[:title] if args.key?(:title)
|
13577
|
+
@uri = args[:uri] if args.key?(:uri)
|
13578
|
+
end
|
13579
|
+
end
|
13580
|
+
|
13581
|
+
# Sources used to generate the place answer.
|
13582
|
+
class GoogleCloudAiplatformV1GroundingChunkMapsPlaceAnswerSources
|
13583
|
+
include Google::Apis::Core::Hashable
|
13584
|
+
|
13585
|
+
# A link where users can flag a problem with the generated answer.
|
13586
|
+
# Corresponds to the JSON property `flagContentUri`
|
13587
|
+
# @return [String]
|
13588
|
+
attr_accessor :flag_content_uri
|
13589
|
+
|
13590
|
+
# Snippets of reviews that are used to generate the answer.
|
13591
|
+
# Corresponds to the JSON property `reviewSnippets`
|
13592
|
+
# @return [Array<Google::Apis::AiplatformV1::GoogleCloudAiplatformV1GroundingChunkMapsPlaceAnswerSourcesReviewSnippet>]
|
13593
|
+
attr_accessor :review_snippets
|
13594
|
+
|
13595
|
+
def initialize(**args)
|
13596
|
+
update!(**args)
|
13597
|
+
end
|
13598
|
+
|
13599
|
+
# Update properties of this object
|
13600
|
+
def update!(**args)
|
13601
|
+
@flag_content_uri = args[:flag_content_uri] if args.key?(:flag_content_uri)
|
13602
|
+
@review_snippets = args[:review_snippets] if args.key?(:review_snippets)
|
13603
|
+
end
|
13604
|
+
end
|
13605
|
+
|
13606
|
+
# Author attribution for a photo or review.
|
13607
|
+
class GoogleCloudAiplatformV1GroundingChunkMapsPlaceAnswerSourcesAuthorAttribution
|
13608
|
+
include Google::Apis::Core::Hashable
|
13609
|
+
|
13610
|
+
# Name of the author of the Photo or Review.
|
13611
|
+
# Corresponds to the JSON property `displayName`
|
13612
|
+
# @return [String]
|
13613
|
+
attr_accessor :display_name
|
13614
|
+
|
13615
|
+
# Profile photo URI of the author of the Photo or Review.
|
13616
|
+
# Corresponds to the JSON property `photoUri`
|
13617
|
+
# @return [String]
|
13618
|
+
attr_accessor :photo_uri
|
13619
|
+
|
13620
|
+
# URI of the author of the Photo or Review.
|
13621
|
+
# Corresponds to the JSON property `uri`
|
13622
|
+
# @return [String]
|
13623
|
+
attr_accessor :uri
|
13624
|
+
|
13625
|
+
def initialize(**args)
|
13626
|
+
update!(**args)
|
13627
|
+
end
|
13628
|
+
|
13629
|
+
# Update properties of this object
|
13630
|
+
def update!(**args)
|
13631
|
+
@display_name = args[:display_name] if args.key?(:display_name)
|
13632
|
+
@photo_uri = args[:photo_uri] if args.key?(:photo_uri)
|
13633
|
+
@uri = args[:uri] if args.key?(:uri)
|
13634
|
+
end
|
13635
|
+
end
|
13636
|
+
|
13637
|
+
# Encapsulates a review snippet.
|
13638
|
+
class GoogleCloudAiplatformV1GroundingChunkMapsPlaceAnswerSourcesReviewSnippet
|
13639
|
+
include Google::Apis::Core::Hashable
|
13640
|
+
|
13641
|
+
# Author attribution for a photo or review.
|
13642
|
+
# Corresponds to the JSON property `authorAttribution`
|
13643
|
+
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1GroundingChunkMapsPlaceAnswerSourcesAuthorAttribution]
|
13644
|
+
attr_accessor :author_attribution
|
13645
|
+
|
13646
|
+
# A link where users can flag a problem with the review.
|
13647
|
+
# Corresponds to the JSON property `flagContentUri`
|
13648
|
+
# @return [String]
|
13649
|
+
attr_accessor :flag_content_uri
|
13650
|
+
|
13651
|
+
# A link to show the review on Google Maps.
|
13652
|
+
# Corresponds to the JSON property `googleMapsUri`
|
13653
|
+
# @return [String]
|
13654
|
+
attr_accessor :google_maps_uri
|
13655
|
+
|
13656
|
+
# A string of formatted recent time, expressing the review time relative to the
|
13657
|
+
# current time in a form appropriate for the language and country.
|
13658
|
+
# Corresponds to the JSON property `relativePublishTimeDescription`
|
13659
|
+
# @return [String]
|
13660
|
+
attr_accessor :relative_publish_time_description
|
13661
|
+
|
13662
|
+
# A reference representing this place review which may be used to look up this
|
13663
|
+
# place review again.
|
13664
|
+
# Corresponds to the JSON property `review`
|
13665
|
+
# @return [String]
|
13666
|
+
attr_accessor :review
|
13667
|
+
|
13668
|
+
def initialize(**args)
|
13669
|
+
update!(**args)
|
13670
|
+
end
|
13671
|
+
|
13672
|
+
# Update properties of this object
|
13673
|
+
def update!(**args)
|
13674
|
+
@author_attribution = args[:author_attribution] if args.key?(:author_attribution)
|
13675
|
+
@flag_content_uri = args[:flag_content_uri] if args.key?(:flag_content_uri)
|
13676
|
+
@google_maps_uri = args[:google_maps_uri] if args.key?(:google_maps_uri)
|
13677
|
+
@relative_publish_time_description = args[:relative_publish_time_description] if args.key?(:relative_publish_time_description)
|
13678
|
+
@review = args[:review] if args.key?(:review)
|
13679
|
+
end
|
13680
|
+
end
|
13681
|
+
|
13311
13682
|
# Chunk from context retrieved by the retrieval tools.
|
13312
13683
|
class GoogleCloudAiplatformV1GroundingChunkRetrievedContext
|
13313
13684
|
include Google::Apis::Core::Hashable
|
@@ -13381,6 +13752,13 @@ module Google
|
|
13381
13752
|
class GoogleCloudAiplatformV1GroundingMetadata
|
13382
13753
|
include Google::Apis::Core::Hashable
|
13383
13754
|
|
13755
|
+
# Optional. Output only. Resource name of the Google Maps widget context token
|
13756
|
+
# to be used with the PlacesContextElement widget to render contextual data.
|
13757
|
+
# This is populated only for Google Maps grounding.
|
13758
|
+
# Corresponds to the JSON property `googleMapsWidgetContextToken`
|
13759
|
+
# @return [String]
|
13760
|
+
attr_accessor :google_maps_widget_context_token
|
13761
|
+
|
13384
13762
|
# List of supporting references retrieved from specified grounding source.
|
13385
13763
|
# Corresponds to the JSON property `groundingChunks`
|
13386
13764
|
# @return [Array<Google::Apis::AiplatformV1::GoogleCloudAiplatformV1GroundingChunk>]
|
@@ -13412,6 +13790,7 @@ module Google
|
|
13412
13790
|
|
13413
13791
|
# Update properties of this object
|
13414
13792
|
def update!(**args)
|
13793
|
+
@google_maps_widget_context_token = args[:google_maps_widget_context_token] if args.key?(:google_maps_widget_context_token)
|
13415
13794
|
@grounding_chunks = args[:grounding_chunks] if args.key?(:grounding_chunks)
|
13416
13795
|
@grounding_supports = args[:grounding_supports] if args.key?(:grounding_supports)
|
13417
13796
|
@retrieval_metadata = args[:retrieval_metadata] if args.key?(:retrieval_metadata)
|
@@ -14221,6 +14600,11 @@ module Google
|
|
14221
14600
|
# @return [String]
|
14222
14601
|
attr_accessor :datapoint_id
|
14223
14602
|
|
14603
|
+
# Optional. The key-value map of additional metadata for the datapoint.
|
14604
|
+
# Corresponds to the JSON property `embeddingMetadata`
|
14605
|
+
# @return [Hash<String,Object>]
|
14606
|
+
attr_accessor :embedding_metadata
|
14607
|
+
|
14224
14608
|
# Required. Feature embedding vector for dense index. An array of numbers with
|
14225
14609
|
# the length of [NearestNeighborSearchConfig.dimensions].
|
14226
14610
|
# Corresponds to the JSON property `featureVector`
|
@@ -14256,6 +14640,7 @@ module Google
|
|
14256
14640
|
def update!(**args)
|
14257
14641
|
@crowding_tag = args[:crowding_tag] if args.key?(:crowding_tag)
|
14258
14642
|
@datapoint_id = args[:datapoint_id] if args.key?(:datapoint_id)
|
14643
|
+
@embedding_metadata = args[:embedding_metadata] if args.key?(:embedding_metadata)
|
14259
14644
|
@feature_vector = args[:feature_vector] if args.key?(:feature_vector)
|
14260
14645
|
@numeric_restricts = args[:numeric_restricts] if args.key?(:numeric_restricts)
|
14261
14646
|
@restricts = args[:restricts] if args.key?(:restricts)
|
@@ -23414,6 +23799,13 @@ module Google
|
|
23414
23799
|
class GoogleCloudAiplatformV1PublisherModelCallToActionRegionalResourceReferences
|
23415
23800
|
include Google::Apis::Core::Hashable
|
23416
23801
|
|
23802
|
+
# Optional. For notebook resource. When set to true, the Colab Enterprise link
|
23803
|
+
# will be disabled in the "open notebook" dialog in UI.
|
23804
|
+
# Corresponds to the JSON property `colabNotebookDisabled`
|
23805
|
+
# @return [Boolean]
|
23806
|
+
attr_accessor :colab_notebook_disabled
|
23807
|
+
alias_method :colab_notebook_disabled?, :colab_notebook_disabled
|
23808
|
+
|
23417
23809
|
# Required.
|
23418
23810
|
# Corresponds to the JSON property `references`
|
23419
23811
|
# @return [Hash<String,Google::Apis::AiplatformV1::GoogleCloudAiplatformV1PublisherModelResourceReference>]
|
@@ -23451,6 +23843,7 @@ module Google
|
|
23451
23843
|
|
23452
23844
|
# Update properties of this object
|
23453
23845
|
def update!(**args)
|
23846
|
+
@colab_notebook_disabled = args[:colab_notebook_disabled] if args.key?(:colab_notebook_disabled)
|
23454
23847
|
@references = args[:references] if args.key?(:references)
|
23455
23848
|
@resource_description = args[:resource_description] if args.key?(:resource_description)
|
23456
23849
|
@resource_title = args[:resource_title] if args.key?(:resource_title)
|
@@ -25808,6 +26201,12 @@ module Google
|
|
25808
26201
|
# @return [String]
|
25809
26202
|
attr_accessor :display_name
|
25810
26203
|
|
26204
|
+
# Represents a customer-managed encryption key spec that can be applied to a top-
|
26205
|
+
# level resource.
|
26206
|
+
# Corresponds to the JSON property `encryptionSpec`
|
26207
|
+
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1EncryptionSpec]
|
26208
|
+
attr_accessor :encryption_spec
|
26209
|
+
|
25811
26210
|
# Optional. Used to perform consistent read-modify-write updates. If not set, a
|
25812
26211
|
# blind "overwrite" update happens.
|
25813
26212
|
# Corresponds to the JSON property `etag`
|
@@ -25839,6 +26238,7 @@ module Google
|
|
25839
26238
|
@create_time = args[:create_time] if args.key?(:create_time)
|
25840
26239
|
@description = args[:description] if args.key?(:description)
|
25841
26240
|
@display_name = args[:display_name] if args.key?(:display_name)
|
26241
|
+
@encryption_spec = args[:encryption_spec] if args.key?(:encryption_spec)
|
25842
26242
|
@etag = args[:etag] if args.key?(:etag)
|
25843
26243
|
@name = args[:name] if args.key?(:name)
|
25844
26244
|
@spec = args[:spec] if args.key?(:spec)
|
@@ -25873,6 +26273,15 @@ module Google
|
|
25873
26273
|
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1ReasoningEngineSpecPackageSpec]
|
25874
26274
|
attr_accessor :package_spec
|
25875
26275
|
|
26276
|
+
# Optional. The service account that the Reasoning Engine artifact runs as. It
|
26277
|
+
# should have "roles/storage.objectViewer" for reading the user project's Cloud
|
26278
|
+
# Storage and "roles/aiplatform.user" for using Vertex extensions. If not
|
26279
|
+
# specified, the Vertex AI Reasoning Engine Service Agent in the project will be
|
26280
|
+
# used.
|
26281
|
+
# Corresponds to the JSON property `serviceAccount`
|
26282
|
+
# @return [String]
|
26283
|
+
attr_accessor :service_account
|
26284
|
+
|
25876
26285
|
def initialize(**args)
|
25877
26286
|
update!(**args)
|
25878
26287
|
end
|
@@ -25883,6 +26292,7 @@ module Google
|
|
25883
26292
|
@class_methods = args[:class_methods] if args.key?(:class_methods)
|
25884
26293
|
@deployment_spec = args[:deployment_spec] if args.key?(:deployment_spec)
|
25885
26294
|
@package_spec = args[:package_spec] if args.key?(:package_spec)
|
26295
|
+
@service_account = args[:service_account] if args.key?(:service_account)
|
25886
26296
|
end
|
25887
26297
|
end
|
25888
26298
|
|
@@ -36551,7 +36961,7 @@ module Google
|
|
36551
36961
|
attr_accessor :epoch_count
|
36552
36962
|
|
36553
36963
|
# Optional. Multiplier for adjusting the default learning rate. Mutually
|
36554
|
-
# exclusive with `learning_rate`.
|
36964
|
+
# exclusive with `learning_rate`. This feature is only available for 1P models.
|
36555
36965
|
# Corresponds to the JSON property `learningRateMultiplier`
|
36556
36966
|
# @return [Float]
|
36557
36967
|
attr_accessor :learning_rate_multiplier
|
@@ -37600,11 +38010,16 @@ module Google
|
|
37600
38010
|
# subset of these functions by populating FunctionCall in the response. User
|
37601
38011
|
# should provide a FunctionResponse for each function call in the next turn.
|
37602
38012
|
# Based on the function responses, Model will generate the final response back
|
37603
|
-
# to the user. Maximum
|
38013
|
+
# to the user. Maximum 512 function declarations can be provided.
|
37604
38014
|
# Corresponds to the JSON property `functionDeclarations`
|
37605
38015
|
# @return [Array<Google::Apis::AiplatformV1::GoogleCloudAiplatformV1FunctionDeclaration>]
|
37606
38016
|
attr_accessor :function_declarations
|
37607
38017
|
|
38018
|
+
# Tool to retrieve public maps data for grounding, powered by Google.
|
38019
|
+
# Corresponds to the JSON property `googleMaps`
|
38020
|
+
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1GoogleMaps]
|
38021
|
+
attr_accessor :google_maps
|
38022
|
+
|
37608
38023
|
# GoogleSearch tool type. Tool to support Google Search in Model. Powered by
|
37609
38024
|
# Google.
|
37610
38025
|
# Corresponds to the JSON property `googleSearch`
|
@@ -37636,6 +38051,7 @@ module Google
|
|
37636
38051
|
@computer_use = args[:computer_use] if args.key?(:computer_use)
|
37637
38052
|
@enterprise_web_search = args[:enterprise_web_search] if args.key?(:enterprise_web_search)
|
37638
38053
|
@function_declarations = args[:function_declarations] if args.key?(:function_declarations)
|
38054
|
+
@google_maps = args[:google_maps] if args.key?(:google_maps)
|
37639
38055
|
@google_search = args[:google_search] if args.key?(:google_search)
|
37640
38056
|
@google_search_retrieval = args[:google_search_retrieval] if args.key?(:google_search_retrieval)
|
37641
38057
|
@retrieval = args[:retrieval] if args.key?(:retrieval)
|
@@ -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.61.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 = "20250728"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -1774,6 +1774,36 @@ module Google
|
|
1774
1774
|
include Google::Apis::Core::JsonObjectSupport
|
1775
1775
|
end
|
1776
1776
|
|
1777
|
+
class GoogleCloudAiplatformV1FeatureViewDirectWriteRequest
|
1778
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1779
|
+
|
1780
|
+
include Google::Apis::Core::JsonObjectSupport
|
1781
|
+
end
|
1782
|
+
|
1783
|
+
class GoogleCloudAiplatformV1FeatureViewDirectWriteRequestDataKeyAndFeatureValues
|
1784
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1785
|
+
|
1786
|
+
include Google::Apis::Core::JsonObjectSupport
|
1787
|
+
end
|
1788
|
+
|
1789
|
+
class GoogleCloudAiplatformV1FeatureViewDirectWriteRequestDataKeyAndFeatureValuesFeature
|
1790
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1791
|
+
|
1792
|
+
include Google::Apis::Core::JsonObjectSupport
|
1793
|
+
end
|
1794
|
+
|
1795
|
+
class GoogleCloudAiplatformV1FeatureViewDirectWriteResponse
|
1796
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1797
|
+
|
1798
|
+
include Google::Apis::Core::JsonObjectSupport
|
1799
|
+
end
|
1800
|
+
|
1801
|
+
class GoogleCloudAiplatformV1FeatureViewDirectWriteResponseWriteResponse
|
1802
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1803
|
+
|
1804
|
+
include Google::Apis::Core::JsonObjectSupport
|
1805
|
+
end
|
1806
|
+
|
1777
1807
|
class GoogleCloudAiplatformV1FeatureViewFeatureRegistrySource
|
1778
1808
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1779
1809
|
|
@@ -2050,6 +2080,12 @@ module Google
|
|
2050
2080
|
include Google::Apis::Core::JsonObjectSupport
|
2051
2081
|
end
|
2052
2082
|
|
2083
|
+
class GoogleCloudAiplatformV1GdcConfig
|
2084
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2085
|
+
|
2086
|
+
include Google::Apis::Core::JsonObjectSupport
|
2087
|
+
end
|
2088
|
+
|
2053
2089
|
class GoogleCloudAiplatformV1GenAiAdvancedFeaturesConfig
|
2054
2090
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2055
2091
|
|
@@ -2152,6 +2188,12 @@ module Google
|
|
2152
2188
|
include Google::Apis::Core::JsonObjectSupport
|
2153
2189
|
end
|
2154
2190
|
|
2191
|
+
class GoogleCloudAiplatformV1GoogleMaps
|
2192
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2193
|
+
|
2194
|
+
include Google::Apis::Core::JsonObjectSupport
|
2195
|
+
end
|
2196
|
+
|
2155
2197
|
class GoogleCloudAiplatformV1GoogleSearchRetrieval
|
2156
2198
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2157
2199
|
|
@@ -2188,6 +2230,30 @@ module Google
|
|
2188
2230
|
include Google::Apis::Core::JsonObjectSupport
|
2189
2231
|
end
|
2190
2232
|
|
2233
|
+
class GoogleCloudAiplatformV1GroundingChunkMaps
|
2234
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2235
|
+
|
2236
|
+
include Google::Apis::Core::JsonObjectSupport
|
2237
|
+
end
|
2238
|
+
|
2239
|
+
class GoogleCloudAiplatformV1GroundingChunkMapsPlaceAnswerSources
|
2240
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2241
|
+
|
2242
|
+
include Google::Apis::Core::JsonObjectSupport
|
2243
|
+
end
|
2244
|
+
|
2245
|
+
class GoogleCloudAiplatformV1GroundingChunkMapsPlaceAnswerSourcesAuthorAttribution
|
2246
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2247
|
+
|
2248
|
+
include Google::Apis::Core::JsonObjectSupport
|
2249
|
+
end
|
2250
|
+
|
2251
|
+
class GoogleCloudAiplatformV1GroundingChunkMapsPlaceAnswerSourcesReviewSnippet
|
2252
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2253
|
+
|
2254
|
+
include Google::Apis::Core::JsonObjectSupport
|
2255
|
+
end
|
2256
|
+
|
2191
2257
|
class GoogleCloudAiplatformV1GroundingChunkRetrievedContext
|
2192
2258
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2193
2259
|
|
@@ -8276,6 +8342,7 @@ module Google
|
|
8276
8342
|
class GoogleCloudAiplatformV1CreateEndpointOperationMetadata
|
8277
8343
|
# @private
|
8278
8344
|
class Representation < Google::Apis::Core::JsonRepresentation
|
8345
|
+
property :deployment_stage, as: 'deploymentStage'
|
8279
8346
|
property :generic_metadata, as: 'genericMetadata', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1GenericOperationMetadata, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1GenericOperationMetadata::Representation
|
8280
8347
|
|
8281
8348
|
end
|
@@ -8749,6 +8816,7 @@ module Google
|
|
8749
8816
|
class GoogleCloudAiplatformV1DeployModelOperationMetadata
|
8750
8817
|
# @private
|
8751
8818
|
class Representation < Google::Apis::Core::JsonRepresentation
|
8819
|
+
property :deployment_stage, as: 'deploymentStage'
|
8752
8820
|
property :generic_metadata, as: 'genericMetadata', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1GenericOperationMetadata, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1GenericOperationMetadata::Representation
|
8753
8821
|
|
8754
8822
|
end
|
@@ -8824,6 +8892,7 @@ module Google
|
|
8824
8892
|
property :hugging_face_access_token, as: 'huggingFaceAccessToken'
|
8825
8893
|
property :hugging_face_cache_enabled, as: 'huggingFaceCacheEnabled'
|
8826
8894
|
property :model_display_name, as: 'modelDisplayName'
|
8895
|
+
property :model_user_id, as: 'modelUserId'
|
8827
8896
|
end
|
8828
8897
|
end
|
8829
8898
|
|
@@ -8849,6 +8918,7 @@ module Google
|
|
8849
8918
|
property :deployment_group, as: 'deploymentGroup'
|
8850
8919
|
property :display_name, as: 'displayName'
|
8851
8920
|
property :enable_access_logging, as: 'enableAccessLogging'
|
8921
|
+
property :enable_datapoint_upsert_logging, as: 'enableDatapointUpsertLogging'
|
8852
8922
|
property :id, as: 'id'
|
8853
8923
|
property :index, as: 'index'
|
8854
8924
|
property :index_sync_time, as: 'indexSyncTime'
|
@@ -8902,6 +8972,7 @@ module Google
|
|
8902
8972
|
|
8903
8973
|
property :faster_deployment_config, as: 'fasterDeploymentConfig', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1FasterDeploymentConfig, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1FasterDeploymentConfig::Representation
|
8904
8974
|
|
8975
|
+
property :gdc_connected_model, as: 'gdcConnectedModel'
|
8905
8976
|
property :id, as: 'id'
|
8906
8977
|
property :model, as: 'model'
|
8907
8978
|
property :model_version_id, as: 'modelVersionId'
|
@@ -9055,6 +9126,8 @@ module Google
|
|
9055
9126
|
property :encryption_spec, as: 'encryptionSpec', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1EncryptionSpec, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1EncryptionSpec::Representation
|
9056
9127
|
|
9057
9128
|
property :etag, as: 'etag'
|
9129
|
+
property :gdc_config, as: 'gdcConfig', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1GdcConfig, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1GdcConfig::Representation
|
9130
|
+
|
9058
9131
|
property :gen_ai_advanced_features_config, as: 'genAiAdvancedFeaturesConfig', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1GenAiAdvancedFeaturesConfig, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1GenAiAdvancedFeaturesConfig::Representation
|
9059
9132
|
|
9060
9133
|
hash :labels, as: 'labels'
|
@@ -10061,6 +10134,52 @@ module Google
|
|
10061
10134
|
end
|
10062
10135
|
end
|
10063
10136
|
|
10137
|
+
class GoogleCloudAiplatformV1FeatureViewDirectWriteRequest
|
10138
|
+
# @private
|
10139
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
10140
|
+
collection :data_key_and_feature_values, as: 'dataKeyAndFeatureValues', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1FeatureViewDirectWriteRequestDataKeyAndFeatureValues, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1FeatureViewDirectWriteRequestDataKeyAndFeatureValues::Representation
|
10141
|
+
|
10142
|
+
end
|
10143
|
+
end
|
10144
|
+
|
10145
|
+
class GoogleCloudAiplatformV1FeatureViewDirectWriteRequestDataKeyAndFeatureValues
|
10146
|
+
# @private
|
10147
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
10148
|
+
property :data_key, as: 'dataKey', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1FeatureViewDataKey, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1FeatureViewDataKey::Representation
|
10149
|
+
|
10150
|
+
collection :features, as: 'features', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1FeatureViewDirectWriteRequestDataKeyAndFeatureValuesFeature, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1FeatureViewDirectWriteRequestDataKeyAndFeatureValuesFeature::Representation
|
10151
|
+
|
10152
|
+
end
|
10153
|
+
end
|
10154
|
+
|
10155
|
+
class GoogleCloudAiplatformV1FeatureViewDirectWriteRequestDataKeyAndFeatureValuesFeature
|
10156
|
+
# @private
|
10157
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
10158
|
+
property :name, as: 'name'
|
10159
|
+
property :value, as: 'value', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1FeatureValue, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1FeatureValue::Representation
|
10160
|
+
|
10161
|
+
end
|
10162
|
+
end
|
10163
|
+
|
10164
|
+
class GoogleCloudAiplatformV1FeatureViewDirectWriteResponse
|
10165
|
+
# @private
|
10166
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
10167
|
+
property :status, as: 'status', class: Google::Apis::AiplatformV1::GoogleRpcStatus, decorator: Google::Apis::AiplatformV1::GoogleRpcStatus::Representation
|
10168
|
+
|
10169
|
+
collection :write_responses, as: 'writeResponses', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1FeatureViewDirectWriteResponseWriteResponse, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1FeatureViewDirectWriteResponseWriteResponse::Representation
|
10170
|
+
|
10171
|
+
end
|
10172
|
+
end
|
10173
|
+
|
10174
|
+
class GoogleCloudAiplatformV1FeatureViewDirectWriteResponseWriteResponse
|
10175
|
+
# @private
|
10176
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
10177
|
+
property :data_key, as: 'dataKey', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1FeatureViewDataKey, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1FeatureViewDataKey::Representation
|
10178
|
+
|
10179
|
+
property :online_store_write_time, as: 'onlineStoreWriteTime'
|
10180
|
+
end
|
10181
|
+
end
|
10182
|
+
|
10064
10183
|
class GoogleCloudAiplatformV1FeatureViewFeatureRegistrySource
|
10065
10184
|
# @private
|
10066
10185
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -10486,6 +10605,13 @@ module Google
|
|
10486
10605
|
end
|
10487
10606
|
end
|
10488
10607
|
|
10608
|
+
class GoogleCloudAiplatformV1GdcConfig
|
10609
|
+
# @private
|
10610
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
10611
|
+
property :zone, as: 'zone'
|
10612
|
+
end
|
10613
|
+
end
|
10614
|
+
|
10489
10615
|
class GoogleCloudAiplatformV1GenAiAdvancedFeaturesConfig
|
10490
10616
|
# @private
|
10491
10617
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -10683,6 +10809,16 @@ module Google
|
|
10683
10809
|
end
|
10684
10810
|
end
|
10685
10811
|
|
10812
|
+
class GoogleCloudAiplatformV1GoogleMaps
|
10813
|
+
# @private
|
10814
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
10815
|
+
property :api_auth, as: 'apiAuth', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1ApiAuth, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1ApiAuth::Representation
|
10816
|
+
|
10817
|
+
property :auth_config, as: 'authConfig', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1AuthConfig, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1AuthConfig::Representation
|
10818
|
+
|
10819
|
+
end
|
10820
|
+
end
|
10821
|
+
|
10686
10822
|
class GoogleCloudAiplatformV1GoogleSearchRetrieval
|
10687
10823
|
# @private
|
10688
10824
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -10728,6 +10864,8 @@ module Google
|
|
10728
10864
|
class GoogleCloudAiplatformV1GroundingChunk
|
10729
10865
|
# @private
|
10730
10866
|
class Representation < Google::Apis::Core::JsonRepresentation
|
10867
|
+
property :maps, as: 'maps', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1GroundingChunkMaps, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1GroundingChunkMaps::Representation
|
10868
|
+
|
10731
10869
|
property :retrieved_context, as: 'retrievedContext', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1GroundingChunkRetrievedContext, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1GroundingChunkRetrievedContext::Representation
|
10732
10870
|
|
10733
10871
|
property :web, as: 'web', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1GroundingChunkWeb, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1GroundingChunkWeb::Representation
|
@@ -10735,6 +10873,48 @@ module Google
|
|
10735
10873
|
end
|
10736
10874
|
end
|
10737
10875
|
|
10876
|
+
class GoogleCloudAiplatformV1GroundingChunkMaps
|
10877
|
+
# @private
|
10878
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
10879
|
+
property :place_answer_sources, as: 'placeAnswerSources', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1GroundingChunkMapsPlaceAnswerSources, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1GroundingChunkMapsPlaceAnswerSources::Representation
|
10880
|
+
|
10881
|
+
property :place_id, as: 'placeId'
|
10882
|
+
property :text, as: 'text'
|
10883
|
+
property :title, as: 'title'
|
10884
|
+
property :uri, as: 'uri'
|
10885
|
+
end
|
10886
|
+
end
|
10887
|
+
|
10888
|
+
class GoogleCloudAiplatformV1GroundingChunkMapsPlaceAnswerSources
|
10889
|
+
# @private
|
10890
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
10891
|
+
property :flag_content_uri, as: 'flagContentUri'
|
10892
|
+
collection :review_snippets, as: 'reviewSnippets', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1GroundingChunkMapsPlaceAnswerSourcesReviewSnippet, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1GroundingChunkMapsPlaceAnswerSourcesReviewSnippet::Representation
|
10893
|
+
|
10894
|
+
end
|
10895
|
+
end
|
10896
|
+
|
10897
|
+
class GoogleCloudAiplatformV1GroundingChunkMapsPlaceAnswerSourcesAuthorAttribution
|
10898
|
+
# @private
|
10899
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
10900
|
+
property :display_name, as: 'displayName'
|
10901
|
+
property :photo_uri, as: 'photoUri'
|
10902
|
+
property :uri, as: 'uri'
|
10903
|
+
end
|
10904
|
+
end
|
10905
|
+
|
10906
|
+
class GoogleCloudAiplatformV1GroundingChunkMapsPlaceAnswerSourcesReviewSnippet
|
10907
|
+
# @private
|
10908
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
10909
|
+
property :author_attribution, as: 'authorAttribution', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1GroundingChunkMapsPlaceAnswerSourcesAuthorAttribution, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1GroundingChunkMapsPlaceAnswerSourcesAuthorAttribution::Representation
|
10910
|
+
|
10911
|
+
property :flag_content_uri, as: 'flagContentUri'
|
10912
|
+
property :google_maps_uri, as: 'googleMapsUri'
|
10913
|
+
property :relative_publish_time_description, as: 'relativePublishTimeDescription'
|
10914
|
+
property :review, as: 'review'
|
10915
|
+
end
|
10916
|
+
end
|
10917
|
+
|
10738
10918
|
class GoogleCloudAiplatformV1GroundingChunkRetrievedContext
|
10739
10919
|
# @private
|
10740
10920
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -10758,6 +10938,7 @@ module Google
|
|
10758
10938
|
class GoogleCloudAiplatformV1GroundingMetadata
|
10759
10939
|
# @private
|
10760
10940
|
class Representation < Google::Apis::Core::JsonRepresentation
|
10941
|
+
property :google_maps_widget_context_token, as: 'googleMapsWidgetContextToken'
|
10761
10942
|
collection :grounding_chunks, as: 'groundingChunks', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1GroundingChunk, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1GroundingChunk::Representation
|
10762
10943
|
|
10763
10944
|
collection :grounding_supports, as: 'groundingSupports', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1GroundingSupport, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1GroundingSupport::Representation
|
@@ -10977,6 +11158,7 @@ module Google
|
|
10977
11158
|
property :crowding_tag, as: 'crowdingTag', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1IndexDatapointCrowdingTag, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1IndexDatapointCrowdingTag::Representation
|
10978
11159
|
|
10979
11160
|
property :datapoint_id, as: 'datapointId'
|
11161
|
+
hash :embedding_metadata, as: 'embeddingMetadata'
|
10980
11162
|
collection :feature_vector, as: 'featureVector'
|
10981
11163
|
collection :numeric_restricts, as: 'numericRestricts', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1IndexDatapointNumericRestriction, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1IndexDatapointNumericRestriction::Representation
|
10982
11164
|
|
@@ -13540,6 +13722,7 @@ module Google
|
|
13540
13722
|
class GoogleCloudAiplatformV1PublisherModelCallToActionRegionalResourceReferences
|
13541
13723
|
# @private
|
13542
13724
|
class Representation < Google::Apis::Core::JsonRepresentation
|
13725
|
+
property :colab_notebook_disabled, as: 'colabNotebookDisabled'
|
13543
13726
|
hash :references, as: 'references', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1PublisherModelResourceReference, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1PublisherModelResourceReference::Representation
|
13544
13727
|
|
13545
13728
|
property :resource_description, as: 'resourceDescription'
|
@@ -14299,6 +14482,8 @@ module Google
|
|
14299
14482
|
property :create_time, as: 'createTime'
|
14300
14483
|
property :description, as: 'description'
|
14301
14484
|
property :display_name, as: 'displayName'
|
14485
|
+
property :encryption_spec, as: 'encryptionSpec', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1EncryptionSpec, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1EncryptionSpec::Representation
|
14486
|
+
|
14302
14487
|
property :etag, as: 'etag'
|
14303
14488
|
property :name, as: 'name'
|
14304
14489
|
property :spec, as: 'spec', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1ReasoningEngineSpec, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1ReasoningEngineSpec::Representation
|
@@ -14316,6 +14501,7 @@ module Google
|
|
14316
14501
|
|
14317
14502
|
property :package_spec, as: 'packageSpec', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1ReasoningEngineSpecPackageSpec, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1ReasoningEngineSpecPackageSpec::Representation
|
14318
14503
|
|
14504
|
+
property :service_account, as: 'serviceAccount'
|
14319
14505
|
end
|
14320
14506
|
end
|
14321
14507
|
|
@@ -17532,6 +17718,8 @@ module Google
|
|
17532
17718
|
|
17533
17719
|
collection :function_declarations, as: 'functionDeclarations', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1FunctionDeclaration, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1FunctionDeclaration::Representation
|
17534
17720
|
|
17721
|
+
property :google_maps, as: 'googleMaps', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1GoogleMaps, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1GoogleMaps::Representation
|
17722
|
+
|
17535
17723
|
property :google_search, as: 'googleSearch', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1ToolGoogleSearch, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1ToolGoogleSearch::Representation
|
17536
17724
|
|
17537
17725
|
property :google_search_retrieval, as: 'googleSearchRetrieval', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1GoogleSearchRetrieval, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1GoogleSearchRetrieval::Representation
|
@@ -4922,6 +4922,10 @@ module Google
|
|
4922
4922
|
# space must be quoted. `labels."a key"`. * `base_model_name` only supports `=`.
|
4923
4923
|
# Some examples: * `endpoint=1` * `displayName="myDisplayName"` * `labels.myKey="
|
4924
4924
|
# myValue"` * `baseModelName="text-bison"`
|
4925
|
+
# @param [String] gdc_zone
|
4926
|
+
# Optional. Configures the Google Distributed Cloud (GDC) environment for online
|
4927
|
+
# prediction. Only set this field when the Endpoint is to be deployed in a GDC
|
4928
|
+
# environment.
|
4925
4929
|
# @param [String] order_by
|
4926
4930
|
# A comma-separated list of fields to order by, sorted in ascending order. Use "
|
4927
4931
|
# desc" after a field name for descending. Supported fields: * `display_name` * `
|
@@ -4951,12 +4955,13 @@ module Google
|
|
4951
4955
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
4952
4956
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
4953
4957
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
4954
|
-
def list_project_location_endpoints(parent, filter: nil, order_by: nil, page_size: nil, page_token: nil, read_mask: nil, fields: nil, quota_user: nil, options: nil, &block)
|
4958
|
+
def list_project_location_endpoints(parent, filter: nil, gdc_zone: nil, order_by: nil, page_size: nil, page_token: nil, read_mask: nil, fields: nil, quota_user: nil, options: nil, &block)
|
4955
4959
|
command = make_simple_command(:get, 'v1/{+parent}/endpoints', options)
|
4956
4960
|
command.response_representation = Google::Apis::AiplatformV1::GoogleCloudAiplatformV1ListEndpointsResponse::Representation
|
4957
4961
|
command.response_class = Google::Apis::AiplatformV1::GoogleCloudAiplatformV1ListEndpointsResponse
|
4958
4962
|
command.params['parent'] = parent unless parent.nil?
|
4959
4963
|
command.query['filter'] = filter unless filter.nil?
|
4964
|
+
command.query['gdcZone'] = gdc_zone unless gdc_zone.nil?
|
4960
4965
|
command.query['orderBy'] = order_by unless order_by.nil?
|
4961
4966
|
command.query['pageSize'] = page_size unless page_size.nil?
|
4962
4967
|
command.query['pageToken'] = page_token unless page_token.nil?
|
@@ -4967,9 +4972,9 @@ module Google
|
|
4967
4972
|
end
|
4968
4973
|
|
4969
4974
|
# Updates an existing deployed model. Updatable fields include `
|
4970
|
-
# min_replica_count`, `max_replica_count`, `
|
4971
|
-
# disable_container_logging` (v1 only), and `
|
4972
|
-
# only).
|
4975
|
+
# min_replica_count`, `max_replica_count`, `required_replica_count`, `
|
4976
|
+
# autoscaling_metric_specs`, `disable_container_logging` (v1 only), and `
|
4977
|
+
# enable_container_logging` (v1beta1 only).
|
4973
4978
|
# @param [String] endpoint
|
4974
4979
|
# Required. The name of the Endpoint resource into which to mutate a
|
4975
4980
|
# DeployedModel. Format: `projects/`project`/locations/`location`/endpoints/`
|
@@ -6834,6 +6839,42 @@ module Google
|
|
6834
6839
|
execute_or_queue_command(command, &block)
|
6835
6840
|
end
|
6836
6841
|
|
6842
|
+
# Bidirectional streaming RPC to directly write to feature values in a feature
|
6843
|
+
# view. Requests may not have a one-to-one mapping to responses and responses
|
6844
|
+
# may be returned out-of-order to reduce latency.
|
6845
|
+
# @param [String] feature_view
|
6846
|
+
# FeatureView resource format `projects/`project`/locations/`location`/
|
6847
|
+
# featureOnlineStores/`featureOnlineStore`/featureViews/`featureView``
|
6848
|
+
# @param [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1FeatureViewDirectWriteRequest] google_cloud_aiplatform_v1_feature_view_direct_write_request_object
|
6849
|
+
# @param [String] fields
|
6850
|
+
# Selector specifying which fields to include in a partial response.
|
6851
|
+
# @param [String] quota_user
|
6852
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
6853
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
6854
|
+
# @param [Google::Apis::RequestOptions] options
|
6855
|
+
# Request-specific options
|
6856
|
+
#
|
6857
|
+
# @yield [result, err] Result & error if block supplied
|
6858
|
+
# @yieldparam result [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1FeatureViewDirectWriteResponse] parsed result object
|
6859
|
+
# @yieldparam err [StandardError] error object if request failed
|
6860
|
+
#
|
6861
|
+
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1FeatureViewDirectWriteResponse]
|
6862
|
+
#
|
6863
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
6864
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
6865
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
6866
|
+
def direct_project_location_feature_online_store_feature_view_write(feature_view, google_cloud_aiplatform_v1_feature_view_direct_write_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
|
6867
|
+
command = make_simple_command(:post, 'v1/{+featureView}:directWrite', options)
|
6868
|
+
command.request_representation = Google::Apis::AiplatformV1::GoogleCloudAiplatformV1FeatureViewDirectWriteRequest::Representation
|
6869
|
+
command.request_object = google_cloud_aiplatform_v1_feature_view_direct_write_request_object
|
6870
|
+
command.response_representation = Google::Apis::AiplatformV1::GoogleCloudAiplatformV1FeatureViewDirectWriteResponse::Representation
|
6871
|
+
command.response_class = Google::Apis::AiplatformV1::GoogleCloudAiplatformV1FeatureViewDirectWriteResponse
|
6872
|
+
command.params['featureView'] = feature_view unless feature_view.nil?
|
6873
|
+
command.query['fields'] = fields unless fields.nil?
|
6874
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
6875
|
+
execute_or_queue_command(command, &block)
|
6876
|
+
end
|
6877
|
+
|
6837
6878
|
# Fetch feature values under a FeatureView.
|
6838
6879
|
# @param [String] feature_view
|
6839
6880
|
# Required. FeatureView resource format `projects/`project`/locations/`location`/
|
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.61.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.61.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:
|