Skip to content

Commit 054d4b6

Browse files
feat(all): auto-regenerate discovery clients (#3593)
1 parent 55ba2fa commit 054d4b6

81 files changed

Lines changed: 20054 additions & 7075 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

aiplatform/v1/aiplatform-api.json

Lines changed: 50 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -22228,14 +22228,12 @@
2222822228
"pattern": "^projects/[^/]+/locations/[^/]+/reasoningEngines/[^/]+$",
2222922229
"required": true,
2223022230
"type": "string"
22231-
},
22232-
"operationName": {
22233-
"description": "Required. The name of the longrunning operation returned from AsyncQueryReasoningEngine. Format: `projects/{project}/locations/{location}/operations/{operation}`",
22234-
"location": "query",
22235-
"type": "string"
2223622231
}
2223722232
},
2223822233
"path": "v1/{+name}:cancelAsyncQuery",
22234+
"request": {
22235+
"$ref": "GoogleCloudAiplatformV1CancelAsyncQueryReasoningEngineRequest"
22236+
},
2223922237
"response": {
2224022238
"$ref": "GoogleCloudAiplatformV1CancelAsyncQueryReasoningEngineResponse"
2224122239
},
@@ -29051,14 +29049,12 @@
2905129049
"pattern": "^reasoningEngines/[^/]+$",
2905229050
"required": true,
2905329051
"type": "string"
29054-
},
29055-
"operationName": {
29056-
"description": "Required. The name of the longrunning operation returned from AsyncQueryReasoningEngine. Format: `projects/{project}/locations/{location}/operations/{operation}`",
29057-
"location": "query",
29058-
"type": "string"
2905929052
}
2906029053
},
2906129054
"path": "v1/{+name}:cancelAsyncQuery",
29055+
"request": {
29056+
"$ref": "GoogleCloudAiplatformV1CancelAsyncQueryReasoningEngineRequest"
29057+
},
2906229058
"response": {
2906329059
"$ref": "GoogleCloudAiplatformV1CancelAsyncQueryReasoningEngineResponse"
2906429060
},
@@ -32361,13 +32357,27 @@
3236132357
}
3236232358
}
3236332359
},
32364-
"revision": "20260506",
32360+
"revision": "20260509",
3236532361
"rootUrl": "https://aiplatform.googleapis.com/",
3236632362
"schemas": {
3236732363
"CloudAiLargeModelsVisionGenerateVideoExperiments": {
3236832364
"description": "Experimental parameters for video generation.",
3236932365
"id": "CloudAiLargeModelsVisionGenerateVideoExperiments",
3237032366
"properties": {
32367+
"codec": {
32368+
"description": "Optional. Video codec to use for output.",
32369+
"enum": [
32370+
"VIDEO_CODEC_UNSPECIFIED",
32371+
"VIDEO_CODEC_H264",
32372+
"VIDEO_CODEC_PRORES"
32373+
],
32374+
"enumDescriptions": [
32375+
"",
32376+
"",
32377+
""
32378+
],
32379+
"type": "string"
32380+
},
3237132381
"conditioningFrames": {
3237232382
"description": "Conditioning frames for veo experimental models ONLY, not to be confused with keyframes (ID:31) in GenerateVideoRequest.",
3237332383
"items": {
@@ -33384,11 +33394,11 @@
3338433394
"id": "GoogleCloudAiplatformV1AsyncQueryReasoningEngineRequest",
3338533395
"properties": {
3338633396
"inputGcsUri": {
33387-
"description": "Optional. Input Cloud Storage URI for the Async query.",
33397+
"description": "Optional. Input Cloud Storage URI for the Async query. If you are not bringing your own container (BYOC), the content of the file should be a JSON object with an `input` field matching the `input` field of `QueryReasoningEngineRequest` (e.g. `{ \"input\": { \"user_id\": \"hello\", \"message\":\"$QUERY\"} }`). For BYOC, the content of the file depends on the the agent application.",
3338833398
"type": "string"
3338933399
},
3339033400
"outputGcsUri": {
33391-
"description": "Optional. Output Cloud Storage URI for the Async query.",
33401+
"description": "Optional. Output Cloud Storage URI for the Async query. This contains the final response of the query.",
3339233402
"type": "string"
3339333403
}
3339433404
},
@@ -34693,6 +34703,17 @@
3469334703
},
3469434704
"type": "object"
3469534705
},
34706+
"GoogleCloudAiplatformV1CancelAsyncQueryReasoningEngineRequest": {
34707+
"description": "Request message for ReasoningEngineExecutionService.CancelAsyncQueryReasoningEngine.",
34708+
"id": "GoogleCloudAiplatformV1CancelAsyncQueryReasoningEngineRequest",
34709+
"properties": {
34710+
"operationName": {
34711+
"description": "Required. The name of the longrunning operation returned from AsyncQueryReasoningEngine. Format: `projects/{project}/locations/{location}/operations/{operation}`",
34712+
"type": "string"
34713+
}
34714+
},
34715+
"type": "object"
34716+
},
3469634717
"GoogleCloudAiplatformV1CancelAsyncQueryReasoningEngineResponse": {
3469734718
"description": "Response message for ReasoningEngineExecutionService.CancelAsyncQueryReasoningEngine.",
3469834719
"id": "GoogleCloudAiplatformV1CancelAsyncQueryReasoningEngineResponse",
@@ -39290,7 +39311,7 @@
3929039311
"type": "array"
3929139312
},
3929239313
"metrics": {
39293-
"description": "Required. The metrics to be calculated in the evaluation run.",
39314+
"description": "Optional. The metrics to be calculated in the evaluation run. Required when analysis_configs is not set.",
3929439315
"items": {
3929539316
"$ref": "GoogleCloudAiplatformV1EvaluationRunMetric"
3929639317
},
@@ -42734,6 +42755,20 @@
4273442755
"description": "Structured representation of a function declaration as defined by the [OpenAPI 3.0 specification](https://spec.openapis.org/oas/v3.0.3). Included in this declaration are the function name, description, parameters and response type. This FunctionDeclaration is a representation of a block of code that can be used as a `Tool` by the model and executed by the client.",
4273542756
"id": "GoogleCloudAiplatformV1FunctionDeclaration",
4273642757
"properties": {
42758+
"behavior": {
42759+
"description": "Optional. Specifies the function Behavior. If not specified, the system keeps the current function call behavior. This field is currently only supported by the BidiGenerateContent method.",
42760+
"enum": [
42761+
"UNSPECIFIED",
42762+
"BLOCKING",
42763+
"NON_BLOCKING"
42764+
],
42765+
"enumDescriptions": [
42766+
"This value is unspecified.",
42767+
"If set, the system will wait to receive the function response before continuing the conversation.",
42768+
"If set, the system will not wait to receive the function response. Instead, it will attempt to handle function responses as they become available while maintaining the conversation between the user and the model."
42769+
],
42770+
"type": "string"
42771+
},
4273742772
"description": {
4273842773
"description": "Optional. Description and purpose of the function. Model uses it to decide how and whether to call the function.",
4273942774
"type": "string"
@@ -55672,7 +55707,7 @@
5567255707
"type": "string"
5567355708
},
5567455709
"sandboxEnvironmentTemplate": {
55675-
"description": "Optional. The name of the SandboxEnvironmentTemplate specified in the parent Agent Engine resource that this SandboxEnvironment is created from. Only one of `sandbox_environment_template` and `spec` should be set.",
55710+
"description": "Optional. The name of the SandboxEnvironmentTemplate specified in the parent Agent Engine resource that this SandboxEnvironment is created from.",
5567655711
"type": "string"
5567755712
},
5567855713
"spec": {

0 commit comments

Comments
 (0)