Skip to content

Commit 1e6ab1c

Browse files
yoshi-automationsofisl
authored andcommitted
feat(run): update the API
#### run:v2 The following keys were added: - schemas.GoogleCloudRunV2TaskTemplate.properties.gpuZonalRedundancyDisabled.description - schemas.GoogleCloudRunV2TaskTemplate.properties.gpuZonalRedundancyDisabled.type
1 parent 0c2e364 commit 1e6ab1c

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

discovery/run-v2.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1922,7 +1922,7 @@
19221922
}
19231923
}
19241924
},
1925-
"revision": "20250620",
1925+
"revision": "20250704",
19261926
"rootUrl": "https://run.googleapis.com/",
19271927
"schemas": {
19281928
"GoogleCloudRunV2BinaryAuthorization": {
@@ -4409,6 +4409,10 @@
44094409
],
44104410
"type": "string"
44114411
},
4412+
"gpuZonalRedundancyDisabled": {
4413+
"description": "Optional. True if GPU zonal redundancy is disabled on this task template.",
4414+
"type": "boolean"
4415+
},
44124416
"maxRetries": {
44134417
"description": "Number of retries allowed per Task, before marking this Task failed. Defaults to 3.",
44144418
"format": "int32",

src/apis/run/v2.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1776,6 +1776,10 @@ export namespace run_v2 {
17761776
* Optional. The execution environment being used to host this Task.
17771777
*/
17781778
executionEnvironment?: string | null;
1779+
/**
1780+
* Optional. True if GPU zonal redundancy is disabled on this task template.
1781+
*/
1782+
gpuZonalRedundancyDisabled?: boolean | null;
17791783
/**
17801784
* Number of retries allowed per Task, before marking this Task failed. Defaults to 3.
17811785
*/

0 commit comments

Comments
 (0)