tencentcloud-sdk-nodejs 4.1.196 → 4.1.197
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/es/common/sdk_version.js +1 -1
- package/es/services/cwp/v20180228/cwp_client.js +71 -11
- package/es/services/tcb/v20180608/tcb_client.js +5 -2
- package/es/services/tcss/v20201101/tcss_client.js +729 -699
- package/es/services/tke/v20220501/tke_client.js +8 -2
- package/es/services/trp/v20210515/trp_client.js +3 -0
- package/es/services/wedata/v20210820/wedata_client.js +33 -12
- package/package.json +1 -1
- package/tencentcloud/common/sdk_version.d.ts +1 -1
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/services/apm/v20210622/apm_models.d.ts +24 -9
- package/tencentcloud/services/bh/v20230418/bh_models.d.ts +30 -2
- package/tencentcloud/services/config/v20220802/config_models.d.ts +11 -14
- package/tencentcloud/services/cwp/v20180228/cwp_client.d.ts +93 -13
- package/tencentcloud/services/cwp/v20180228/cwp_client.js +138 -18
- package/tencentcloud/services/cwp/v20180228/cwp_models.d.ts +2915 -726
- package/tencentcloud/services/cynosdb/v20190107/cynosdb_models.d.ts +16 -0
- package/tencentcloud/services/dnspod/v20210323/dnspod_models.d.ts +44 -49
- package/tencentcloud/services/ess/v20201111/ess_models.d.ts +51 -19
- package/tencentcloud/services/essbasic/v20210526/essbasic_models.d.ts +32 -64
- package/tencentcloud/services/ocr/v20181119/ocr_models.d.ts +2 -13
- package/tencentcloud/services/sqlserver/v20180328/sqlserver_models.d.ts +8 -4
- package/tencentcloud/services/tcb/v20180608/tcb_client.d.ts +7 -3
- package/tencentcloud/services/tcb/v20180608/tcb_client.js +9 -3
- package/tencentcloud/services/tcb/v20180608/tcb_models.d.ts +158 -1
- package/tencentcloud/services/tcbr/v20220217/tcbr_models.d.ts +4 -5
- package/tencentcloud/services/tcss/v20201101/tcss_client.d.ts +759 -719
- package/tencentcloud/services/tcss/v20201101/tcss_client.js +1118 -1058
- package/tencentcloud/services/tcss/v20201101/tcss_models.d.ts +1083 -173
- package/tencentcloud/services/tke/v20220501/tke_client.d.ts +16 -8
- package/tencentcloud/services/tke/v20220501/tke_client.js +20 -8
- package/tencentcloud/services/tke/v20220501/tke_models.d.ts +1198 -1153
- package/tencentcloud/services/trp/v20210515/trp_client.d.ts +5 -1
- package/tencentcloud/services/trp/v20210515/trp_client.js +6 -0
- package/tencentcloud/services/trp/v20210515/trp_models.d.ts +72 -0
- package/tencentcloud/services/wedata/v20210820/wedata_client.d.ts +43 -15
- package/tencentcloud/services/wedata/v20210820/wedata_client.js +62 -20
- package/tencentcloud/services/wedata/v20210820/wedata_models.d.ts +1273 -843
|
@@ -3,6 +3,9 @@ export class Client extends AbstractClient {
|
|
|
3
3
|
constructor(clientConfig) {
|
|
4
4
|
super("tke.tencentcloudapi.com", "2022-05-01", clientConfig);
|
|
5
5
|
}
|
|
6
|
+
async DescribeZoneInstanceConfigInfos(req, cb) {
|
|
7
|
+
return this.request("DescribeZoneInstanceConfigInfos", req, cb);
|
|
8
|
+
}
|
|
6
9
|
async ModifyClusterMachine(req, cb) {
|
|
7
10
|
return this.request("ModifyClusterMachine", req, cb);
|
|
8
11
|
}
|
|
@@ -45,14 +48,17 @@ export class Client extends AbstractClient {
|
|
|
45
48
|
async DescribeHealthCheckTemplate(req, cb) {
|
|
46
49
|
return this.request("DescribeHealthCheckTemplate", req, cb);
|
|
47
50
|
}
|
|
51
|
+
async StartMachines(req, cb) {
|
|
52
|
+
return this.request("StartMachines", req, cb);
|
|
53
|
+
}
|
|
48
54
|
async DescribeClusters(req, cb) {
|
|
49
55
|
return this.request("DescribeClusters", req, cb);
|
|
50
56
|
}
|
|
51
57
|
async CreateHealthCheckPolicy(req, cb) {
|
|
52
58
|
return this.request("CreateHealthCheckPolicy", req, cb);
|
|
53
59
|
}
|
|
54
|
-
async
|
|
55
|
-
return this.request("
|
|
60
|
+
async DescribeGPUInfo(req, cb) {
|
|
61
|
+
return this.request("DescribeGPUInfo", req, cb);
|
|
56
62
|
}
|
|
57
63
|
async DescribeClusterInstances(req, cb) {
|
|
58
64
|
return this.request("DescribeClusterInstances", req, cb);
|
|
@@ -72,6 +72,9 @@ export class Client extends AbstractClient {
|
|
|
72
72
|
async DescribeCodeBatches(req, cb) {
|
|
73
73
|
return this.request("DescribeCodeBatches", req, cb);
|
|
74
74
|
}
|
|
75
|
+
async ReportScanDetail(req, cb) {
|
|
76
|
+
return this.request("ReportScanDetail", req, cb);
|
|
77
|
+
}
|
|
75
78
|
async ModifyProduct(req, cb) {
|
|
76
79
|
return this.request("ModifyProduct", req, cb);
|
|
77
80
|
}
|
|
@@ -90,8 +90,8 @@ export class Client extends AbstractClient {
|
|
|
90
90
|
async SubmitWorkflow(req, cb) {
|
|
91
91
|
return this.request("SubmitWorkflow", req, cb);
|
|
92
92
|
}
|
|
93
|
-
async
|
|
94
|
-
return this.request("
|
|
93
|
+
async DescribeDatabaseMeta(req, cb) {
|
|
94
|
+
return this.request("DescribeDatabaseMeta", req, cb);
|
|
95
95
|
}
|
|
96
96
|
async ReportTaskLineage(req, cb) {
|
|
97
97
|
return this.request("ReportTaskLineage", req, cb);
|
|
@@ -213,8 +213,8 @@ export class Client extends AbstractClient {
|
|
|
213
213
|
async DescribeOpsMakePlanTasks(req, cb) {
|
|
214
214
|
return this.request("DescribeOpsMakePlanTasks", req, cb);
|
|
215
215
|
}
|
|
216
|
-
async
|
|
217
|
-
return this.request("
|
|
216
|
+
async DescribeRealViewDatabasePage(req, cb) {
|
|
217
|
+
return this.request("DescribeRealViewDatabasePage", req, cb);
|
|
218
218
|
}
|
|
219
219
|
async DescribeTopTableStat(req, cb) {
|
|
220
220
|
return this.request("DescribeTopTableStat", req, cb);
|
|
@@ -276,6 +276,9 @@ export class Client extends AbstractClient {
|
|
|
276
276
|
async CreateIntegrationTask(req, cb) {
|
|
277
277
|
return this.request("CreateIntegrationTask", req, cb);
|
|
278
278
|
}
|
|
279
|
+
async ModifyTaskScript(req, cb) {
|
|
280
|
+
return this.request("ModifyTaskScript", req, cb);
|
|
281
|
+
}
|
|
279
282
|
async DescribeRule(req, cb) {
|
|
280
283
|
return this.request("DescribeRule", req, cb);
|
|
281
284
|
}
|
|
@@ -291,8 +294,8 @@ export class Client extends AbstractClient {
|
|
|
291
294
|
async DescribeFormVersionParam(req, cb) {
|
|
292
295
|
return this.request("DescribeFormVersionParam", req, cb);
|
|
293
296
|
}
|
|
294
|
-
async
|
|
295
|
-
return this.request("
|
|
297
|
+
async DescribeRules(req, cb) {
|
|
298
|
+
return this.request("DescribeRules", req, cb);
|
|
296
299
|
}
|
|
297
300
|
async DescribeSchedulerRunTimeInstanceCntByStatus(req, cb) {
|
|
298
301
|
return this.request("DescribeSchedulerRunTimeInstanceCntByStatus", req, cb);
|
|
@@ -417,6 +420,9 @@ export class Client extends AbstractClient {
|
|
|
417
420
|
async CreateOpsMakePlan(req, cb) {
|
|
418
421
|
return this.request("CreateOpsMakePlan", req, cb);
|
|
419
422
|
}
|
|
423
|
+
async UpdateWorkflowInfo(req, cb) {
|
|
424
|
+
return this.request("UpdateWorkflowInfo", req, cb);
|
|
425
|
+
}
|
|
420
426
|
async GetTaskInstance(req, cb) {
|
|
421
427
|
return this.request("GetTaskInstance", req, cb);
|
|
422
428
|
}
|
|
@@ -426,8 +432,8 @@ export class Client extends AbstractClient {
|
|
|
426
432
|
async DescribeRuleGroup(req, cb) {
|
|
427
433
|
return this.request("DescribeRuleGroup", req, cb);
|
|
428
434
|
}
|
|
429
|
-
async
|
|
430
|
-
return this.request("
|
|
435
|
+
async DescribeLineageColumns(req, cb) {
|
|
436
|
+
return this.request("DescribeLineageColumns", req, cb);
|
|
431
437
|
}
|
|
432
438
|
async DescribeInstanceLogDetail(req, cb) {
|
|
433
439
|
return this.request("DescribeInstanceLogDetail", req, cb);
|
|
@@ -456,6 +462,9 @@ export class Client extends AbstractClient {
|
|
|
456
462
|
async CommitIntegrationTask(req, cb) {
|
|
457
463
|
return this.request("CommitIntegrationTask", req, cb);
|
|
458
464
|
}
|
|
465
|
+
async DescribeTableSelect(req, cb) {
|
|
466
|
+
return this.request("DescribeTableSelect", req, cb);
|
|
467
|
+
}
|
|
459
468
|
async DeleteOfflineTask(req, cb) {
|
|
460
469
|
return this.request("DeleteOfflineTask", req, cb);
|
|
461
470
|
}
|
|
@@ -546,8 +555,8 @@ export class Client extends AbstractClient {
|
|
|
546
555
|
async DeleteProjectUsers(req, cb) {
|
|
547
556
|
return this.request("DeleteProjectUsers", req, cb);
|
|
548
557
|
}
|
|
549
|
-
async
|
|
550
|
-
return this.request("
|
|
558
|
+
async DescribeTableContentPreview(req, cb) {
|
|
559
|
+
return this.request("DescribeTableContentPreview", req, cb);
|
|
551
560
|
}
|
|
552
561
|
async DeleteFile(req, cb) {
|
|
553
562
|
return this.request("DeleteFile", req, cb);
|
|
@@ -561,6 +570,9 @@ export class Client extends AbstractClient {
|
|
|
561
570
|
async DescribeDsTaskVersionList(req, cb) {
|
|
562
571
|
return this.request("DescribeDsTaskVersionList", req, cb);
|
|
563
572
|
}
|
|
573
|
+
async DescribeFieldBasicInfo(req, cb) {
|
|
574
|
+
return this.request("DescribeFieldBasicInfo", req, cb);
|
|
575
|
+
}
|
|
564
576
|
async SubmitCustomFunction(req, cb) {
|
|
565
577
|
return this.request("SubmitCustomFunction", req, cb);
|
|
566
578
|
}
|
|
@@ -639,8 +651,8 @@ export class Client extends AbstractClient {
|
|
|
639
651
|
async DeleteWorkflowById(req, cb) {
|
|
640
652
|
return this.request("DeleteWorkflowById", req, cb);
|
|
641
653
|
}
|
|
642
|
-
async
|
|
643
|
-
return this.request("
|
|
654
|
+
async DescribeDatabaseByName(req, cb) {
|
|
655
|
+
return this.request("DescribeDatabaseByName", req, cb);
|
|
644
656
|
}
|
|
645
657
|
async RegisterDsEvent(req, cb) {
|
|
646
658
|
return this.request("RegisterDsEvent", req, cb);
|
|
@@ -672,6 +684,9 @@ export class Client extends AbstractClient {
|
|
|
672
684
|
async DescribeTableInfoList(req, cb) {
|
|
673
685
|
return this.request("DescribeTableInfoList", req, cb);
|
|
674
686
|
}
|
|
687
|
+
async TriggerDsEvent(req, cb) {
|
|
688
|
+
return this.request("TriggerDsEvent", req, cb);
|
|
689
|
+
}
|
|
675
690
|
async RegisterDsEventListener(req, cb) {
|
|
676
691
|
return this.request("RegisterDsEventListener", req, cb);
|
|
677
692
|
}
|
|
@@ -792,6 +807,9 @@ export class Client extends AbstractClient {
|
|
|
792
807
|
async ModifyRuleGroupSubscription(req, cb) {
|
|
793
808
|
return this.request("ModifyRuleGroupSubscription", req, cb);
|
|
794
809
|
}
|
|
810
|
+
async DescribeTableDdl(req, cb) {
|
|
811
|
+
return this.request("DescribeTableDdl", req, cb);
|
|
812
|
+
}
|
|
795
813
|
async DescribeWorkflowCanvasInfo(req, cb) {
|
|
796
814
|
return this.request("DescribeWorkflowCanvasInfo", req, cb);
|
|
797
815
|
}
|
|
@@ -891,6 +909,9 @@ export class Client extends AbstractClient {
|
|
|
891
909
|
async DescribeIntegrationStatistics(req, cb) {
|
|
892
910
|
return this.request("DescribeIntegrationStatistics", req, cb);
|
|
893
911
|
}
|
|
912
|
+
async GetJobStatus(req, cb) {
|
|
913
|
+
return this.request("GetJobStatus", req, cb);
|
|
914
|
+
}
|
|
894
915
|
async DescribeReportTaskDetail(req, cb) {
|
|
895
916
|
return this.request("DescribeReportTaskDetail", req, cb);
|
|
896
917
|
}
|
package/package.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const sdkVersion = "4.1.
|
|
1
|
+
export declare const sdkVersion = "4.1.197";
|
|
@@ -1725,49 +1725,64 @@ export interface QueryMetricItem {
|
|
|
1725
1725
|
*/
|
|
1726
1726
|
export interface ServiceDetail {
|
|
1727
1727
|
/**
|
|
1728
|
-
*
|
|
1728
|
+
* <p>应用ID</p>
|
|
1729
1729
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1730
1730
|
*/
|
|
1731
1731
|
ServiceID?: string;
|
|
1732
1732
|
/**
|
|
1733
|
-
*
|
|
1733
|
+
* <p>业务系统ID</p>
|
|
1734
1734
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1735
1735
|
*/
|
|
1736
1736
|
InstanceKey?: string;
|
|
1737
1737
|
/**
|
|
1738
|
-
*
|
|
1738
|
+
* <p>用户appid</p>
|
|
1739
1739
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1740
1740
|
*/
|
|
1741
1741
|
AppID?: number;
|
|
1742
1742
|
/**
|
|
1743
|
-
*
|
|
1743
|
+
* <p>主账号uin</p>
|
|
1744
1744
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1745
1745
|
*/
|
|
1746
1746
|
CreateUIN?: string;
|
|
1747
1747
|
/**
|
|
1748
|
-
*
|
|
1748
|
+
* <p>应用名</p>
|
|
1749
1749
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1750
1750
|
*/
|
|
1751
1751
|
ServiceName?: string;
|
|
1752
1752
|
/**
|
|
1753
|
-
*
|
|
1753
|
+
* <p>应用描述</p>
|
|
1754
1754
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1755
1755
|
*/
|
|
1756
1756
|
ServiceDescription?: string;
|
|
1757
1757
|
/**
|
|
1758
|
-
*
|
|
1758
|
+
* <p>地域</p>
|
|
1759
1759
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1760
1760
|
*/
|
|
1761
1761
|
Region?: string;
|
|
1762
1762
|
/**
|
|
1763
|
-
*
|
|
1763
|
+
* <p>标签</p>
|
|
1764
1764
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1765
1765
|
*/
|
|
1766
1766
|
Tags?: Array<ApmTag>;
|
|
1767
1767
|
/**
|
|
1768
|
-
*
|
|
1768
|
+
* <p>业务系统名称</p>
|
|
1769
1769
|
*/
|
|
1770
1770
|
InstanceName?: string;
|
|
1771
|
+
/**
|
|
1772
|
+
* <p>阈值配置开关。true 表示使用应用级阈值;false 表示使用业务系统级阈值</p>
|
|
1773
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1774
|
+
*/
|
|
1775
|
+
EnableThresholdConfig?: boolean;
|
|
1776
|
+
/**
|
|
1777
|
+
* <p>错误率阈值(%),用于判断应用健康状态为"红色"</p><p>单位:%</p>
|
|
1778
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1779
|
+
*/
|
|
1780
|
+
ErrRateThreshold?: number;
|
|
1781
|
+
/**
|
|
1782
|
+
* <p>响应时间预警阈值(ms),用于判断应用健康状态为"黄色"</p><p>单位:ms</p>
|
|
1783
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1784
|
+
*/
|
|
1785
|
+
ResponseDurationWarningThreshold?: number;
|
|
1771
1786
|
}
|
|
1772
1787
|
/**
|
|
1773
1788
|
* DescribeApmInstances返回参数结构体
|
|
@@ -376,7 +376,7 @@ export interface DescribeLoginEventRequest {
|
|
|
376
376
|
*/
|
|
377
377
|
Offset?: number;
|
|
378
378
|
/**
|
|
379
|
-
* 分页每页记录数,默认20
|
|
379
|
+
* 分页每页记录数,默认20,最大200
|
|
380
380
|
*/
|
|
381
381
|
Limit?: number;
|
|
382
382
|
}
|
|
@@ -1987,6 +1987,10 @@ export interface CreateAclRequest {
|
|
|
1987
1987
|
* 是否允许键盘记录
|
|
1988
1988
|
*/
|
|
1989
1989
|
AllowKeyboardLogger?: boolean;
|
|
1990
|
+
/**
|
|
1991
|
+
* 访问串有效期最大时长,秒数,允许使用访问串时需大于0且必须为86400整数倍
|
|
1992
|
+
*/
|
|
1993
|
+
MaxAccessCredentialDuration?: number;
|
|
1990
1994
|
}
|
|
1991
1995
|
/**
|
|
1992
1996
|
* DescribeLoginEvent返回参数结构体
|
|
@@ -2543,6 +2547,10 @@ export interface ModifyAclRequest {
|
|
|
2543
2547
|
* 是否允许键盘记录
|
|
2544
2548
|
*/
|
|
2545
2549
|
AllowKeyboardLogger?: boolean;
|
|
2550
|
+
/**
|
|
2551
|
+
* 访问串有效期最大时长,秒数,允许使用访问串时需大于0且必须为86400整数倍
|
|
2552
|
+
*/
|
|
2553
|
+
MaxAccessCredentialDuration?: number;
|
|
2546
2554
|
}
|
|
2547
2555
|
/**
|
|
2548
2556
|
* SearchAuditLog请求参数结构体
|
|
@@ -4231,7 +4239,7 @@ export interface DescribeOperationEventRequest {
|
|
|
4231
4239
|
*/
|
|
4232
4240
|
Offset?: number;
|
|
4233
4241
|
/**
|
|
4234
|
-
* 分页每页记录数,默认20
|
|
4242
|
+
* 分页每页记录数,默认20,最大200
|
|
4235
4243
|
*/
|
|
4236
4244
|
Limit?: number;
|
|
4237
4245
|
}
|
|
@@ -5463,6 +5471,22 @@ export interface Resource {
|
|
|
5463
5471
|
* 堡垒机实例对应的零信任实例id
|
|
5464
5472
|
*/
|
|
5465
5473
|
IOAResourceId?: string;
|
|
5474
|
+
/**
|
|
5475
|
+
* 资源类型 免费版/标准版/专业版 /国密版 free/standard/pro/gm
|
|
5476
|
+
*/
|
|
5477
|
+
ResourceEdition?: string;
|
|
5478
|
+
/**
|
|
5479
|
+
* 计费周期 年:y,月:m,日:d,时:h,分:M,秒:s,一次性购买:p
|
|
5480
|
+
*/
|
|
5481
|
+
TimeUnit?: string;
|
|
5482
|
+
/**
|
|
5483
|
+
* 计费时长
|
|
5484
|
+
*/
|
|
5485
|
+
TimeSpan?: number;
|
|
5486
|
+
/**
|
|
5487
|
+
* 计费模式 0后付费,1预付费
|
|
5488
|
+
*/
|
|
5489
|
+
PayMode?: number;
|
|
5466
5490
|
}
|
|
5467
5491
|
/**
|
|
5468
5492
|
* RunChangePwdTask返回参数结构体
|
|
@@ -5757,6 +5781,10 @@ export interface Acl {
|
|
|
5757
5781
|
* 权限所属工单名称
|
|
5758
5782
|
*/
|
|
5759
5783
|
TicketName?: string;
|
|
5784
|
+
/**
|
|
5785
|
+
* 访问串有效期最大时长,秒数,允许使用访问串时需大于0且必须为86400整数倍
|
|
5786
|
+
*/
|
|
5787
|
+
MaxAccessCredentialDuration?: number;
|
|
5760
5788
|
}
|
|
5761
5789
|
/**
|
|
5762
5790
|
* 资产标签
|
|
@@ -127,42 +127,39 @@ export interface SourceConditionForManage {
|
|
|
127
127
|
*/
|
|
128
128
|
export interface ListAggregateConfigRulesRequest {
|
|
129
129
|
/**
|
|
130
|
-
*
|
|
130
|
+
* <p>每页限制</p>
|
|
131
131
|
*/
|
|
132
132
|
Limit: number;
|
|
133
133
|
/**
|
|
134
|
-
*
|
|
134
|
+
* <p>偏移量</p>
|
|
135
135
|
*/
|
|
136
136
|
Offset: number;
|
|
137
137
|
/**
|
|
138
|
-
*
|
|
138
|
+
* <p>账号组ID</p>
|
|
139
139
|
*/
|
|
140
140
|
AccountGroupId: string;
|
|
141
141
|
/**
|
|
142
|
-
*
|
|
142
|
+
* <p>排序类型, 倒序:desc,顺序:asc</p>
|
|
143
143
|
*/
|
|
144
144
|
OrderType?: string;
|
|
145
145
|
/**
|
|
146
|
-
*
|
|
147
|
-
1:高风险。
|
|
148
|
-
2:中风险。
|
|
149
|
-
3:低风险。
|
|
146
|
+
* <p>风险等级<br>1:高风险。<br>2:中风险。<br>3:低风险。</p>
|
|
150
147
|
*/
|
|
151
148
|
RiskLevel?: Array<number | bigint>;
|
|
152
149
|
/**
|
|
153
|
-
*
|
|
150
|
+
* <p>规则状态</p>
|
|
154
151
|
*/
|
|
155
152
|
State?: string;
|
|
156
153
|
/**
|
|
157
|
-
*
|
|
154
|
+
* <p>评估结果</p>
|
|
158
155
|
*/
|
|
159
156
|
ComplianceResult?: Array<string>;
|
|
160
157
|
/**
|
|
161
|
-
*
|
|
158
|
+
* <p>规则名</p>
|
|
162
159
|
*/
|
|
163
160
|
RuleName?: string;
|
|
164
161
|
/**
|
|
165
|
-
*
|
|
162
|
+
* <p>规则所属账号ID</p>
|
|
166
163
|
*/
|
|
167
164
|
RuleOwnerId?: number;
|
|
168
165
|
}
|
|
@@ -540,11 +537,11 @@ export interface Filter {
|
|
|
540
537
|
*/
|
|
541
538
|
export interface ListAggregateConfigRulesResponse {
|
|
542
539
|
/**
|
|
543
|
-
*
|
|
540
|
+
* <p>总数</p>
|
|
544
541
|
*/
|
|
545
542
|
Total?: number;
|
|
546
543
|
/**
|
|
547
|
-
*
|
|
544
|
+
* <p>详情</p>
|
|
548
545
|
*/
|
|
549
546
|
Items?: Array<ConfigRule>;
|
|
550
547
|
/**
|