tencentcloud-sdk-nodejs-teo 4.0.374 → 4.0.377

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.
@@ -552,6 +552,12 @@ export interface DdosRule {
552
552
  注意:此字段可能返回 null,表示取不到有效值。
553
553
  */
554
554
  Switch?: string
555
+
556
+ /**
557
+ * UDP分片功能是否支持,off-不支持,on-支持
558
+ 注意:此字段可能返回 null,表示取不到有效值。
559
+ */
560
+ UdpShardOpen?: string
555
561
  }
556
562
 
557
563
  /**
@@ -1805,38 +1811,38 @@ export interface CreateDnsRecordRequest {
1805
1811
  }
1806
1812
 
1807
1813
  /**
1808
- * 用户画像规则详情
1814
+ * IP黑白名单详细规则
1809
1815
  */
1810
- export interface PortraitManagedRuleDetail {
1816
+ export interface IpTableRule {
1811
1817
  /**
1812
- * 规则唯一id
1818
+ * 动作: drop拦截,trans放行,monitor观察
1813
1819
  注意:此字段可能返回 null,表示取不到有效值。
1814
1820
  */
1815
- RuleId?: number
1821
+ Action?: string
1816
1822
 
1817
1823
  /**
1818
- * 规则的描述
1824
+ * 根据类型匹配:ip(根据ip), area(根据区域)
1819
1825
  注意:此字段可能返回 null,表示取不到有效值。
1820
1826
  */
1821
- Description?: string
1827
+ MatchFrom?: string
1822
1828
 
1823
1829
  /**
1824
- * 规则所属类型的名字, botdb(用户画像)
1830
+ * 匹配内容
1825
1831
  注意:此字段可能返回 null,表示取不到有效值。
1826
1832
  */
1827
- RuleTypeName?: string
1833
+ MatchContent?: string
1828
1834
 
1829
1835
  /**
1830
- * 规则内的功能分类Id(扫描器,Bot行为等)
1836
+ * 规则id
1831
1837
  注意:此字段可能返回 null,表示取不到有效值。
1832
1838
  */
1833
- ClassificationId?: number
1839
+ RuleID?: number
1834
1840
 
1835
1841
  /**
1836
- * 规则当前所属动作状态(block, alg, ...)
1842
+ * 更新时间
1837
1843
  注意:此字段可能返回 null,表示取不到有效值。
1838
1844
  */
1839
- Status?: string
1845
+ UpdateTime?: string
1840
1846
  }
1841
1847
 
1842
1848
  /**
@@ -2728,6 +2734,101 @@ export interface OriginRecord {
2728
2734
  PrivateParameter?: Array<OriginRecordPrivateParameter>
2729
2735
  }
2730
2736
 
2737
+ /**
2738
+ * web攻击日志
2739
+ */
2740
+ export interface WebLogs {
2741
+ /**
2742
+ * 攻击内容
2743
+ 注意:此字段可能返回 null,表示取不到有效值。
2744
+ */
2745
+ AttackContent: string
2746
+
2747
+ /**
2748
+ * 攻击IP
2749
+ 注意:此字段可能返回 null,表示取不到有效值。
2750
+ */
2751
+ AttackIp: string
2752
+
2753
+ /**
2754
+ * 攻击类型
2755
+ 注意:此字段可能返回 null,表示取不到有效值。
2756
+ */
2757
+ AttackType: string
2758
+
2759
+ /**
2760
+ * 域名
2761
+ 注意:此字段可能返回 null,表示取不到有效值。
2762
+ */
2763
+ Domain: string
2764
+
2765
+ /**
2766
+ * uuid
2767
+ 注意:此字段可能返回 null,表示取不到有效值。
2768
+ */
2769
+ Msuuid: string
2770
+
2771
+ /**
2772
+ * 请求方法
2773
+ 注意:此字段可能返回 null,表示取不到有效值。
2774
+ */
2775
+ RequestMethod: string
2776
+
2777
+ /**
2778
+ * 请求URI
2779
+ 注意:此字段可能返回 null,表示取不到有效值。
2780
+ */
2781
+ RequestUri: string
2782
+
2783
+ /**
2784
+ * 风险等级
2785
+ 注意:此字段可能返回 null,表示取不到有效值。
2786
+ */
2787
+ RiskLevel: string
2788
+
2789
+ /**
2790
+ * 规则ID
2791
+ 注意:此字段可能返回 null,表示取不到有效值。
2792
+ */
2793
+ RuleId: number
2794
+
2795
+ /**
2796
+ * IP所在国家
2797
+ 注意:此字段可能返回 null,表示取不到有效值。
2798
+ */
2799
+ SipCountryCode: string
2800
+
2801
+ /**
2802
+ * 事件id
2803
+ 注意:此字段可能返回 null,表示取不到有效值。
2804
+ */
2805
+ EventId: string
2806
+
2807
+ /**
2808
+ * 处置方式
2809
+ 注意:此字段可能返回 null,表示取不到有效值。
2810
+ */
2811
+ DisposalMethod: string
2812
+
2813
+ /**
2814
+ * http_log
2815
+ 注意:此字段可能返回 null,表示取不到有效值。
2816
+ */
2817
+ HttpLog: string
2818
+
2819
+ /**
2820
+ * user agent
2821
+ 注意:此字段可能返回 null,表示取不到有效值。
2822
+ */
2823
+ Ua: string
2824
+
2825
+ /**
2826
+ * 攻击时间,为保持统一,原参数time更名为AttackTime
2827
+ 注意:此字段可能返回 null,表示取不到有效值。
2828
+ */
2829
+ AttackTime: number
2830
+ }
2831
+
2731
2832
  /**
2732
2833
  * CreatePrefetchTask请求参数结构体
2733
2834
  */
@@ -3296,6 +3397,12 @@ export interface SecurityConfig {
3296
3397
  注意:此字段可能返回 null,表示取不到有效值。
3297
3398
  */
3298
3399
  SwitchConfig?: SwitchConfig
3400
+
3401
+ /**
3402
+ * IP黑白名单
3403
+ 注意:此字段可能返回 null,表示取不到有效值。
3404
+ */
3405
+ IpTableConfig?: IpTableConfig
3299
3406
  }
3300
3407
 
3301
3408
  /**
@@ -3530,6 +3637,12 @@ export interface DDoSAntiPly {
3530
3637
  * 空连接防护开启 0-1
3531
3638
  */
3532
3639
  EmptyConnectProtect: string
3640
+
3641
+ /**
3642
+ * UDP分片开关;off-关闭,on-开启
3643
+ 注意:此字段可能返回 null,表示取不到有效值。
3644
+ */
3645
+ UdpShard?: string
3533
3646
  }
