Skip to content

Commit f0b6380

Browse files
yoshi-automationleahecole
authored andcommitted
feat(run): update the API
#### run:v2 The following keys were added: - schemas.GoogleCloudRunV2VolumeMount.properties.subPath.description - schemas.GoogleCloudRunV2VolumeMount.properties.subPath.type
1 parent 29a72ba commit f0b6380

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": "20250801",
1925+
"revision": "20250808",
19261926
"rootUrl": "https://run.googleapis.com/",
19271927
"schemas": {
19281928
"GoogleCloudRunV2BinaryAuthorization": {
@@ -4581,6 +4581,10 @@
45814581
"name": {
45824582
"description": "Required. This must match the Name of a Volume.",
45834583
"type": "string"
4584+
},
4585+
"subPath": {
4586+
"description": "Optional. Path within the volume from which the container's volume should be mounted. Defaults to \"\" (volume's root).",
4587+
"type": "string"
45844588
}
45854589
},
45864590
"type": "object"

src/apis/run/v2.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1922,6 +1922,10 @@ export namespace run_v2 {
19221922
* Required. This must match the Name of a Volume.
19231923
*/
19241924
name?: string | null;
1925+
/**
1926+
* Optional. Path within the volume from which the container's volume should be mounted. Defaults to "" (volume's root).
1927+
*/
1928+
subPath?: string | null;
19251929
}
19261930
/**
19271931
* VPC Access settings. For more information on sending traffic to a VPC network, visit https://cloud.google.com/run/docs/configuring/connecting-vpc.

0 commit comments

Comments
 (0)