Method list
Статья создана
Retrieves the list of MongoDB User resources in the specified cluster.
HTTP request
GET https://mdb.api.cloud.yandex.net/managed-mongodb/v1/clusters/{clusterId}/users
Path parameters
Parameter | Description |
---|---|
clusterId | Required. ID of the cluster to list MongoDB users in. To get the cluster ID, use a list request. The maximum string length in characters is 50. |
Query parameters
Parameter | Description |
---|---|
pageSize | The maximum value is 1000. |
pageToken | Page token. To get the next page of results, set pageToken to the nextPageToken returned by a previous list request. The maximum string length in characters is 100. |
Response
HTTP Code: 200 - OK
{
"users": [
{
"name": "string",
"clusterId": "string",
"permissions": [
{
"databaseName": "string",
"roles": [
"string"
]
}
]
}
],
"nextPageToken": "string"
}
Field | Description |
---|---|
users[] | object A MongoDB User resource. For more information, see the Developer's Guide. |
users[]. name |
string Name of the MongoDB user. |
users[]. clusterId |
string ID of the MongoDB cluster the user belongs to. |
users[]. permissions[] |
object Set of permissions granted to the user. |
users[]. permissions[]. databaseName |
string Name of the database that the permission grants access to. |
users[]. permissions[]. roles[] |
string MongoDB roles for the |
nextPageToken | string This token allows you to get the next page of results for list requests. If the number of results is larger than pageSize, use the nextPageToken as the value for the pageToken parameter in the next list request. Each subsequent list request will have its own nextPageToken to continue paging through the results. |