google-apis-aiplatform_v1 0.56.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
@@ -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
|
|
@@ -22682,6 +22993,14 @@ module Google
|
|
22682
22993
|
class GoogleCloudAiplatformV1PscInterfaceConfig
|
22683
22994
|
include Google::Apis::Core::Hashable
|
22684
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
|
+
|
22685
23004
|
# Optional. The name of the Compute Engine [network attachment](https://cloud.
|
22686
23005
|
# google.com/vpc/docs/about-network-attachments) to attach to the resource
|
22687
23006
|
# within the region and user project. To specify this field, you must have
|
@@ -22698,6 +23017,7 @@ module Google
|
|
22698
23017
|
|
22699
23018
|
# Update properties of this object
|
22700
23019
|
def update!(**args)
|
23020
|
+
@dns_peering_configs = args[:dns_peering_configs] if args.key?(:dns_peering_configs)
|
22701
23021
|
@network_attachment = args[:network_attachment] if args.key?(:network_attachment)
|
22702
23022
|
end
|
22703
23023
|
end
|
@@ -23095,6 +23415,12 @@ module Google
|
|
23095
23415
|
# @return [String]
|
23096
23416
|
attr_accessor :resource_use_case
|
23097
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
|
+
|
23098
23424
|
# Required.
|
23099
23425
|
# Corresponds to the JSON property `title`
|
23100
23426
|
# @return [String]
|
@@ -23110,6 +23436,7 @@ module Google
|
|
23110
23436
|
@resource_description = args[:resource_description] if args.key?(:resource_description)
|
23111
23437
|
@resource_title = args[:resource_title] if args.key?(:resource_title)
|
23112
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)
|
23113
23440
|
@title = args[:title] if args.key?(:title)
|
23114
23441
|
end
|
23115
23442
|
end
|
@@ -39619,6 +39946,50 @@ module Google
|
|
39619
39946
|
end
|
39620
39947
|
end
|
39621
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
|
+
|
39622
39993
|
# References an API call. It contains more information about long running
|
39623
39994
|
# operation and Jobs that are triggered by the API call.
|
39624
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
|
|
@@ -6694,6 +6736,18 @@ module Google
|
|
6694
6736
|
include Google::Apis::Core::JsonObjectSupport
|
6695
6737
|
end
|
6696
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
|
+
|
6697
6751
|
class GoogleCloudAiplatformV1UserActionReference
|
6698
6752
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
6699
6753
|
|
@@ -7810,6 +7864,8 @@ module Google
|
|
7810
7864
|
|
7811
7865
|
collection :safety_ratings, as: 'safetyRatings', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1SafetyRating, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1SafetyRating::Representation
|
7812
7866
|
|
7867
|
+
property :url_context_metadata, as: 'urlContextMetadata', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1UrlContextMetadata, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1UrlContextMetadata::Representation
|
7868
|
+
|
7813
7869
|
end
|
7814
7870
|
end
|
7815
7871
|
|
@@ -8685,6 +8741,71 @@ module Google
|
|
8685
8741
|
end
|
8686
8742
|
end
|
8687
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
|
+
|
8688
8809
|
class GoogleCloudAiplatformV1DeployedIndex
|
8689
8810
|
# @private
|
8690
8811
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -8857,6 +8978,15 @@ module Google
|
|
8857
8978
|
end
|
8858
8979
|
end
|
8859
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
|
+
|
8860
8990
|
class GoogleCloudAiplatformV1DoubleArray
|
8861
8991
|
# @private
|
8862
8992
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -11850,6 +11980,7 @@ module Google
|
|
11850
11980
|
|
11851
11981
|
property :health_route, as: 'healthRoute'
|
11852
11982
|
property :image_uri, as: 'imageUri'
|
11983
|
+
property :invoke_route_prefix, as: 'invokeRoutePrefix'
|
11853
11984
|
property :liveness_probe, as: 'livenessProbe', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1Probe, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1Probe::Representation
|
11854
11985
|
|
11855
11986
|
collection :ports, as: 'ports', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1Port, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1Port::Representation
|
@@ -12697,10 +12828,12 @@ module Google
|
|
12697
12828
|
class GoogleCloudAiplatformV1PscAutomationConfig
|
12698
12829
|
# @private
|
12699
12830
|
class Representation < Google::Apis::Core::JsonRepresentation
|
12831
|
+
property :error_message, as: 'errorMessage'
|
12700
12832
|
property :forwarding_rule, as: 'forwardingRule'
|
12701
12833
|
property :ip_address, as: 'ipAddress'
|
12702
12834
|
property :network, as: 'network'
|
12703
12835
|
property :project_id, as: 'projectId'
|
12836
|
+
property :state, as: 'state'
|
12704
12837
|
end
|
12705
12838
|
end
|
12706
12839
|
|
@@ -13253,6 +13386,8 @@ module Google
|
|
13253
13386
|
class GoogleCloudAiplatformV1PscInterfaceConfig
|
13254
13387
|
# @private
|
13255
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
|
+
|
13256
13391
|
property :network_attachment, as: 'networkAttachment'
|
13257
13392
|
end
|
13258
13393
|
end
|
@@ -13377,6 +13512,7 @@ module Google
|
|
13377
13512
|
property :resource_description, as: 'resourceDescription'
|
13378
13513
|
property :resource_title, as: 'resourceTitle'
|
13379
13514
|
property :resource_use_case, as: 'resourceUseCase'
|
13515
|
+
property :supports_workbench, as: 'supportsWorkbench'
|
13380
13516
|
property :title, as: 'title'
|
13381
13517
|
end
|
13382
13518
|
end
|
@@ -18182,6 +18318,22 @@ module Google
|
|
18182
18318
|
end
|
18183
18319
|
end
|
18184
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
|
+
|
18185
18337
|
class GoogleCloudAiplatformV1UserActionReference
|
18186
18338
|
# @private
|
18187
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:
|