Skip to content

Commit 690068f

Browse files
feat(all): auto-regenerate discovery clients (#1943)
1 parent 2d6890a commit 690068f

24 files changed

+1456
-132
lines changed

calendar/v3/calendar-api.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1088,7 +1088,7 @@
10881088
"type": "string"
10891089
},
10901090
"eventTypes": {
1091-
"description": "Event types to return. Optional. The default is [\"default\", \"outOfOffice\", \"focusTime\"]. Only the default value is available, unless you're enrolled in the Working Locations developer preview. Developer Preview.",
1091+
"description": "Event types to return. Optional. Possible values are: \n- \"default\" \n- \"focusTime\" \n- \"outOfOffice\"This parameter can be repeated multiple times to return events of different types. Currently, this is the only allowed value for this field: \n- [\"default\", \"focusTime\", \"outOfOffice\"] This value will be the default.\n\nIf you're enrolled in the Working Location developer preview program, in addition to the default value above you can also set the \"workingLocation\" event type: \n- [\"default\", \"focusTime\", \"outOfOffice\", \"workingLocation\"] \n- [\"workingLocation\"] Additional combinations of these 4 event types will be made available in later releases. Developer Preview.",
10921092
"location": "query",
10931093
"repeated": true,
10941094
"type": "string"
@@ -1491,7 +1491,7 @@
14911491
"type": "string"
14921492
},
14931493
"eventTypes": {
1494-
"description": "Event types to return. Optional. The default is [\"default\", \"outOfOffice\", \"focusTime\"]. Only the default value is available, unless you're enrolled in the Working Locations developer preview. Developer Preview.",
1494+
"description": "Event types to return. Optional. Possible values are: \n- \"default\" \n- \"focusTime\" \n- \"outOfOffice\"This parameter can be repeated multiple times to return events of different types. Currently, this is the only allowed value for this field: \n- [\"default\", \"focusTime\", \"outOfOffice\"] This value will be the default.\n\nIf you're enrolled in the Working Location developer preview program, in addition to the default value above you can also set the \"workingLocation\" event type: \n- [\"default\", \"focusTime\", \"outOfOffice\", \"workingLocation\"] \n- [\"workingLocation\"] Additional combinations of these 4 event types will be made available in later releases. Developer Preview.",
14951495
"location": "query",
14961496
"repeated": true,
14971497
"type": "string"
@@ -1735,7 +1735,7 @@
17351735
}
17361736
}
17371737
},
1738-
"revision": "20230324",
1738+
"revision": "20230406",
17391739
"rootUrl": "https://www.googleapis.com/",
17401740
"schemas": {
17411741
"Acl": {

calendar/v3/calendar-gen.go

+32-8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

chat/v1/chat-api.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -403,7 +403,7 @@
403403
]
404404
},
405405
"patch": {
406-
"description": "Updates a message. For example usage, see [Update a message](https://developers.google.com/chat/api/guides/crudl/messages#update_a_message). Requires [authentication](https://developers.google.com/chat/api/guides/auth/). Fully supports [service account authentication](https://developers.google.com/chat/api/guides/auth/service-accounts). Supports [user authentication](https://developers.google.com/chat/api/guides/auth/users) as part of the [Google Workspace Developer Preview Program](https://developers.google.com/workspace/preview), which grants early access to certain features. [User authentication](https://developers.google.com/chat/api/guides/auth/users) requires the `chat.messages` authorization scope.",
406+
"description": "Updates a message. There's a difference between `patch` and `update` methods. The `patch` method uses a `patch` request while the `update` method uses a `put` request. We recommend using the `patch` method. For example usage, see [Update a message](https://developers.google.com/chat/api/guides/crudl/messages#update_a_message). Requires [authentication](https://developers.google.com/chat/api/guides/auth/). Fully supports [service account authentication](https://developers.google.com/chat/api/guides/auth/service-accounts). Supports [user authentication](https://developers.google.com/chat/api/guides/auth/users) as part of the [Google Workspace Developer Preview Program](https://developers.google.com/workspace/preview), which grants early access to certain features. [User authentication](https://developers.google.com/chat/api/guides/auth/users) requires the `chat.messages` authorization scope.",
407407
"flatPath": "v1/spaces/{spacesId}/messages/{messagesId}",
408408
"httpMethod": "PATCH",
409409
"id": "chat.spaces.messages.patch",
@@ -443,7 +443,7 @@
443443
]
444444
},
445445
"update": {
446-
"description": "Updates a message. For example usage, see [Update a message](https://developers.google.com/chat/api/guides/crudl/messages#update_a_message). Requires [authentication](https://developers.google.com/chat/api/guides/auth/). Fully supports [service account authentication](https://developers.google.com/chat/api/guides/auth/service-accounts). Supports [user authentication](https://developers.google.com/chat/api/guides/auth/users) as part of the [Google Workspace Developer Preview Program](https://developers.google.com/workspace/preview), which grants early access to certain features. [User authentication](https://developers.google.com/chat/api/guides/auth/users) requires the `chat.messages` authorization scope.",
446+
"description": "Updates a message. There's a difference between `patch` and `update` methods. The `patch` method uses a `patch` request while the `update` method uses a `put` request. We recommend using the `patch` method. For example usage, see [Update a message](https://developers.google.com/chat/api/guides/crudl/messages#update_a_message). Requires [authentication](https://developers.google.com/chat/api/guides/auth/). Fully supports [service account authentication](https://developers.google.com/chat/api/guides/auth/service-accounts). Supports [user authentication](https://developers.google.com/chat/api/guides/auth/users) as part of the [Google Workspace Developer Preview Program](https://developers.google.com/workspace/preview), which grants early access to certain features. [User authentication](https://developers.google.com/chat/api/guides/auth/users) requires the `chat.messages` authorization scope.",
447447
"flatPath": "v1/spaces/{spacesId}/messages/{messagesId}",
448448
"httpMethod": "PUT",
449449
"id": "chat.spaces.messages.update",
@@ -518,7 +518,7 @@
518518
}
519519
}
520520
},
521-
"revision": "20230330",
521+
"revision": "20230406",
522522
"rootUrl": "https://chat.googleapis.com/",
523523
"schemas": {
524524
"ActionParameter": {

chat/v1/chat-gen.go

+10-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

container/v1beta1/container-api.json

+10-2
Original file line numberDiff line numberDiff line change
@@ -2512,7 +2512,7 @@
25122512
}
25132513
}
25142514
},
2515-
"revision": "20230322",
2515+
"revision": "20230326",
25162516
"rootUrl": "https://container.googleapis.com/",
25172517
"schemas": {
25182518
"AcceleratorConfig": {
@@ -2547,7 +2547,15 @@
25472547
"AdditionalPodRangesConfig": {
25482548
"description": "AdditionalPodRangesConfig is the configuration for additional pod secondary ranges supporting the ClusterUpdate message.",
25492549
"id": "AdditionalPodRangesConfig",
2550-
"properties": {},
2550+
"properties": {
2551+
"podRangeNames": {
2552+
"description": "Name for pod secondary ipv4 range which has the actual range defined ahead.",
2553+
"items": {
2554+
"type": "string"
2555+
},
2556+
"type": "array"
2557+
}
2558+
},
25512559
"type": "object"
25522560
},
25532561
"AddonsConfig": {

container/v1beta1/container-gen.go

+25
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)