Skip to content

Commit 23a4031

Browse files
feat(all): auto-regenerate discovery clients (#3270)
1 parent 2dbf1ac commit 23a4031

18 files changed

+2521
-119
lines changed

aiplatform/v1/aiplatform-api.json

Lines changed: 65 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20286,7 +20286,7 @@
2028620286
}
2028720287
}
2028820288
},
20289-
"revision": "20250731",
20289+
"revision": "20250806",
2029020290
"rootUrl": "https://aiplatform.googleapis.com/",
2029120291
"schemas": {
2029220292
"CloudAiLargeModelsVisionGenerateVideoResponse": {
@@ -22338,6 +22338,7 @@
2233822338
"PROHIBITED_CONTENT",
2233922339
"SPII",
2234022340
"MALFORMED_FUNCTION_CALL",
22341+
"MODEL_ARMOR",
2234122342
"IMAGE_SAFETY",
2234222343
"IMAGE_PROHIBITED_CONTENT",
2234322344
"IMAGE_RECITATION",
@@ -22355,6 +22356,7 @@
2235522356
"Token generation stopped for potentially containing prohibited content.",
2235622357
"Token generation stopped because the content potentially contains Sensitive Personally Identifiable Information (SPII).",
2235722358
"The function call generated by the model is invalid.",
22359+
"The model response was blocked by Model Armor.",
2235822360
"Token generation stopped because generated images has safety violations.",
2235922361
"Image generation stopped because generated images has other prohibited content.",
2236022362
"Image generation stopped due to recitation.",
@@ -24463,13 +24465,22 @@
2446324465
"description": "The endpoint config to use for the deployment.",
2446424466
"id": "GoogleCloudAiplatformV1DeployRequestEndpointConfig",
2446524467
"properties": {
24468+
"dedicatedEndpointDisabled": {
24469+
"description": "Optional. By default, if dedicated endpoint is enabled, the endpoint will be exposed through a dedicated DNS [Endpoint.dedicated_endpoint_dns]. Your request to the dedicated DNS will be isolated from other users' traffic and will have better performance and reliability. Note: Once you enabled dedicated endpoint, you won't be able to send request to the shared DNS {region}-aiplatform.googleapis.com. The limitations will be removed soon. If this field is set to true, the dedicated endpoint will be disabled and the deployed model will be exposed through the shared DNS {region}-aiplatform.googleapis.com.",
24470+
"type": "boolean"
24471+
},
2446624472
"dedicatedEndpointEnabled": {
24467-
"description": "Optional. If true, the endpoint will be exposed through a dedicated DNS [Endpoint.dedicated_endpoint_dns]. Your request to the dedicated DNS will be isolated from other users' traffic and will have better performance and reliability. Note: Once you enabled dedicated endpoint, you won't be able to send request to the shared DNS {region}-aiplatform.googleapis.com. The limitations will be removed soon.",
24473+
"deprecated": true,
24474+
"description": "Optional. Deprecated. Use dedicated_endpoint_disabled instead. If true, the endpoint will be exposed through a dedicated DNS [Endpoint.dedicated_endpoint_dns]. Your request to the dedicated DNS will be isolated from other users' traffic and will have better performance and reliability. Note: Once you enabled dedicated endpoint, you won't be able to send request to the shared DNS {region}-aiplatform.googleapis.com. The limitations will be removed soon.",
2446824475
"type": "boolean"
2446924476
},
2447024477
"endpointDisplayName": {
2447124478
"description": "Optional. The user-specified display name of the endpoint. If not set, a default name will be used.",
2447224479
"type": "string"
24480+
},
24481+
"endpointUserId": {
24482+
"description": "Optional. Immutable. The ID to use for endpoint, which will become the final component of the endpoint resource name. If not provided, Vertex AI will generate a value for this ID. If the first character is a letter, this value may be up to 63 characters, and valid characters are `[a-z0-9-]`. The last character must be a letter or number. If the first character is a number, this value may be up to 9 characters, and valid characters are `[0-9]` with no leading zeros. When using HTTP/JSON, this field is populated based on a query string argument, such as `?endpoint_id=12345`. This is the fallback for fields that are not included in either the URI or the body.",
24483+
"type": "string"
2447324484
}
2447424485
},
2447524486
"type": "object"
@@ -28633,6 +28644,10 @@
2863328644
"description": "Optional. The labels with user-defined metadata for the request. It is used for billing and reporting only. Label keys and values can be no longer than 63 characters (Unicode codepoints) and can only contain lowercase letters, numeric characters, underscores, and dashes. International characters are allowed. Label values are optional. Label keys must start with a letter.",
2863428645
"type": "object"
2863528646
},
28647+
"modelArmorConfig": {
28648+
"$ref": "GoogleCloudAiplatformV1ModelArmorConfig",
28649+
"description": "Optional. Settings for prompt and response sanitization using the Model Armor service. If supplied, safety_settings must not be supplied."
28650+
},
2863628651
"safetySettings": {
2863728652
"description": "Optional. Per request settings for blocking unsafe content. Enforced on GenerateContentResponse.candidates.",
2863828653
"items": {
@@ -28710,6 +28725,7 @@
2871028725
"OTHER",
2871128726
"BLOCKLIST",
2871228727
"PROHIBITED_CONTENT",
28728+
"MODEL_ARMOR",
2871328729
"IMAGE_SAFETY"
2871428730
],
2871528731
"enumDescriptions": [
@@ -28718,6 +28734,7 @@
2871828734
"Candidates blocked due to other reason.",
2871928735
"Candidates blocked due to the terms which are included from the terminology blocklist.",
2872028736
"Candidates blocked due to prohibited content.",
28737+
"The user prompt was blocked by Model Armor.",
2872128738
"Candidates blocked due to unsafe image generation content."
2872228739
],
2872328740
"readOnly": true,
@@ -29358,6 +29375,11 @@
2935829375
"description": "Chunk from context retrieved by the retrieval tools.",
2935929376
"id": "GoogleCloudAiplatformV1GroundingChunkRetrievedContext",
2936029377
"properties": {
29378+
"documentName": {
29379+
"description": "Output only. The full document name for the referenced Vertex AI Search document.",
29380+
"readOnly": true,
29381+
"type": "string"
29382+
},
2936129383
"ragChunk": {
2936229384
"$ref": "GoogleCloudAiplatformV1RagChunk",
2936329385
"description": "Additional context for the RAG retrieval result. This is only populated when using the RAG retrieval tool."
@@ -32361,6 +32383,21 @@
3236132383
},
3236232384
"type": "object"
3236332385
},
32386+
"GoogleCloudAiplatformV1ModelArmorConfig": {
32387+
"description": "Configuration for Model Armor integrations of prompt and responses.",
32388+
"id": "GoogleCloudAiplatformV1ModelArmorConfig",
32389+
"properties": {
32390+
"promptTemplateName": {
32391+
"description": "Optional. The name of the Model Armor template to use for prompt sanitization.",
32392+
"type": "string"
32393+
},
32394+
"responseTemplateName": {
32395+
"description": "Optional. The name of the Model Armor template to use for response sanitization.",
32396+
"type": "string"
32397+
}
32398+
},
32399+
"type": "object"
32400+
},
3236432401
"GoogleCloudAiplatformV1ModelBaseModelSource": {
3236532402
"description": "User input field to specify the base model source. Currently it only supports specifing the Model Garden models and Genie models.",
3236632403
"id": "GoogleCloudAiplatformV1ModelBaseModelSource",
@@ -38062,13 +38099,39 @@
3806238099
"description": "The specification of a Reasoning Engine deployment.",
3806338100
"id": "GoogleCloudAiplatformV1ReasoningEngineSpecDeploymentSpec",
3806438101
"properties": {
38102+
"containerConcurrency": {
38103+
"description": "Optional. Concurrency for each container and agent server. Recommended value: 2 * cpu + 1. Defaults to 9.",
38104+
"format": "int32",
38105+
"type": "integer"
38106+
},
3806538107
"env": {
3806638108
"description": "Optional. Environment variables to be set with the Reasoning Engine deployment. The environment variables can be updated through the UpdateReasoningEngine API.",
3806738109
"items": {
3806838110
"$ref": "GoogleCloudAiplatformV1EnvVar"
3806938111
},
3807038112
"type": "array"
3807138113
},
38114+
"maxInstances": {
38115+
"description": "Optional. The maximum number of application instances that can be launched to handle increased traffic. Defaults to 100.",
38116+
"format": "int32",
38117+
"type": "integer"
38118+
},
38119+
"minInstances": {
38120+
"description": "Optional. The minimum number of application instances that will be kept running at all times. Defaults to 1.",
38121+
"format": "int32",
38122+
"type": "integer"
38123+
},
38124+
"pscInterfaceConfig": {
38125+
"$ref": "GoogleCloudAiplatformV1PscInterfaceConfig",
38126+
"description": "Optional. Configuration for PSC-I."
38127+
},
38128+
"resourceLimits": {
38129+
"additionalProperties": {
38130+
"type": "string"
38131+
},
38132+
"description": "Optional. Resource limits for each container. Only 'cpu' and 'memory' keys are supported. Defaults to {\"cpu\": \"4\", \"memory\": \"4Gi\"}. * The only supported values for CPU are '1', '2', '4', and '8'. For more information, go to https://cloud.google.com/run/docs/configuring/cpu. * For supported 'memory' values and syntax, go to https://cloud.google.com/run/docs/configuring/memory-limits",
38133+
"type": "object"
38134+
},
3807238135
"secretEnv": {
3807338136
"description": "Optional. Environment variables where the value is a secret in Cloud Secret Manager. To use this feature, add 'Secret Manager Secret Accessor' role (roles/secretmanager.secretAccessor) to AI Platform Reasoning Engine Service Agent.",
3807438137
"items": {

0 commit comments

Comments
 (0)