tencentcloud-sdk-nodejs-teo 4.0.375 → 4.0.378
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/CHANGELOG.md +715 -0
- package/SERVICE_CHANGELOG.md +689 -105
- package/package.json +1 -1
- package/products.md +27 -27
- package/src/services/teo/v20220106/teo_client.ts +7 -2
- package/src/services/teo/v20220106/teo_models.ts +256 -101
- package/tencentcloud/services/teo/v20220106/teo_models.d.ts +225 -90
|
@@ -456,6 +456,11 @@ export interface DdosRule {
|
|
|
456
456
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
457
457
|
*/
|
|
458
458
|
Switch?: string;
|
|
459
|
+
/**
|
|
460
|
+
* UDP分片功能是否支持,off-不支持,on-支持
|
|
461
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
462
|
+
*/
|
|
463
|
+
UdpShardOpen?: string;
|
|
459
464
|
}
|
|
460
465
|
/**
|
|
461
466
|
* ModifyLoadBalancingStatus返回参数结构体
|
|
@@ -1519,34 +1524,34 @@ export interface CreateDnsRecordRequest {
|
|
|
1519
1524
|
Priority?: number;
|
|
1520
1525
|
}
|
|
1521
1526
|
/**
|
|
1522
|
-
*
|
|
1527
|
+
* IP黑白名单详细规则
|
|
1523
1528
|
*/
|
|
1524
|
-
export interface
|
|
1529
|
+
export interface IpTableRule {
|
|
1525
1530
|
/**
|
|
1526
|
-
*
|
|
1531
|
+
* 动作: drop拦截,trans放行,monitor观察
|
|
1527
1532
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1528
1533
|
*/
|
|
1529
|
-
|
|
1534
|
+
Action?: string;
|
|
1530
1535
|
/**
|
|
1531
|
-
*
|
|
1536
|
+
* 根据类型匹配:ip(根据ip), area(根据区域)
|
|
1532
1537
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1533
1538
|
*/
|
|
1534
|
-
|
|
1539
|
+
MatchFrom?: string;
|
|
1535
1540
|
/**
|
|
1536
|
-
*
|
|
1541
|
+
* 匹配内容
|
|
1537
1542
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1538
1543
|
*/
|
|
1539
|
-
|
|
1544
|
+
MatchContent?: string;
|
|
1540
1545
|
/**
|
|
1541
|
-
*
|
|
1546
|
+
* 规则id
|
|
1542
1547
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1543
1548
|
*/
|
|
1544
|
-
|
|
1549
|
+
RuleID?: number;
|
|
1545
1550
|
/**
|
|
1546
|
-
*
|
|
1551
|
+
* 更新时间
|
|
1547
1552
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1548
1553
|
*/
|
|
1549
|
-
|
|
1554
|
+
UpdateTime?: string;
|
|
1550
1555
|
}
|
|
1551
1556
|
/**
|
|
1552
1557
|
* 离线日志详细信息
|
|
@@ -2309,6 +2314,86 @@ export interface OriginRecord {
|
|
|
2309
2314
|
*/
|
|
2310
2315
|
PrivateParameter?: Array<OriginRecordPrivateParameter>;
|
|
2311
2316
|
}
|
|
2317
|
+
/**
|
|
2318
|
+
* web攻击日志
|
|
2319
|
+
*/
|
|
2320
|
+
export interface WebLogs {
|
|
2321
|
+
/**
|
|
2322
|
+
* 攻击内容
|
|
2323
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2324
|
+
*/
|
|
2325
|
+
AttackContent: string;
|
|
2326
|
+
/**
|
|
2327
|
+
* 攻击IP
|
|
2328
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2329
|
+
*/
|
|
2330
|
+
AttackIp: string;
|
|
2331
|
+
/**
|
|
2332
|
+
* 攻击类型
|
|
2333
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2334
|
+
*/
|
|
2335
|
+
AttackType: string;
|
|
2336
|
+
/**
|
|
2337
|
+
* 域名
|
|
2338
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2339
|
+
*/
|
|
2340
|
+
Domain: string;
|
|
2341
|
+
/**
|
|
2342
|
+
* uuid
|
|
2343
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2344
|
+
*/
|
|
2345
|
+
Msuuid: string;
|
|
2346
|
+
/**
|
|
2347
|
+
* 请求方法
|
|
2348
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2349
|
+
*/
|
|
2350
|
+
RequestMethod: string;
|
|
2351
|
+
/**
|
|
2352
|
+
* 请求URI
|
|
2353
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2354
|
+
*/
|
|
2355
|
+
RequestUri: string;
|
|
2356
|
+
/**
|
|
2357
|
+
* 风险等级
|
|
2358
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2359
|
+
*/
|
|
2360
|
+
RiskLevel: string;
|
|
2361
|
+
/**
|
|
2362
|
+
* 规则ID
|
|
2363
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2364
|
+
*/
|
|
2365
|
+
RuleId: number;
|
|
2366
|
+
/**
|
|
2367
|
+
* IP所在国家
|
|
2368
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2369
|
+
*/
|
|
2370
|
+
SipCountryCode: string;
|
|
2371
|
+
/**
|
|
2372
|
+
* 事件id
|
|
2373
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2374
|
+
*/
|
|
2375
|
+
EventId: string;
|
|
2376
|
+
/**
|
|
2377
|
+
* 处置方式
|
|
2378
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2379
|
+
*/
|
|
2380
|
+
DisposalMethod: string;
|
|
2381
|
+
/**
|
|
2382
|
+
* http_log
|
|
2383
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2384
|
+
*/
|
|
2385
|
+
HttpLog: string;
|
|
2386
|
+
/**
|
|
2387
|
+
* user agent
|
|
2388
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2389
|
+
*/
|
|
2390
|
+
Ua: string;
|
|
2391
|
+
/**
|
|
2392
|
+
* 攻击时间,为保持统一,原参数time更名为AttackTime
|
|
2393
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2394
|
+
*/
|
|
2395
|
+
AttackTime: number;
|
|
2396
|
+
}
|
|
2312
2397
|
/**
|
|
2313
2398
|
* CreatePrefetchTask请求参数结构体
|
|
2314
2399
|
*/
|
|
@@ -2510,8 +2595,11 @@ export interface DescribeOverviewL7DataRequest {
|
|
|
2510
2595
|
*/
|
|
2511
2596
|
EndTime: string;
|
|
2512
2597
|
/**
|
|
2513
|
-
|
|
2514
|
-
|
|
2598
|
+
* 指标列表,支持的指标
|
|
2599
|
+
l7Flow_outFlux: 访问流量
|
|
2600
|
+
l7Flow_request: 访问请求数
|
|
2601
|
+
l7Flow_outBandwidth: 访问带宽
|
|
2602
|
+
*/
|
|
2515
2603
|
MetricNames: Array<string>;
|
|
2516
2604
|
/**
|
|
2517
2605
|
* 时间间隔,选填{min, 5min, hour, day, week}
|
|
@@ -2791,6 +2879,11 @@ export interface SecurityConfig {
|
|
|
2791
2879
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
2792
2880
|
*/
|
|
2793
2881
|
SwitchConfig?: SwitchConfig;
|
|
2882
|
+
/**
|
|
2883
|
+
* IP黑白名单
|
|
2884
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2885
|
+
*/
|
|
2886
|
+
IpTableConfig?: IpTableConfig;
|
|
2794
2887
|
}
|
|
2795
2888
|
/**
|
|
2796
2889
|
* 主攻击对象Data
|
|
@@ -2986,6 +3079,11 @@ export interface DDoSAntiPly {
|
|
|
2986
3079
|
* 空连接防护开启 0-1
|
|
2987
3080
|
*/
|
|
2988
3081
|
EmptyConnectProtect: string;
|
|
3082
|
+
/**
|
|
3083
|
+
* UDP分片开关;off-关闭,on-开启
|
|
3084
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3085
|
+
*/
|
|
3086
|
+
UdpShard?: string;
|
|
2989
3087
|
}
|
|
2990
3088
|
/**
|
|
2991
3089
|
* DescribeWebManagedRulesData请求参数结构体
|
|
@@ -3310,6 +3408,11 @@ export interface RateLimitConfig {
|
|
|
3310
3408
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
3311
3409
|
*/
|
|
3312
3410
|
Template?: RateLimitTemplate;
|
|
3411
|
+
/**
|
|
3412
|
+
* 智能客户端过滤
|
|
3413
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3414
|
+
*/
|
|
3415
|
+
Intelligence?: RateLimitIntelligence;
|
|
3313
3416
|
}
|
|
3314
3417
|
/**
|
|
3315
3418
|
* DescribeTimingL7CacheData请求参数结构体
|
|
@@ -3324,8 +3427,10 @@ export interface DescribeTimingL7CacheDataRequest {
|
|
|
3324
3427
|
*/
|
|
3325
3428
|
EndTime: string;
|
|
3326
3429
|
/**
|
|
3327
|
-
|
|
3328
|
-
|
|
3430
|
+
* 时序类访问流量指标列表,支持的指标
|
|
3431
|
+
l7Cache_outFlux: 访问流量
|
|
3432
|
+
l7Cache_request: 访问请求数
|
|
3433
|
+
*/
|
|
3329
3434
|
MetricNames: Array<string>;
|
|
3330
3435
|
/**
|
|
3331
3436
|
* 时间间隔,选填{min, 5min, hour, day, week}
|
|
@@ -3853,6 +3958,36 @@ export interface DescribeTimingL7AnalysisDataResponse {
|
|
|
3853
3958
|
*/
|
|
3854
3959
|
RequestId?: string;
|
|
3855
3960
|
}
|
|
3961
|
+
/**
|
|
3962
|
+
* 用户画像规则详情
|
|
3963
|
+
*/
|
|
3964
|
+
export interface PortraitManagedRuleDetail {
|
|
3965
|
+
/**
|
|
3966
|
+
* 规则唯一id
|
|
3967
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3968
|
+
*/
|
|
3969
|
+
RuleId?: number;
|
|
3970
|
+
/**
|
|
3971
|
+
* 规则的描述
|
|
3972
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3973
|
+
*/
|
|
3974
|
+
Description?: string;
|
|
3975
|
+
/**
|
|
3976
|
+
* 规则所属类型的名字, botdb(用户画像)
|
|
3977
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3978
|
+
*/
|
|
3979
|
+
RuleTypeName?: string;
|
|
3980
|
+
/**
|
|
3981
|
+
* 规则内的功能分类Id(扫描器,Bot行为等)
|
|
3982
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3983
|
+
*/
|
|
3984
|
+
ClassificationId?: number;
|
|
3985
|
+
/**
|
|
3986
|
+
* 规则当前所属动作状态(block, alg, ...)
|
|
3987
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3988
|
+
*/
|
|
3989
|
+
Status?: string;
|
|
3990
|
+
}
|
|
3856
3991
|
/**
|
|
3857
3992
|
* bot 用户画像规则
|
|
3858
3993
|
*/
|
|
@@ -4436,84 +4571,34 @@ export interface DescribeTopL7AnalysisDataResponse {
|
|
|
4436
4571
|
RequestId?: string;
|
|
4437
4572
|
}
|
|
4438
4573
|
/**
|
|
4439
|
-
*
|
|
4574
|
+
* Bot智能分析规则详情
|
|
4440
4575
|
*/
|
|
4441
|
-
export interface
|
|
4442
|
-
/**
|
|
4443
|
-
* 攻击内容
|
|
4444
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
4445
|
-
*/
|
|
4446
|
-
AttackContent: string;
|
|
4447
|
-
/**
|
|
4448
|
-
* 攻击IP
|
|
4449
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
4450
|
-
*/
|
|
4451
|
-
AttackIp: string;
|
|
4576
|
+
export interface IntelligenceRuleItem {
|
|
4452
4577
|
/**
|
|
4453
|
-
*
|
|
4578
|
+
* 恶意BOT
|
|
4454
4579
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
4455
4580
|
*/
|
|
4456
|
-
|
|
4581
|
+
Label?: string;
|
|
4457
4582
|
/**
|
|
4458
|
-
*
|
|
4459
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
4460
|
-
*/
|
|
4461
|
-
Domain: string;
|
|
4462
|
-
/**
|
|
4463
|
-
* uuid
|
|
4464
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
4465
|
-
*/
|
|
4466
|
-
Msuuid: string;
|
|
4467
|
-
/**
|
|
4468
|
-
* 请求方法
|
|
4469
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
4470
|
-
*/
|
|
4471
|
-
RequestMethod: string;
|
|
4472
|
-
/**
|
|
4473
|
-
* 请求URI
|
|
4474
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
4475
|
-
*/
|
|
4476
|
-
RequestUri: string;
|
|
4477
|
-
/**
|
|
4478
|
-
* 风险等级
|
|
4479
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
4480
|
-
*/
|
|
4481
|
-
RiskLevel: string;
|
|
4482
|
-
/**
|
|
4483
|
-
* 规则ID
|
|
4484
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
4485
|
-
*/
|
|
4486
|
-
RuleId: number;
|
|
4487
|
-
/**
|
|
4488
|
-
* IP所在国家
|
|
4583
|
+
* 动作
|
|
4489
4584
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
4490
4585
|
*/
|
|
4491
|
-
|
|
4492
|
-
|
|
4493
|
-
|
|
4494
|
-
|
|
4495
|
-
|
|
4496
|
-
|
|
4497
|
-
/**
|
|
4498
|
-
* 处置方式
|
|
4499
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
4500
|
-
*/
|
|
4501
|
-
DisposalMethod: string;
|
|
4502
|
-
/**
|
|
4503
|
-
* http_log
|
|
4504
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
4505
|
-
*/
|
|
4506
|
-
HttpLog: string;
|
|
4586
|
+
Action?: string;
|
|
4587
|
+
}
|
|
4588
|
+
/**
|
|
4589
|
+
* 智能分析规则
|
|
4590
|
+
*/
|
|
4591
|
+
export interface IntelligenceRule {
|
|
4507
4592
|
/**
|
|
4508
|
-
*
|
|
4593
|
+
* 开关
|
|
4509
4594
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
4510
4595
|
*/
|
|
4511
|
-
|
|
4596
|
+
Switch?: string;
|
|
4512
4597
|
/**
|
|
4513
|
-
*
|
|
4598
|
+
* 规则详情
|
|
4514
4599
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
4515
4600
|
*/
|
|
4516
|
-
|
|
4601
|
+
Items?: Array<IntelligenceRuleItem>;
|
|
4517
4602
|
}
|
|
4518
4603
|
/**
|
|
4519
4604
|
* POST请求上传文件流式传输最大限制
|
|
@@ -4825,8 +4910,11 @@ export interface DescribeTimingL7AnalysisDataRequest {
|
|
|
4825
4910
|
*/
|
|
4826
4911
|
EndTime: string;
|
|
4827
4912
|
/**
|
|
4828
|
-
|
|
4829
|
-
|
|
4913
|
+
* 指标列表,支持的指标
|
|
4914
|
+
l7Flow_outFlux: 访问流量
|
|
4915
|
+
l7Flow_request: 访问请求数
|
|
4916
|
+
l7Flow_outBandwidth: 访问带宽
|
|
4917
|
+
*/
|
|
4830
4918
|
MetricNames: Array<string>;
|
|
4831
4919
|
/**
|
|
4832
4920
|
* 时间间隔,选填{min, 5min, hour, day, week}
|
|
@@ -5119,6 +5207,36 @@ export interface DescribeApplicationProxyDetailRequest {
|
|
|
5119
5207
|
*/
|
|
5120
5208
|
ProxyId: string;
|
|
5121
5209
|
}
|
|
5210
|
+
/**
|
|
5211
|
+
* 智能客户端过滤
|
|
5212
|
+
*/
|
|
5213
|
+
export interface RateLimitIntelligence {
|
|
5214
|
+
/**
|
|
5215
|
+
* 功能开关
|
|
5216
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5217
|
+
*/
|
|
5218
|
+
Switch?: string;
|
|
5219
|
+
/**
|
|
5220
|
+
* 执行动作 monitor(观察), alg(挑战)
|
|
5221
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5222
|
+
*/
|
|
5223
|
+
Action?: string;
|
|
5224
|
+
}
|
|
5225
|
+
/**
|
|
5226
|
+
* IP黑白名单及IP区域控制配置
|
|
5227
|
+
*/
|
|
5228
|
+
export interface IpTableConfig {
|
|
5229
|
+
/**
|
|
5230
|
+
* 开关
|
|
5231
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5232
|
+
*/
|
|
5233
|
+
Switch?: string;
|
|
5234
|
+
/**
|
|
5235
|
+
* []
|
|
5236
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5237
|
+
*/
|
|
5238
|
+
Rules?: Array<IpTableRule>;
|
|
5239
|
+
}
|
|
5122
5240
|
/**
|
|
5123
5241
|
* DeleteOriginGroup返回参数结构体
|
|
5124
5242
|
*/
|
|
@@ -6436,19 +6554,23 @@ export interface DescribeTimingL4DataRequest {
|
|
|
6436
6554
|
*/
|
|
6437
6555
|
EndTime: string;
|
|
6438
6556
|
/**
|
|
6439
|
-
|
|
6440
|
-
|
|
6557
|
+
* 支持的指标:
|
|
6558
|
+
l4Flow_connections: 访问连接数
|
|
6559
|
+
l4Flow_flux: 访问总流量
|
|
6560
|
+
l4Flow_inFlux: 访问入流量
|
|
6561
|
+
l4Flow_outFlux: 访问出流量
|
|
6562
|
+
*/
|
|
6441
6563
|
MetricNames: Array<string>;
|
|
6442
6564
|
/**
|
|
6443
|
-
*
|
|
6565
|
+
* 站点id列表
|
|
6444
6566
|
*/
|
|
6445
6567
|
ZoneIds?: Array<string>;
|
|
6446
6568
|
/**
|
|
6447
|
-
*
|
|
6569
|
+
* 该字段已废弃,请使用ProxyIds字段
|
|
6448
6570
|
*/
|
|
6449
6571
|
InstanceIds?: Array<string>;
|
|
6450
6572
|
/**
|
|
6451
|
-
*
|
|
6573
|
+
* 该字段当前无效
|
|
6452
6574
|
*/
|
|
6453
6575
|
Protocol?: string;
|
|
6454
6576
|
/**
|
|
@@ -6456,9 +6578,17 @@ export interface DescribeTimingL4DataRequest {
|
|
|
6456
6578
|
*/
|
|
6457
6579
|
Interval?: string;
|
|
6458
6580
|
/**
|
|
6459
|
-
*
|
|
6581
|
+
* 该字段当前无效,请使用Filter筛选
|
|
6460
6582
|
*/
|
|
6461
6583
|
RuleId?: string;
|
|
6584
|
+
/**
|
|
6585
|
+
* 支持的 Filter:proxyd,ruleId
|
|
6586
|
+
*/
|
|
6587
|
+
Filters?: Array<Filter>;
|
|
6588
|
+
/**
|
|
6589
|
+
* 四层实例列表
|
|
6590
|
+
*/
|
|
6591
|
+
ProxyIds?: Array<string>;
|
|
6462
6592
|
}
|
|
6463
6593
|
/**
|
|
6464
6594
|
* DescribeHostsSetting请求参数结构体
|
|
@@ -7196,7 +7326,7 @@ export interface BotConfig {
|
|
|
7196
7326
|
/**
|
|
7197
7327
|
* bot开关
|
|
7198
7328
|
*/
|
|
7199
|
-
Switch
|
|
7329
|
+
Switch?: string;
|
|
7200
7330
|
/**
|
|
7201
7331
|
* 预置规则
|
|
7202
7332
|
*/
|
|
@@ -7213,6 +7343,11 @@ export interface BotConfig {
|
|
|
7213
7343
|
* 用户画像规则
|
|
7214
7344
|
*/
|
|
7215
7345
|
PortraitRule?: BotPortraitRule;
|
|
7346
|
+
/**
|
|
7347
|
+
* Bot智能分析
|
|
7348
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
7349
|
+
*/
|
|
7350
|
+
IntelligenceRule?: IntelligenceRule;
|
|
7216
7351
|
}
|
|
7217
7352
|
/**
|
|
7218
7353
|
* 时序类型详细数据
|