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
49 changes: 42 additions & 7 deletions alloydb/v1/alloydb-api.json
Original file line number Diff line number Diff line change
Expand Up @@ -357,7 +357,7 @@
]
},
"list": {
"description": "Lists information about the supported locations for this service.",
"description": "Lists information about the supported locations for this service. This method can be called in two ways: * **List all public locations:** Use the path `GET /v1/locations`. * **List project-visible locations:** Use the path `GET /v1/projects/{project_id}/locations`. This may include public locations as well as private or other locations specifically visible to the project.",
"flatPath": "v1/projects/{projectsId}/locations",
"httpMethod": "GET",
"id": "alloydb.projects.locations.list",
Expand Down Expand Up @@ -1879,7 +1879,7 @@
}
}
},
"revision": "20260122",
"revision": "20260129",
"rootUrl": "https://alloydb.googleapis.com/",
"schemas": {
"AuthorizedNetwork": {
Expand Down Expand Up @@ -5251,7 +5251,7 @@
"type": "object"
},
"StorageDatabasecenterPartnerapiV1mainDatabaseResourceMetadata": {
"description": "Common model for database resource instance metadata. Next ID: 30",
"description": "Common model for database resource instance metadata. Next ID: 31",
"id": "StorageDatabasecenterPartnerapiV1mainDatabaseResourceMetadata",
"properties": {
"availabilityConfiguration": {
Expand Down Expand Up @@ -5283,15 +5283,17 @@
"UNHEALTHY",
"SUSPENDED",
"DELETED",
"STATE_OTHER"
"STATE_OTHER",
"STOPPED"
],
"enumDescriptions": [
"",
"The instance is running.",
"Instance being created, updated, deleted or under maintenance",
"When instance is suspended",
"Instance is deleted.",
"For rest of the other category"
"For rest of the other category",
"Instance is in STOPPED state."
],
"type": "string"
},
Expand Down Expand Up @@ -5330,15 +5332,17 @@
"UNHEALTHY",
"SUSPENDED",
"DELETED",
"STATE_OTHER"
"STATE_OTHER",
"STOPPED"
],
"enumDescriptions": [
"",
"The instance is running.",
"Instance being created, updated, deleted or under maintenance",
"When instance is suspended",
"Instance is deleted.",
"For rest of the other category"
"For rest of the other category",
"Instance is in STOPPED state."
],
"type": "string"
},
Expand Down Expand Up @@ -5426,6 +5430,13 @@
"description": "Closest parent Cloud Resource Manager container of this resource. It must be resource name of a Cloud Resource Manager project with the format of \"/\", such as \"projects/123\". For GCP provided resources, number should be project number.",
"type": "string"
},
"resourceFlags": {
"description": "Optional. List of resource flags for the database resource.",
"items": {
"$ref": "StorageDatabasecenterPartnerapiV1mainResourceFlags"
},
"type": "array"
},
"resourceName": {
"description": "Required. Different from DatabaseResourceId.unique_id, a resource name can be reused over time. That is, after a resource named \"ABC\" is deleted, the name \"ABC\" can be used to to create a new resource within the same source. Resource name to follow CAIS resource_name format as noted here go/condor-common-datamodel",
"type": "string"
Expand Down Expand Up @@ -6141,6 +6152,21 @@
},
"type": "object"
},
"StorageDatabasecenterPartnerapiV1mainResourceFlags": {
"description": "Message type for storing resource flags.",
"id": "StorageDatabasecenterPartnerapiV1mainResourceFlags",
"properties": {
"key": {
"description": "Optional. Key of the resource flag.",
"type": "string"
},
"value": {
"description": "Optional. Value of the resource flag.",
"type": "string"
}
},
"type": "object"
},
"StorageDatabasecenterPartnerapiV1mainResourceMaintenanceDenySchedule": {
"description": "Deny maintenance period for the database resource. It specifies the time range during which the maintenance cannot start. This is configured by the customer.",
"id": "StorageDatabasecenterPartnerapiV1mainResourceMaintenanceDenySchedule",
Expand Down Expand Up @@ -6171,6 +6197,10 @@
},
"type": "array"
},
"isInstanceStopped": {
"description": "Optional. Whether the instance is in stopped state. This information is temporarily being captured in maintenanceInfo, till STOPPED state is supported by DB Center.",
"type": "boolean"
},
"maintenanceSchedule": {
"$ref": "StorageDatabasecenterPartnerapiV1mainResourceMaintenanceSchedule",
"description": "Optional. Maintenance window for the database resource."
Expand Down Expand Up @@ -6205,6 +6235,11 @@
"upcomingMaintenance": {
"$ref": "StorageDatabasecenterPartnerapiV1mainUpcomingMaintenance",
"description": "Optional. Upcoming maintenance for the database resource. This field is populated once SLM generates and publishes upcoming maintenance window."
},
"versionUpdateTime": {
"description": "Optional. This field will contain the date when the last version update was applied to the database resource. This will be used to calculate the age of the maintenance version.",
"format": "google-datetime",
"type": "string"
}
},
"type": "object"
Expand Down
45 changes: 43 additions & 2 deletions alloydb/v1/alloydb-gen.go

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

Loading