tencentcloud-sdk-nodejs-teo 4.0.375 → 4.0.376

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.
@@ -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 PortraitManagedRuleDetail {
1529
+ export interface IpTableRule {
1525
1530
  /**
1526
- * 规则唯一id
1531
+ * 动作: drop拦截,trans放行,monitor观察
1527
1532
  注意:此字段可能返回 null,表示取不到有效值。
1528
1533
  */
1529
- RuleId?: number;
1534
+ Action?: string;
1530
1535
  /**
1531
- * 规则的描述
1536
+ * 根据类型匹配:ip(根据ip), area(根据区域)
1532
1537
  注意:此字段可能返回 null,表示取不到有效值。
1533
1538
  */
1534
- Description?: string;
1539
+ MatchFrom?: string;
1535
1540
  /**
1536
- * 规则所属类型的名字, botdb(用户画像)
1541
+ * 匹配内容
1537
1542
  注意:此字段可能返回 null,表示取不到有效值。
1538
1543
  */
1539
- RuleTypeName?: string;
1544
+ MatchContent?: string;
1540
1545
  /**
1541
- * 规则内的功能分类Id(扫描器,Bot行为等)
1546
+ * 规则id
1542
1547
  注意:此字段可能返回 null,表示取不到有效值。
1543
1548
  */
1544
- ClassificationId?: number;
1549
+ RuleID?: number;
1545
1550
  /**
1546
- * 规则当前所属动作状态(block, alg, ...)
1551
+ * 更新时间
1547
1552
  注意:此字段可能返回 null,表示取不到有效值。
1548
1553
  */
1549
- Status?: string;
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
  */
@@ -2791,6 +2876,11 @@ export interface SecurityConfig {
2791
2876
  注意:此字段可能返回 null,表示取不到有效值。
2792
2877
  */
2793
2878
  SwitchConfig?: SwitchConfig;
2879
+ /**
2880
+ * IP黑白名单
2881
+ 注意:此字段可能返回 null,表示取不到有效值。
2882
+ */
2883
+ IpTableConfig?: IpTableConfig;
2794
2884
  }
2795
2885
  /**
2796
2886
  * 主攻击对象Data
@@ -2986,6 +3076,11 @@ export interface DDoSAntiPly {
2986
3076
  * 空连接防护开启 0-1
2987
3077
  */
2988
3078
  EmptyConnectProtect: string;
3079
+ /**
3080
+ * UDP分片开关;off-关闭,on-开启
3081
+ 注意:此字段可能返回 null,表示取不到有效值。
3082
+ */
3083
+ UdpShard?: string;
2989
3084
  }
2990
3085
  /**
2991
3086
  * DescribeWebManagedRulesData请求参数结构体
@@ -3310,6 +3405,11 @@ export interface RateLimitConfig {
3310
3405
  注意:此字段可能返回 null,表示取不到有效值。
3311
3406
  */
3312
3407
  Template?: RateLimitTemplate;
3408
+ /**
3409
+ * 智能客户端过滤
3410
+ 注意:此字段可能返回 null,表示取不到有效值。
3411
+ */
3412
+ Intelligence?: RateLimitIntelligence;
3313
3413
  }
3314
3414
  /**
3315
3415
  * DescribeTimingL7CacheData请求参数结构体
@@ -3853,6 +3953,36 @@ export interface DescribeTimingL7AnalysisDataResponse {
3853
3953
  */
3854
3954
  RequestId?: string;
3855
3955
  }
3956
+ /**
3957
+ * 用户画像规则详情
3958
+ */
3959
+ export interface PortraitManagedRuleDetail {
3960
+ /**
3961
+ * 规则唯一id
3962
+ 注意:此字段可能返回 null,表示取不到有效值。
3963
+ */
3964
+ RuleId?: number;
3965
+ /**
3966
+ * 规则的描述
3967
+ 注意:此字段可能返回 null,表示取不到有效值。
3968
+ */
3969
+ Description?: string;
3970
+ /**
3971
+ * 规则所属类型的名字, botdb(用户画像)
3972
+ 注意:此字段可能返回 null,表示取不到有效值。
3973
+ */
3974
+ RuleTypeName?: string;
3975
+ /**
3976
+ * 规则内的功能分类Id(扫描器,Bot行为等)
3977
+ 注意:此字段可能返回 null,表示取不到有效值。
3978
+ */
3979
+ ClassificationId?: number;
3980
+ /**
3981
+ * 规则当前所属动作状态(block, alg, ...)
3982
+ 注意:此字段可能返回 null,表示取不到有效值。
3983
+ */
3984
+ Status?: string;
3985
+ }
3856
3986
  /**
3857
3987
  * bot 用户画像规则
3858
3988
  */
@@ -4436,84 +4566,34 @@ export interface DescribeTopL7AnalysisDataResponse {
4436
4566
  RequestId?: string;
4437
4567
  }
4438
4568
  /**
4439
- * web攻击日志
4569
+ * Bot智能分析规则详情
4440
4570
  */
