Skip to content

Commit 7ef0f9b

Browse files
feat(all): auto-regenerate discovery clients (#3319)
1 parent 307f588 commit 7ef0f9b

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+4983
-245
lines changed

alloydb/v1/alloydb-api.json

Lines changed: 34 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1622,7 +1622,7 @@
16221622
}
16231623
}
16241624
},
1625-
"revision": "20250904",
1625+
"revision": "20250910",
16261626
"rootUrl": "https://alloydb.googleapis.com/",
16271627
"schemas": {
16281628
"AuthorizedNetwork": {
@@ -2308,6 +2308,30 @@
23082308
},
23092309
"type": "object"
23102310
},
2311+
"ConnectionPoolConfig": {
2312+
"description": "Configuration for Managed Connection Pool (MCP).",
2313+
"id": "ConnectionPoolConfig",
2314+
"properties": {
2315+
"enabled": {
2316+
"description": "Optional. Whether to enable Managed Connection Pool (MCP).",
2317+
"type": "boolean"
2318+
},
2319+
"flags": {
2320+
"additionalProperties": {
2321+
"type": "string"
2322+
},
2323+
"description": "Optional. Connection Pool flags, as a list of \"key\": \"value\" pairs.",
2324+
"type": "object"
2325+
},
2326+
"poolerCount": {
2327+
"description": "Output only. The number of running poolers per instance.",
2328+
"format": "int32",
2329+
"readOnly": true,
2330+
"type": "integer"
2331+
}
2332+
},
2333+
"type": "object"
2334+
},
23112335
"ContinuousBackupConfig": {
23122336
"description": "ContinuousBackupConfig describes the continuous backups recovery configurations of a cluster.",
23132337
"id": "ContinuousBackupConfig",
@@ -2785,6 +2809,10 @@
27852809
"$ref": "ClientConnectionConfig",
27862810
"description": "Optional. Client connection specific configurations"
27872811
},
2812+
"connectionPoolConfig": {
2813+
"$ref": "ConnectionPoolConfig",
2814+
"description": "Optional. The configuration for Managed Connection Pool (MCP)."
2815+
},
27882816
"createTime": {
27892817
"description": "Output only. Create time stamp",
27902818
"format": "google-datetime",
@@ -4252,7 +4280,7 @@
42524280
"type": "object"
42534281
},
42544282
"StorageDatabasecenterPartnerapiV1mainDatabaseResourceFeed": {
4255-
"description": "DatabaseResourceFeed is the top level proto to be used to ingest different database resource level events into Condor platform. Next ID: 12",
4283+
"description": "DatabaseResourceFeed is the top level proto to be used to ingest different database resource level events into Condor platform. Next ID: 13",
42564284
"id": "StorageDatabasecenterPartnerapiV1mainDatabaseResourceFeed",
42574285
"properties": {
42584286
"backupdrMetadata": {
@@ -4281,7 +4309,8 @@
42814309
"SECURITY_FINDING_DATA",
42824310
"RECOMMENDATION_SIGNAL_DATA",
42834311
"CONFIG_BASED_SIGNAL_DATA",
4284-
"BACKUPDR_METADATA"
4312+
"BACKUPDR_METADATA",
4313+
"DATABASE_RESOURCE_SIGNAL_DATA"
42854314
],
42864315
"enumDescriptions": [
42874316
"",
@@ -4290,7 +4319,8 @@
42904319
"Database resource security health signal data",
42914320
"Database resource recommendation signal data",
42924321
"Database config based signal data",
4293-
"Database resource metadata from BackupDR"
4322+
"Database resource metadata from BackupDR",
4323+
"Database resource signal data"
42944324
],
42954325
"type": "string"
42964326
},

alloydb/v1/alloydb-gen.go

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

alloydb/v1alpha/alloydb-api.json

Lines changed: 16 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1622,7 +1622,7 @@
16221622
}
16231623
}
16241624
},
1625-
"revision": "20250904",
1625+
"revision": "20250910",
16261626
"rootUrl": "https://alloydb.googleapis.com/",
16271627
"schemas": {
16281628
"AuthorizedNetwork": {
@@ -2347,10 +2347,12 @@
23472347
"id": "ConnectionPoolConfig",
23482348
"properties": {
23492349
"defaultPoolSize": {
2350+
"deprecated": true,
23502351
"description": "Optional. Deprecated. Use 'flags' instead. The default pool size. Defaults to 20. Note: This field should not be added to client libraries if not present already.",
23512352
"type": "string"
23522353
},
23532354
"enable": {
2355+
"deprecated": true,
23542356
"description": "Optional. Deprecated; Prefer 'enabled' as this will be removed soon.",
23552357
"type": "boolean"
23562358
},
@@ -2366,25 +2368,30 @@
23662368
"type": "object"
23672369
},
23682370
"ignoreStartupParameters": {
2371+
"deprecated": true,
23692372
"description": "Optional. Deprecated. Use 'flags' instead. The list of startup parameters to ignore. Defaults to [\"extra_float_digits\"] Note: This field should not be added to client libraries if not present already.",
23702373
"items": {
23712374
"type": "string"
23722375
},
23732376
"type": "array"
23742377
},
23752378
"maxClientConn": {
2379+
"deprecated": true,
23762380
"description": "Optional. Deprecated. Use 'flags' instead. The maximum number of client connections allowed. Note: This field should not be added to client libraries if not present already.",
23772381
"type": "string"
23782382
},
23792383
"maxPreparedStatements": {
2384+
"deprecated": true,
23802385
"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. Note: This field should not be added to client libraries if not present already.",
23812386
"type": "string"
23822387
},
23832388
"minPoolSize": {
2389+
"deprecated": true,
23842390
"description": "Optional. Deprecated. Use 'flags' instead. The minimum pool size. Defaults to 0. Note: This field should not be added to client libraries if not present already.",
23852391
"type": "string"
23862392
},
23872393
"poolMode": {
2394+
"deprecated": true,
23882395
"description": "Optional. Deprecated. Use 'flags' instead. The pool mode. Defaults to `POOL_MODE_TRANSACTION`. Note: This field should not be added to client libraries if not present already.",
23892396
"enum": [
23902397
"POOL_MODE_UNSPECIFIED",
@@ -2405,14 +2412,17 @@
24052412
"type": "integer"
24062413
},
24072414
"queryWaitTimeout": {
2415+
"deprecated": true,
24082416
"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. Note: This field should not be added to client libraries if not present already.",
24092417
"type": "string"
24102418
},
24112419
"serverIdleTimeout": {
2420+
"deprecated": true,
24122421
"description": "Optional. Deprecated. Use 'flags' instead. The maximum number of seconds a server is allowed to be idle before it is disconnected. 0 disables. Note: This field should not be added to client libraries if not present already.",
24132422
"type": "string"
24142423
},
24152424
"statsUsers": {
2425+
"deprecated": true,
24162426
"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. Note: This field should not be added to client libraries if not present already.",
24172427
"items": {
24182428
"type": "string"
@@ -4420,7 +4430,7 @@
44204430
"type": "object"
44214431
},
44224432
"StorageDatabasecenterPartnerapiV1mainDatabaseResourceFeed": {
4423-
"description": "DatabaseResourceFeed is the top level proto to be used to ingest different database resource level events into Condor platform. Next ID: 12",
4433+
"description": "DatabaseResourceFeed is the top level proto to be used to ingest different database resource level events into Condor platform. Next ID: 13",
44244434
"id": "StorageDatabasecenterPartnerapiV1mainDatabaseResourceFeed",
44254435
"properties": {
44264436
"backupdrMetadata": {
@@ -4449,7 +4459,8 @@
44494459
"SECURITY_FINDING_DATA",
44504460
"RECOMMENDATION_SIGNAL_DATA",
44514461
"CONFIG_BASED_SIGNAL_DATA",
4452-
"BACKUPDR_METADATA"
4462+
"BACKUPDR_METADATA",
4463+
"DATABASE_RESOURCE_SIGNAL_DATA"
44534464
],
44544465
"enumDescriptions": [
44554466
"",
@@ -4458,7 +4469,8 @@
44584469
"Database resource security health signal data",
44594470
"Database resource recommendation signal data",
44604471
"Database config based signal data",
4461-
"Database resource metadata from BackupDR"
4472+
"Database resource metadata from BackupDR",
4473+
"Database resource signal data"
44624474
],
44634475
"type": "string"
44644476
},

alloydb/v1alpha/alloydb-gen.go

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

alloydb/v1beta/alloydb-api.json

Lines changed: 16 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1619,7 +1619,7 @@
16191619
}
16201620
}
16211621
},
1622-
"revision": "20250904",
1622+
"revision": "20250910",
16231623
"rootUrl": "https://alloydb.googleapis.com/",
16241624
"schemas": {
16251625
"AuthorizedNetwork": {
@@ -2328,10 +2328,12 @@
23282328
"id": "ConnectionPoolConfig",
23292329
"properties": {
23302330
"defaultPoolSize": {
2331+
"deprecated": true,
23312332
"description": "Optional. Deprecated. Use 'flags' instead. The default pool size. Defaults to 20. Note: This field should not be added to client libraries if not present already.",
23322333
"type": "string"
23332334
},
23342335
"enable": {
2336+
"deprecated": true,
23352337
"description": "Optional. Deprecated; Prefer 'enabled' as this will be removed soon.",
23362338
"type": "boolean"
23372339
},
@@ -2347,25 +2349,30 @@
23472349
"type": "object"
23482350
},
23492351
"ignoreStartupParameters": {
2352+
"deprecated": true,
23502353
"description": "Optional. Deprecated. Use 'flags' instead. The list of startup parameters to ignore. Defaults to [\"extra_float_digits\"] Note: This field should not be added to client libraries if not present already.",
23512354
"items": {
23522355
"type": "string"
23532356
},
23542357
"type": "array"
23552358
},
23562359
"maxClientConn": {
2360+
"deprecated": true,
23572361
"description": "Optional. Deprecated. Use 'flags' instead. The maximum number of client connections allowed. Note: This field should not be added to client libraries if not present already.",
23582362
"type": "string"
23592363
},
23602364
"maxPreparedStatements": {
2365+
"deprecated": true,
23612366
"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. Note: This field should not be added to client libraries if not present already.",
23622367
"type": "string"
23632368
},
23642369
"minPoolSize": {
2370+
"deprecated": true,
23652371
"description": "Optional. Deprecated. Use 'flags' instead. The minimum pool size. Defaults to 0. Note: This field should not be added to client libraries if not present already.",
23662372
"type": "string"
23672373
},
23682374
"poolMode": {
2375+
"deprecated": true,
23692376
"description": "Optional. Deprecated. Use 'flags' instead. The pool mode. Defaults to `POOL_MODE_TRANSACTION`. Note: This field should not be added to client libraries if not present already.",
23702377
"enum": [
23712378
"POOL_MODE_UNSPECIFIED",
@@ -2386,14 +2393,17 @@
23862393
"type": "integer"
23872394
},
23882395
"queryWaitTimeout": {
2396+
"deprecated": true,
23892397
"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. Note: This field should not be added to client libraries if not present already.",
23902398
"type": "string"
23912399
},
23922400
"serverIdleTimeout": {
2401+
"deprecated": true,
23932402
"description": "Optional. Deprecated. Use 'flags' instead. The maximum number of seconds a server is allowed to be idle before it is disconnected. 0 disables. Note: This field should not be added to client libraries if not present already.",
23942403
"type": "string"
23952404
},
23962405
"statsUsers": {
2406+
"deprecated": true,
23972407
"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. Note: This field should not be added to client libraries if not present already.",
23982408
"items": {
23992409
"type": "string"
@@ -4396,7 +4406,7 @@
43964406
"type": "object"
43974407
},
43984408
"StorageDatabasecenterPartnerapiV1mainDatabaseResourceFeed": {
4399-
"description": "DatabaseResourceFeed is the top level proto to be used to ingest different database resource level events into Condor platform. Next ID: 12",
4409+
"description": "DatabaseResourceFeed is the top level proto to be used to ingest different database resource level events into Condor platform. Next ID: 13",
44004410
"id": "StorageDatabasecenterPartnerapiV1mainDatabaseResourceFeed",
44014411
"properties": {
44024412
"backupdrMetadata": {
@@ -4425,7 +4435,8 @@
44254435
"SECURITY_FINDING_DATA",
44264436
"RECOMMENDATION_SIGNAL_DATA",
44274437
"CONFIG_BASED_SIGNAL_DATA",
4428-
"BACKUPDR_METADATA"
4438+
"BACKUPDR_METADATA",
4439+
"DATABASE_RESOURCE_SIGNAL_DATA"
44294440
],
44304441
"enumDescriptions": [
44314442
"",
@@ -4434,7 +4445,8 @@
44344445
"Database resource security health signal data",
44354446
"Database resource recommendation signal data",
44364447
"Database config based signal data",
4437-
"Database resource metadata from BackupDR"
4448+
"Database resource metadata from BackupDR",
4449+
"Database resource signal data"
44384450
],
44394451
"type": "string"
44404452
},

alloydb/v1beta/alloydb-gen.go

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

0 commit comments

Comments
 (0)