google-apis-aiplatform_v1 0.55.0 → 0.57.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: 70ec84185899d1940fc4783864cfd9ffb0dba695eb91076d79aabe9dd4ff9393
|
4
|
+
data.tar.gz: cc092fe1f0af02a96713445e79ba5425b6665f76194ef1c12e3dd36c86a2edb3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8dda469cf1f759a535a8094cceedfe50f29d78d27008faca9e75f14c01f4b453503ce1f023380d41780082db347e69c1d817b414ad3ff95bf65300708865fdcf
|
7
|
+
data.tar.gz: 888c095bdd6cf453d66f230fd32945cc14e933c90044fa3798c5193ab25549cab090135e9ce42c7bf055f92908d647e029dd2f94c55897aca00c305757e0e79e
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-aiplatform_v1
|
2
2
|
|
3
|
+
### v0.57.0 (2025-06-22)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250606
|
6
|
+
|
7
|
+
### v0.56.0 (2025-06-15)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20250602
|
10
|
+
|
3
11
|
### v0.55.0 (2025-06-08)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20250529
|
@@ -3146,6 +3146,11 @@ module Google
|
|
3146
3146
|
# @return [Array<Google::Apis::AiplatformV1::GoogleCloudAiplatformV1SafetyRating>]
|
3147
3147
|
attr_accessor :safety_ratings
|
3148
3148
|
|
3149
|
+
# Metadata related to url context retrieval tool.
|
3150
|
+
# Corresponds to the JSON property `urlContextMetadata`
|
3151
|
+
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1UrlContextMetadata]
|
3152
|
+
attr_accessor :url_context_metadata
|
3153
|
+
|
3149
3154
|
def initialize(**args)
|
3150
3155
|
update!(**args)
|
3151
3156
|
end
|
@@ -3161,6 +3166,7 @@ module Google
|
|
3161
3166
|
@index = args[:index] if args.key?(:index)
|
3162
3167
|
@logprobs_result = args[:logprobs_result] if args.key?(:logprobs_result)
|
3163
3168
|
@safety_ratings = args[:safety_ratings] if args.key?(:safety_ratings)
|
3169
|
+
@url_context_metadata = args[:url_context_metadata] if args.key?(:url_context_metadata)
|
3164
3170
|
end
|
3165
3171
|
end
|
3166
3172
|
|
@@ -6158,6 +6164,251 @@ module Google
|
|
6158
6164
|
end
|
6159
6165
|
end
|
6160
6166
|
|
6167
|
+
# Runtime operation information for ModelGardenService.Deploy.
|
6168
|
+
class GoogleCloudAiplatformV1DeployOperationMetadata
|
6169
|
+
include Google::Apis::Core::Hashable
|
6170
|
+
|
6171
|
+
# Output only. The resource name of the Location to deploy the model in. Format:
|
6172
|
+
# `projects/`project`/locations/`location``
|
6173
|
+
# Corresponds to the JSON property `destination`
|
6174
|
+
# @return [String]
|
6175
|
+
attr_accessor :destination
|
6176
|
+
|
6177
|
+
# Generic Metadata shared by all operations.
|
6178
|
+
# Corresponds to the JSON property `genericMetadata`
|
6179
|
+
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1GenericOperationMetadata]
|
6180
|
+
attr_accessor :generic_metadata
|
6181
|
+
|
6182
|
+
# Output only. The model id to be used at query time.
|
6183
|
+
# Corresponds to the JSON property `modelId`
|
6184
|
+
# @return [String]
|
6185
|
+
attr_accessor :model_id
|
6186
|
+
|
6187
|
+
# Output only. The project number where the deploy model request is sent.
|
6188
|
+
# Corresponds to the JSON property `projectNumber`
|
6189
|
+
# @return [Fixnum]
|
6190
|
+
attr_accessor :project_number
|
6191
|
+
|
6192
|
+
# Output only. The name of the model resource.
|
6193
|
+
# Corresponds to the JSON property `publisherModel`
|
6194
|
+
# @return [String]
|
6195
|
+
attr_accessor :publisher_model
|
6196
|
+
|
6197
|
+
def initialize(**args)
|
6198
|
+
update!(**args)
|
6199
|
+
end
|
6200
|
+
|
6201
|
+
# Update properties of this object
|
6202
|
+
def update!(**args)
|
6203
|
+
@destination = args[:destination] if args.key?(:destination)
|
6204
|
+
@generic_metadata = args[:generic_metadata] if args.key?(:generic_metadata)
|
6205
|
+
@model_id = args[:model_id] if args.key?(:model_id)
|
6206
|
+
@project_number = args[:project_number] if args.key?(:project_number)
|
6207
|
+
@publisher_model = args[:publisher_model] if args.key?(:publisher_model)
|
6208
|
+
end
|
6209
|
+
end
|
6210
|
+
|
6211
|
+
# Request message for ModelGardenService.Deploy.
|
6212
|
+
class GoogleCloudAiplatformV1DeployRequest
|
6213
|
+
include Google::Apis::Core::Hashable
|
6214
|
+
|
6215
|
+
# The deploy config to use for the deployment.
|
6216
|
+
# Corresponds to the JSON property `deployConfig`
|
6217
|
+
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1DeployRequestDeployConfig]
|
6218
|
+
attr_accessor :deploy_config
|
6219
|
+
|
6220
|
+
# The endpoint config to use for the deployment.
|
6221
|
+
# Corresponds to the JSON property `endpointConfig`
|
6222
|
+
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1DeployRequestEndpointConfig]
|
6223
|
+
attr_accessor :endpoint_config
|
6224
|
+
|
6225
|
+
# The Hugging Face model to deploy. Format: Hugging Face model ID like `google/
|
6226
|
+
# gemma-2-2b-it`.
|
6227
|
+
# Corresponds to the JSON property `huggingFaceModelId`
|
6228
|
+
# @return [String]
|
6229
|
+
attr_accessor :hugging_face_model_id
|
6230
|
+
|
6231
|
+
# The model config to use for the deployment.
|
6232
|
+
# Corresponds to the JSON property `modelConfig`
|
6233
|
+
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1DeployRequestModelConfig]
|
6234
|
+
attr_accessor :model_config
|
6235
|
+
|
6236
|
+
# The Model Garden model to deploy. Format: `publishers/`publisher`/models/`
|
6237
|
+
# publisher_model`@`version_id``, or `publishers/hf-`hugging-face-author`/models/
|
6238
|
+
# `hugging-face-model-name`@001`.
|
6239
|
+
# Corresponds to the JSON property `publisherModelName`
|
6240
|
+
# @return [String]
|
6241
|
+
attr_accessor :publisher_model_name
|
6242
|
+
|
6243
|
+
def initialize(**args)
|
6244
|
+
update!(**args)
|
6245
|
+
end
|
6246
|
+
|
6247
|
+
# Update properties of this object
|
6248
|
+
def update!(**args)
|
6249
|
+
@deploy_config = args[:deploy_config] if args.key?(:deploy_config)
|
6250
|
+
@endpoint_config = args[:endpoint_config] if args.key?(:endpoint_config)
|
6251
|
+
@hugging_face_model_id = args[:hugging_face_model_id] if args.key?(:hugging_face_model_id)
|
6252
|
+
@model_config = args[:model_config] if args.key?(:model_config)
|
6253
|
+
@publisher_model_name = args[:publisher_model_name] if args.key?(:publisher_model_name)
|
6254
|
+
end
|
6255
|
+
end
|
6256
|
+
|
6257
|
+
# The deploy config to use for the deployment.
|
6258
|
+
class GoogleCloudAiplatformV1DeployRequestDeployConfig
|
6259
|
+
include Google::Apis::Core::Hashable
|
6260
|
+
|
6261
|
+
# A description of resources that are dedicated to a DeployedModel or
|
6262
|
+
# DeployedIndex, and that need a higher degree of manual configuration.
|
6263
|
+
# Corresponds to the JSON property `dedicatedResources`
|
6264
|
+
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1DedicatedResources]
|
6265
|
+
attr_accessor :dedicated_resources
|
6266
|
+
|
6267
|
+
# Optional. If true, enable the QMT fast tryout feature for this model if
|
6268
|
+
# possible.
|
6269
|
+
# Corresponds to the JSON property `fastTryoutEnabled`
|
6270
|
+
# @return [Boolean]
|
6271
|
+
attr_accessor :fast_tryout_enabled
|
6272
|
+
alias_method :fast_tryout_enabled?, :fast_tryout_enabled
|
6273
|
+
|
6274
|
+
# Optional. System labels for Model Garden deployments. These labels are managed
|
6275
|
+
# by Google and for tracking purposes only.
|
6276
|
+
# Corresponds to the JSON property `systemLabels`
|
6277
|
+
# @return [Hash<String,String>]
|
6278
|
+
attr_accessor :system_labels
|
6279
|
+
|
6280
|
+
def initialize(**args)
|
6281
|
+
update!(**args)
|
6282
|
+
end
|
6283
|
+
|
6284
|
+
# Update properties of this object
|
6285
|
+
def update!(**args)
|
6286
|
+
@dedicated_resources = args[:dedicated_resources] if args.key?(:dedicated_resources)
|
6287
|
+
@fast_tryout_enabled = args[:fast_tryout_enabled] if args.key?(:fast_tryout_enabled)
|
6288
|
+
@system_labels = args[:system_labels] if args.key?(:system_labels)
|
6289
|
+
end
|
6290
|
+
end
|
6291
|
+
|
6292
|
+
# The endpoint config to use for the deployment.
|
6293
|
+
class GoogleCloudAiplatformV1DeployRequestEndpointConfig
|
6294
|
+
include Google::Apis::Core::Hashable
|
6295
|
+
|
6296
|
+
# Optional. If true, the endpoint will be exposed through a dedicated DNS [
|
6297
|
+
# Endpoint.dedicated_endpoint_dns]. Your request to the dedicated DNS will be
|
6298
|
+
# isolated from other users' traffic and will have better performance and
|
6299
|
+
# reliability. Note: Once you enabled dedicated endpoint, you won't be able to
|
6300
|
+
# send request to the shared DNS `region`-aiplatform.googleapis.com. The
|
6301
|
+
# limitations will be removed soon.
|
6302
|
+
# Corresponds to the JSON property `dedicatedEndpointEnabled`
|
6303
|
+
# @return [Boolean]
|
6304
|
+
attr_accessor :dedicated_endpoint_enabled
|
6305
|
+
alias_method :dedicated_endpoint_enabled?, :dedicated_endpoint_enabled
|
6306
|
+
|
6307
|
+
# Optional. The user-specified display name of the endpoint. If not set, a
|
6308
|
+
# default name will be used.
|
6309
|
+
# Corresponds to the JSON property `endpointDisplayName`
|
6310
|
+
# @return [String]
|
6311
|
+
attr_accessor :endpoint_display_name
|
6312
|
+
|
6313
|
+
def initialize(**args)
|
6314
|
+
update!(**args)
|
6315
|
+
end
|
6316
|
+
|
6317
|
+
# Update properties of this object
|
6318
|
+
def update!(**args)
|
6319
|
+
@dedicated_endpoint_enabled = args[:dedicated_endpoint_enabled] if args.key?(:dedicated_endpoint_enabled)
|
6320
|
+
@endpoint_display_name = args[:endpoint_display_name] if args.key?(:endpoint_display_name)
|
6321
|
+
end
|
6322
|
+
end
|
6323
|
+
|
6324
|
+
# The model config to use for the deployment.
|
6325
|
+
class GoogleCloudAiplatformV1DeployRequestModelConfig
|
6326
|
+
include Google::Apis::Core::Hashable
|
6327
|
+
|
6328
|
+
# Optional. Whether the user accepts the End User License Agreement (EULA) for
|
6329
|
+
# the model.
|
6330
|
+
# Corresponds to the JSON property `acceptEula`
|
6331
|
+
# @return [Boolean]
|
6332
|
+
attr_accessor :accept_eula
|
6333
|
+
alias_method :accept_eula?, :accept_eula
|
6334
|
+
|
6335
|
+
# Specification of a container for serving predictions. Some fields in this
|
6336
|
+
# message correspond to fields in the [Kubernetes Container v1 core
|
6337
|
+
# specification](https://kubernetes.io/docs/reference/generated/kubernetes-api/
|
6338
|
+
# v1.23/#container-v1-core).
|
6339
|
+
# Corresponds to the JSON property `containerSpec`
|
6340
|
+
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1ModelContainerSpec]
|
6341
|
+
attr_accessor :container_spec
|
6342
|
+
|
6343
|
+
# Optional. The Hugging Face read access token used to access the model
|
6344
|
+
# artifacts of gated models.
|
6345
|
+
# Corresponds to the JSON property `huggingFaceAccessToken`
|
6346
|
+
# @return [String]
|
6347
|
+
attr_accessor :hugging_face_access_token
|
6348
|
+
|
6349
|
+
# Optional. If true, the model will deploy with a cached version instead of
|
6350
|
+
# directly downloading the model artifacts from Hugging Face. This is suitable
|
6351
|
+
# for VPC-SC users with limited internet access.
|
6352
|
+
# Corresponds to the JSON property `huggingFaceCacheEnabled`
|
6353
|
+
# @return [Boolean]
|
6354
|
+
attr_accessor :hugging_face_cache_enabled
|
6355
|
+
alias_method :hugging_face_cache_enabled?, :hugging_face_cache_enabled
|
6356
|
+
|
6357
|
+
# Optional. The user-specified display name of the uploaded model. If not set, a
|
6358
|
+
# default name will be used.
|
6359
|
+
# Corresponds to the JSON property `modelDisplayName`
|
6360
|
+
# @return [String]
|
6361
|
+
attr_accessor :model_display_name
|
6362
|
+
|
6363
|
+
def initialize(**args)
|
6364
|
+
update!(**args)
|
6365
|
+
end
|
6366
|
+
|
6367
|
+
# Update properties of this object
|
6368
|
+
def update!(**args)
|
6369
|
+
@accept_eula = args[:accept_eula] if args.key?(:accept_eula)
|
6370
|
+
@container_spec = args[:container_spec] if args.key?(:container_spec)
|
6371
|
+
@hugging_face_access_token = args[:hugging_face_access_token] if args.key?(:hugging_face_access_token)
|
6372
|
+
@hugging_face_cache_enabled = args[:hugging_face_cache_enabled] if args.key?(:hugging_face_cache_enabled)
|
6373
|
+
@model_display_name = args[:model_display_name] if args.key?(:model_display_name)
|
6374
|
+
end
|
6375
|
+
end
|
6376
|
+
|
6377
|
+
# Response message for ModelGardenService.Deploy.
|
6378
|
+
class GoogleCloudAiplatformV1DeployResponse
|
6379
|
+
include Google::Apis::Core::Hashable
|
6380
|
+
|
6381
|
+
# Output only. The name of the Endpoint created. Format: `projects/`project`/
|
6382
|
+
# locations/`location`/endpoints/`endpoint``
|
6383
|
+
# Corresponds to the JSON property `endpoint`
|
6384
|
+
# @return [String]
|
6385
|
+
attr_accessor :endpoint
|
6386
|
+
|
6387
|
+
# Output only. The name of the Model created. Format: `projects/`project`/
|
6388
|
+
# locations/`location`/models/`model``
|
6389
|
+
# Corresponds to the JSON property `model`
|
6390
|
+
# @return [String]
|
6391
|
+
attr_accessor :model
|
6392
|
+
|
6393
|
+
# Output only. The name of the PublisherModel resource. Format: `publishers/`
|
6394
|
+
# publisher`/models/`publisher_model`@`version_id``, or `publishers/hf-`hugging-
|
6395
|
+
# face-author`/models/`hugging-face-model-name`@001`
|
6396
|
+
# Corresponds to the JSON property `publisherModel`
|
6397
|
+
# @return [String]
|
6398
|
+
attr_accessor :publisher_model
|
6399
|
+
|
6400
|
+
def initialize(**args)
|
6401
|
+
update!(**args)
|
6402
|
+
end
|
6403
|
+
|
6404
|
+
# Update properties of this object
|
6405
|
+
def update!(**args)
|
6406
|
+
@endpoint = args[:endpoint] if args.key?(:endpoint)
|
6407
|
+
@model = args[:model] if args.key?(:model)
|
6408
|
+
@publisher_model = args[:publisher_model] if args.key?(:publisher_model)
|
6409
|
+
end
|
6410
|
+
end
|
6411
|
+
|
6161
6412
|
# A deployment of an Index. IndexEndpoints contain one or more DeployedIndexes.
|
6162
6413
|
class GoogleCloudAiplatformV1DeployedIndex
|
6163
6414
|
include Google::Apis::Core::Hashable
|
@@ -6448,12 +6699,12 @@ module Google
|
|
6448
6699
|
# @return [String]
|
6449
6700
|
attr_accessor :id
|
6450
6701
|
|
6451
|
-
#
|
6452
|
-
#
|
6453
|
-
#
|
6454
|
-
#
|
6455
|
-
#
|
6456
|
-
#
|
6702
|
+
# The resource name of the Model that this is the deployment of. Note that the
|
6703
|
+
# Model may be in a different location than the DeployedModel's Endpoint. The
|
6704
|
+
# resource name may contain version id or version alias to specify the version.
|
6705
|
+
# Example: `projects/`project`/locations/`location`/models/`model`@2` or `
|
6706
|
+
# projects/`project`/locations/`location`/models/`model`@golden` if no version
|
6707
|
+
# is specified, the default version will be deployed.
|
6457
6708
|
# Corresponds to the JSON property `model`
|
6458
6709
|
# @return [String]
|
6459
6710
|
attr_accessor :model
|
@@ -6837,6 +7088,43 @@ module Google
|
|
6837
7088
|
end
|
6838
7089
|
end
|
6839
7090
|
|
7091
|
+
# DNS peering configuration. These configurations are used to create DNS peering
|
7092
|
+
# zones in the Vertex tenant project VPC, enabling resolution of records within
|
7093
|
+
# the specified domain hosted in the target network's Cloud DNS.
|
7094
|
+
class GoogleCloudAiplatformV1DnsPeeringConfig
|
7095
|
+
include Google::Apis::Core::Hashable
|
7096
|
+
|
7097
|
+
# Required. The DNS name suffix of the zone being peered to, e.g., "my-internal-
|
7098
|
+
# domain.corp.". Must end with a dot.
|
7099
|
+
# Corresponds to the JSON property `domain`
|
7100
|
+
# @return [String]
|
7101
|
+
attr_accessor :domain
|
7102
|
+
|
7103
|
+
# Required. The VPC network name in the target_project where the DNS zone
|
7104
|
+
# specified by 'domain' is visible.
|
7105
|
+
# Corresponds to the JSON property `targetNetwork`
|
7106
|
+
# @return [String]
|
7107
|
+
attr_accessor :target_network
|
7108
|
+
|
7109
|
+
# Required. The project ID hosting the Cloud DNS managed zone that contains the '
|
7110
|
+
# domain'. The Vertex AI Service Agent requires the dns.peer role on this
|
7111
|
+
# project.
|
7112
|
+
# Corresponds to the JSON property `targetProject`
|
7113
|
+
# @return [String]
|
7114
|
+
attr_accessor :target_project
|
7115
|
+
|
7116
|
+
def initialize(**args)
|
7117
|
+
update!(**args)
|
7118
|
+
end
|
7119
|
+
|
7120
|
+
# Update properties of this object
|
7121
|
+
def update!(**args)
|
7122
|
+
@domain = args[:domain] if args.key?(:domain)
|
7123
|
+
@target_network = args[:target_network] if args.key?(:target_network)
|
7124
|
+
@target_project = args[:target_project] if args.key?(:target_project)
|
7125
|
+
end
|
7126
|
+
end
|
7127
|
+
|
6840
7128
|
# A list of double values.
|
6841
7129
|
class GoogleCloudAiplatformV1DoubleArray
|
6842
7130
|
include Google::Apis::Core::Hashable
|
@@ -13136,7 +13424,9 @@ module Google
|
|
13136
13424
|
include Google::Apis::Core::Hashable
|
13137
13425
|
|
13138
13426
|
# Confidence score of the support references. Ranges from 0 to 1. 1 is the most
|
13139
|
-
# confident.
|
13427
|
+
# confident. For Gemini 2.0 and before, this list must have the same size as the
|
13428
|
+
# grounding_chunk_indices. For Gemini 2.5 and after, this list will be empty and
|
13429
|
+
# should be ignored.
|
13140
13430
|
# Corresponds to the JSON property `confidenceScores`
|
13141
13431
|
# @return [Array<Float>]
|
13142
13432
|
attr_accessor :confidence_scores
|
@@ -17482,6 +17772,16 @@ module Google
|
|
17482
17772
|
# @return [String]
|
17483
17773
|
attr_accessor :image_uri
|
17484
17774
|
|
17775
|
+
# Immutable. Invoke route prefix for the custom container. "/*" is the only
|
17776
|
+
# supported value right now. By setting this field, any non-root route on this
|
17777
|
+
# model will be accessible with [PredictionService.Invoke] eg: "/invoke/foo/bar".
|
17778
|
+
# Only one of `predict_route` or `invoke_route_prefix` can be set, and we
|
17779
|
+
# default to using `predict_route` if this field is not set. If this field is
|
17780
|
+
# set, the Model can only be deployed to dedicated endpoint.
|
17781
|
+
# Corresponds to the JSON property `invokeRoutePrefix`
|
17782
|
+
# @return [String]
|
17783
|
+
attr_accessor :invoke_route_prefix
|
17784
|
+
|
17485
17785
|
# Probe describes a health check to be performed against a container to
|
17486
17786
|
# determine whether it is alive or ready to receive traffic.
|
17487
17787
|
# Corresponds to the JSON property `livenessProbe`
|
@@ -17550,6 +17850,7 @@ module Google
|
|
17550
17850
|
@health_probe = args[:health_probe] if args.key?(:health_probe)
|
17551
17851
|
@health_route = args[:health_route] if args.key?(:health_route)
|
17552
17852
|
@image_uri = args[:image_uri] if args.key?(:image_uri)
|
17853
|
+
@invoke_route_prefix = args[:invoke_route_prefix] if args.key?(:invoke_route_prefix)
|
17553
17854
|
@liveness_probe = args[:liveness_probe] if args.key?(:liveness_probe)
|
17554
17855
|
@ports = args[:ports] if args.key?(:ports)
|
17555
17856
|
@predict_route = args[:predict_route] if args.key?(:predict_route)
|
@@ -20627,14 +20928,17 @@ module Google
|
|
20627
20928
|
class GoogleCloudAiplatformV1PscAutomationConfig
|
20628
20929
|
include Google::Apis::Core::Hashable
|
20629
20930
|
|
20630
|
-
# Output only.
|
20631
|
-
#
|
20931
|
+
# Output only. Error message if the PSC service automation failed.
|
20932
|
+
# Corresponds to the JSON property `errorMessage`
|
20933
|
+
# @return [String]
|
20934
|
+
attr_accessor :error_message
|
20935
|
+
|
20936
|
+
# Output only. Forwarding rule created by the PSC service automation.
|
20632
20937
|
# Corresponds to the JSON property `forwardingRule`
|
20633
20938
|
# @return [String]
|
20634
20939
|
attr_accessor :forwarding_rule
|
20635
20940
|
|
20636
|
-
# Output only. IP address rule created by the PSC service automation.
|
20637
|
-
# Vector search, use IndexPrivateEndpoint instead.
|
20941
|
+
# Output only. IP address rule created by the PSC service automation.
|
20638
20942
|
# Corresponds to the JSON property `ipAddress`
|
20639
20943
|
# @return [String]
|
20640
20944
|
attr_accessor :ip_address
|
@@ -20653,16 +20957,23 @@ module Google
|
|
20653
20957
|
# @return [String]
|
20654
20958
|
attr_accessor :project_id
|
20655
20959
|
|
20960
|
+
# Output only. The state of the PSC service automation.
|
20961
|
+
# Corresponds to the JSON property `state`
|
20962
|
+
# @return [String]
|
20963
|
+
attr_accessor :state
|
20964
|
+
|
20656
20965
|
def initialize(**args)
|
20657
20966
|
update!(**args)
|
20658
20967
|
end
|
20659
20968
|
|
20660
20969
|
# Update properties of this object
|
20661
20970
|
def update!(**args)
|
20971
|
+
@error_message = args[:error_message] if args.key?(:error_message)
|
20662
20972
|
@forwarding_rule = args[:forwarding_rule] if args.key?(:forwarding_rule)
|
20663
20973
|
@ip_address = args[:ip_address] if args.key?(:ip_address)
|
20664
20974
|
@network = args[:network] if args.key?(:network)
|
20665
20975
|
@project_id = args[:project_id] if args.key?(:project_id)
|
20976
|
+
@state = args[:state] if args.key?(:state)
|
20666
20977
|
end
|
20667
20978
|
end
|
20668
20979
|
|
@@ -21098,12 +21409,19 @@ module Google
|
|
21098
21409
|
# @return [String]
|
21099
21410
|
attr_accessor :text
|
21100
21411
|
|
21101
|
-
#
|
21412
|
+
# Optional. Indicates if the part is thought from the model.
|
21102
21413
|
# Corresponds to the JSON property `thought`
|
21103
21414
|
# @return [Boolean]
|
21104
21415
|
attr_accessor :thought
|
21105
21416
|
alias_method :thought?, :thought
|
21106
21417
|
|
21418
|
+
# Optional. An opaque signature for the thought so it can be reused in
|
21419
|
+
# subsequent requests.
|
21420
|
+
# Corresponds to the JSON property `thoughtSignature`
|
21421
|
+
# NOTE: Values are automatically base64 encoded/decoded in the client library.
|
21422
|
+
# @return [String]
|
21423
|
+
attr_accessor :thought_signature
|
21424
|
+
|
21107
21425
|
# Metadata describes the input video content.
|
21108
21426
|
# Corresponds to the JSON property `videoMetadata`
|
21109
21427
|
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1VideoMetadata]
|
@@ -21123,6 +21441,7 @@ module Google
|
|
21123
21441
|
@inline_data = args[:inline_data] if args.key?(:inline_data)
|
21124
21442
|
@text = args[:text] if args.key?(:text)
|
21125
21443
|
@thought = args[:thought] if args.key?(:thought)
|
21444
|
+
@thought_signature = args[:thought_signature] if args.key?(:thought_signature)
|
21126
21445
|
@video_metadata = args[:video_metadata] if args.key?(:video_metadata)
|
21127
21446
|
end
|
21128
21447
|
end
|
@@ -22674,6 +22993,14 @@ module Google
|
|
22674
22993
|
class GoogleCloudAiplatformV1PscInterfaceConfig
|
22675
22994
|
include Google::Apis::Core::Hashable
|
22676
22995
|
|
22996
|
+
# Optional. DNS peering configurations. When specified, Vertex AI will attempt
|
22997
|
+
# to configure DNS peering zones in the tenant project VPC to resolve the
|
22998
|
+
# specified domains using the target network's Cloud DNS. The user must grant
|
22999
|
+
# the dns.peer role to the Vertex AI Service Agent on the target project.
|
23000
|
+
# Corresponds to the JSON property `dnsPeeringConfigs`
|
23001
|
+
# @return [Array<Google::Apis::AiplatformV1::GoogleCloudAiplatformV1DnsPeeringConfig>]
|
23002
|
+
attr_accessor :dns_peering_configs
|
23003
|
+
|
22677
23004
|
# Optional. The name of the Compute Engine [network attachment](https://cloud.
|
22678
23005
|
# google.com/vpc/docs/about-network-attachments) to attach to the resource
|
22679
23006
|
# within the region and user project. To specify this field, you must have
|
@@ -22690,6 +23017,7 @@ module Google
|
|
22690
23017
|
|
22691
23018
|
# Update properties of this object
|
22692
23019
|
def update!(**args)
|
23020
|
+
@dns_peering_configs = args[:dns_peering_configs] if args.key?(:dns_peering_configs)
|
22693
23021
|
@network_attachment = args[:network_attachment] if args.key?(:network_attachment)
|
22694
23022
|
end
|
22695
23023
|
end
|
@@ -23087,6 +23415,12 @@ module Google
|
|
23087
23415
|
# @return [String]
|
23088
23416
|
attr_accessor :resource_use_case
|
23089
23417
|
|
23418
|
+
# Optional. For notebook resource, whether the notebook supports Workbench.
|
23419
|
+
# Corresponds to the JSON property `supportsWorkbench`
|
23420
|
+
# @return [Boolean]
|
23421
|
+
attr_accessor :supports_workbench
|
23422
|
+
alias_method :supports_workbench?, :supports_workbench
|
23423
|
+
|
23090
23424
|
# Required.
|
23091
23425
|
# Corresponds to the JSON property `title`
|
23092
23426
|
# @return [String]
|
@@ -23102,6 +23436,7 @@ module Google
|
|
23102
23436
|
@resource_description = args[:resource_description] if args.key?(:resource_description)
|
23103
23437
|
@resource_title = args[:resource_title] if args.key?(:resource_title)
|
23104
23438
|
@resource_use_case = args[:resource_use_case] if args.key?(:resource_use_case)
|
23439
|
+
@supports_workbench = args[:supports_workbench] if args.key?(:supports_workbench)
|
23105
23440
|
@title = args[:title] if args.key?(:title)
|
23106
23441
|
end
|
23107
23442
|
end
|
@@ -37095,6 +37430,11 @@ module Google
|
|
37095
37430
|
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1ToolCodeExecution]
|
37096
37431
|
attr_accessor :code_execution
|
37097
37432
|
|
37433
|
+
# Tool to support computer use.
|
37434
|
+
# Corresponds to the JSON property `computerUse`
|
37435
|
+
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1ToolComputerUse]
|
37436
|
+
attr_accessor :computer_use
|
37437
|
+
|
37098
37438
|
# Tool to search public web data, powered by Vertex AI Search and Sec4
|
37099
37439
|
# compliance.
|
37100
37440
|
# Corresponds to the JSON property `enterpriseWebSearch`
|
@@ -37127,6 +37467,11 @@ module Google
|
|
37127
37467
|
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1Retrieval]
|
37128
37468
|
attr_accessor :retrieval
|
37129
37469
|
|
37470
|
+
# Tool to support URL context.
|
37471
|
+
# Corresponds to the JSON property `urlContext`
|
37472
|
+
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1UrlContext]
|
37473
|
+
attr_accessor :url_context
|
37474
|
+
|
37130
37475
|
def initialize(**args)
|
37131
37476
|
update!(**args)
|
37132
37477
|
end
|
@@ -37134,11 +37479,13 @@ module Google
|
|
37134
37479
|
# Update properties of this object
|
37135
37480
|
def update!(**args)
|
37136
37481
|
@code_execution = args[:code_execution] if args.key?(:code_execution)
|
37482
|
+
@computer_use = args[:computer_use] if args.key?(:computer_use)
|
37137
37483
|
@enterprise_web_search = args[:enterprise_web_search] if args.key?(:enterprise_web_search)
|
37138
37484
|
@function_declarations = args[:function_declarations] if args.key?(:function_declarations)
|
37139
37485
|
@google_search = args[:google_search] if args.key?(:google_search)
|
37140
37486
|
@google_search_retrieval = args[:google_search_retrieval] if args.key?(:google_search_retrieval)
|
37141
37487
|
@retrieval = args[:retrieval] if args.key?(:retrieval)
|
37488
|
+
@url_context = args[:url_context] if args.key?(:url_context)
|
37142
37489
|
end
|
37143
37490
|
end
|
37144
37491
|
|
@@ -37283,6 +37630,25 @@ module Google
|
|
37283
37630
|
end
|
37284
37631
|
end
|
37285
37632
|
|
37633
|
+
# Tool to support computer use.
|
37634
|
+
class GoogleCloudAiplatformV1ToolComputerUse
|
37635
|
+
include Google::Apis::Core::Hashable
|
37636
|
+
|
37637
|
+
# Required. The environment being operated.
|
37638
|
+
# Corresponds to the JSON property `environment`
|
37639
|
+
# @return [String]
|
37640
|
+
attr_accessor :environment
|
37641
|
+
|
37642
|
+
def initialize(**args)
|
37643
|
+
update!(**args)
|
37644
|
+
end
|
37645
|
+
|
37646
|
+
# Update properties of this object
|
37647
|
+
def update!(**args)
|
37648
|
+
@environment = args[:environment] if args.key?(:environment)
|
37649
|
+
end
|
37650
|
+
end
|
37651
|
+
|
37286
37652
|
# Tool config. This config is shared for all tools provided in the request.
|
37287
37653
|
class GoogleCloudAiplatformV1ToolConfig
|
37288
37654
|
include Google::Apis::Core::Hashable
|
@@ -39567,6 +39933,63 @@ module Google
|
|
39567
39933
|
end
|
39568
39934
|
end
|
39569
39935
|
|
39936
|
+
# Tool to support URL context.
|
39937
|
+
class GoogleCloudAiplatformV1UrlContext
|
39938
|
+
include Google::Apis::Core::Hashable
|
39939
|
+
|
39940
|
+
def initialize(**args)
|
39941
|
+
update!(**args)
|
39942
|
+
end
|
39943
|
+
|
39944
|
+
# Update properties of this object
|
39945
|
+
def update!(**args)
|
39946
|
+
end
|
39947
|
+
end
|
39948
|
+
|
39949
|
+
# Metadata related to url context retrieval tool.
|
39950
|
+
class GoogleCloudAiplatformV1UrlContextMetadata
|
39951
|
+
include Google::Apis::Core::Hashable
|
39952
|
+
|
39953
|
+
# Output only. List of url context.
|
39954
|
+
# Corresponds to the JSON property `urlMetadata`
|
39955
|
+
# @return [Array<Google::Apis::AiplatformV1::GoogleCloudAiplatformV1UrlMetadata>]
|
39956
|
+
attr_accessor :url_metadata
|
39957
|
+
|
39958
|
+
def initialize(**args)
|
39959
|
+
update!(**args)
|
39960
|
+
end
|
39961
|
+
|
39962
|
+
# Update properties of this object
|
39963
|
+
def update!(**args)
|
39964
|
+
@url_metadata = args[:url_metadata] if args.key?(:url_metadata)
|
39965
|
+
end
|
39966
|
+
end
|
39967
|
+
|
39968
|
+
# Context of the a single url retrieval.
|
39969
|
+
class GoogleCloudAiplatformV1UrlMetadata
|
39970
|
+
include Google::Apis::Core::Hashable
|
39971
|
+
|
39972
|
+
# Retrieved url by the tool.
|
39973
|
+
# Corresponds to the JSON property `retrievedUrl`
|
39974
|
+
# @return [String]
|
39975
|
+
attr_accessor :retrieved_url
|
39976
|
+
|
39977
|
+
# Status of the url retrieval.
|
39978
|
+
# Corresponds to the JSON property `urlRetrievalStatus`
|
39979
|
+
# @return [String]
|
39980
|
+
attr_accessor :url_retrieval_status
|
39981
|
+
|
39982
|
+
def initialize(**args)
|
39983
|
+
update!(**args)
|
39984
|
+
end
|
39985
|
+
|
39986
|
+
# Update properties of this object
|
39987
|
+
def update!(**args)
|
39988
|
+
@retrieved_url = args[:retrieved_url] if args.key?(:retrieved_url)
|
39989
|
+
@url_retrieval_status = args[:url_retrieval_status] if args.key?(:url_retrieval_status)
|
39990
|
+
end
|
39991
|
+
end
|
39992
|
+
|
39570
39993
|
# References an API call. It contains more information about long running
|
39571
39994
|
# operation and Jobs that are triggered by the API call.
|
39572
39995
|
class GoogleCloudAiplatformV1UserActionReference
|
@@ -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.57.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 = "20250606"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -1126,6 +1126,42 @@ module Google
|
|
1126
1126
|
include Google::Apis::Core::JsonObjectSupport
|
1127
1127
|
end
|
1128
1128
|
|
1129
|
+
class GoogleCloudAiplatformV1DeployOperationMetadata
|
1130
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1131
|
+
|
1132
|
+
include Google::Apis::Core::JsonObjectSupport
|
1133
|
+
end
|
1134
|
+
|
1135
|
+
class GoogleCloudAiplatformV1DeployRequest
|
1136
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1137
|
+
|
1138
|
+
include Google::Apis::Core::JsonObjectSupport
|
1139
|
+
end
|
1140
|
+
|
1141
|
+
class GoogleCloudAiplatformV1DeployRequestDeployConfig
|
1142
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1143
|
+
|
1144
|
+
include Google::Apis::Core::JsonObjectSupport
|
1145
|
+
end
|
1146
|
+
|
1147
|
+
class GoogleCloudAiplatformV1DeployRequestEndpointConfig
|
1148
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1149
|
+
|
1150
|
+
include Google::Apis::Core::JsonObjectSupport
|
1151
|
+
end
|
1152
|
+
|
1153
|
+
class GoogleCloudAiplatformV1DeployRequestModelConfig
|
1154
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1155
|
+
|
1156
|
+
include Google::Apis::Core::JsonObjectSupport
|
1157
|
+
end
|
1158
|
+
|
1159
|
+
class GoogleCloudAiplatformV1DeployResponse
|
1160
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1161
|
+
|
1162
|
+
include Google::Apis::Core::JsonObjectSupport
|
1163
|
+
end
|
1164
|
+
|
1129
1165
|
class GoogleCloudAiplatformV1DeployedIndex
|
1130
1166
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1131
1167
|
|
@@ -1216,6 +1252,12 @@ module Google
|
|
1216
1252
|
include Google::Apis::Core::JsonObjectSupport
|
1217
1253
|
end
|
1218
1254
|
|
1255
|
+
class GoogleCloudAiplatformV1DnsPeeringConfig
|
1256
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1257
|
+
|
1258
|
+
include Google::Apis::Core::JsonObjectSupport
|
1259
|
+
end
|
1260
|
+
|
1219
1261
|
class GoogleCloudAiplatformV1DoubleArray
|
1220
1262
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1221
1263
|
|
@@ -6142,6 +6184,12 @@ module Google
|
|
6142
6184
|
include Google::Apis::Core::JsonObjectSupport
|
6143
6185
|
end
|
6144
6186
|
|
6187
|
+
class GoogleCloudAiplatformV1ToolComputerUse
|
6188
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
6189
|
+
|
6190
|
+
include Google::Apis::Core::JsonObjectSupport
|
6191
|
+
end
|
6192
|
+
|
6145
6193
|
class GoogleCloudAiplatformV1ToolConfig
|
6146
6194
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
6147
6195
|
|
@@ -6682,6 +6730,24 @@ module Google
|
|
6682
6730
|
include Google::Apis::Core::JsonObjectSupport
|
6683
6731
|
end
|
6684
6732
|
|
6733
|
+
class GoogleCloudAiplatformV1UrlContext
|
6734
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
6735
|
+
|
6736
|
+
include Google::Apis::Core::JsonObjectSupport
|
6737
|
+
end
|
6738
|
+
|
6739
|
+
class GoogleCloudAiplatformV1UrlContextMetadata
|
6740
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
6741
|
+
|
6742
|
+
include Google::Apis::Core::JsonObjectSupport
|
6743
|
+
end
|
6744
|
+
|
6745
|
+
class GoogleCloudAiplatformV1UrlMetadata
|
6746
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
6747
|
+
|
6748
|
+
include Google::Apis::Core::JsonObjectSupport
|
6749
|
+
end
|
6750
|
+
|
6685
6751
|
class GoogleCloudAiplatformV1UserActionReference
|
6686
6752
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
6687
6753
|
|
@@ -7798,6 +7864,8 @@ module Google
|
|
7798
7864
|
|
7799
7865
|
collection :safety_ratings, as: 'safetyRatings', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1SafetyRating, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1SafetyRating::Representation
|
7800
7866
|
|
7867
|
+
property :url_context_metadata, as: 'urlContextMetadata', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1UrlContextMetadata, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1UrlContextMetadata::Representation
|
7868
|
+
|
7801
7869
|
end
|
7802
7870
|
end
|
7803
7871
|
|
@@ -8673,6 +8741,71 @@ module Google
|
|
8673
8741
|
end
|
8674
8742
|
end
|
8675
8743
|
|
8744
|
+
class GoogleCloudAiplatformV1DeployOperationMetadata
|
8745
|
+
# @private
|
8746
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
8747
|
+
property :destination, as: 'destination'
|
8748
|
+
property :generic_metadata, as: 'genericMetadata', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1GenericOperationMetadata, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1GenericOperationMetadata::Representation
|
8749
|
+
|
8750
|
+
property :model_id, as: 'modelId'
|
8751
|
+
property :project_number, :numeric_string => true, as: 'projectNumber'
|
8752
|
+
property :publisher_model, as: 'publisherModel'
|
8753
|
+
end
|
8754
|
+
end
|
8755
|
+
|
8756
|
+
class GoogleCloudAiplatformV1DeployRequest
|
8757
|
+
# @private
|
8758
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
8759
|
+
property :deploy_config, as: 'deployConfig', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1DeployRequestDeployConfig, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1DeployRequestDeployConfig::Representation
|
8760
|
+
|
8761
|
+
property :endpoint_config, as: 'endpointConfig', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1DeployRequestEndpointConfig, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1DeployRequestEndpointConfig::Representation
|
8762
|
+
|
8763
|
+
property :hugging_face_model_id, as: 'huggingFaceModelId'
|
8764
|
+
property :model_config, as: 'modelConfig', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1DeployRequestModelConfig, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1DeployRequestModelConfig::Representation
|
8765
|
+
|
8766
|
+
property :publisher_model_name, as: 'publisherModelName'
|
8767
|
+
end
|
8768
|
+
end
|
8769
|
+
|
8770
|
+
class GoogleCloudAiplatformV1DeployRequestDeployConfig
|
8771
|
+
# @private
|
8772
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
8773
|
+
property :dedicated_resources, as: 'dedicatedResources', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1DedicatedResources, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1DedicatedResources::Representation
|
8774
|
+
|
8775
|
+
property :fast_tryout_enabled, as: 'fastTryoutEnabled'
|
8776
|
+
hash :system_labels, as: 'systemLabels'
|
8777
|
+
end
|
8778
|
+
end
|
8779
|
+
|
8780
|
+
class GoogleCloudAiplatformV1DeployRequestEndpointConfig
|
8781
|
+
# @private
|
8782
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
8783
|
+
property :dedicated_endpoint_enabled, as: 'dedicatedEndpointEnabled'
|
8784
|
+
property :endpoint_display_name, as: 'endpointDisplayName'
|
8785
|
+
end
|
8786
|
+
end
|
8787
|
+
|
8788
|
+
class GoogleCloudAiplatformV1DeployRequestModelConfig
|
8789
|
+
# @private
|
8790
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
8791
|
+
property :accept_eula, as: 'acceptEula'
|
8792
|
+
property :container_spec, as: 'containerSpec', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1ModelContainerSpec, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1ModelContainerSpec::Representation
|
8793
|
+
|
8794
|
+
property :hugging_face_access_token, as: 'huggingFaceAccessToken'
|
8795
|
+
property :hugging_face_cache_enabled, as: 'huggingFaceCacheEnabled'
|
8796
|
+
property :model_display_name, as: 'modelDisplayName'
|
8797
|
+
end
|
8798
|
+
end
|
8799
|
+
|
8800
|
+
class GoogleCloudAiplatformV1DeployResponse
|
8801
|
+
# @private
|
8802
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
8803
|
+
property :endpoint, as: 'endpoint'
|
8804
|
+
property :model, as: 'model'
|
8805
|
+
property :publisher_model, as: 'publisherModel'
|
8806
|
+
end
|
8807
|
+
end
|
8808
|
+
|
8676
8809
|
class GoogleCloudAiplatformV1DeployedIndex
|
8677
8810
|
# @private
|
8678
8811
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -8845,6 +8978,15 @@ module Google
|
|
8845
8978
|
end
|
8846
8979
|
end
|
8847
8980
|
|
8981
|
+
class GoogleCloudAiplatformV1DnsPeeringConfig
|
8982
|
+
# @private
|
8983
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
8984
|
+
property :domain, as: 'domain'
|
8985
|
+
property :target_network, as: 'targetNetwork'
|
8986
|
+
property :target_project, as: 'targetProject'
|
8987
|
+
end
|
8988
|
+
end
|
8989
|
+
|
8848
8990
|
class GoogleCloudAiplatformV1DoubleArray
|
8849
8991
|
# @private
|
8850
8992
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -11838,6 +11980,7 @@ module Google
|
|
11838
11980
|
|
11839
11981
|
property :health_route, as: 'healthRoute'
|
11840
11982
|
property :image_uri, as: 'imageUri'
|
11983
|
+
property :invoke_route_prefix, as: 'invokeRoutePrefix'
|
11841
11984
|
property :liveness_probe, as: 'livenessProbe', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1Probe, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1Probe::Representation
|
11842
11985
|
|
11843
11986
|
collection :ports, as: 'ports', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1Port, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1Port::Representation
|
@@ -12685,10 +12828,12 @@ module Google
|
|
12685
12828
|
class GoogleCloudAiplatformV1PscAutomationConfig
|
12686
12829
|
# @private
|
12687
12830
|
class Representation < Google::Apis::Core::JsonRepresentation
|
12831
|
+
property :error_message, as: 'errorMessage'
|
12688
12832
|
property :forwarding_rule, as: 'forwardingRule'
|
12689
12833
|
property :ip_address, as: 'ipAddress'
|
12690
12834
|
property :network, as: 'network'
|
12691
12835
|
property :project_id, as: 'projectId'
|
12836
|
+
property :state, as: 'state'
|
12692
12837
|
end
|
12693
12838
|
end
|
12694
12839
|
|
@@ -12826,6 +12971,7 @@ module Google
|
|
12826
12971
|
|
12827
12972
|
property :text, as: 'text'
|
12828
12973
|
property :thought, as: 'thought'
|
12974
|
+
property :thought_signature, :base64 => true, as: 'thoughtSignature'
|
12829
12975
|
property :video_metadata, as: 'videoMetadata', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1VideoMetadata, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1VideoMetadata::Representation
|
12830
12976
|
|
12831
12977
|
end
|
@@ -13240,6 +13386,8 @@ module Google
|
|
13240
13386
|
class GoogleCloudAiplatformV1PscInterfaceConfig
|
13241
13387
|
# @private
|
13242
13388
|
class Representation < Google::Apis::Core::JsonRepresentation
|
13389
|
+
collection :dns_peering_configs, as: 'dnsPeeringConfigs', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1DnsPeeringConfig, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1DnsPeeringConfig::Representation
|
13390
|
+
|
13243
13391
|
property :network_attachment, as: 'networkAttachment'
|
13244
13392
|
end
|
13245
13393
|
end
|
@@ -13364,6 +13512,7 @@ module Google
|
|
13364
13512
|
property :resource_description, as: 'resourceDescription'
|
13365
13513
|
property :resource_title, as: 'resourceTitle'
|
13366
13514
|
property :resource_use_case, as: 'resourceUseCase'
|
13515
|
+
property :supports_workbench, as: 'supportsWorkbench'
|
13367
13516
|
property :title, as: 'title'
|
13368
13517
|
end
|
13369
13518
|
end
|
@@ -17301,6 +17450,8 @@ module Google
|
|
17301
17450
|
class Representation < Google::Apis::Core::JsonRepresentation
|
17302
17451
|
property :code_execution, as: 'codeExecution', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1ToolCodeExecution, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1ToolCodeExecution::Representation
|
17303
17452
|
|
17453
|
+
property :computer_use, as: 'computerUse', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1ToolComputerUse, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1ToolComputerUse::Representation
|
17454
|
+
|
17304
17455
|
property :enterprise_web_search, as: 'enterpriseWebSearch', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1EnterpriseWebSearch, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1EnterpriseWebSearch::Representation
|
17305
17456
|
|
17306
17457
|
collection :function_declarations, as: 'functionDeclarations', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1FunctionDeclaration, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1FunctionDeclaration::Representation
|
@@ -17311,6 +17462,8 @@ module Google
|
|
17311
17462
|
|
17312
17463
|
property :retrieval, as: 'retrieval', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1Retrieval, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1Retrieval::Representation
|
17313
17464
|
|
17465
|
+
property :url_context, as: 'urlContext', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1UrlContext, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1UrlContext::Representation
|
17466
|
+
|
17314
17467
|
end
|
17315
17468
|
end
|
17316
17469
|
|
@@ -17367,6 +17520,13 @@ module Google
|
|
17367
17520
|
end
|
17368
17521
|
end
|
17369
17522
|
|
17523
|
+
class GoogleCloudAiplatformV1ToolComputerUse
|
17524
|
+
# @private
|
17525
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
17526
|
+
property :environment, as: 'environment'
|
17527
|
+
end
|
17528
|
+
end
|
17529
|
+
|
17370
17530
|
class GoogleCloudAiplatformV1ToolConfig
|
17371
17531
|
# @private
|
17372
17532
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -18152,6 +18312,28 @@ module Google
|
|
18152
18312
|
end
|
18153
18313
|
end
|
18154
18314
|
|
18315
|
+
class GoogleCloudAiplatformV1UrlContext
|
18316
|
+
# @private
|
18317
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
18318
|
+
end
|
18319
|
+
end
|
18320
|
+
|
18321
|
+
class GoogleCloudAiplatformV1UrlContextMetadata
|
18322
|
+
# @private
|
18323
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
18324
|
+
collection :url_metadata, as: 'urlMetadata', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1UrlMetadata, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1UrlMetadata::Representation
|
18325
|
+
|
18326
|
+
end
|
18327
|
+
end
|
18328
|
+
|
18329
|
+
class GoogleCloudAiplatformV1UrlMetadata
|
18330
|
+
# @private
|
18331
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
18332
|
+
property :retrieved_url, as: 'retrievedUrl'
|
18333
|
+
property :url_retrieval_status, as: 'urlRetrievalStatus'
|
18334
|
+
end
|
18335
|
+
end
|
18336
|
+
|
18155
18337
|
class GoogleCloudAiplatformV1UserActionReference
|
18156
18338
|
# @private
|
18157
18339
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1040,6 +1040,40 @@ module Google
|
|
1040
1040
|
execute_or_queue_command(command, &block)
|
1041
1041
|
end
|
1042
1042
|
|
1043
|
+
# Deploys a model to a new endpoint.
|
1044
|
+
# @param [String] destination
|
1045
|
+
# Required. The resource name of the Location to deploy the model in. Format: `
|
1046
|
+
# projects/`project`/locations/`location``
|
1047
|
+
# @param [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1DeployRequest] google_cloud_aiplatform_v1_deploy_request_object
|
1048
|
+
# @param [String] fields
|
1049
|
+
# Selector specifying which fields to include in a partial response.
|
1050
|
+
# @param [String] quota_user
|
1051
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
1052
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
1053
|
+
# @param [Google::Apis::RequestOptions] options
|
1054
|
+
# Request-specific options
|
1055
|
+
#
|
1056
|
+
# @yield [result, err] Result & error if block supplied
|
1057
|
+
# @yieldparam result [Google::Apis::AiplatformV1::GoogleLongrunningOperation] parsed result object
|
1058
|
+
# @yieldparam err [StandardError] error object if request failed
|
1059
|
+
#
|
1060
|
+
# @return [Google::Apis::AiplatformV1::GoogleLongrunningOperation]
|
1061
|
+
#
|
1062
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
1063
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
1064
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
1065
|
+
def deploy_project_location(destination, google_cloud_aiplatform_v1_deploy_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
|
1066
|
+
command = make_simple_command(:post, 'v1/{+destination}:deploy', options)
|
1067
|
+
command.request_representation = Google::Apis::AiplatformV1::GoogleCloudAiplatformV1DeployRequest::Representation
|
1068
|
+
command.request_object = google_cloud_aiplatform_v1_deploy_request_object
|
1069
|
+
command.response_representation = Google::Apis::AiplatformV1::GoogleLongrunningOperation::Representation
|
1070
|
+
command.response_class = Google::Apis::AiplatformV1::GoogleLongrunningOperation
|
1071
|
+
command.params['destination'] = destination unless destination.nil?
|
1072
|
+
command.query['fields'] = fields unless fields.nil?
|
1073
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
1074
|
+
execute_or_queue_command(command, &block)
|
1075
|
+
end
|
1076
|
+
|
1043
1077
|
# Evaluates a dataset based on a set of given metrics.
|
1044
1078
|
# @param [String] location
|
1045
1079
|
# Required. The resource name of the Location to evaluate the dataset. Format: `
|
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.57.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.57.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:
|