Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
83 changes: 77 additions & 6 deletions alloydb/v1/alloydb-api.json
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@
],
"parameters": {
"extraLocationTypes": {
"description": "Optional. Do not use this field. It is unsupported and is ignored unless explicitly documented otherwise. This is primarily for internal usage.",
"description": "Optional. Unless explicitly documented otherwise, don't use this unsupported field which is primarily intended for internal usage.",
"location": "query",
"repeated": true,
"type": "string"
Expand Down Expand Up @@ -1622,7 +1622,7 @@
}
}
},
"revision": "20250820",
"revision": "20250904",
"rootUrl": "https://alloydb.googleapis.com/",
"schemas": {
"AuthorizedNetwork": {
Expand Down Expand Up @@ -4252,7 +4252,7 @@
"type": "object"
},
"StorageDatabasecenterPartnerapiV1mainDatabaseResourceFeed": {
"description": "DatabaseResourceFeed is the top level proto to be used to ingest different database resource level events into Condor platform. Next ID: 11",
"description": "DatabaseResourceFeed is the top level proto to be used to ingest different database resource level events into Condor platform. Next ID: 12",
"id": "StorageDatabasecenterPartnerapiV1mainDatabaseResourceFeed",
"properties": {
"backupdrMetadata": {
Expand All @@ -4263,6 +4263,10 @@
"$ref": "StorageDatabasecenterPartnerapiV1mainConfigBasedSignalData",
"description": "Config based signal data is used to ingest signals that are generated based on the configuration of the database resource."
},
"databaseResourceSignalData": {
"$ref": "StorageDatabasecenterPartnerapiV1mainDatabaseResourceSignalData",
"description": "Database resource signal data is used to ingest signals from database resource signal feeds."
},
"feedTimestamp": {
"description": "Required. Timestamp when feed is generated.",
"format": "google-datetime",
Expand Down Expand Up @@ -4802,7 +4806,7 @@
"type": "object"
},
"StorageDatabasecenterPartnerapiV1mainDatabaseResourceMetadata": {
"description": "Common model for database resource instance metadata. Next ID: 26",
"description": "Common model for database resource instance metadata. Next ID: 27",
"id": "StorageDatabasecenterPartnerapiV1mainDatabaseResourceMetadata",
"properties": {
"availabilityConfiguration": {
Expand Down Expand Up @@ -4855,12 +4859,14 @@
"enum": [
"EDITION_UNSPECIFIED",
"EDITION_ENTERPRISE",
"EDITION_ENTERPRISE_PLUS"
"EDITION_ENTERPRISE_PLUS",
"EDITION_STANDARD"
],
"enumDescriptions": [
"Default, to make it consistent with instance edition enum.",
"Represents the enterprise edition.",
"Represents the enterprise plus edition."
"Represents the enterprise plus edition.",
"Represents the standard edition."
],
"type": "string"
},
Expand Down Expand Up @@ -5005,6 +5011,10 @@
"userLabelSet": {
"$ref": "StorageDatabasecenterPartnerapiV1mainUserLabels",
"description": "User-provided labels associated with the resource"
},
"zone": {
"description": "The resource zone. This is only applicable for zonal resources and will be empty for regional and multi-regional resources.",
"type": "string"
}
},
"type": "object"
Expand Down Expand Up @@ -5381,6 +5391,67 @@
},
"type": "object"
},
"StorageDatabasecenterPartnerapiV1mainDatabaseResourceSignalData": {
"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",
"id": "StorageDatabasecenterPartnerapiV1mainDatabaseResourceSignalData",
"properties": {
"fullResourceName": {
"description": "Required. Full Resource name of the source resource.",
"type": "string"
},
"lastRefreshTime": {
"description": "Required. Last time signal was refreshed",
"format": "google-datetime",
"type": "string"
},
"resourceId": {
"$ref": "StorageDatabasecenterPartnerapiV1mainDatabaseResourceId",
"description": "Database resource id."
},
"signalBoolValue": {
"description": "Signal data for boolean signals.",
"type": "boolean"
},
"signalState": {
"description": "Required. Output only. Signal state of the signal",
"enum": [
"SIGNAL_STATE_UNSPECIFIED",
"ACTIVE",
"INACTIVE",
"DISMISSED"
],
"enumDescriptions": [
"Unspecified signal state.",
"Signal is active and requires attention.",
"Signal is inactive and does not require attention.",
"Signal is dismissed by the user and should not be shown to the user again."
],
"readOnly": true,
"type": "string"
},
"signalType": {
"description": "Required. Signal type of the signal",
"enum": [
"SIGNAL_TYPE_UNSPECIFIED",
"SIGNAL_TYPE_OUTDATED_MINOR_VERSION",
"SIGNAL_TYPE_DATABASE_AUDITING_DISABLED",
"SIGNAL_TYPE_NO_ROOT_PASSWORD",
"SIGNAL_TYPE_EXPOSED_TO_PUBLIC_ACCESS",
"SIGNAL_TYPE_UNENCRYPTED_CONNECTIONS"
],
"enumDescriptions": [
"Unspecified signal type.",
"Outdated Minor Version",
"Represents database auditing is disabled.",
"Represents if a database has a password configured for the root account or not.",
"Represents if a resource is exposed to public access.",
"Represents if a resources requires all incoming connections to use SSL or not."
],
"type": "string"
}
},
"type": "object"
},
"StorageDatabasecenterPartnerapiV1mainEntitlement": {
"description": "Proto representing the access that a user has to a specific feature/service. NextId: 3.",
"id": "StorageDatabasecenterPartnerapiV1mainEntitlement",
Expand Down
71 changes: 66 additions & 5 deletions alloydb/v1/alloydb-gen.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading