Domain name for API request: teo.intl.tencentcloudapi.com.
This API is used to query the time-series data of DDoS attacks.
A maximum of 100 requests can be initiated per second for this API.
The following request parameter list only provides API request parameters and some common parameters. For the complete common parameter list, see Common Request Parameters.
| Parameter Name | Required | Type | Description |
|---|---|---|---|
| Action | Yes | String | Common Params. The value used for this API: DescribeDDoSAttackData. |
| Version | Yes | String | Common Params. The value used for this API: 2022-09-01. |
| Region | No | String | Common Params. This parameter is not required. |
| StartTime | Yes | Timestamp ISO8601 | The start time. |
| EndTime | Yes | Timestamp ISO8601 | End time. the query time range (EndTime - StartTime) must be less than or equal to 31 days. |
| MetricNames.N | Yes | Array of String | Statistical metrics.ddos_attackMaxBandwidth: Peak attack bandwidth;ddos_attackMaxPackageRate: Peak attack packet rate;ddos_attackBandwidth: Time-series data of attack bandwidth;ddos_attackPackageRate: Time-series data of attack packet rate. |
| ZoneIds.N | No | Array of String | Site ID set. The parameter will change from optional to mandatory after May 30, 2024.Refer to Cloud API Change Notification. A maximum of 100 site ids can be imported. use * to query data for all sites under the tencent cloud root account. to query account-level data, you must have resource permissions for all sites in this api. |
| PolicyIds.N | No | Array of Integer | IDs of DDoS policies to be queried. All policies will be selected if this field is not specified. |
| Interval | No | String | Query period granularity. Valid values: |
| Area | No | String | Geolocation scope. Values:overseas: Regions outside the Chinese mainlandmainland: Chinese mainlandglobal: Global global is used. |
| Parameter Name | Type | Description |
|---|---|---|
| TotalCount | Integer | Total number of query results. |
| Data | Array of SecEntry | List of DDoS attack data. Note: This field may return null, indicating that no valid values can be obtained. |
| RequestId | String | The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem. |
POST / HTTP/1.1
Host: teo.intl.tencentcloudapi.com
Content-Type: application/json
X-TC-Action: DescribeDDoSAttackData
<Common request parameters>
{
"MetricNames": [
"ddos_attackMaxBandwidth"
],
"Interval": "min",
"PolicyIds": [
1706
],
"ZoneIds": [
"zone-21xfqlh4qjee"
],
"StartTime": "2022-08-22T00:00:00+00:00",
"EndTime": "2022-08-23T00:00:00+00:00",
"Area": "overseas"
}{
"Response": {
"TotalCount": 1,
"Data": [
{
"Value": [
{
"Max": 100,
"Metric": "ddos_attackMaxBandwidth",
"Avg": 100.0,
"Detail": [
{
"Value": 100
}
],
"Sum": 100.0
}
],
"Key": "ddos_attackMaxBandwidth"
}
],
"RequestId": "a79e60f8-34cc-4ee5-a7f9-a24adb572c68"
}
}
TencentCloud API 3.0 integrates SDKs that support various programming languages to make it easier for you to call APIs.
The following only lists the error codes related to the API business logic. For other error codes, see Common Error Codes.
| Error Code | Description |
|---|---|
| FailedOperation | Operation failed. |
| InternalError.ProxyServer | An unknown error occurred in the backend server. |
| LimitExceeded | The quota limit has been reached. |
| LimitExceeded.QueryTimeLimitExceeded | Query time limit exceeded. |
| ResourceNotFound | The resource doesn’t exist. |
| UnauthorizedOperation.CamUnauthorized | CAM is not authorized. |
| UnauthorizedOperation.NoPermission | The sub-account is not authorized for the operation. Please get permissions first. |
Feedback