Queries the audit logs generated by the secure access proxy feature.
Debugging
Authorization information
There is currently no authorization information disclosed in the API.
Request parameters
Parameter | Type | Required | Description | Example |
---|---|---|---|---|
StartTime | long | Yes | The beginning of the time range to query. The value of this parameter must be a timestamp that follows the UNIX time format. | 1636876446000 |
EndTime | long | Yes | The end of the time range to query. The value of this parameter must be a timestamp that follows the UNIX time format. | 1636962846000 |
SearchName | string | No | The name of the database instance. | test |
OpUserName | string | No | The alias of the user. | testNickName |
SQLType | string | No | The type of SQL statement. Valid values:
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 |
ExecState | string | No | The execution status of the SQL statement. Valid values:
| SUCCESS |
PageSize | integer | Yes | The number of entries to return on each page. Maximum values: 100. | 100 |
PageNumber | integer | Yes | The number of the page to return. | 1 |
Tid | long | No | The ID of the tenant. You can call the GetUserActiveTenant operation to query the tenant ID. | 14**** |
Response parameters
Examples
Sample success responses
JSON
format
{
"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 time | Summary of changes | Operation |
---|
No change history