All Products
Search
Document Center

AnalyticDB for PostgreSQL:DescribeAccounts

Last Updated:Jul 18, 2024

Queries the information about database accounts for an AnalyticDB for PostgreSQL instance.

Operation description

This operation is called to query the information of the privileged account in an AnalyticDB for PostgreSQL instance, such as its state, description, and the instance.

Limit

You can call this operation up to 1,000 times per second per account. If the number of the calls per second exceeds the limit, throttling is triggered and may affect your business. We recommend that you take note of the limit when you call this operation.

Debugging

OpenAPI Explorer automatically calculates the signature value. For your convenience, we recommend that you call this operation in OpenAPI Explorer.

Authorization information

There is currently no authorization information disclosed in the API.

Request parameters

ParameterTypeRequiredDescriptionExample
DBInstanceIdstringYes

The instance ID.

Note You can call the DescribeDBInstances operation to query the information about all AnalyticDB for PostgreSQL instances within a region, including instance IDs.
gp-bp***************
AccountNamestringNo

The name of the database account.

testuser

Response parameters

ParameterTypeDescriptionExample
object
RequestIdstring

The request ID.

7565770E-7C45-462D-BA4A-8A5396F2CAD1
Accountsarray<object>

The name of the database account.

object
AccountStatusstring

The state of the account.

  • 0: The account is being created.
  • 1: The account is in use.
  • 3: The account is being deleted.
1
AccountDescriptionstring

The description of the account.

testuser
DBInstanceIdstring

The ID of the instance.

gp-bp***************
AccountNamestring

The name of the account.

testuser

Examples

Sample success responses

JSONformat

{
  "RequestId": "7565770E-7C45-462D-BA4A-8A5396F2CAD1",
  "Accounts": {
    "DBInstanceAccount": [
      {
        "AccountStatus": "1",
        "AccountDescription": "testuser",
        "DBInstanceId": "gp-bp***************",
        "AccountName": "testuser"
      }
    ]
  }
}

Error codes

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

Change history

Change timeSummary of changesOperation
No change history