Managed Service for MongoDB API, gRPC: DatabaseService.Get
Статья создана
Обновлена 26 ноября 2024 г.
Returns the specified MongoDB Database resource.
To get the list of available MongoDB Database resources, make a List request.
gRPC request
rpc Get (GetDatabaseRequest) returns (Database)
GetDatabaseRequest
{
"cluster_id": "string",
"database_name": "string"
}
Field |
Description |
cluster_id |
string Required field. ID of the MongoDB cluster that the database belongs to. |
database_name |
string Required field. Name of the MongoDB database to return. |
Database
{
"name": "string",
"cluster_id": "string"
}
A MongoDB Database resource. For more information, see the
Developer's Guide.
Field |
Description |
name |
string Name of the database. |
cluster_id |
string ID of the MongoDB cluster that the database belongs to. |