Skip to content

Commit 0bc596a

Browse files
fix(workspaceevents): update the API
#### workspaceevents:v1 The following keys were changed: - resources.subscriptions.methods.patch.parameters.updateMask.description
1 parent bf5c5fc commit 0bc596a

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

‎discovery/workspaceevents-v1.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -401,7 +401,7 @@
401401
"type": "string"
402402
},
403403
"updateMask": {
404-
"description": "Optional. The field to update. If omitted, updates any fields included in the request. You can update one of the following fields in a subscription: * `expire_time`: The timestamp when the subscription expires. * `ttl`: The time-to-live (TTL) or duration of the subscription. * `event_types`: The list of event types to receive about the target resource. To fully replace the subscription (the equivalent of `PUT`), use `*`. Any omitted fields are updated with empty values.",
404+
"description": "Optional. The field to update. If omitted, updates any fields included in the request. You can update one of the following fields in a subscription: * `expire_time`: The timestamp when the subscription expires. * `ttl`: The time-to-live (TTL) or duration of the subscription. * `event_types`: The list of event types to receive about the target resource. When using the `*` wildcard (equivalent to `PUT`), omitted fields are set to empty values and rejected if they're invalid.",
405405
"format": "google-fieldmask",
406406
"location": "query",
407407
"type": "string"
@@ -486,7 +486,7 @@
486486
}
487487
}
488488
},
489-
"revision": "20250615",
489+
"revision": "20250629",
490490
"rootUrl": "https://workspaceevents.googleapis.com/",
491491
"schemas": {
492492
"ListSubscriptionsResponse": {

‎src/apis/workspaceevents/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
"webpack": "webpack"
2929
},
3030
"dependencies": {
31-
"googleapis-common": "^8.0.0"
31+
"googleapis-common": "^8.0.2-rc.0"
3232
},
3333
"devDependencies": {
3434
"@microsoft/api-documenter": "^7.8.10",

‎src/apis/workspaceevents/v1.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1167,7 +1167,7 @@ export namespace workspaceevents_v1 {
11671167
* const res = await workspaceevents.subscriptions.patch({
11681168
* // Identifier. Resource name of the subscription. Format: `subscriptions/{subscription\}`
11691169
* name: 'subscriptions/my-subscription',
1170-
* // Optional. The field to update. If omitted, updates any fields included in the request. You can update one of the following fields in a subscription: * `expire_time`: The timestamp when the subscription expires. * `ttl`: The time-to-live (TTL) or duration of the subscription. * `event_types`: The list of event types to receive about the target resource. To fully replace the subscription (the equivalent of `PUT`), use `*`. Any omitted fields are updated with empty values.
1170+
* // Optional. The field to update. If omitted, updates any fields included in the request. You can update one of the following fields in a subscription: * `expire_time`: The timestamp when the subscription expires. * `ttl`: The time-to-live (TTL) or duration of the subscription. * `event_types`: The list of event types to receive about the target resource. When using the `*` wildcard (equivalent to `PUT`), omitted fields are set to empty values and rejected if they're invalid.
11711171
* updateMask: 'placeholder-value',
11721172
* // Optional. If set to `true`, validates and previews the request, but doesn't update the subscription.
11731173
* validateOnly: 'placeholder-value',
@@ -1526,7 +1526,7 @@ export namespace workspaceevents_v1 {
15261526
*/
15271527
name?: string;
15281528
/**
1529-
* Optional. The field to update. If omitted, updates any fields included in the request. You can update one of the following fields in a subscription: * `expire_time`: The timestamp when the subscription expires. * `ttl`: The time-to-live (TTL) or duration of the subscription. * `event_types`: The list of event types to receive about the target resource. To fully replace the subscription (the equivalent of `PUT`), use `*`. Any omitted fields are updated with empty values.
1529+
* Optional. The field to update. If omitted, updates any fields included in the request. You can update one of the following fields in a subscription: * `expire_time`: The timestamp when the subscription expires. * `ttl`: The time-to-live (TTL) or duration of the subscription. * `event_types`: The list of event types to receive about the target resource. When using the `*` wildcard (equivalent to `PUT`), omitted fields are set to empty values and rejected if they're invalid.
15301530
*/
15311531
updateMask?: string;
15321532
/**

0 commit comments

Comments
 (0)