Managed Service for MongoDB API, gRPC: DatabaseService.Get
Written by
Updated at October 17, 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
{
"clusterId": "string",
"databaseName": "string"
}
Field |
Description |
clusterId |
string Required field. ID of the MongoDB cluster that the database belongs to. |
databaseName |
string Required field. Name of the MongoDB database to return. |
Database
{
"name": "string",
"clusterId": "string"
}
A MongoDB Database resource. For more information, see the
Developer's Guide.
Field |
Description |
name |
string Name of the database. |
clusterId |
string ID of the MongoDB cluster that the database belongs to. |