Skip to content

Commit 9bd47c4

Browse files
feat(all): auto-regenerate discovery clients (#3226)
1 parent f1d0fc0 commit 9bd47c4

16 files changed

+3537
-48
lines changed

chat/v1/chat-api.json

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1528,7 +1528,7 @@
15281528
}
15291529
}
15301530
},
1531-
"revision": "20250619",
1531+
"revision": "20250706",
15321532
"rootUrl": "https://chat.googleapis.com/",
15331533
"schemas": {
15341534
"AccessSettings": {
@@ -2234,7 +2234,7 @@
22342234
"type": "object"
22352235
},
22362236
"DeprecatedEvent": {
2237-
"description": "A Google Chat app interaction event that represents and contains data about a user's interaction with a Chat app. To configure your Chat app to receive interaction events, see [Receive and respond to user interactions](https://developers.google.com/workspace/chat/receive-respond-interactions). In addition to receiving events from user interactions, Chat apps can receive events about changes to spaces, such as when a new member is added to a space. To learn about space events, see [Work with events from Google Chat](https://developers.google.com/workspace/chat/events-overview).",
2237+
"description": " A Google Chat app interaction event that represents and contains data about a user's interaction with a Chat app. To configure your Chat app to receive interaction events, see [Receive and respond to user interactions](https://developers.google.com/workspace/chat/receive-respond-interactions). In addition to receiving events from user interactions, Chat apps can receive events about changes to spaces, such as when a new member is added to a space. To learn about space events, see [Work with events from Google Chat](https://developers.google.com/workspace/chat/events-overview). Note: This event is only used for [Chat interaction events](https://developers.google.com/workspace/chat/receive-respond-interactions). If your Chat app is built as a [Google Workspace add-on](https://developers.google.com/workspace/add-ons/chat/build), see [Chat event objects](https://developers.google.com/workspace/add-ons/concepts/event-objects#chat-event-object) in the add-ons documentation.",
22382238
"id": "DeprecatedEvent",
22392239
"properties": {
22402240
"action": {
@@ -3408,6 +3408,10 @@
34083408
"$ref": "GoogleAppsCardV1Action",
34093409
"description": "An external data source, such as a relational database."
34103410
},
3411+
"hintText": {
3412+
"description": "Optional. Text that appears below the selection input field meant to assist users by prompting them to enter a certain value. This text is always visible. Only supported by Google Workspace Workflows, but not Google Chat API or Google Workspace Add-ons.",
3413+
"type": "string"
3414+
},
34113415
"items": {
34123416
"description": "An array of selectable items. For example, an array of radio buttons or checkboxes. Supports up to 100 items.",
34133417
"items": {

chat/v1/chat-gen.go

Lines changed: 14 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

compute/v0.alpha/compute-api.json

Lines changed: 59 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38442,6 +38442,21 @@
3844238442
"required": true,
3844338443
"type": "string"
3844438444
},
38445+
"view": {
38446+
"description": "View of the Block.",
38447+
"enum": [
38448+
"BASIC",
38449+
"BLOCK_VIEW_UNSPECIFIED",
38450+
"FULL"
38451+
],
38452+
"enumDescriptions": [
38453+
"This view includes basic information about the reservation block",
38454+
"The default / unset value. The API will default to the BASIC view.",
38455+
"Includes detailed topology view."
38456+
],
38457+
"location": "query",
38458+
"type": "string"
38459+
},
3844538460
"zone": {
3844638461
"description": "Name of the zone for this request. Zone name should conform to RFC1035.",
3844738462
"location": "path",
@@ -50429,7 +50444,7 @@
5042950444
}
5043050445
}
5043150446
},
50432-
"revision": "20250626",
50447+
"revision": "20250708",
5043350448
"rootUrl": "https://compute.googleapis.com/",
5043450449
"schemas": {
5043550450
"AWSV4Signature": {
@@ -94943,6 +94958,49 @@
9494394958
"cluster": {
9494494959
"description": "The cluster name of the reservation block.",
9494594960
"type": "string"
94961+
},
94962+
"instances": {
94963+
"description": "The detailed instances information for a given Block",
94964+
"items": {
94965+
"$ref": "ReservationBlockPhysicalTopologyInstance"
94966+
},
94967+
"type": "array"
94968+
}
94969+
},
94970+
"type": "object"
94971+
},
94972+
"ReservationBlockPhysicalTopologyInstance": {
94973+
"description": "The instances information for a given Block",
94974+
"id": "ReservationBlockPhysicalTopologyInstance",
94975+
"properties": {
94976+
"instanceId": {
94977+
"description": "The InstanceId of the instance",
94978+
"format": "uint64",
94979+
"type": "string"
94980+
},
94981+
"physicalHostTopology": {
94982+
"$ref": "ReservationBlockPhysicalTopologyInstancePhysicalHostTopology",
94983+
"description": "The PhysicalHostTopology of instances within a Block resource."
94984+
},
94985+
"projectId": {
94986+
"description": "Project where the instance lives",
94987+
"format": "uint64",
94988+
"type": "string"
94989+
}
94990+
},
94991+
"type": "object"
94992+
},
94993+
"ReservationBlockPhysicalTopologyInstancePhysicalHostTopology": {
94994+
"description": "The PhysicalHostTopology of the instance within a Block resource.",
94995+
"id": "ReservationBlockPhysicalTopologyInstancePhysicalHostTopology",
94996+
"properties": {
94997+
"host": {
94998+
"description": "Host hash for a given instance",
94999+
"type": "string"
95000+
},
95001+
"subBlock": {
95002+
"description": "Sub block hash for a given instance",
95003+
"type": "string"
9494695004
}
9494795005
},
9494895006
"type": "object"

compute/v0.alpha/compute-gen.go

Lines changed: 55 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

compute/v0.alpha/compute3-gen.go

Lines changed: 15 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

compute/v1/compute-api.json

Lines changed: 59 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29837,6 +29837,21 @@
2983729837
"required": true,
2983829838
"type": "string"
2983929839
},
29840+
"view": {
29841+
"description": "View of the Block.",
29842+
"enum": [
29843+
"BASIC",
29844+
"BLOCK_VIEW_UNSPECIFIED",
29845+
"FULL"
29846+
],
29847+
"enumDescriptions": [
29848+
"This view includes basic information about the reservation block",
29849+
"The default / unset value. The API will default to the BASIC view.",
29850+
"Includes detailed topology view."
29851+
],
29852+
"location": "query",
29853+
"type": "string"
29854+
},
2984029855
"zone": {
2984129856
"description": "Name of the zone for this request. Zone name should conform to RFC1035.",
2984229857
"location": "path",
@@ -39935,7 +39950,7 @@
3993539950
}
3993639951
}
3993739952
},
39938-
"revision": "20250626",
39953+
"revision": "20250708",
3993939954
"rootUrl": "https://compute.googleapis.com/",
3994039955
"schemas": {
3994139956
"AWSV4Signature": {
@@ -73858,6 +73873,49 @@
7385873873
"cluster": {
7385973874
"description": "The cluster name of the reservation block.",
7386073875
"type": "string"
73876+
},
73877+
"instances": {
73878+
"description": "The detailed instances information for a given Block",
73879+
"items": {
73880+
"$ref": "ReservationBlockPhysicalTopologyInstance"
73881+
},
73882+
"type": "array"
73883+
}
73884+
},
73885+
"type": "object"
73886+
},
73887+
"ReservationBlockPhysicalTopologyInstance": {
73888+
"description": "The instances information for a given Block",
73889+
"id": "ReservationBlockPhysicalTopologyInstance",
73890+
"properties": {
73891+
"instanceId": {
73892+
"description": "The InstanceId of the instance",
73893+
"format": "uint64",
73894+
"type": "string"
73895+
},
73896+
"physicalHostTopology": {
73897+
"$ref": "ReservationBlockPhysicalTopologyInstancePhysicalHostTopology",
73898+
"description": "The PhysicalHostTopology of instances within a Block resource."
73899+
},
73900+
"projectId": {
73901+
"description": "Project where the instance lives",
73902+
"format": "uint64",
73903+
"type": "string"
73904+
}
73905+
},
73906+
"type": "object"
73907+
},
73908+
"ReservationBlockPhysicalTopologyInstancePhysicalHostTopology": {
73909+
"description": "The PhysicalHostTopology of the instance within a Block resource.",
73910+
"id": "ReservationBlockPhysicalTopologyInstancePhysicalHostTopology",
73911+
"properties": {
73912+
"host": {
73913+
"description": "Host hash for a given instance",
73914+
"type": "string"
73915+
},
73916+
"subBlock": {
73917+
"description": "Sub block hash for a given instance",
73918+
"type": "string"
7386173919
}
7386273920
},
7386373921
"type": "object"

compute/v1/compute-gen.go

Lines changed: 55 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)