tencentcloud-sdk-nodejs-teo 4.1.218 → 4.1.225
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -5908,53 +5908,53 @@ export interface DDoSAttackEvent {
|
|
|
5908
5908
|
/**
|
|
5909
5909
|
* 事件ID。
|
|
5910
5910
|
*/
|
|
5911
|
-
EventId
|
|
5911
|
+
EventId?: string;
|
|
5912
5912
|
/**
|
|
5913
5913
|
* 攻击类型(对应交互事件名称)。
|
|
5914
5914
|
*/
|
|
5915
|
-
AttackType
|
|
5915
|
+
AttackType?: string;
|
|
5916
5916
|
/**
|
|
5917
5917
|
* 攻击状态。
|
|
5918
5918
|
*/
|
|
5919
|
-
AttackStatus
|
|
5919
|
+
AttackStatus?: number;
|
|
5920
5920
|
/**
|
|
5921
|
-
*
|
|
5921
|
+
* 攻击最大带宽,单位为 bps。
|
|
5922
5922
|
*/
|
|
5923
|
-
AttackMaxBandWidth
|
|
5923
|
+
AttackMaxBandWidth?: number;
|
|
5924
5924
|
/**
|
|
5925
|
-
*
|
|
5925
|
+
* 攻击包速率峰值,单位为 pps。
|
|
5926
5926
|
*/
|
|
5927
|
-
AttackPacketMaxRate
|
|
5927
|
+
AttackPacketMaxRate?: number;
|
|
5928
5928
|
/**
|
|
5929
5929
|
* 攻击开始时间,单位为s。
|
|
5930
5930
|
*/
|
|
5931
|
-
AttackStartTime
|
|
5931
|
+
AttackStartTime?: number;
|
|
5932
5932
|
/**
|
|
5933
5933
|
* 攻击结束时间,单位为s。
|
|
5934
5934
|
*/
|
|
5935
|
-
AttackEndTime
|
|
5935
|
+
AttackEndTime?: number;
|
|
5936
5936
|
/**
|
|
5937
5937
|
* DDoS策略组ID。
|
|
5938
5938
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
5939
5939
|
*/
|
|
5940
|
-
PolicyId
|
|
5940
|
+
PolicyId?: number;
|
|
5941
5941
|
/**
|
|
5942
5942
|
* 站点ID。
|
|
5943
5943
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
5944
5944
|
*/
|
|
5945
|
-
ZoneId
|
|
5945
|
+
ZoneId?: string;
|
|
5946
5946
|
/**
|
|
5947
5947
|
* 攻击事件所属地区,取值有:
|
|
5948
5948
|
<li>overseas:全球(除中国大陆地区)数据;</li>
|
|
5949
5949
|
<li>mainland:中国大陆地区数据。</li>
|
|
5950
5950
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
5951
5951
|
*/
|
|
5952
|
-
Area
|
|
5952
|
+
Area?: string;
|
|
5953
5953
|
/**
|
|
5954
5954
|
* 封禁解封信息。
|
|
5955
5955
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
5956
5956
|
*/
|
|
5957
|
-
DDoSBlockData
|
|
5957
|
+
DDoSBlockData?: Array<DDoSBlockData>;
|
|
5958
5958
|
}
|
|
5959
5959
|
/**
|
|
5960
5960
|
* 存储客户端请求IP的头部信息配置
|
|
@@ -15509,11 +15509,11 @@ export interface EdgeKVPutRequest {
|
|
|
15509
15509
|
*/
|
|
15510
15510
|
Value: string;
|
|
15511
15511
|
/**
|
|
15512
|
-
*
|
|
15512
|
+
* 键值对的过期时间,绝对时间,单位为秒,表示从 1970 年 1 月 1 日 00:00:00(UTC)起经过的秒数(即 Unix 时间戳)。取值必须大于等于当前时间 + 60,即过期时间距当前至少 60 秒。当 Expiration 与 ExpirationTTL 同时填写时,以 ExpirationTTL 为准;当两者均不填写时,键值对永不过期。
|
|
15513
15513
|
*/
|
|
15514
15514
|
Expiration?: number;
|
|
15515
15515
|
/**
|
|
15516
|
-
*
|
|
15516
|
+
* 键值对的存活时长,相对时间,单位为秒,表示数据将在写入后经过指定秒数过期。取值范围:大于等于 60。当 Expiration 与 ExpirationTTL 同时填写时,以 ExpirationTTL 为准;当两者均不填写时,键值对永不过期。
|
|
15517
15517
|
*/
|
|
15518
15518
|
ExpirationTTL?: number;
|
|
15519
15519
|
}
|
|
@@ -16114,7 +16114,7 @@ export interface CreatePurgeTaskRequest {
|
|
|
16114
16114
|
*/
|
|
16115
16115
|
EncodeUrl?: boolean;
|
|
16116
16116
|
/**
|
|
16117
|
-
* 节点缓存清除类型取值为 purge_cache_tag
|
|
16117
|
+
* 节点缓存清除类型取值为 purge_cache_tag 时,该参数必填,入参值为域名。
|
|
16118
16118
|
*/
|
|
16119
16119
|
CacheTag?: CacheTag;
|
|
16120
16120
|
}
|