All Products
Search
Document Center

Data Management:ListProxySQLExecAuditLog

Last Updated:Oct 21, 2024

Queries the audit logs generated by the secure access proxy feature.

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
StartTimelongYes

The beginning of the time range to query. The value of this parameter must be a timestamp that follows the UNIX time format.

1636876446000
EndTimelongYes

The end of the time range to query. The value of this parameter must be a timestamp that follows the UNIX time format.

1636962846000
SearchNamestringNo

The name of the database instance.

test
OpUserNamestringNo

The alias of the user.

testNickName
SQLTypestringNo

The type of SQL statement. Valid values:

  • SELECT
  • INSERT
  • DELETE
  • CREATE_TABLE
Note You can choose Operation Audit > Secure Access Proxy in the top navigation bar of the DMS console to view more types of SQL statements.
SELECT
ExecStatestringNo

The execution status of the SQL statement. Valid values:

  • FAIL: The execution of the SQL statement fails.
  • CANCEL: The execution of the SQL statement is canceled.
  • SUCCESS: The SQL statement is executed.
SUCCESS
PageSizeintegerYes

The number of entries to return on each page. Maximum values: 100.

100
PageNumberintegerYes

The number of the page to return.

1
TidlongNo

The ID of the tenant. You can call the GetUserActiveTenant operation to query the tenant ID.

14****

Response parameters

ParameterTypeDescriptionExample
object
TotalCountlong

The number of entries returned.

1
RequestIdstring

The ID of the request.

50ECB006-2C35-5FCA-91B9-01987A0B****
ErrorCodestring

The error code returned.

InvalidStartTime
ErrorMessagestring

The error message returned.

Specified parameter StartTime is not valid.
Successboolean

Indicates whether the request was successful. Valid values:

  • true: The request was successful.
  • false: The request failed.
true
ProxySQLExecAuditLogListarray<object>

The audit information about the database instance that is provided by the secure access proxy feature.

ProxySQLExecAuditLogobject
OpTimestring

The time at which the user executes the SQL statement on the database instance. The value of this parameter must be a timestamp that follows the UNIX time format.

1636876446000
UserNamestring

The nickname of the user.

testNickName
UserIdlong

The ID of the user.

4****
InstanceNamestring

The name of the database instance.

pc-uf662nrg017c6****.mysql.polardb.rds.aliyuncs.com:3306【test】
InstanceIdlong

The ID of the database instance.

4***
SchemaNamestring

The name of the database.

test_db
SQLTypestring

The type of the SQL statement. Valid values:

  • SELECT
  • INSERT
  • DELETE
  • CREATE_TABLE
Note You can choose Operation Audit > Secure Access Proxy in the top navigation bar of the DMS console to view more types of SQL statements.
SELECT
SQLstring

The SQL statement that was executed.

select 1;
ExecStatestring

The execution status of the SQL statement. Valid values:

  • FAIL: The execution of the SQL statement fails.
  • CANCEL: The execution of the SQL statement is canceled.
  • SUCCESS: The SQL statement is executed.
SUCCESS
AffectRowslong

Indicates the total number of rows returned after the SQL statement was executed. If an SELECT SQL statement is executed, the return value of this parameter indicates the total number of the queried data rows.

1
ElapsedTimelong

The amount of time that is consumed to execute the SQL statement. Unit: milliseconds.

1324
Remarkstring

The description.

success

Examples

Sample success responses

JSONformat

{
  "TotalCount": 1,
  "RequestId": "50ECB006-2C35-5FCA-91B9-01987A0B****",
  "ErrorCode": "InvalidStartTime",
  "ErrorMessage": "Specified parameter StartTime is not valid.",
  "Success": true,
  "ProxySQLExecAuditLogList": {
    "ProxySQLExecAuditLog": [
      {
        "OpTime": "1636876446000",
        "UserName": "testNickName",
        "UserId": 0,
        "InstanceName": "pc-uf662nrg017c6****.mysql.polardb.rds.aliyuncs.com:3306【test】",
        "InstanceId": 0,
        "SchemaName": "test_db",
        "SQLType": "SELECT",
        "SQL": "select 1;",
        "ExecState": "SUCCESS",
        "AffectRows": 1,
        "ElapsedTime": 1324,
        "Remark": "success"
      }
    ]
  }
}

Error codes

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

Change history

Change timeSummary of changesOperation
No change history