All Products
Search
Document Center

ApsaraDB for OceanBase:DescribeTenantUsers

Last Updated:Oct 21, 2024

You can call this operation to query all accounts in a tenant that have access to the database.

Debugging

You can run this interface directly in OpenAPI Explorer, saving you the trouble of calculating signatures. After running successfully, OpenAPI Explorer can automatically generate SDK code samples.

Authorization information

There is currently no authorization information disclosed in the API.

Request parameters

ParameterTypeRequiredDescriptionExample
TenantIdstringYes

The return result of the request.

ob2mr3oae0****
SearchKeystringNo

The return result of the request.

pay
PageNumberintegerNo

The database privileges of the account.

1
PageSizeintegerNo

The return result of the request.

10
UserNamestringNo

The operation that you want to perform.
Set the value to DescribeTenantUsers.

pay_test

Response parameters

ParameterTypeDescriptionExample
object

The name of the database account.
You cannot use reserved keywords, such as SYS and root.

TotalCountinteger

The role of the account.
In Oracle mode, a role is a schema-level role. Valid values:

  • ReadWrite: a role that has the read and write privileges, including: CREATE TABLE, CREATE VIEW, CREATE PROCEDURE, CREATE SYNONYM, CREATE SEQUENCE, CREATE TRIGGER, CREATE TYPE, CREATE SESSION, EXECUTE ANY PROCEDURE, CREATE ANY OUTLINE, ALTER ANY OUTLINE, DROP ANY OUTLINE, CREATE ANY PROCEDURE, ALTER ANY PROCEDURE, DROP ANY PROCEDURE, CREATE ANY SEQUENCE, ALTER ANY SEQUENCE, DROP ANY SEQUENCE, CREATE ANY TYPE, ALTER ANY TYPE, DROP ANY TYPE, SYSKM, CREATE ANY TRIGGER, ALTER ANY TRIGGER, DROP ANY TRIGGER, CREATE PROFILE, ALTER PROFILE, and DROP PROFILE.
  • ReadOnly: a role that has only the read-only privilege SELECT. In MySQL mode, a role is a database-level role. Valid values:
  • ReadWrite: a role that has the read and write privileges, namely ALL PRIVILEGES.
  • ReadOnly: a role that has only the read-only privilege SELECT.
  • DDL: a role that has the DDL privileges such as CREATE, DROP, ALTER, SHOW VIEW, and CREATE VIEW.
  • DML: a role that has the DML privileges such as SELECT, INSERT, UPDATE, DELETE, and SHOW VIEW.
Note
By default, an Oracle account has the read and write privileges on its own schema, which are not listed here.
1
RequestIdstring

The name of the database account.

EE205C00-30E4-XXXX-XXXX-87E3A8A2AA0C
TenantUsersarray<object>

The type of the database account. Valid values:

  • Admin: the super administrator account.
  • NORMAL: a general account.
TenantUsersobject

Example 1

UserTypestring
NORMAL
Descriptionstring
use for test

Examples

Sample success responses

JSONformat

{
  "TotalCount": 1,
  "RequestId": "EE205C00-30E4-XXXX-XXXX-87E3A8A2AA0C",
  "TenantUsers": [
    {
      "UserType": " NORMAL",
      "Description": "use for test",
      "Databases": [
        {
          "Database": "db_pay1",
          "Role": "ReadOnly",
          "Table": "tbl_pay1"
        }
      ],
      "UserStatus": "NORMAL",
      "UserName": "pay_test",
      "TenantId": "tshfs3****",
      "InstanceId": "obshc32****"
    }
  ]
}

Error codes

HTTP status codeError codeError message
2014InternalErrorThe request processing has failed due to some unknown error.

For a list of error codes, visit the Service error codes.

Change history

Change timeSummary of changesOperation
2023-07-04The Error code has changed. The response structure of the API has changedView Change Details
2022-08-15The Error code has changed. The request parameters of the API has changedView Change Details