Skip to content

Commit ecb255f

Browse files
yoshi-automationsofisl
authored andcommittedMar 19, 2025
feat(bigqueryreservation): update the API
#### bigqueryreservation:v1 The following keys were added: - schemas.MergeCapacityCommitmentsRequest.properties.capacityCommitmentId.description - schemas.MergeCapacityCommitmentsRequest.properties.capacityCommitmentId.type
1 parent 9bed272 commit ecb255f

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed
 

‎discovery/bigqueryreservation-v1.json

+5-1
Original file line numberDiff line numberDiff line change
@@ -935,7 +935,7 @@
935935
}
936936
}
937937
},
938-
"revision": "20250304",
938+
"revision": "20250316",
939939
"rootUrl": "https://bigqueryreservation.googleapis.com/",
940940
"schemas": {
941941
"Assignment": {
@@ -1266,6 +1266,10 @@
12661266
"description": "The request for ReservationService.MergeCapacityCommitments.",
12671267
"id": "MergeCapacityCommitmentsRequest",
12681268
"properties": {
1269+
"capacityCommitmentId": {
1270+
"description": "Optional. The optional resulting capacity commitment ID. Capacity commitment name will be generated automatically if this field is empty. This field must only contain lower case alphanumeric characters or dashes. The first and last character cannot be a dash. Max length is 64 characters.",
1271+
"type": "string"
1272+
},
12691273
"capacityCommitmentIds": {
12701274
"description": "Ids of capacity commitments to merge. These capacity commitments must exist under admin project and location specified in the parent. ID is the last portion of capacity commitment name e.g., 'abc' for projects/myproject/locations/US/capacityCommitments/abc",
12711275
"items": {

‎src/apis/bigqueryreservation/v1.ts

+4
Original file line numberDiff line numberDiff line change
@@ -283,6 +283,10 @@ export namespace bigqueryreservation_v1 {
283283
* The request for ReservationService.MergeCapacityCommitments.
284284
*/
285285
export interface Schema$MergeCapacityCommitmentsRequest {
286+
/**
287+
* Optional. The optional resulting capacity commitment ID. Capacity commitment name will be generated automatically if this field is empty. This field must only contain lower case alphanumeric characters or dashes. The first and last character cannot be a dash. Max length is 64 characters.
288+
*/
289+
capacityCommitmentId?: string | null;
286290
/**
287291
* Ids of capacity commitments to merge. These capacity commitments must exist under admin project and location specified in the parent. ID is the last portion of capacity commitment name e.g., 'abc' for projects/myproject/locations/US/capacityCommitments/abc
288292
*/

0 commit comments

Comments
 (0)
Please sign in to comment.