Querying Database Users (Discarded)
Function
This API is used query names of all users who have permission to use or access the database.
This API has been discarded and is not recommended.
URI
- URI format
- Parameter description
Table 1 URI parameters Parameter
Mandatory
Description
project_id
Yes
Project ID, which is used for resource isolation. For details about how to obtain its value, see Obtaining a Project ID.
database_name
Yes
Name of the database to be queried.
Request
None
Response
Parameter |
Mandatory |
Type |
Description |
---|---|---|---|
is_success |
No |
Boolean |
Whether the request is successfully executed. Value true indicates that the request is successfully executed. Example value: true. |
message |
No |
String |
System prompt. If execution succeeds, the parameter setting may be left blank. Example value: left blank. |
database_name |
No |
String |
Name of the database to be queried. Example value: dsstest. |
privileges |
No |
Array of objects |
Permission information. For details, see Table 3. |
Parameter |
Mandatory |
Type |
Description |
---|---|---|---|
is_admin |
No |
Boolean |
Whether the database user is an administrator. Example value: true. |
user_name |
No |
String |
Name of the user who has permission on the current database. Example value: test. |
privileges |
No |
Array of Strings |
Permission of the user on the database. For details, see Data Permissions List. Example value: [ALTER_TABLE_ADD_PARTITION]. |
Example Request
None
Example Response
{ "is_success": true, "message": "", "database_name": "dsstest", "privileges": [ { "is_admin": true, "privileges": [ "ALL" ], "user_name": "test" }, { "is_admin": false, "privileges": [ "ALTER_TABLE_ADD_PARTITION" ], "user_name": "scuser1" }, { "is_admin": false, "privileges": [ "CREATE_TABLE" ], "user_name": "scuser2" } ] }
If an error occurs when this API is invoked, the system does not return the result similar to the preceding example, but returns the error code and error information. For details, see Error Codes.
Feedback
Was this page helpful?
Provide feedbackThank you very much for your feedback. We will continue working to improve the documentation.See the reply and handling status in My Cloud VOC.
For any further questions, feel free to contact us through the chatbot.
Chatbot