Skip to content

Commit d1b64f4

Browse files
yoshi-automationfeywind
authored andcommitted
fix(run): update the API
#### run:v1 The following keys were changed: - schemas.ResourceRequirements.properties.limits.description
1 parent ad31e1a commit d1b64f4

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

discovery/run-v1.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2907,7 +2907,7 @@
29072907
}
29082908
}
29092909
},
2910-
"revision": "20250929",
2910+
"revision": "20251003",
29112911
"rootUrl": "https://run.googleapis.com/",
29122912
"schemas": {
29132913
"Addressable": {
@@ -6126,7 +6126,7 @@
61266126
"additionalProperties": {
61276127
"type": "string"
61286128
},
6129-
"description": "Limits describes the maximum amount of compute resources allowed. Only 'cpu' and 'memory' keys are supported. * For supported 'cpu' values, 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",
6129+
"description": "Limits describes the maximum amount of compute resources allowed. Only 'cpu', 'memory' and 'nvidia.com/gpu' keys are supported. * For supported 'cpu' values, 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. * The only supported 'nvidia.com/gpu' value is '1'.",
61306130
"type": "object"
61316131
},
61326132
"requests": {

src/apis/run/v1.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2464,7 +2464,7 @@ export namespace run_v1 {
24642464
*/
24652465
export interface Schema$ResourceRequirements {
24662466
/**
2467-
* Limits describes the maximum amount of compute resources allowed. Only 'cpu' and 'memory' keys are supported. * For supported 'cpu' values, 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
2467+
* Limits describes the maximum amount of compute resources allowed. Only 'cpu', 'memory' and 'nvidia.com/gpu' keys are supported. * For supported 'cpu' values, 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. * The only supported 'nvidia.com/gpu' value is '1'.
24682468
*/
24692469
limits?: {[key: string]: string} | null;
24702470
/**

0 commit comments

Comments
 (0)