Managed Service for PostgreSQL API, gRPC: DatabaseService.List
Retrieves the list of PostgreSQL Database resources in the specified cluster.
gRPC request
rpc List (ListDatabasesRequest) returns (ListDatabasesResponse)
ListDatabasesRequest
{
"cluster_id": "string",
"page_size": "int64",
"page_token": "string"
}
Field |
Description |
cluster_id |
string Required field. ID of the PostgreSQL cluster to list databases in. |
page_size |
int64 The maximum number of results per page to return. If the number of available |
page_token |
string Page token. To get the next page of results, Set |
ListDatabasesResponse
{
"databases": [
{
"name": "string",
"cluster_id": "string",
"owner": "string",
"lc_collate": "string",
"lc_ctype": "string",
"extensions": [
{
"name": "string",
"version": "string"
}
],
"template_db": "string",
"deletion_protection": "google.protobuf.BoolValue"
}
],
"next_page_token": "string"
}
Field |
Description |
databases[] |
List of PostgreSQL Database resources. |
next_page_token |
string This token allows you to get the next page of results for list requests. If the number of results |
Database
A PostgreSQL Database resource. For more information, see
the Developer's Guide.
Field |
Description |
name |
string Name of the database. |
cluster_id |
string ID of the PostgreSQL cluster that the database belongs to. |
owner |
string Name of the user assigned as the owner of the database. |
lc_collate |
string POSIX locale for string sorting order. |
lc_ctype |
string POSIX locale for character classification. |
extensions[] |
PostgreSQL extensions enabled for the database. |
template_db |
string Name of the database template. |
deletion_protection |
Deletion Protection inhibits deletion of the database Default value: |
Extension
Field |
Description |
name |
string Name of the extension, e.g. |
version |
string Version of the extension. |