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
60 changes: 59 additions & 1 deletion alloydb/v1alpha/alloydb-api.json
Original file line number Diff line number Diff line change
Expand Up @@ -1879,7 +1879,7 @@
}
}
},
"revision": "20260108",
"revision": "20260122",
"rootUrl": "https://alloydb.googleapis.com/",
"schemas": {
"AuthorizedNetwork": {
Expand Down Expand Up @@ -3377,6 +3377,20 @@
"readOnly": true,
"type": "string"
},
"dataApiAccess": {
"description": "Optional. Controls whether the Data API is enabled for this instance. When enabled, this allows authorized users to connect to the instance from the public internet using the `executeSql` API, even for private IP instances. If this is not specified, the data API is enabled by default for Google internal services like AlloyDB Studio. Disable it explicitly to disallow Google internal services as well.",
"enum": [
"DEFAULT_DATA_API_ENABLED_FOR_GOOGLE_CLOUD_SERVICES",
"DISABLED",
"ENABLED"
],
"enumDescriptions": [
"DEFAULT_DATA_API_ENABLED_FOR_GOOGLE_CLOUD_SERVICES is a default value that allows Google internal services like AlloyDB Studio to access the instance.",
"Data API access is disabled for this instance.",
"Data API access is enabled for this instance. For private IP instances, this allows authorized users to access the instance from the public internet using the ExecuteSql API."
],
"type": "string"
},
"databaseFlags": {
"additionalProperties": {
"type": "string"
Expand Down Expand Up @@ -6421,9 +6435,36 @@
"$ref": "StorageDatabasecenterPartnerapiV1mainResourceMaintenanceSchedule",
"description": "Optional. Maintenance window for the database resource."
},
"maintenanceState": {
"description": "Output only. Current state of maintenance on the database resource.",
"enum": [
"MAINTENANCE_STATE_UNSPECIFIED",
"CREATING",
"READY",
"UPDATING",
"REPAIRING",
"DELETING",
"ERROR"
],
"enumDescriptions": [
"Unspecified state.",
"Database resource is being created.",
"Database resource has been created and is ready to use.",
"Database resource is being updated.",
"Database resource is unheathy and under repair.",
"Database resource is being deleted.",
"Database resource encountered an error and is in indeterministic state."
],
"readOnly": true,
"type": "string"
},
"maintenanceVersion": {
"description": "Optional. Current Maintenance version of the database resource. Example: \"MYSQL_8_0_41.R20250531.01_15\"",
"type": "string"
},
"upcomingMaintenance": {
"$ref": "StorageDatabasecenterPartnerapiV1mainUpcomingMaintenance",
"description": "Optional. Upcoming maintenance for the database resource. This field is populated once SLM generates and publishes upcoming maintenance window."
}
},
"type": "object"
Expand Down Expand Up @@ -6539,6 +6580,23 @@
},
"type": "object"
},
"StorageDatabasecenterPartnerapiV1mainUpcomingMaintenance": {
"description": "Upcoming maintenance for the database resource. This is generated by SLM once the upcoming maintenance schedule is published.",
"id": "StorageDatabasecenterPartnerapiV1mainUpcomingMaintenance",
"properties": {
"endTime": {
"description": "Optional. The end time of the upcoming maintenance.",
"format": "google-datetime",
"type": "string"
},
"startTime": {
"description": "Optional. The start time of the upcoming maintenance.",
"format": "google-datetime",
"type": "string"
}
},
"type": "object"
},
"StorageDatabasecenterPartnerapiV1mainUserLabels": {
"description": "Message type for storing user labels. User labels are used to tag App Engine resources, allowing users to search for resources matching a set of labels and to aggregate usage data by labels.",
"id": "StorageDatabasecenterPartnerapiV1mainUserLabels",
Expand Down
59 changes: 59 additions & 0 deletions alloydb/v1alpha/alloydb-gen.go

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

7 changes: 6 additions & 1 deletion dlp/v2/dlp-api.json
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,11 @@
"endpointUrl": "https://dlp.asia-southeast2.rep.googleapis.com/",
"location": "asia-southeast2"
},
{
"description": "Regional Endpoint",
"endpointUrl": "https://dlp.asia-southeast3.rep.googleapis.com/",
"location": "asia-southeast3"
},
{
"description": "Regional Endpoint",
"endpointUrl": "https://dlp.australia-southeast1.rep.googleapis.com/",
Expand Down Expand Up @@ -5123,7 +5128,7 @@
}
}
},
"revision": "20260120",
"revision": "20260123",
"rootUrl": "https://dlp.googleapis.com/",
"schemas": {
"GooglePrivacyDlpV2Action": {
Expand Down
Loading