4441
- export interface WebLogs {
4442
- /**
4443
- * 攻击内容
4444
- 注意:此字段可能返回 null,表示取不到有效值。
4445
- */
4446
- AttackContent: string;
4447
- /**
4448
- * 攻击IP
4449
- 注意:此字段可能返回 null,表示取不到有效值。
4450
- */
4451
- AttackIp: string;
4452
- /**
4453
- * 攻击类型
4454
- 注意:此字段可能返回 null,表示取不到有效值。
4455
- */
4456
- AttackType: string;
4457
- /**
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;
4571
+ export interface IntelligenceRuleItem {
4482
4572
  /**
4483
- * 规则ID
4484
- 注意:此字段可能返回 null,表示取不到有效值。
4485
- */
4486
- RuleId: number;
4487
- /**
4488
- * IP所在国家
4489
- 注意:此字段可能返回 null,表示取不到有效值。
4490
- */
4491
- SipCountryCode: string;
4492
- /**
4493
- * 事件id
4494
- 注意:此字段可能返回 null,表示取不到有效值。
4495
- */
4496
- EventId: string;
4497
- /**
4498
- * 处置方式
4573
+ * 恶意BOT
4499
4574
  注意:此字段可能返回 null,表示取不到有效值。
4500
4575
  */
4501
- DisposalMethod: string;
4576
+ Label?: string;
4502
4577
  /**
4503
- * http_log
4578
+ * 动作
4504
4579
  注意:此字段可能返回 null,表示取不到有效值。
4505
4580
  */
4506
- HttpLog: string;
4581
+ Action?: string;
4582
+ }
4583
+ /**
4584
+ * 智能分析规则
4585
+ */
4586
+ export interface IntelligenceRule {
4507
4587
  /**
4508
- * user agent
4588
+ * 开关
4509
4589
  注意:此字段可能返回 null,表示取不到有效值。
4510
4590
  */
4511
- Ua: string;
4591
+ Switch?: string;
4512
4592
  /**
4513
- * 攻击时间,为保持统一,原参数time更名为AttackTime
4593
+ * 规则详情
4514
4594
  注意:此字段可能返回 null,表示取不到有效值。
4515
4595
  */
4516
- AttackTime: number;
4596
+ Items?: Array<IntelligenceRuleItem>;
4517
4597
  }
4518
4598
  /**
4519
4599
  * POST请求上传文件流式传输最大限制
@@ -5119,6 +5199,36 @@ export interface DescribeApplicationProxyDetailRequest {
5119
5199
  */
5120
5200
  ProxyId: string;
5121
5201
  }
5202
+ /**
5203
+ * 智能客户端过滤
5204
+ */
5205
+ export interface RateLimitIntelligence {
5206
+ /**
5207
+ * 功能开关
5208
+ 注意:此字段可能返回 null,表示取不到有效值。
5209
+ */
5210
+ Switch?: string;
5211
+ /**
5212
+ * 执行动作 monitor(观察), alg(挑战)
5213
+ 注意:此字段可能返回 null,表示取不到有效值。
5214
+ */
5215
+ Action?: string;
5216
+ }
5217
+ /**
5218
+ * IP黑白名单及IP区域控制配置
5219
+ */
5220
+ export interface IpTableConfig {
5221
+ /**
5222
+ * 开关
5223
+ 注意:此字段可能返回 null,表示取不到有效值。
5224
+ */
5225
+ Switch?: string;
5226
+ /**
5227
+ * []
5228
+ 注意:此字段可能返回 null,表示取不到有效值。
5229
+ */
5230
+ Rules?: Array<IpTableRule>;
5231
+ }
5122
5232
  /**
5123
5233
  * DeleteOriginGroup返回参数结构体
5124
5234
  */
@@ -6440,15 +6550,15 @@ export interface DescribeTimingL4DataRequest {
6440
6550
  */
6441
6551
  MetricNames: Array<string>;
6442
6552
  /**
6443
- * ZoneId列表,仅在zone/instance维度下查询时该参数有效
6553
+ * 站点id列表
6444
6554
  */
6445
6555
  ZoneIds?: Array<string>;
6446
6556
  /**
6447
- * InstanceId列表,仅在Instance维度下查询时该参数有效
6557
+ * 该字段已废弃,请使用ProxyIds字段
6448
6558
  */
6449
6559
  InstanceIds?: Array<string>;
6450
6560
  /**
6451
- * 协议类型, 该字段当前无效
6561
+ * 该字段当前无效
6452
6562
  */
6453
6563
  Protocol?: string;
6454
6564
  /**
@@ -6456,9 +6566,17 @@ export interface DescribeTimingL4DataRequest {
6456
6566
  */
6457
6567
  Interval?: string;
6458
6568
  /**
6459
- * 规则ID,仅在instance维度有效
6569
+ * 该字段当前无效,请使用Filter筛选
6460
6570
  */
6461
6571
  RuleId?: string;
6572
+ /**
6573
+ * 支持的 Filter:proxyd,ruleId
6574
+ */
6575
+ Filters?: Array<Filter>;
6576
+ /**
6577
+ * 四层实例列表
6578
+ */
6579
+ ProxyIds?: Array<string>;
6462
6580
  }
6463
6581
  /**
6464
6582
  * DescribeHostsSetting请求参数结构体
@@ -7196,7 +7314,7 @@ export interface BotConfig {
7196
7314
  /**
7197
7315
  * bot开关
7198
7316
  */
7199
- Switch: string;
7317
+ Switch?: string;
7200
7318
  /**
7201
7319
  * 预置规则
7202
7320
  */
@@ -7213,6 +7331,11 @@ export interface BotConfig {
7213
7331
  * 用户画像规则
7214
7332
  */
7215
7333
  PortraitRule?: BotPortraitRule;
7334
+ /**
7335
+ * Bot智能分析
7336
+ 注意:此字段可能返回 null,表示取不到有效值。
7337
+ */
7338
+ IntelligenceRule?: IntelligenceRule;
7216
7339
  }
7217
7340
  /**
7218
7341
  * 时序类型详细数据