Skip to content

Commit 5ed74f3

Browse files
feat(all): auto-regenerate discovery clients (#3310)
1 parent 6d11ef4 commit 5ed74f3

File tree

52 files changed

+4696
-1422
lines changed

Some content is hidden

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

52 files changed

+4696
-1422
lines changed

alloydb/v1/alloydb-api.json

Lines changed: 77 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@
144144
],
145145
"parameters": {
146146
"extraLocationTypes": {
147-
"description": "Optional. Do not use this field. It is unsupported and is ignored unless explicitly documented otherwise. This is primarily for internal usage.",
147+
"description": "Optional. Unless explicitly documented otherwise, don't use this unsupported field which is primarily intended for internal usage.",
148148
"location": "query",
149149
"repeated": true,
150150
"type": "string"
@@ -1622,7 +1622,7 @@
16221622
}
16231623
}
16241624
},
1625-
"revision": "20250820",
1625+
"revision": "20250904",
16261626
"rootUrl": "https://alloydb.googleapis.com/",
16271627
"schemas": {
16281628
"AuthorizedNetwork": {
@@ -4252,7 +4252,7 @@
42524252
"type": "object"
42534253
},
42544254
"StorageDatabasecenterPartnerapiV1mainDatabaseResourceFeed": {
4255-
"description": "DatabaseResourceFeed is the top level proto to be used to ingest different database resource level events into Condor platform. Next ID: 11",
4255+
"description": "DatabaseResourceFeed is the top level proto to be used to ingest different database resource level events into Condor platform. Next ID: 12",
42564256
"id": "StorageDatabasecenterPartnerapiV1mainDatabaseResourceFeed",
42574257
"properties": {
42584258
"backupdrMetadata": {
@@ -4263,6 +4263,10 @@
42634263
"$ref": "StorageDatabasecenterPartnerapiV1mainConfigBasedSignalData",
42644264
"description": "Config based signal data is used to ingest signals that are generated based on the configuration of the database resource."
42654265
},
4266+
"databaseResourceSignalData": {
4267+
"$ref": "StorageDatabasecenterPartnerapiV1mainDatabaseResourceSignalData",
4268+
"description": "Database resource signal data is used to ingest signals from database resource signal feeds."
4269+
},
42664270
"feedTimestamp": {
42674271
"description": "Required. Timestamp when feed is generated.",
42684272
"format": "google-datetime",
@@ -4802,7 +4806,7 @@
48024806
"type": "object"
48034807
},
48044808
"StorageDatabasecenterPartnerapiV1mainDatabaseResourceMetadata": {
4805-
"description": "Common model for database resource instance metadata. Next ID: 26",
4809+
"description": "Common model for database resource instance metadata. Next ID: 27",
48064810
"id": "StorageDatabasecenterPartnerapiV1mainDatabaseResourceMetadata",
48074811
"properties": {
48084812
"availabilityConfiguration": {
@@ -4855,12 +4859,14 @@
48554859
"enum": [
48564860
"EDITION_UNSPECIFIED",
48574861
"EDITION_ENTERPRISE",
4858-
"EDITION_ENTERPRISE_PLUS"
4862+
"EDITION_ENTERPRISE_PLUS",
4863+
"EDITION_STANDARD"
48594864
],
48604865
"enumDescriptions": [
48614866
"Default, to make it consistent with instance edition enum.",
48624867
"Represents the enterprise edition.",
4863-
"Represents the enterprise plus edition."
4868+
"Represents the enterprise plus edition.",
4869+
"Represents the standard edition."
48644870
],
48654871
"type": "string"
48664872
},
@@ -5005,6 +5011,10 @@
50055011
"userLabelSet": {
50065012
"$ref": "StorageDatabasecenterPartnerapiV1mainUserLabels",
50075013
"description": "User-provided labels associated with the resource"
5014+
},
5015+
"zone": {
5016+
"description": "The resource zone. This is only applicable for zonal resources and will be empty for regional and multi-regional resources.",
5017+
"type": "string"
50085018
}
50095019
},
50105020
"type": "object"
@@ -5381,6 +5391,67 @@
53815391
},
53825392
"type": "object"
53835393
},
5394+
"StorageDatabasecenterPartnerapiV1mainDatabaseResourceSignalData": {
5395+
"description": "Database resource signal data. This is used to send signals to Condor which are based on the DB/Instance/Fleet level configurations. These will be used to send signals for all inventory types. Next ID: 7",
5396+
"id": "StorageDatabasecenterPartnerapiV1mainDatabaseResourceSignalData",
5397+
"properties": {
5398+
"fullResourceName": {
5399+
"description": "Required. Full Resource name of the source resource.",
5400+
"type": "string"
5401+
},
5402+
"lastRefreshTime": {
5403+
"description": "Required. Last time signal was refreshed",
5404+
"format": "google-datetime",
5405+
"type": "string"
5406+
},
5407+
"resourceId": {
5408+
"$ref": "StorageDatabasecenterPartnerapiV1mainDatabaseResourceId",
5409+
"description": "Database resource id."
5410+
},
5411+
"signalBoolValue": {
5412+
"description": "Signal data for boolean signals.",
5413+
"type": "boolean"
5414+
},
5415+
"signalState": {
5416+
"description": "Required. Output only. Signal state of the signal",
5417+
"enum": [
5418+
"SIGNAL_STATE_UNSPECIFIED",
5419+
"ACTIVE",
5420+
"INACTIVE",
5421+
"DISMISSED"
5422+
],
5423+
"enumDescriptions": [
5424+
"Unspecified signal state.",
5425+
"Signal is active and requires attention.",
5426+
"Signal is inactive and does not require attention.",
5427+
"Signal is dismissed by the user and should not be shown to the user again."
5428+
],
5429+
"readOnly": true,
5430+
"type": "string"
5431+
},
5432+
"signalType": {
5433+
"description": "Required. Signal type of the signal",
5434+
"enum": [
5435+
"SIGNAL_TYPE_UNSPECIFIED",
5436+
"SIGNAL_TYPE_OUTDATED_MINOR_VERSION",
5437+
"SIGNAL_TYPE_DATABASE_AUDITING_DISABLED",
5438+
"SIGNAL_TYPE_NO_ROOT_PASSWORD",
5439+
"SIGNAL_TYPE_EXPOSED_TO_PUBLIC_ACCESS",
5440+
"SIGNAL_TYPE_UNENCRYPTED_CONNECTIONS"
5441+
],
5442+
"enumDescriptions": [
5443+
"Unspecified signal type.",
5444+
"Outdated Minor Version",
5445+
"Represents database auditing is disabled.",
5446+
"Represents if a database has a password configured for the root account or not.",
5447+
"Represents if a resource is exposed to public access.",
5448+
"Represents if a resources requires all incoming connections to use SSL or not."
5449+
],
5450+
"type": "string"
5451+
}
5452+
},
5453+
"type": "object"
5454+
},
53845455
"StorageDatabasecenterPartnerapiV1mainEntitlement": {
53855456
"description": "Proto representing the access that a user has to a specific feature/service. NextId: 3.",
53865457
"id": "StorageDatabasecenterPartnerapiV1mainEntitlement",

alloydb/v1/alloydb-gen.go

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

0 commit comments

Comments
 (0)