3534
3647
 
3535
3648
  /**
@@ -3909,6 +4022,12 @@ export interface RateLimitConfig {
3909
4022
  注意:此字段可能返回 null,表示取不到有效值。
3910
4023
  */
3911
4024
  Template?: RateLimitTemplate
4025
+
4026
+ /**
4027
+ * 智能客户端过滤
4028
+ 注意:此字段可能返回 null,表示取不到有效值。
4029
+ */
4030
+ Intelligence?: RateLimitIntelligence
3912
4031
  }
3913
4032
 
3914
4033
  /**
@@ -4545,6 +4664,41 @@ export interface DescribeTimingL7AnalysisDataResponse {
4545
4664
  RequestId?: string
4546
4665
  }
4547
4666
 
4667
+ /**
4668
+ * 用户画像规则详情
4669
+ */
4670
+ export interface PortraitManagedRuleDetail {
4671
+ /**
4672
+ * 规则唯一id
4673
+ 注意:此字段可能返回 null,表示取不到有效值。
4674
+ */
4675
+ RuleId?: number
4676
+
4677
+ /**
4678
+ * 规则的描述
4679
+ 注意:此字段可能返回 null,表示取不到有效值。
4680
+ */
4681
+ Description?: string
4682
+
4683
+ /**
4684
+ * 规则所属类型的名字, botdb(用户画像)
4685
+ 注意:此字段可能返回 null,表示取不到有效值。
4686
+ */
4687
+ RuleTypeName?: string
4688
+
4689
+ /**
4690
+ * 规则内的功能分类Id(扫描器,Bot行为等)
4691
+ 注意:此字段可能返回 null,表示取不到有效值。
4692
+ */
4693
+ ClassificationId?: number
4694
+
4695
+ /**
4696
+ * 规则当前所属动作状态(block, alg, ...)
4697
+ 注意:此字段可能返回 null,表示取不到有效值。
4698
+ */
4699
+ Status?: string
4700
+ }
4701
+
4548
4702
  /**
4549
4703
  * bot 用户画像规则
4550
4704
  */
