Skip to content

Commit b4f098d

Browse files
feat(workstations): update the API
#### workstations:v1beta The following keys were added: - schemas.WorkstationBoostConfig.properties.running.description - schemas.WorkstationBoostConfig.properties.running.readOnly - schemas.WorkstationBoostConfig.properties.running.type
1 parent 339f67f commit b4f098d

2 files changed

Lines changed: 10 additions & 1 deletion

File tree

discovery/workstations-v1beta.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1142,7 +1142,7 @@
11421142
}
11431143
}
11441144
},
1145-
"revision": "20250625",
1145+
"revision": "20250716",
11461146
"rootUrl": "https://workstations.googleapis.com/",
11471147
"schemas": {
11481148
"Accelerator": {
@@ -2296,6 +2296,11 @@
22962296
"description": "Output only. Boost configuration ID.",
22972297
"readOnly": true,
22982298
"type": "string"
2299+
},
2300+
"running": {
2301+
"description": "Output only. Whether or not the current workstation is actively boosted with this id.",
2302+
"readOnly": true,
2303+
"type": "boolean"
22992304
}
23002305
},
23012306
"type": "object"

src/apis/workstations/v1beta.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -967,6 +967,10 @@ export namespace workstations_v1beta {
967967
* Output only. Boost configuration ID.
968968
*/
969969
id?: string | null;
970+
/**
971+
* Output only. Whether or not the current workstation is actively boosted with this id.
972+
*/
973+
running?: boolean | null;
970974
}
971975
/**
972976
* A workstation cluster resource in the Cloud Workstations API. Defines a group of workstations in a particular region and the VPC network they're attached to.

0 commit comments

Comments
 (0)