Skip to content

Commit b553734

Browse files
feat(cloudbuild): update the API
#### cloudbuild:v1 The following keys were added: - schemas.WorkerConfig.properties.enableNestedVirtualization.description - schemas.WorkerConfig.properties.enableNestedVirtualization.type
1 parent e597542 commit b553734

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

discovery/cloudbuild-v1.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2573,7 +2573,7 @@
25732573
}
25742574
}
25752575
},
2576-
"revision": "20250718",
2576+
"revision": "20250801",
25772577
"rootUrl": "https://cloudbuild.googleapis.com/",
25782578
"schemas": {
25792579
"ApprovalConfig": {
@@ -5864,6 +5864,10 @@
58645864
"format": "int64",
58655865
"type": "string"
58665866
},
5867+
"enableNestedVirtualization": {
5868+
"description": "Optional. Enable nested virtualization on the worker, if supported by the machine type. By default, nested virtualization is disabled.",
5869+
"type": "boolean"
5870+
},
58675871
"machineType": {
58685872
"description": "Optional. Machine type of a worker, such as `e2-medium`. See [Worker pool config file](https://cloud.google.com/build/docs/private-pools/worker-pool-config-file-schema). If left blank, Cloud Build will use a sensible default.",
58695873
"type": "string"

src/apis/cloudbuild/v1.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2509,6 +2509,10 @@ export namespace cloudbuild_v1 {
25092509
* Size of the disk attached to the worker, in GB. See [Worker pool config file](https://cloud.google.com/build/docs/private-pools/worker-pool-config-file-schema). Specify a value of up to 4000. If `0` is specified, Cloud Build will use a standard disk size.
25102510
*/
25112511
diskSizeGb?: string | null;
2512+
/**
2513+
* Optional. Enable nested virtualization on the worker, if supported by the machine type. By default, nested virtualization is disabled.
2514+
*/
2515+
enableNestedVirtualization?: boolean | null;
25122516
/**
25132517
* Optional. Machine type of a worker, such as `e2-medium`. See [Worker pool config file](https://cloud.google.com/build/docs/private-pools/worker-pool-config-file-schema). If left blank, Cloud Build will use a sensible default.
25142518
*/

0 commit comments

Comments
 (0)