@@ -5239,98 +5393,37 @@ export interface DescribeTopL7AnalysisDataResponse {
5239
5393
  }
5240
5394
 
5241
5395
  /**
5242
- * web攻击日志
5396
+ * Bot智能分析规则详情
5243
5397
  */
5244
- export interface WebLogs {
5245
- /**
5246
- * 攻击内容
5247
- 注意:此字段可能返回 null,表示取不到有效值。
5248
- */
5249
- AttackContent: string
5250
-
5398
+ export interface IntelligenceRuleItem {
5251
5399
  /**
5252
- * 攻击IP
5400
+ * 恶意BOT
5253
5401
  注意:此字段可能返回 null,表示取不到有效值。
5254
5402
  */
5255
- AttackIp: string
5403
+ Label?: string
5256
5404
 
5257
5405
  /**
5258
- * 攻击类型
5406
+ * 动作
5259
5407
  注意:此字段可能返回 null,表示取不到有效值。
5260
5408
  */
5261
- AttackType: string
5262
-
5263
- /**
5264
- * 域名
5265
- 注意:此字段可能返回 null,表示取不到有效值。
5266
- */
5267
- Domain: string
5268
-
5269
- /**
5270
- * uuid
5271
- 注意:此字段可能返回 null,表示取不到有效值。
5272
- */
5273
- Msuuid: string
5274
-
5275
- /**
5276
- * 请求方法
5277
- 注意:此字段可能返回 null,表示取不到有效值。
5278
- */
5279
- RequestMethod: string
5280
-
5281
- /**
5282
- * 请求URI
5283
- 注意:此字段可能返回 null,表示取不到有效值。
5284
- */
5285
- RequestUri: string
5286
-
5287
- /**
5288
- * 风险等级
5289
- 注意:此字段可能返回 null,表示取不到有效值。
5290
- */
5291
- RiskLevel: string
5292
-
5293
- /**
5294
- * 规则ID
5295
- 注意:此字段可能返回 null,表示取不到有效值。
5296
- */
5297
- RuleId: number
5298
-
5299
- /**
5300
- * IP所在国家
5301
- 注意:此字段可能返回 null,表示取不到有效值。
5302
- */
5303
- SipCountryCode: string
5304
-
5305
- /**
5306
- * 事件id
5307
- 注意:此字段可能返回 null,表示取不到有效值。
5308
- */
5309
- EventId: string
5310
-
5311
- /**
5312
- * 处置方式
5313
- 注意:此字段可能返回 null,表示取不到有效值。
5314
- */
5315
- DisposalMethod: string
5316
-
5317
- /**
5318
- * http_log
5319
- 注意:此字段可能返回 null,表示取不到有效值。
5320
- */
5321
- HttpLog: string
5409
+ Action?: string
5410
+ }
5322
5411
 
5412
+ /**
5413
+ * 智能分析规则
5414
+ */
5415
+ export interface IntelligenceRule {
5323
5416
  /**
5324
- * user agent
5417
+ * 开关
5325
5418
  注意:此字段可能返回 null,表示取不到有效值。
5326
5419
  */
5327
- Ua: string
5420
+ Switch?: string
5328
5421
 
5329
5422
  /**
5330
- * 攻击时间,为保持统一,原参数time更名为AttackTime
5423
+ * 规则详情
5331
5424
  注意:此字段可能返回 null,表示取不到有效值。
5332
5425
  */
5333
- AttackTime: number
5426
+ Items?: Array<IntelligenceRuleItem>
5334
5427
  }
5335
5428
 
5336
5429
  /**
@@ -6039,6 +6132,40 @@ export interface DescribeApplicationProxyDetailRequest {
6039
6132
  ProxyId: string
6040
6133
  }
6041
6134
 
6135
+ /**
6136
+ * 智能客户端过滤
6137
+ */
6138
+ export interface RateLimitIntelligence {
6139
+ /**
6140
+ * 功能开关
6141
+ 注意:此字段可能返回 null,表示取不到有效值。
6142
+ */
6143
+ Switch?: string
6144
+
6145
+ /**
6146
+ * 执行动作 monitor(观察), alg(挑战)
6147
+ 注意:此字段可能返回 null,表示取不到有效值。
6148
+ */
6149
+ Action?: string
6150
+ }
6151
+
6152
+ /**
6153
+ * IP黑白名单及IP区域控制配置
6154
+ */
6155
+ export interface IpTableConfig {
6156
+ /**
6157
+ * 开关
6158
+ 注意:此字段可能返回 null,表示取不到有效值。
6159
+ */
6160
+ Switch?: string
6161
+
6162
+ /**
6163
+ * []
6164
+ 注意:此字段可能返回 null,表示取不到有效值。
6165
+ */
6166
+ Rules?: Array<IpTableRule>
6167
+ }
6168
+
6042
6169
  /**
6043
6170
  * DeleteOriginGroup返回参数结构体
6044
6171
  */
@@ -7598,17 +7725,17 @@ export interface DescribeTimingL4DataRequest {
7598
7725
  MetricNames: Array<string>
7599
7726
 
7600
7727
  /**
7601
- * ZoneId列表,仅在zone/instance维度下查询时该参数有效
7728
+ * 站点id列表
7602
7729
  */
7603
7730
  ZoneIds?: Array<string>
7604
7731
 
7605
7732
  /**
7606
- * InstanceId列表,仅在Instance维度下查询时该参数有效
7733
+ * 该字段已废弃,请使用ProxyIds字段
7607
7734
  */
7608
7735
  InstanceIds?: Array<string>
7609
7736
 
7610
7737
  /**
7611
- * 协议类型, 该字段当前无效
7738
+ * 该字段当前无效
7612
7739
  */
7613
7740
  Protocol?: string
7614
7741
 
@@ -7618,9 +7745,19 @@ export interface DescribeTimingL4DataRequest {
7618
7745
  Interval?: string
7619
7746
 
7620
7747
  /**
7621
- * 规则ID,仅在instance维度有效
7748
+ * 该字段当前无效,请使用Filter筛选
7622
7749
  */
7623
7750
  RuleId?: string
7751
+
7752
+ /**
7753
+ * 支持的 Filter:proxyd,ruleId
7754
+ */
7755
+ Filters?: Array<Filter>
7756
+
7757
+ /**
7758
+ * 四层实例列表
7759
+ */
7760
+ ProxyIds?: Array<string>
7624
7761
  }
7625
7762
 
7626
7763
  /**
@@ -8491,7 +8628,7 @@ export interface BotConfig {
8491
8628
  /**
8492
8629
  * bot开关
8493
8630
  */
8494
- Switch: string
8631
+ Switch?: string
8495
8632
 
8496
8633
  /**
8497
8634
  * 预置规则
@@ -8512,6 +8649,12 @@ export interface BotConfig {
8512
8649
  * 用户画像规则
8513
8650
  */
8514
8651
  PortraitRule?: BotPortraitRule
8652
+
8653
+ /**
8654
+ * Bot智能分析
8655
+ 注意:此字段可能返回 null,表示取不到有效值。
8656
+ */
8657
+ IntelligenceRule?: IntelligenceRule
8515
8658
  }
8516
8659
 
8517
8660
  /**