Skip to content

Commit 086437d

Browse files
authoredMar 14, 2025··
feat(all): auto-regenerate discovery clients (#3064)
1 parent be5fb5d commit 086437d

File tree

97 files changed

+9545
-4292
lines changed

Some content is hidden

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

97 files changed

+9545
-4292
lines changed
 

‎aiplatform/v1/aiplatform-api.json

+39-2
Original file line numberDiff line numberDiff line change
@@ -19449,7 +19449,7 @@
1944919449
}
1945019450
}
1945119451
},
19452-
"revision": "20250226",
19452+
"revision": "20250304",
1945319453
"rootUrl": "https://aiplatform.googleapis.com/",
1945419454
"schemas": {
1945519455
"CloudAiLargeModelsVisionGenerateVideoResponse": {
@@ -23617,7 +23617,7 @@
2361723617
"type": "integer"
2361823618
},
2361923619
"bootDiskType": {
23620-
"description": "Type of the boot disk (default is \"pd-ssd\"). Valid values: \"pd-ssd\" (Persistent Disk Solid State Drive) or \"pd-standard\" (Persistent Disk Hard Disk Drive).",
23620+
"description": "Type of the boot disk. For non-A3U machines, the default value is \"pd-ssd\", for A3U machines, the default value is \"hyperdisk-balanced\". Valid values: \"pd-ssd\" (Persistent Disk Solid State Drive), \"pd-standard\" (Persistent Disk Hard Disk Drive) or \"hyperdisk-balanced\".",
2362123621
"type": "string"
2362223622
}
2362323623
},
@@ -27228,6 +27228,12 @@
2722827228
"readOnly": true,
2722927229
"type": "array"
2723027230
},
27231+
"thoughtsTokenCount": {
27232+
"description": "Output only. Number of tokens present in thoughts output.",
27233+
"format": "int32",
27234+
"readOnly": true,
27235+
"type": "integer"
27236+
},
2723127237
"toolUsePromptTokenCount": {
2723227238
"description": "Output only. Number of tokens present in tool-use prompt(s).",
2723327239
"format": "int32",
@@ -28120,6 +28126,10 @@
2812028126
"deprecated": true,
2812128127
"description": "The Cloud Storage path to write partial failures to. Deprecated. Prefer to use `import_result_gcs_sink`."
2812228128
},
28129+
"ragFileParsingConfig": {
28130+
"$ref": "GoogleCloudAiplatformV1RagFileParsingConfig",
28131+
"description": "Optional. Specifies the parsing config for RagFiles. RAG will use the default parser if this field is not set."
28132+
},
2812328133
"ragFileTransformationConfig": {
2812428134
"$ref": "GoogleCloudAiplatformV1RagFileTransformationConfig",
2812528135
"description": "Specifies the transformation config for RagFiles."
@@ -35419,6 +35429,33 @@
3541935429
},
3542035430
"type": "object"
3542135431
},
35432+
"GoogleCloudAiplatformV1RagFileParsingConfig": {
35433+
"description": "Specifies the parsing config for RagFiles.",
35434+
"id": "GoogleCloudAiplatformV1RagFileParsingConfig",
35435+
"properties": {
35436+
"layoutParser": {
35437+
"$ref": "GoogleCloudAiplatformV1RagFileParsingConfigLayoutParser",
35438+
"description": "The Layout Parser to use for RagFiles."
35439+
}
35440+
},
35441+
"type": "object"
35442+
},
35443+
"GoogleCloudAiplatformV1RagFileParsingConfigLayoutParser": {
35444+
"description": "Document AI Layout Parser config.",
35445+
"id": "GoogleCloudAiplatformV1RagFileParsingConfigLayoutParser",
35446+
"properties": {
35447+
"maxParsingRequestsPerMin": {
35448+
"description": "The maximum number of requests the job is allowed to make to the Document AI processor per minute. Consult https://cloud.google.com/document-ai/quotas and the Quota page for your project to set an appropriate value here. If unspecified, a default value of 120 QPM would be used.",
35449+
"format": "int32",
35450+
"type": "integer"
35451+
},
35452+
"processorName": {
35453+
"description": "The full resource name of a Document AI processor or processor version. The processor must have type `LAYOUT_PARSER_PROCESSOR`. If specified, the `additional_config.parse_as_scanned_pdf` field must be false. Format: * `projects/{project_id}/locations/{location}/processors/{processor_id}` * `projects/{project_id}/locations/{location}/processors/{processor_id}/processorVersions/{processor_version_id}`",
35454+
"type": "string"
35455+
}
35456+
},
35457+
"type": "object"
35458+
},
3542235459
"GoogleCloudAiplatformV1RagFileTransformationConfig": {
3542335460
"description": "Specifies the transformation config for RagFiles.",
3542435461
"id": "GoogleCloudAiplatformV1RagFileTransformationConfig",

‎aiplatform/v1/aiplatform-gen.go

+68-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)
Please sign in to comment.