Skip to content

Commit 1987dc9

Browse files
feat(all): auto-regenerate discovery clients (#3072)
1 parent 6c04eef commit 1987dc9

29 files changed

+2367
-106
lines changed

alloydb/v1beta/alloydb-api.json

Lines changed: 79 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1613,7 +1613,7 @@
16131613
}
16141614
}
16151615
},
1616-
"revision": "20250308",
1616+
"revision": "20250312",
16171617
"rootUrl": "https://alloydb.googleapis.com/",
16181618
"schemas": {
16191619
"AuthorizedNetwork": {
@@ -2296,6 +2296,80 @@
22962296
},
22972297
"type": "object"
22982298
},
2299+
"ConnectionPoolConfig": {
2300+
"description": "Configuration for Managed Connection Pool (MCP).",
2301+
"id": "ConnectionPoolConfig",
2302+
"properties": {
2303+
"defaultPoolSize": {
2304+
"description": "Optional. Deprecated. Use 'flags' instead. The default pool size. Defaults to 20.",
2305+
"type": "string"
2306+
},
2307+
"enable": {
2308+
"description": "Optional. Deprecated; Prefer 'enabled' as this will be removed soon. TODO(b/394996708) move to reserved once the field is removed from the gcloud client.",
2309+
"type": "boolean"
2310+
},
2311+
"enabled": {
2312+
"description": "Optional. Whether to enable Managed Connection Pool (MCP).",
2313+
"type": "boolean"
2314+
},
2315+
"flags": {
2316+
"additionalProperties": {
2317+
"type": "string"
2318+
},
2319+
"description": "Optional. Connection Pool flags, as a list of \"key\": \"value\" pairs.",
2320+
"type": "object"
2321+
},
2322+
"ignoreStartupParameters": {
2323+
"description": "Optional. Deprecated. Use 'flags' instead. The list of startup parameters to ignore. Defaults to [\"extra_float_digits\"]",
2324+
"items": {
2325+
"type": "string"
2326+
},
2327+
"type": "array"
2328+
},
2329+
"maxClientConn": {
2330+
"description": "Optional. Deprecated. Use 'flags' instead. The maximum number of client connections allowed.",
2331+
"type": "string"
2332+
},
2333+
"maxPreparedStatements": {
2334+
"description": "Optional. Deprecated. Use 'flags' instead. The maximum number of prepared statements allowed. MCP makes sure that any statement prepared by a client, up to this limit, is available on the backing server connection in transaction and statement pooling mode. Even if the statement was originally prepared on another server connection. Defaults to 0.",
2335+
"type": "string"
2336+
},
2337+
"minPoolSize": {
2338+
"description": "Optional. Deprecated. Use 'flags' instead. The minimum pool size. Defaults to 0.",
2339+
"type": "string"
2340+
},
2341+
"poolMode": {
2342+
"description": "Optional. Deprecated. Use 'flags' instead. The pool mode. Defaults to `POOL_MODE_TRANSACTION`.",
2343+
"enum": [
2344+
"POOL_MODE_UNSPECIFIED",
2345+
"POOL_MODE_SESSION",
2346+
"POOL_MODE_TRANSACTION"
2347+
],
2348+
"enumDescriptions": [
2349+
"The pool mode is not specified. Defaults to `POOL_MODE_TRANSACTION`.",
2350+
"Server is released back to pool after a client disconnects.",
2351+
"Server is released back to pool after a transaction finishes."
2352+
],
2353+
"type": "string"
2354+
},
2355+
"queryWaitTimeout": {
2356+
"description": "Optional. Deprecated. Use 'flags' instead. The maximum number of seconds queries are allowed to spend waiting for execution. If the query is not assigned to a server during that time, the client is disconnected. 0 disables.",
2357+
"type": "string"
2358+
},
2359+
"serverIdleTimeout": {
2360+
"description": "Optional. Deprecated. Use 'flags' instead. The maximum number of seconds a server is allowed to be idle before it is disconnected. 0 disables.",
2361+
"type": "string"
2362+
},
2363+
"statsUsers": {
2364+
"description": "Optional. Deprecated. Use 'flags' instead. The list of users that are allowed to connect to the MCP stats console. The users must exist in the database.",
2365+
"items": {
2366+
"type": "string"
2367+
},
2368+
"type": "array"
2369+
}
2370+
},
2371+
"type": "object"
2372+
},
22992373
"ContinuousBackupConfig": {
23002374
"description": "ContinuousBackupConfig describes the continuous backups recovery configurations of a cluster.",
23012375
"id": "ContinuousBackupConfig",
@@ -2780,6 +2854,10 @@
27802854
"$ref": "ClientConnectionConfig",
27812855
"description": "Optional. Client connection specific configurations"
27822856
},
2857+
"connectionPoolConfig": {
2858+
"$ref": "ConnectionPoolConfig",
2859+
"description": "Optional. The configuration for Managed Connection Pool (MCP)."
2860+
},
27832861
"createTime": {
27842862
"description": "Output only. Create time stamp",
27852863
"format": "google-datetime",

alloydb/v1beta/alloydb-gen.go

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

backupdr/v1/backupdr-api.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1680,7 +1680,7 @@
16801680
"type": "string"
16811681
},
16821682
"pageSize": {
1683-
"description": "Optional. Requested page size. Server may return fewer items than requested. If unspecified, server will pick an appropriate default.",
1683+
"description": "Optional. Requested page size. Server may return fewer items than requested. If unspecified, server will use 100 as default. Maximum value is 500 and values above 500 will be coerced to 500.",
16841684
"format": "int32",
16851685
"location": "query",
16861686
"type": "integer"
@@ -1745,7 +1745,7 @@
17451745
}
17461746
}
17471747
},
1748-
"revision": "20250305",
1748+
"revision": "20250317",
17491749
"rootUrl": "https://backupdr.googleapis.com/",
17501750
"schemas": {
17511751
"AbandonBackupRequest": {

backupdr/v1/backupdr-gen.go

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

chat/v1/chat-api.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1184,6 +1184,8 @@
11841184
"$ref": "SpaceEvent"
11851185
},
11861186
"scopes": [
1187+
"https://www.googleapis.com/auth/chat.app.memberships",
1188+
"https://www.googleapis.com/auth/chat.app.spaces",
11871189
"https://www.googleapis.com/auth/chat.memberships",
11881190
"https://www.googleapis.com/auth/chat.memberships.readonly",
11891191
"https://www.googleapis.com/auth/chat.messages",
@@ -1232,6 +1234,8 @@
12321234
"$ref": "ListSpaceEventsResponse"
12331235
},
12341236
"scopes": [
1237+
"https://www.googleapis.com/auth/chat.app.memberships",
1238+
"https://www.googleapis.com/auth/chat.app.spaces",
12351239
"https://www.googleapis.com/auth/chat.memberships",
12361240
"https://www.googleapis.com/auth/chat.memberships.readonly",
12371241
"https://www.googleapis.com/auth/chat.messages",
@@ -1410,7 +1414,7 @@
14101414
}
14111415
}
14121416
},
1413-
"revision": "20250313",
1417+
"revision": "20250316",
14141418
"rootUrl": "https://chat.googleapis.com/",
14151419
"schemas": {
14161420
"AccessSettings": {

datacatalog/v1/datacatalog-api.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@
161161
"type": "string"
162162
},
163163
"sqlResource": {
164-
"description": "The SQL name of the entry. SQL names are case-sensitive. Examples: * `pubsub.topic.{PROJECT_ID}.{TOPIC_ID}` * `pubsub.topic.{PROJECT_ID}.`\\``{TOPIC.ID.SEPARATED.WITH.DOTS}`\\` * `bigquery.table.{PROJECT_ID}.{DATASET_ID}.{TABLE_ID}` * `bigquery.dataset.{PROJECT_ID}.{DATASET_ID}` * `datacatalog.entry.{PROJECT_ID}.{LOCATION_ID}.{ENTRY_GROUP_ID}.{ENTRY_ID}` Identifiers (`*_ID`) should comply with the [Lexical structure in Standard SQL] (https://cloud.google.com/bigquery/docs/reference/standard-sql/lexical).",
164+
"description": "The SQL name of the entry. SQL names are case-sensitive. Examples: * `pubsub.topic.{PROJECT_ID}.{TOPIC_ID}` * `pubsub.topic.{PROJECT_ID}.`\\``{TOPIC.ID.SEPARATED.WITH.DOTS}`\\` * `bigquery.table.{PROJECT_ID}.{DATASET_ID}.{TABLE_ID}` * `bigquery.dataset.{PROJECT_ID}.{DATASET_ID}` * `datacatalog.entry.{PROJECT_ID}.{LOCATION_ID}.{ENTRY_GROUP_ID}.{ENTRY_ID}` Identifiers (`*_ID`) should comply with the [Lexical structure in GoogleSQL] (https://cloud.google.com/bigquery/docs/reference/standard-sql/lexical).",
165165
"location": "query",
166166
"type": "string"
167167
}
@@ -2339,7 +2339,7 @@
23392339
}
23402340
}
23412341
},
2342-
"revision": "20250212",
2342+
"revision": "20250314",
23432343
"rootUrl": "https://datacatalog.googleapis.com/",
23442344
"schemas": {
23452345
"Binding": {

datacatalog/v1/datacatalog-gen.go

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

datacatalog/v1beta1/datacatalog-api.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@
146146
"type": "string"
147147
},
148148
"sqlResource": {
149-
"description": "The SQL name of the entry. SQL names are case-sensitive. Examples: * `pubsub.project_id.topic_id` * ``pubsub.project_id.`topic.id.with.dots` `` * `bigquery.table.project_id.dataset_id.table_id` * `bigquery.dataset.project_id.dataset_id` * `datacatalog.entry.project_id.location_id.entry_group_id.entry_id` `*_id`s should satisfy the standard SQL rules for identifiers. https://cloud.google.com/bigquery/docs/reference/standard-sql/lexical.",
149+
"description": "The SQL name of the entry. SQL names are case-sensitive. Examples: * `pubsub.project_id.topic_id` * ``pubsub.project_id.`topic.id.with.dots` `` * `bigquery.table.project_id.dataset_id.table_id` * `bigquery.dataset.project_id.dataset_id` * `datacatalog.entry.project_id.location_id.entry_group_id.entry_id` `*_id`s should satisfy the GoogleSQL rules for identifiers. https://cloud.google.com/bigquery/docs/reference/standard-sql/lexical.",
150150
"location": "query",
151151
"type": "string"
152152
}
@@ -1855,7 +1855,7 @@
18551855
}
18561856
}
18571857
},
1858-
"revision": "20250212",
1858+
"revision": "20250314",
18591859
"rootUrl": "https://datacatalog.googleapis.com/",
18601860
"schemas": {
18611861
"Binding": {

datacatalog/v1beta1/datacatalog-gen.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dataform/v1beta1/dataform-api.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@
206206
]
207207
},
208208
"updateConfig": {
209-
"description": "Update default config for a given project and location. **Note:** *This method does not fully implement*, (see [AIP/134](https://google.aip.dev/134), in particular: - The wildcard entry (**\\***) is treated as a bad request - When the **field_mask** is omitted, instead of only updating the set fields, the request is treated as a full update on all modifiable fields",
209+
"description": "Update default config for a given project and location. **Note:** *This method does not fully implement [AIP/134](https://google.aip.dev/134). The wildcard entry (\\*) is treated as a bad request, and when the `field_mask` is omitted, the request is treated as a full update on all modifiable fields.*",
210210
"flatPath": "v1beta1/projects/{projectsId}/locations/{locationsId}/config",
211211
"httpMethod": "PATCH",
212212
"id": "dataform.projects.locations.updateConfig",
@@ -533,7 +533,7 @@
533533
]
534534
},
535535
"patch": {
536-
"description": "Updates a single Repository. **Note:** *This method does not fully implement*, (see [AIP/134](https://google.aip.dev/134), in particular: - The wildcard entry (**\\***) is treated as a bad request - When the **field_mask** is omitted, instead of only updating the set fields, the request is treated as a full update on all modifiable fields",
536+
"description": "Updates a single Repository. **Note:** *This method does not fully implement [AIP/134](https://google.aip.dev/134). The wildcard entry (\\*) is treated as a bad request, and when the `field_mask` is omitted, the request is treated as a full update on all modifiable fields.*",
537537
"flatPath": "v1beta1/projects/{projectsId}/locations/{locationsId}/repositories/{repositoriesId}",
538538
"httpMethod": "PATCH",
539539
"id": "dataform.projects.locations.repositories.patch",
@@ -984,7 +984,7 @@
984984
]
985985
},
986986
"patch": {
987-
"description": "Updates a single ReleaseConfig. **Note:** *This method does not fully implement*, (see [AIP/134](https://google.aip.dev/134), in particular: - The wildcard entry (**\\***) is treated as a bad request - When the **field_mask** is omitted, instead of only updating the set fields, the request is treated as a full update on all modifiable fields",
987+
"description": "Updates a single ReleaseConfig. **Note:** *This method does not fully implement [AIP/134](https://google.aip.dev/134). The wildcard entry (\\*) is treated as a bad request, and when the `field_mask` is omitted, the request is treated as a full update on all modifiable fields.*",
988988
"flatPath": "v1beta1/projects/{projectsId}/locations/{locationsId}/repositories/{repositoriesId}/releaseConfigs/{releaseConfigsId}",
989989
"httpMethod": "PATCH",
990990
"id": "dataform.projects.locations.repositories.releaseConfigs.patch",
@@ -1146,7 +1146,7 @@
11461146
]
11471147
},
11481148
"patch": {
1149-
"description": "Updates a single WorkflowConfig. **Note:** *This method does not fully implement*, (see [AIP/134](https://google.aip.dev/134), in particular: - The wildcard entry (**\\***) is treated as a bad request - When the **field_mask** is omitted, instead of only updating the set fields, the request is treated as a full update on all modifiable fields",
1149+
"description": "Updates a single WorkflowConfig. **Note:** *This method does not fully implement [AIP/134](https://google.aip.dev/134). The wildcard entry (\\*) is treated as a bad request, and when the `field_mask` is omitted, the request is treated as a full update on all modifiable fields.*",
11501150
"flatPath": "v1beta1/projects/{projectsId}/locations/{locationsId}/repositories/{repositoriesId}/workflowConfigs/{workflowConfigsId}",
11511151
"httpMethod": "PATCH",
11521152
"id": "dataform.projects.locations.repositories.workflowConfigs.patch",
@@ -2141,7 +2141,7 @@
21412141
}
21422142
}
21432143
},
2144-
"revision": "20250306",
2144+
"revision": "20250316",
21452145
"rootUrl": "https://dataform.googleapis.com/",
21462146
"schemas": {
21472147
"Assertion": {

0 commit comments

Comments
 (0)