All Products
Search
Document Center

ApsaraDB RDS:DescribeEvents

Last Updated:Jul 05, 2024

Queries historical events of an instance.

Operation description

Supported database engines

  • MySQL
  • PostgreSQL
  • SQL Server
  • MariaDB

References

Note Before you call this operation, read the following documentation and make sure that you fully understand the prerequisites and impacts of 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
RegionIdstringYes

The region ID. You can call the DescribeRegions operation to query the most recent region list.

cn-hangzhou
StartTimestringNo

The start of the time range to query. Specify the time in the ISO 8601 standard in the yyyy-MM-ddTHH:mm:ssZ format. The time must be in UTC.

2019-06-11T15:00:00Z
EndTimestringNo

The end of the time range to query. The end time must be later than the start time. Specify the time in the ISO 8601 standard in the yyyy-MM-ddTHH:mm:ssZ format. The time must be in UTC.

2019-06-12T15:00:00Z
PageSizeintegerNo

The number of entries per page. Valid values:

  • 30
  • 50
  • 100

Default value: 30.

30
PageNumberintegerNo

The page number. Pages start from page 1.

Default value: 1.

1

Response parameters

ParameterTypeDescriptionExample
object

The response parameters.

PageNumberinteger

The page number.

1
RequestIdstring

The request ID.

A103039D-B1B2-4C57-B989-7D7C0DA95426
PageSizeinteger

The number of entries per page.

30
TotalRecordCountinteger

The total number of entries returned.

40
EventItemsarray<object>

The events.

object
EventNamestring

The event name.

ModifySecurityIPList
EventTimestring

The time when the event occurred.

2019-08-20T01:08:22Z
EventUserTypestring

The type of the user who executed the event.

SYSTEM
EventRecordTimestring

The time when the event was recorded. The time is slightly later than the time the event occurred.

2019-08-20T01:12:49Z
CallerUidlong

The ID of the user who executed the event.

22973492**********
RegionIdstring

The region ID.

cn-hangzhou
EventIdinteger

The event ID.

11000053
EventTypestring

The event type.

NetworkManagement
ResourceTypestring

The type of the resource associated with the event. Only instances are supported for this parameter.

instance
EventPayloadstring

The request or context parameters of the event.

{\"Domain\": \"rds-inc-share.aliyuncs.com\", \"Api\": \"ReleaseInstancePublicConnection\"}
EventReasonstring

The source of the event.

FROM_USER
ResourceNamestring

The name of the resource associated with the event. Only instance IDs are supported for this parameter.

rm-bp1z3065m9976ix8a

Examples

Sample success responses

JSONformat

{
  "PageNumber": 1,
  "RequestId": "A103039D-B1B2-4C57-B989-7D7C0DA95426",
  "PageSize": 30,
  "TotalRecordCount": 40,
  "EventItems": {
    "EventItems": [
      {
        "EventName": "ModifySecurityIPList",
        "EventTime": "2019-08-20T01:08:22Z",
        "EventUserType": "SYSTEM",
        "EventRecordTime": "2019-08-20T01:12:49Z",
        "CallerUid": 0,
        "RegionId": "cn-hangzhou",
        "EventId": 11000053,
        "EventType": "NetworkManagement",
        "ResourceType": "instance",
        "EventPayload": "{\\\"Domain\\\": \\\"rds-inc-share.aliyuncs.com\\\", \\\"Api\\\": \\\"ReleaseInstancePublicConnection\\\"}",
        "EventReason": "FROM_USER",
        "ResourceName": "rm-bp1z3065m9976ix8a"
      }
    ]
  }
}

Error codes

HTTP status codeError codeError messageDescription
400InvalidStartTime.FormatSpecified start time is not valid.The start time is invalid.
400InvalidParameterCombinationThe end time must be greater than the start timeThe end time must be later than the start time.
400RegionNotSupportThe region is not supported.The operation failed. The operation is not supported in the region.
404InvalidRegion.NotFoundSpecified Region does not exist in the RDSThe region ID is invalid.

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

Change history

Change timeSummary of changesOperation
2022-10-28The Error code has changedView Change Details