Skip to content

Commit 71f2c5f

Browse files
feat(all): auto-regenerate discovery clients (#3279)
1 parent 23daa11 commit 71f2c5f

File tree

4 files changed

+92
-28
lines changed

4 files changed

+92
-28
lines changed

connectors/v1/connectors-api.json

Lines changed: 34 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@
194194
],
195195
"parameters": {
196196
"extraLocationTypes": {
197-
"description": "Optional. A list of extra location types that should be used as conditions for controlling the visibility of the locations.",
197+
"description": "Optional. Do not use this field. It is unsupported and is ignored unless explicitly documented otherwise. This is primarily for internal usage.",
198198
"location": "query",
199199
"repeated": true,
200200
"type": "string"
@@ -2757,7 +2757,7 @@
27572757
}
27582758
}
27592759
},
2760-
"revision": "20250721",
2760+
"revision": "20250813",
27612761
"rootUrl": "https://connectors.googleapis.com/",
27622762
"schemas": {
27632763
"AuditConfig": {
@@ -3788,19 +3788,9 @@
37883788
"description": "Indicate whether connector is being migrated to TLS.",
37893789
"type": "boolean"
37903790
},
3791-
"networkEgressMode": {
3792-
"description": "Indicate whether connector is being migrated to use direct VPC egress.",
3793-
"enum": [
3794-
"NETWORK_EGRESS_MODE_UNSPECIFIED",
3795-
"SERVERLESS_VPC_ACCESS_CONNECTOR",
3796-
"DIRECT_VPC_EGRESS"
3797-
],
3798-
"enumDescriptions": [
3799-
"Network egress mode is not specified.",
3800-
"Default model VPC Access Connector.",
3801-
"Direct VPC Egress."
3802-
],
3803-
"type": "string"
3791+
"networkEgressModeOverride": {
3792+
"$ref": "NetworkEgressModeOverride",
3793+
"description": "Network egress mode override to migrate to direct VPC egress."
38043794
},
38053795
"provisionCloudSpanner": {
38063796
"description": "Indicate whether cloud spanner is required for connector job.",
@@ -7229,6 +7219,35 @@
72297219
},
72307220
"type": "object"
72317221
},
7222+
"NetworkEgressModeOverride": {
7223+
"description": "NetworkEgressModeOverride provides the network egress mode override for a connector.",
7224+
"id": "NetworkEgressModeOverride",
7225+
"properties": {
7226+
"isEventingOverrideEnabled": {
7227+
"description": "boolean should be set to true to make sure only eventing enabled connections are migrated to direct vpc egress.",
7228+
"type": "boolean"
7229+
},
7230+
"isJobsOverrideEnabled": {
7231+
"description": "boolean should be set to true to make sure only async operations enabled connections are migrated to direct vpc egress.",
7232+
"type": "boolean"
7233+
},
7234+
"networkEgressMode": {
7235+
"description": "Determines the VPC Egress mode for the connector.",
7236+
"enum": [
7237+
"NETWORK_EGRESS_MODE_UNSPECIFIED",
7238+
"SERVERLESS_VPC_ACCESS_CONNECTOR",
7239+
"DIRECT_VPC_EGRESS"
7240+
],
7241+
"enumDescriptions": [
7242+
"Network Egress mode is not specified.",
7243+
"Default model VPC Access Connector.",
7244+
"Direct VPC Egress."
7245+
],
7246+
"type": "string"
7247+
}
7248+
},
7249+
"type": "object"
7250+
},
72327251
"NodeConfig": {
72337252
"description": "Node configuration for the connection.",
72347253
"id": "NodeConfig",

connectors/v1/connectors-gen.go

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

storage/v1/storage-api.json

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,7 @@
253253
"location": "northamerica-south1"
254254
}
255255
],
256-
"etag": "\"31383438373536343936353833383831333836\"",
256+
"etag": "\"3136333632333439343533383832363638313632\"",
257257
"icons": {
258258
"x16": "https://www.google.com/images/icons/product/cloud_storage-16.png",
259259
"x32": "https://www.google.com/images/icons/product/cloud_storage-32.png"
@@ -4544,7 +4544,7 @@
45444544
}
45454545
}
45464546
},
4547-
"revision": "20250718",
4547+
"revision": "20250814",
45484548
"rootUrl": "https://storage.googleapis.com/",
45494549
"schemas": {
45504550
"AdvanceRelocateBucketOperationRequest": {
@@ -5401,6 +5401,16 @@
54015401
"description": "If true, copies the source object's ACL; otherwise, uses the bucket's default object ACL. The default is false.",
54025402
"type": "boolean"
54035403
},
5404+
"createdAfterTime": {
5405+
"description": "Restores only the objects that were created after this time.",
5406+
"format": "date-time",
5407+
"type": "string"
5408+
},
5409+
"createdBeforeTime": {
5410+
"description": "Restores only the objects that were created before this time.",
5411+
"format": "date-time",
5412+
"type": "string"
5413+
},
54045414
"matchGlobs": {
54055415
"description": "Restores only the objects matching any of the specified glob(s). If this parameter is not specified, all objects will be restored within the specified time range.",
54065416
"items": {

storage/v1/storage-gen.go

Lines changed: 6 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)