Skip to content

Commit 2c20485

Browse files
feat(all): auto-regenerate discovery clients (#3241)
1 parent c4865bb commit 2c20485

39 files changed

+14914
-5934
lines changed

aiplatform/v1/aiplatform-api.json

Lines changed: 32 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4543,6 +4543,11 @@
45434543
"location": "query",
45444544
"type": "string"
45454545
},
4546+
"gdcZone": {
4547+
"description": "Optional. Configures the Google Distributed Cloud (GDC) environment for online prediction. Only set this field when the Endpoint is to be deployed in a GDC environment.",
4548+
"location": "query",
4549+
"type": "string"
4550+
},
45464551
"orderBy": {
45474552
"description": "A comma-separated list of fields to order by, sorted in ascending order. Use \"desc\" after a field name for descending. Supported fields: * `display_name` * `create_time` * `update_time` Example: `display_name, create_time desc`.",
45484553
"location": "query",
@@ -4582,7 +4587,7 @@
45824587
]
45834588
},
45844589
"mutateDeployedModel": {
4585-
"description": "Updates an existing deployed model. Updatable fields include `min_replica_count`, `max_replica_count`, `autoscaling_metric_specs`, `disable_container_logging` (v1 only), and `enable_container_logging` (v1beta1 only).",
4590+
"description": "Updates an existing deployed model. Updatable fields include `min_replica_count`, `max_replica_count`, `required_replica_count`, `autoscaling_metric_specs`, `disable_container_logging` (v1 only), and `enable_container_logging` (v1beta1 only).",
45864591
"flatPath": "v1/projects/{projectsId}/locations/{locationsId}/endpoints/{endpointsId}:mutateDeployedModel",
45874592
"httpMethod": "POST",
45884593
"id": "aiplatform.projects.locations.endpoints.mutateDeployedModel",
@@ -20253,7 +20258,7 @@
2025320258
}
2025420259
}
2025520260
},
20256-
"revision": "20250711",
20261+
"revision": "20250715",
2025720262
"rootUrl": "https://aiplatform.googleapis.com/",
2025820263
"schemas": {
2025920264
"CloudAiLargeModelsVisionGenerateVideoResponse": {
@@ -24410,6 +24415,10 @@
2441024415
"modelDisplayName": {
2441124416
"description": "Optional. The user-specified display name of the uploaded model. If not set, a default name will be used.",
2441224417
"type": "string"
24418+
},
24419+
"modelUserId": {
24420+
"description": "Optional. The ID to use for the uploaded Model, which will become the final component of the model resource name. When not provided, Vertex AI will generate a value for this ID. When Model Registry model is provided, this field will be ignored. This value may be up to 63 characters, and valid characters are `[a-z0-9_-]`. The first character cannot be a number or hyphen.",
24421+
"type": "string"
2441324422
}
2441424423
},
2441524424
"type": "object"
@@ -24608,6 +24617,10 @@
2460824617
"$ref": "GoogleCloudAiplatformV1FasterDeploymentConfig",
2460924618
"description": "Configuration for faster model deployment."
2461024619
},
24620+
"gdcConnectedModel": {
24621+
"description": "GDC pretrained / Gemini model name. The model name is a plain model name, e.g. gemini-1.5-flash-002.",
24622+
"type": "string"
24623+
},
2461124624
"id": {
2461224625
"description": "Immutable. The ID of the DeployedModel. If not provided upon deployment, Vertex AI will generate a value for this ID. This value should be 1-10 characters, and valid characters are `/[0-9]/`.",
2461324626
"type": "string"
@@ -24960,6 +24973,10 @@
2496024973
"description": "Used to perform consistent read-modify-write updates. If not set, a blind \"overwrite\" update happens.",
2496124974
"type": "string"
2496224975
},
24976+
"gdcConfig": {
24977+
"$ref": "GoogleCloudAiplatformV1GdcConfig",
24978+
"description": "Configures the Google Distributed Cloud (GDC) environment for online prediction. Only set this field when the Endpoint is to be deployed in a GDC environment."
24979+
},
2496324980
"genAiAdvancedFeaturesConfig": {
2496424981
"$ref": "GoogleCloudAiplatformV1GenAiAdvancedFeaturesConfig",
2496524982
"description": "Optional. Configuration for GenAiAdvancedFeatures. If the endpoint is serving GenAI models, advanced features like native RAG integration can be configured. Currently, only Model Garden models are supported."
@@ -28374,6 +28391,17 @@
2837428391
},
2837528392
"type": "object"
2837628393
},
28394+
"GoogleCloudAiplatformV1GdcConfig": {
28395+
"description": "Google Distributed Cloud (GDC) config.",
28396+
"id": "GoogleCloudAiplatformV1GdcConfig",
28397+
"properties": {
28398+
"zone": {
28399+
"description": "GDC zone. A cluster will be designated for the Vertex AI workload in this zone.",
28400+
"type": "string"
28401+
}
28402+
},
28403+
"type": "object"
28404+
},
2837728405
"GoogleCloudAiplatformV1GenAiAdvancedFeaturesConfig": {
2837828406
"description": "Configuration for GenAiAdvancedFeatures.",
2837928407
"id": "GoogleCloudAiplatformV1GenAiAdvancedFeaturesConfig",
@@ -33045,7 +33073,7 @@
3304533073
"properties": {
3304633074
"deployedModel": {
3304733075
"$ref": "GoogleCloudAiplatformV1DeployedModel",
33048-
"description": "Required. The DeployedModel to be mutated within the Endpoint. Only the following fields can be mutated: * `min_replica_count` in either DedicatedResources or AutomaticResources * `max_replica_count` in either DedicatedResources or AutomaticResources * autoscaling_metric_specs * `disable_container_logging` (v1 only) * `enable_container_logging` (v1beta1 only)"
33076+
"description": "Required. The DeployedModel to be mutated within the Endpoint. Only the following fields can be mutated: * `min_replica_count` in either DedicatedResources or AutomaticResources * `max_replica_count` in either DedicatedResources or AutomaticResources * `required_replica_count` in DedicatedResources * autoscaling_metric_specs * `disable_container_logging` (v1 only) * `enable_container_logging` (v1beta1 only)"
3304933077
},
3305033078
"updateMask": {
3305133079
"description": "Required. The update mask applies to the resource. See google.protobuf.FieldMask.",
@@ -44628,7 +44656,7 @@
4462844656
"type": "string"
4462944657
},
4463044658
"learningRateMultiplier": {
44631-
"description": "Optional. Multiplier for adjusting the default learning rate. Mutually exclusive with `learning_rate`.",
44659+
"description": "Optional. Multiplier for adjusting the default learning rate. Mutually exclusive with `learning_rate`. This feature is only available for 1P models.",
4463244660
"format": "double",
4463344661
"type": "number"
4463444662
}

aiplatform/v1/aiplatform-gen.go

Lines changed: 50 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)