tencentcloud-sdk-nodejs-waf 4.0.703 → 4.0.705

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.
@@ -193,6 +193,12 @@ class Client extends TencentCloudCommon.AbstractClient {
193
193
  async DeleteAntiInfoLeakRule(req, cb) {
194
194
  return this.request("DeleteAntiInfoLeakRule", req, cb);
195
195
  }
196
+ /**
197
+ * 查看防护对象列表
198
+ */
199
+ async DescribeObjects(req, cb) {
200
+ return this.request("DescribeObjects", req, cb);
201
+ }
196
202
  /**
197
203
  * 获取各个模块具体的规格限制
198
204
  */
@@ -354,6 +360,12 @@ class Client extends TencentCloudCommon.AbstractClient {
354
360
  async DescribeWafInfo(req, cb) {
355
361
  return this.request("DescribeWafInfo", req, cb);
356
362
  }
363
+ /**
364
+ * 获取用户规则白名单列表
365
+ */
366
+ async DescribeAttackWhiteRule(req, cb) {
367
+ return this.request("DescribeAttackWhiteRule", req, cb);
368
+ }
357
369
  /**
358
370
  * clb-waf中获取防护域名列表
359
371
  */
@@ -385,10 +397,10 @@ class Client extends TencentCloudCommon.AbstractClient {
385
397
  return this.request("ModifyHost", req, cb);
386
398
  }
387
399
  /**
388
- * 查询用户TLS版本
400
+ * Bot_V2 bot总开关更新
389
401
  */
390
- async DescribeTlsVersion(req, cb) {
391
- return this.request("DescribeTlsVersion", req, cb);
402
+ async ModifyBotStatus(req, cb) {
403
+ return this.request("ModifyBotStatus", req, cb);
392
404
  }
393
405
  /**
394
406
  * waf斯巴达-waf开关
@@ -433,10 +445,10 @@ class Client extends TencentCloudCommon.AbstractClient {
433
445
  return this.request("DeleteDownloadRecord", req, cb);
434
446
  }
435
447
  /**
436
- * Bot_V2 bot总开关更新
448
+ * 查询用户TLS版本
437
449
  */
438
- async ModifyBotStatus(req, cb) {
439
- return this.request("ModifyBotStatus", req, cb);
450
+ async DescribeTlsVersion(req, cb) {
451
+ return this.request("DescribeTlsVersion", req, cb);
440
452
  }
441
453
  /**
442
454
  * 编辑信息防泄漏规则
@@ -474,12 +486,24 @@ class Client extends TencentCloudCommon.AbstractClient {
474
486
  async ModifyCustomRuleStatus(req, cb) {
475
487
  return this.request("ModifyCustomRuleStatus", req, cb);
476
488
  }
489
+ /**
490
+ * 供用户控制台调用,删除Tiga规则引擎白名单。
491
+ */
492
+ async DeleteAttackWhiteRule(req, cb) {
493
+ return this.request("DeleteAttackWhiteRule", req, cb);
494
+ }
477
495
  /**
478
496
  * Waf ip黑白名单查询
479
497
  */
480
498
  async DescribeIpAccessControl(req, cb) {
481
499
  return this.request("DescribeIpAccessControl", req, cb);
482
500
  }
501
+ /**
502
+ * 供用户控制台调用,增加Tiga规则引擎白名单。
503
+ */
504
+ async AddAttackWhiteRule(req, cb) {
505
+ return this.request("AddAttackWhiteRule", req, cb);
506
+ }
483
507
  /**
484
508
  * 获取域名概况
485
509
  */
@@ -612,6 +636,12 @@ class Client extends TencentCloudCommon.AbstractClient {
612
636
  async DescribeInstances(req, cb) {
613
637
  return this.request("DescribeInstances", req, cb);
614
638
  }
639
+ /**
640
+ * 供用户控制台调用,修改Tiga规则引擎白名单。
641
+ */
642
+ async ModifyAttackWhiteRule(req, cb) {
643
+ return this.request("ModifyAttackWhiteRule", req, cb);
644
+ }
615
645
  /**
616
646
  * 修改用户防护规则,开启关闭具体的某条规则
617
647
  */
@@ -678,6 +708,12 @@ class Client extends TencentCloudCommon.AbstractClient {
678
708
  async UpsertCCRule(req, cb) {
679
709
  return this.request("UpsertCCRule", req, cb);
680
710
  }
711
+ /**
712
+ * 修改防护对象
713
+ */
714
+ async ModifyObject(req, cb) {
715
+ return this.request("ModifyObject", req, cb);
716
+ }
681
717
  /**
682
718
  * 删除防篡改url
683
719
  */
@@ -171,13 +171,13 @@ export interface ModifyAntiInfoLeakRulesResponse {
171
171
  RequestId?: string;
172
172
  }
173
173
  /**
174
- * ModifyWebshellStatus请求参数结构体
174
+ * ModifyObject返回参数结构体
175
175
  */
176
- export interface ModifyWebshellStatusRequest {
176
+ export interface ModifyObjectResponse {
177
177
  /**
178
- * 域名webshell状态
178
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
179
179
  */
180
- Webshell: WebshellStatus;
180
+ RequestId?: string;
181
181
  }
182
182
  /**
183
183
  * DescribeCertificateVerifyResult请求参数结构体
@@ -680,6 +680,19 @@ export interface DescribeAntiFakeUrlRequest {
680
680
  */
681
681
  PageInfo: PageInfo;
682
682
  }
683
+ /**
684
+ * DeleteAttackWhiteRule请求参数结构体
685
+ */
686
+ export interface DeleteAttackWhiteRuleRequest {
687
+ /**
688
+ * 规则序号组
689
+ */
690
+ Ids: Array<number | bigint>;
691
+ /**
692
+ * 用户域名
693
+ */
694
+ Domain: string;
695
+ }
683
696
  /**
684
697
  * 数据封装
685
698
  */
@@ -1180,6 +1193,20 @@ export interface GetAttackTotalCountResponse {
1180
1193
  */
1181
1194
  RequestId?: string;
1182
1195
  }
1196
+ /**
1197
+ * ModifyBotStatus返回参数结构体
1198
+ */
1199
+ export interface ModifyBotStatusResponse {
1200
+ /**
1201
+ * 正常情况为null
1202
+ 注意:此字段可能返回 null,表示取不到有效值。
1203
+ */
1204
+ Data: string;
1205
+ /**
1206
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1207
+ */
1208
+ RequestId?: string;
1209
+ }
1183
1210
  /**
1184
1211
  * DescribeAntiInfoLeakageRules返回参数结构体
1185
1212
  */
@@ -1299,13 +1326,25 @@ export interface MajorEventsPkg {
1299
1326
  HWState?: number;
1300
1327
  }
1301
1328
  /**
1302
- * ModifySpartaProtection返回参数结构体
1329
+ * ModifyObject请求参数结构体
1303
1330
  */
1304
- export interface ModifySpartaProtectionResponse {
1331
+ export interface ModifyObjectRequest {
1305
1332
  /**
1306
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1333
+ * 修改对象标识
1307
1334
  */
1308
- RequestId?: string;
1335
+ ObjectId: string;
1336
+ /**
1337
+ * 改动作类型:Status修改开关,InstanceId绑定实例
1338
+ */
1339
+ OpType: string;
1340
+ /**
1341
+ * 新的Waf开关状态,如果和已有状态相同认为修改成功
1342
+ */
1343
+ Status?: number;
1344
+ /**
1345
+ * 新的实例ID,如果和已绑定的实例相同认为修改成功
1346
+ */
1347
+ InstanceId?: string;
1309
1348
  }
1310
1349
  /**
1311
1350
  * ModifyHostFlowMode请求参数结构体
@@ -1560,6 +1599,43 @@ export interface DeleteCustomWhiteRuleRequest {
1560
1599
  */
1561
1600
  RuleId: number;
1562
1601
  }
1602
+ /**
1603
+ * 用户规则白名单
1604
+ */
1605
+ export interface UserWhiteRule {
1606
+ /**
1607
+ * 白名单的id
1608
+ */
1609
+ WhiteRuleId: number;
1610
+ /**
1611
+ * 规则id
1612
+ */
1613
+ SignatureId: string;
1614
+ /**
1615
+ * 状态
1616
+ */
1617
+ Status: number;
1618
+ /**
1619
+ * 匹配域
1620
+ */
1621
+ MatchField: string;
1622
+ /**
1623
+ * 匹配方法
1624
+ */
1625
+ MatchMethod: string;
1626
+ /**
1627
+ * 匹配内容
1628
+ */
1629
+ MatchContent: string;
1630
+ /**
1631
+ * 创建时间
1632
+ */
1633
+ CreateTime: string;
1634
+ /**
1635
+ * 修改时间
1636
+ */
1637
+ ModifyTime: string;
1638
+ }
1563
1639
  /**
1564
1640
  * ModifyHostMode返回参数结构体
1565
1641
  */
@@ -1649,6 +1725,19 @@ export interface DescribeAutoDenyIPRequest {
1649
1725
  */
1650
1726
  Sort?: string;
1651
1727
  }
1728
+ /**
1729
+ * AddAttackWhiteRule返回参数结构体
1730
+ */
1731
+ export interface AddAttackWhiteRuleResponse {
1732
+ /**
1733
+ * 规则总数
1734
+ */
1735
+ RuleId: number;
1736
+ /**
1737
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1738
+ */
1739
+ RequestId?: string;
1740
+ }
1652
1741
  /**
1653
1742
  * ModifyWafAutoDenyStatus请求参数结构体
1654
1743
  */
@@ -1676,9 +1765,27 @@ export interface DescribeCustomRuleListResponse {
1676
1765
  RequestId?: string;
1677
1766
  }
1678
1767
  /**
1679
- * ModifyDomainsCLSStatus返回参数结构体
1768
+ * 响应体的返回码
1680
1769
  */
1681
- export interface ModifyDomainsCLSStatusResponse {
1770
+ export interface ResponseCode {
1771
+ /**
1772
+ * 如果成功则返回Success,失败则返回云api定义的错误码
1773
+ */
1774
+ Code: string;
1775
+ /**
1776
+ * 如果成功则返回Success,失败则返回WAF定义的二级错误码
1777
+ */
1778
+ Message: string;
1779
+ }
1780
+ /**
1781
+ * DeleteAttackWhiteRule返回参数结构体
1782
+ */
1783
+ export interface DeleteAttackWhiteRuleResponse {
1784
+ /**
1785
+ * 删除失败的规则序号组
1786
+ 注意:此字段可能返回 null,表示取不到有效值。
1787
+ */
1788
+ FailIds: Array<number | bigint>;
1682
1789
  /**
1683
1790
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1684
1791
  */
@@ -1740,6 +1847,15 @@ export interface ClbHostResult {
1740
1847
  */
1741
1848
  FlowMode: number;
1742
1849
  }
1850
+ /**
1851
+ * ModifyWebshellStatus请求参数结构体
1852
+ */
1853
+ export interface ModifyWebshellStatusRequest {
1854
+ /**
1855
+ * 域名webshell状态
1856
+ */
1857
+ Webshell: WebshellStatus;
1858
+ }
1743
1859
  /**
1744
1860
  * DescribeVipInfo请求参数结构体
1745
1861
  */
@@ -1810,13 +1926,17 @@ export interface DeleteSpartaProtectionResponse {
1810
1926
  RequestId?: string;
1811
1927
  }
1812
1928
  /**
1813
- * 参数包装
1929
+ * ModifyAttackWhiteRule返回参数结构体
1814
1930
  */
1815
- export interface SessionData {
1931
+ export interface ModifyAttackWhiteRuleResponse {
1816
1932
  /**
1817
- * session定义
1933
+ * 规则总数
1818
1934
  */
1819
- Res: Array<SessionItem>;
1935
+ RuleId: number;
1936
+ /**
1937
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1938
+ */
1939
+ RequestId?: string;
1820
1940
  }
1821
1941
  /**
1822
1942
  * DescribeAutoDenyIP返回参数结构体
@@ -2282,6 +2402,31 @@ export interface AccessRuleInfo {
2282
2402
  */
2283
2403
  Tag: AccessRuleTagInfo;
2284
2404
  }
2405
+ /**
2406
+ * ModifyAttackWhiteRule请求参数结构体
2407
+ */
2408
+ export interface ModifyAttackWhiteRuleRequest {
2409
+ /**
2410
+ * 规则序号
2411
+ */
2412
+ RuleId: number;
2413
+ /**
2414
+ * 域名
2415
+ */
2416
+ Domain: string;
2417
+ /**
2418
+ * 规则Id
2419
+ */
2420
+ SignatureId: string;
2421
+ /**
2422
+ * 规则状态
2423
+ */
2424
+ Status: number;
2425
+ /**
2426
+ * 匹配规则项列表
2427
+ */
2428
+ Rules: Array<UserWhiteRuleItem>;
2429
+ }
2285
2430
  /**
2286
2431
  * clb-waf防护域名
2287
2432
  */
@@ -3505,18 +3650,33 @@ export interface ModifySpartaProtectionModeResponse {
3505
3650
  RequestId?: string;
3506
3651
  }
3507
3652
  /**
3508
- * ModifyBotStatus返回参数结构体
3653
+ * DescribeAttackWhiteRule请求参数结构体
3509
3654
  */
3510
- export interface ModifyBotStatusResponse {
3655
+ export interface DescribeAttackWhiteRuleRequest {
3511
3656
  /**
3512
- * 正常情况为null
3513
- 注意:此字段可能返回 null,表示取不到有效值。
3657
+ * 需要查询的域名
3514
3658
  */
3515
- Data: string;
3659
+ Domain: string;
3516
3660
  /**
3517
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
3661
+ * 分页
3518
3662
  */
3519
- RequestId?: string;
3663
+ Offset: number;
3664
+ /**
3665
+ * 每页容量
3666
+ */
3667
+ Limit: number;
3668
+ /**
3669
+ * 排序字段,支持user_id, signature_id, modify_time
3670
+ */
3671
+ By?: string;
3672
+ /**
3673
+ * 排序方式
3674
+ */
3675
+ Order?: string;
3676
+ /**
3677
+ * 筛选条件,支持SignatureId, MatchContent
3678
+ */
3679
+ Filters?: Array<FiltersItemNew>;
3520
3680
  }
3521
3681
  /**
3522
3682
  * DescribeDomainDetailsSaas请求参数结构体
@@ -4244,6 +4404,15 @@ export interface ModifyAntiFakeUrlResponse {
4244
4404
  */
4245
4405
  RequestId?: string;
4246
4406
  }
4407
+ /**
4408
+ * ModifySpartaProtection返回参数结构体
4409
+ */
4410
+ export interface ModifySpartaProtectionResponse {
4411
+ /**
4412
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
4413
+ */
4414
+ RequestId?: string;
4415
+ }
4247
4416
  /**
4248
4417
  * ModifyWafAutoDenyRules返回参数结构体
4249
4418
  */
@@ -4866,6 +5035,31 @@ export interface DomainPackageNew {
4866
5035
  */
4867
5036
  Region: string;
4868
5037
  }
5038
+ /**
5039
+ * AddAttackWhiteRule请求参数结构体
5040
+ */
5041
+ export interface AddAttackWhiteRuleRequest {
5042
+ /**
5043
+ * 域名
5044
+ */
5045
+ Domain: string;
5046
+ /**
5047
+ * 规则Id
5048
+ */
5049
+ SignatureId: string;
5050
+ /**
5051
+ * 规则状态
5052
+ */
5053
+ Status: number;
5054
+ /**
5055
+ * 匹配规则项列表
5056
+ */
5057
+ Rules: Array<UserWhiteRuleItem>;
5058
+ /**
5059
+ * 规则序号
5060
+ */
5061
+ RuleId?: number;
5062
+ }
4869
5063
  /**
4870
5064
  * AddCustomRule请求参数结构体
4871
5065
  */
@@ -5688,6 +5882,21 @@ export interface GoodNews {
5688
5882
  */
5689
5883
  RegionId?: number;
5690
5884
  }
5885
+ /**
5886
+ * TLS信息
5887
+ */
5888
+ export interface TLSVersion {
5889
+ /**
5890
+ * TLSVERSION的ID
5891
+ 注意:此字段可能返回 null,表示取不到有效值。
5892
+ */
5893
+ VersionId: number;
5894
+ /**
5895
+ * TLSVERSION的NAME
5896
+ 注意:此字段可能返回 null,表示取不到有效值。
5897
+ */
5898
+ VersionName: string;
5899
+ }
5691
5900
  /**
5692
5901
  * DescribeCCRule请求参数结构体
5693
5902
  */
@@ -5769,6 +5978,32 @@ export interface TargetEntity {
5769
5978
  */
5770
5979
  Domain?: string;
5771
5980
  }
5981
+ /**
5982
+ * 用户规则白名单规则子项
5983
+ */
5984
+ export interface UserWhiteRuleItem {
5985
+ /**
5986
+ * 匹配域
5987
+ */
5988
+ MatchField: string;
5989
+ /**
5990
+ * 匹配方法
5991
+ */
5992
+ MatchMethod: string;
5993
+ /**
5994
+ * 匹配内容
5995
+ */
5996
+ MatchContent: string;
5997
+ }
5998
+ /**
5999
+ * 参数包装
6000
+ */
6001
+ export interface SessionData {
6002
+ /**
6003
+ * session定义
6004
+ */
6005
+ Res: Array<SessionItem>;
6006
+ }
5772
6007
  /**
5773
6008
  * cc规则
5774
6009
  */
@@ -6064,6 +6299,15 @@ export interface DescribeDomainWhiteRulesResponse {
6064
6299
  */
6065
6300
  RequestId?: string;
6066
6301
  }
6302
+ /**
6303
+ * ModifyDomainsCLSStatus返回参数结构体
6304
+ */
6305
+ export interface ModifyDomainsCLSStatusResponse {
6306
+ /**
6307
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
6308
+ */
6309
+ RequestId?: string;
6310
+ }
6067
6311
  /**
6068
6312
  * DescribeWafThreatenIntelligence返回参数结构体
6069
6313
  */
@@ -6776,6 +7020,19 @@ export interface ClbDomainsInfo {
6776
7020
  */
6777
7021
  CloudType?: string;
6778
7022
  }
7023
+ /**
7024
+ * DescribeObjects返回参数结构体
7025
+ */
7026
+ export interface DescribeObjectsResponse {
7027
+ /**
7028
+ * 对象列表
7029
+ */
7030
+ ClbObjects?: Array<ClbObject>;
7031
+ /**
7032
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
7033
+ */
7034
+ RequestId?: string;
7035
+ }
6779
7036
  /**
6780
7037
  * DescribeHost返回参数结构体
6781
7038
  */
@@ -6834,17 +7091,22 @@ export interface DomainURI {
6834
7091
  Edition: string;
6835
7092
  }
6836
7093
  /**
6837
- * 响应体的返回码
7094
+ * DescribeAttackWhiteRule返回参数结构体
6838
7095
  */
6839
- export interface ResponseCode {
7096
+ export interface DescribeAttackWhiteRuleResponse {
6840
7097
  /**
6841
- * 如果成功则返回Success,失败则返回云api定义的错误码
7098
+ * 规则总数
6842
7099
  */
6843
- Code: string;
7100
+ Total: number;
6844
7101
  /**
6845
- * 如果成功则返回Success,失败则返回WAF定义的二级错误码
7102
+ * 规则白名单列表
7103
+ 注意:此字段可能返回 null,表示取不到有效值。
6846
7104
  */
6847
- Message: string;
7105
+ List: Array<UserWhiteRule>;
7106
+ /**
7107
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
7108
+ */
7109
+ RequestId?: string;
6848
7110
  }
6849
7111
  /**
6850
7112
  * ModifyAntiInfoLeakRuleStatus请求参数结构体
@@ -6978,6 +7240,21 @@ export interface BotPkg {
6978
7240
  */
6979
7241
  BotNPWaf?: number;
6980
7242
  }
7243
+ /**
7244
+ * DescribeObjects请求参数结构体
7245
+ */
7246
+ export interface DescribeObjectsRequest {
7247
+ /**
7248
+ * 支持的过滤器:
7249
+ ObjectId: clb实例ID
7250
+ VIP: clb实例的公网IP
7251
+ InstanceId: waf实例ID
7252
+ Domain: 精准域名
7253
+ Status: waf防护开关状态: 0关闭,1开启
7254
+ ClsStatus: waf日志开关: 0关闭,1开启
7255
+ */
7256
+ Filters?: Array<FiltersItemNew>;
7257
+ }
6981
7258
  /**
6982
7259
  * ModifyWafThreatenIntelligence返回参数结构体
6983
7260
  */
@@ -7014,19 +7291,13 @@ export interface ModifyHostStatusRequest {
7014
7291
  HostsStatus: Array<HostStatus>;
7015
7292
  }
7016
7293
  /**
7017
- * TLS信息
7294
+ * RefreshAccessCheckResult返回参数结构体
7018
7295
  */
7019
- export interface TLSVersion {
7020
- /**
7021
- * TLSVERSION的ID
7022
- 注意:此字段可能返回 null,表示取不到有效值。
7023
- */
7024
- VersionId: number;
7296
+ export interface RefreshAccessCheckResultResponse {
7025
7297
  /**
7026
- * TLSVERSION的NAME
7027
- 注意:此字段可能返回 null,表示取不到有效值。
7298
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
7028
7299
  */
7029
- VersionName: string;
7300
+ RequestId?: string;
7030
7301
  }
7031
7302
  /**
7032
7303
  * ModifyCustomRule返回参数结构体
@@ -7143,11 +7414,67 @@ export interface LoadBalancer {
7143
7414
  LoadBalancerDomain?: string;
7144
7415
  }
7145
7416
  /**
7146
- * RefreshAccessCheckResult返回参数结构体
7417
+ * Clb类型防护对象
7147
7418
  */
7148
- export interface RefreshAccessCheckResultResponse {
7419
+ export interface ClbObject {
7149
7420
  /**
7150
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
7421
+ * 对象ID
7151
7422
  */
7152
- RequestId?: string;
7423
+ ObjectId: string;
7424
+ /**
7425
+ * 实例ID
7426
+ */
7427
+ InstanceId: string;
7428
+ /**
7429
+ * 实例名称
7430
+ */
7431
+ InstanceName: string;
7432
+ /**
7433
+ * 精准域名列表
7434
+ */
7435
+ PreciseDomains: Array<string>;
7436
+ /**
7437
+ * WAF功能开关状态,0关闭1开启
7438
+ */
7439
+ Status: number;
7440
+ /**
7441
+ * WAF日志开关状态,0关闭1开启
7442
+ */
7443
+ ClsStatus: number;
7444
+ /**
7445
+ * CLB对象对应的虚拟域名
7446
+ */
7447
+ VirtualDomain: string;
7448
+ /**
7449
+ * 对象名称
7450
+ */
7451
+ ObjectName: string;
7452
+ /**
7453
+ * 公网地址
7454
+ */
7455
+ PublicIp: Array<string>;
7456
+ /**
7457
+ * 内网地址
7458
+ */
7459
+ PrivateIp: Array<string>;
7460
+ /**
7461
+ * VPC名称
7462
+ */
7463
+ VpcName: string;
7464
+ /**
7465
+ * VPC ID
7466
+ */
7467
+ Vpc: string;
7468
+ /**
7469
+ * waf实例等级,如果未绑定实例为0
7470
+ */
7471
+ InstanceLevel: number;
7472
+ /**
7473
+ * clb投递开关
7474
+ */
7475
+ PostCLSStatus: number;
7476
+ /**
7477
+ * kafka投递开关
7478
+ */
7479
+ PostCKafkaStatus: number;
7153
7480
  }