tencentcloud-sdk-nodejs-tdmq 4.0.619 → 4.0.621

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.
@@ -107,6 +107,23 @@ export interface DescribeAMQPRouteRelationsRequest {
107
107
  */
108
108
  FilterDestValue?: string;
109
109
  }
110
+ /**
111
+ * DescribeRabbitMQVirtualHost返回参数结构体
112
+ */
113
+ export interface DescribeRabbitMQVirtualHostResponse {
114
+ /**
115
+ * 返回vhost数量
116
+ */
117
+ TotalCount?: number;
118
+ /**
119
+ * vhost详情列表
120
+ */
121
+ VirtualHostList?: Array<RabbitMQVirtualHostInfo>;
122
+ /**
123
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
124
+ */
125
+ RequestId?: string;
126
+ }
110
127
  /**
111
128
  * cmq DeadLetterPolicy
112
129
  */
@@ -169,6 +186,19 @@ export interface DescribeNamespaceBundlesOptRequest {
169
186
  */
170
187
  OwnerBroker?: string;
171
188
  }
189
+ /**
190
+ * DeleteRabbitMQUser请求参数结构体
191
+ */
192
+ export interface DeleteRabbitMQUserRequest {
193
+ /**
194
+ * 集群实例Id
195
+ */
196
+ InstanceId: string;
197
+ /**
198
+ * 用户名,登录时使用
199
+ */
200
+ User: string;
201
+ }
172
202
  /**
173
203
  * RocketMQ命名空间信息
174
204
  */
@@ -240,21 +270,49 @@ export interface DescribeSubscriptionsRequest {
240
270
  ClusterId?: string;
241
271
  }
242
272
  /**
243
- * 实例节点分布信息
273
+ * DescribeRocketMQGroups请求参数结构体
244
274
  */
245
- export interface InstanceNodeDistribution {
275
+ export interface DescribeRocketMQGroupsRequest {
246
276
  /**
247
- * 可用区
277
+ * 集群ID
248
278
  */
249
- ZoneName: string;
279
+ ClusterId: string;
250
280
  /**
251
- * 可用区id
281
+ * 命名空间
252
282
  */
253
- ZoneId: string;
283
+ NamespaceId: string;
254
284
  /**
255
- * 节点数
285
+ * 偏移量
256
286
  */
257
- NodeCount: number;
287
+ Offset: number;
288
+ /**
289
+ * 限制条数
290
+ */
291
+ Limit: number;
292
+ /**
293
+ * 主题名称,输入此参数可查询该主题下所有的订阅组
294
+ */
295
+ FilterTopic?: string;
296
+ /**
297
+ * 按消费组名称查询消费组,支持模糊查询
298
+ */
299
+ FilterGroup?: string;
300
+ /**
301
+ * 按照指定字段排序,可选值为tps,accumulative
302
+ */
303
+ SortedBy?: string;
304
+ /**
305
+ * 按升序或降序排列,可选值为asc,desc
306
+ */
307
+ SortOrder?: string;
308
+ /**
309
+ * 订阅组名称,指定此参数后将只返回该订阅组信息
310
+ */
311
+ FilterOneGroup?: string;
312
+ /**
313
+ * group类型
314
+ */
315
+ Types?: Array<string>;
258
316
  }
259
317
  /**
260
318
  * CreateRocketMQGroup请求参数结构体
@@ -293,6 +351,27 @@ export interface CreateRocketMQGroupRequest {
293
351
  */
294
352
  RetryMaxTimes?: number;
295
353
  }
354
+ /**
355
+ * ModifyRabbitMQVirtualHost请求参数结构体
356
+ */
357
+ export interface ModifyRabbitMQVirtualHostRequest {
358
+ /**
359
+ * 集群实例Id
360
+ */
361
+ InstanceId: string;
362
+ /**
363
+ * vhost名
364
+ */
365
+ VirtualHost: string;
366
+ /**
367
+ * 描述
368
+ */
369
+ Description?: string;
370
+ /**
371
+ * 消息轨迹开关,true打开,false关闭
372
+ */
373
+ TraceFlag?: boolean;
374
+ }
296
375
  /**
297
376
  * ModifyEnvironmentAttributes请求参数结构体
298
377
  */
@@ -547,25 +626,19 @@ export interface VpcConfig {
547
626
  SubnetId: string;
548
627
  }
549
628
  /**
550
- * RocketMQ近期使用量
629
+ * RabbitMQ专享版虚拟机
551
630
  */
552
- export interface RocketMQClusterRecentStats {
553
- /**
554
- * Topic数量
555
- */
556
- TopicNum: number;
557
- /**
558
- * 消息生产数
559
- */
560
- ProducedMsgNum: number;
631
+ export interface RabbitMQPrivateVirtualHost {
561
632
  /**
562
- * 消息消费数
633
+ * 虚拟主机的名字
634
+ 注意:此字段可能返回 null,表示取不到有效值。
563
635
  */
564
- ConsumedMsgNum: number;
636
+ VirtualHostName: string;
565
637
  /**
566
- * 消息堆积数
638
+ * 虚拟主机的描述
639
+ 注意:此字段可能返回 null,表示取不到有效值。
567
640
  */
568
- AccumulativeMsgNum: number;
641
+ Description: string;
569
642
  }
570
643
  /**
571
644
  * RocketMQ专享实例信息
@@ -1025,15 +1098,6 @@ export interface CmqSubscription {
1025
1098
  */
1026
1099
  NotifyContentFormat: string;
1027
1100
  }
1028
- /**
1029
- * ModifyAMQPVHost返回参数结构体
1030
- */
1031
- export interface ModifyAMQPVHostResponse {
1032
- /**
1033
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1034
- */
1035
- RequestId?: string;
1036
- }
1037
1101
  /**
1038
1102
  * DescribeAMQPCluster返回参数结构体
1039
1103
  */
@@ -1225,27 +1289,6 @@ export interface DeleteCmqTopicResponse {
1225
1289
  */
1226
1290
  RequestId?: string;
1227
1291
  }
1228
- /**
1229
- * ModifyAMQPVHost请求参数结构体
1230
- */
1231
- export interface ModifyAMQPVHostRequest {
1232
- /**
1233
- * 集群ID
1234
- */
1235
- ClusterId: string;
1236
- /**
1237
- * vhost名称,3-64个字符,只能包含字母、数字、“-”及“_”
1238
- */
1239
- VHostId: string;
1240
- /**
1241
- * 未消费消息的保留时间,以毫秒为单位,60秒-15天
1242
- */
1243
- MsgTtl: number;
1244
- /**
1245
- * 说明,最大128个字符
1246
- */
1247
- Remark?: string;
1248
- }
1249
1292
  /**
1250
1293
  * CreateSubscription请求参数结构体
1251
1294
  */
@@ -1433,21 +1476,59 @@ export interface Topic {
1433
1476
  PulsarTopicType: number;
1434
1477
  }
1435
1478
  /**
1436
- * SendCmqMsg返回参数结构体
1479
+ * RabbitMQ的vhost详情
1437
1480
  */
1438
- export interface SendCmqMsgResponse {
1481
+ export interface RabbitMQVirtualHostInfo {
1439
1482
  /**
1440
- * true表示发送成功
1483
+ * 集群实例Id
1441
1484
  */
1442
- Result: boolean;
1485
+ InstanceId?: string;
1443
1486
  /**
1444
- * 消息id
1487
+ * vhost名
1445
1488
  */
1446
- MsgId: string;
1489
+ VirtualHost?: string;
1447
1490
  /**
1448
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1491
+ * vhost描述信息
1492
+ 注意:此字段可能返回 null,表示取不到有效值。
1449
1493
  */
1450
- RequestId?: string;
1494
+ Description?: string;
1495
+ /**
1496
+ * vhost标签
1497
+ 注意:此字段可能返回 null,表示取不到有效值。
1498
+ */
1499
+ Tags?: Array<string>;
1500
+ /**
1501
+ * 创建时间
1502
+ 注意:此字段可能返回 null,表示取不到有效值。
1503
+ */
1504
+ CreateTime?: string;
1505
+ /**
1506
+ * 修改时间
1507
+ 注意:此字段可能返回 null,表示取不到有效值。
1508
+ */
1509
+ ModifyTime?: string;
1510
+ /**
1511
+ * vhost概览统计信息
1512
+ 注意:此字段可能返回 null,表示取不到有效值。
1513
+ */
1514
+ VirtualHostStatistics?: RabbitMQVirtualHostStatistics;
1515
+ }
1516
+ /**
1517
+ * 实例节点分布信息
1518
+ */
1519
+ export interface InstanceNodeDistribution {
1520
+ /**
1521
+ * 可用区
1522
+ */
1523
+ ZoneName: string;
1524
+ /**
1525
+ * 可用区id
1526
+ */
1527
+ ZoneId: string;
1528
+ /**
1529
+ * 节点数
1530
+ */
1531
+ NodeCount: number;
1451
1532
  }
1452
1533
  /**
1453
1534
  * exchange使用配额信息
@@ -1476,6 +1557,15 @@ export interface DescribeCmqTopicDetailResponse {
1476
1557
  */
1477
1558
  RequestId?: string;
1478
1559
  }
1560
+ /**
1561
+ * ModifyRabbitMQVirtualHost返回参数结构体
1562
+ */
1563
+ export interface ModifyRabbitMQVirtualHostResponse {
1564
+ /**
1565
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1566
+ */
1567
+ RequestId?: string;
1568
+ }
1479
1569
  /**
1480
1570
  * 命名空间信息
1481
1571
  */
@@ -1707,6 +1797,31 @@ export interface CreateEnvironmentResponse {
1707
1797
  */
1708
1798
  RequestId?: string;
1709
1799
  }
1800
+ /**
1801
+ * vhost概览统计信息
1802
+ */
1803
+ export interface RabbitMQVirtualHostStatistics {
1804
+ /**
1805
+ * 当前vhost的queue数量
1806
+ */
1807
+ CurrentQueues?: number;
1808
+ /**
1809
+ * 当前vhost的exchange数量
1810
+ */
1811
+ CurrentExchanges?: number;
1812
+ /**
1813
+ * 当前vhost的连接数量
1814
+ */
1815
+ CurrentConnections?: number;
1816
+ /**
1817
+ * 当前vhost的channel数量
1818
+ */
1819
+ CurrentChannels?: number;
1820
+ /**
1821
+ * 当前vhost的用户数量
1822
+ */
1823
+ CurrentUsers?: number;
1824
+ }
1710
1825
  /**
1711
1826
  * CreateSubscription返回参数结构体
1712
1827
  */
@@ -2667,6 +2782,23 @@ export interface DescribeClusterDetailRequest {
2667
2782
  */
2668
2783
  ClusterId: string;
2669
2784
  }
2785
+ /**
2786
+ * DescribeRabbitMQUser返回参数结构体
2787
+ */
2788
+ export interface DescribeRabbitMQUserResponse {
2789
+ /**
2790
+ * 返回的User数量
2791
+ */
2792
+ TotalCount: number;
2793
+ /**
2794
+ * 当前已创建的RabbitMQ用户列表
2795
+ */
2796
+ RabbitMQUserList: Array<RabbitMQUser>;
2797
+ /**
2798
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2799
+ */
2800
+ RequestId?: string;
2801
+ }
2670
2802
  /**
2671
2803
  * ModifyRole返回参数结构体
2672
2804
  */
@@ -3650,6 +3782,24 @@ export interface DescribeEnvironmentRolesRequest {
3650
3782
  */
3651
3783
  Filters?: Array<Filter>;
3652
3784
  }
3785
+ /**
3786
+ * DescribeRocketMQClusters返回参数结构体
3787
+ */
3788
+ export interface DescribeRocketMQClustersResponse {
3789
+ /**
3790
+ * 集群信息
3791
+ 注意:此字段可能返回 null,表示取不到有效值。
3792
+ */
3793
+ ClusterList: Array<RocketMQClusterDetail>;
3794
+ /**
3795
+ * 总条数
3796
+ */
3797
+ TotalCount: number;
3798
+ /**
3799
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
3800
+ */
3801
+ RequestId?: string;
3802
+ }
3653
3803
  /**
3654
3804
  * DeleteRoles返回参数结构体
3655
3805
  */
@@ -3672,6 +3822,27 @@ export interface SendMsgResponse {
3672
3822
  */
3673
3823
  RequestId?: string;
3674
3824
  }
3825
+ /**
3826
+ * RocketMQ近期使用量
3827
+ */
3828
+ export interface RocketMQClusterRecentStats {
3829
+ /**
3830
+ * Topic数量
3831
+ */
3832
+ TopicNum: number;
3833
+ /**
3834
+ * 消息生产数
3835
+ */
3836
+ ProducedMsgNum: number;
3837
+ /**
3838
+ * 消息消费数
3839
+ */
3840
+ ConsumedMsgNum: number;
3841
+ /**
3842
+ * 消息堆积数
3843
+ */
3844
+ AccumulativeMsgNum: number;
3845
+ }
3675
3846
  /**
3676
3847
  * ModifyRocketMQTopic请求参数结构体
3677
3848
  */
@@ -3781,6 +3952,74 @@ export interface RocketMQClusterInfo {
3781
3952
  */
3782
3953
  HttpInternalEndpoint?: string;
3783
3954
  }
3955
+ /**
3956
+ * DescribeRabbitMQUser请求参数结构体
3957
+ */
3958
+ export interface DescribeRabbitMQUserRequest {
3959
+ /**
3960
+ * 集群实例Id
3961
+ */
3962
+ InstanceId: string;
3963
+ /**
3964
+ * 用户名检索,支持前缀匹配,后缀匹配
3965
+ */
3966
+ SearchUser?: string;
3967
+ /**
3968
+ * 分页Offset
3969
+ */
3970
+ Offset?: number;
3971
+ /**
3972
+ * 分页Limit
3973
+ */
3974
+ Limit?: number;
3975
+ /**
3976
+ * 用户名,精确查询
3977
+ */
3978
+ User?: string;
3979
+ /**
3980
+ * 用户标签,根据标签过滤列表
3981
+ */
3982
+ Tags?: Array<string>;
3983
+ }
3984
+ /**
3985
+ * RabbitMQ用户实体详情
3986
+ */
3987
+ export interface RabbitMQUser {
3988
+ /**
3989
+ * 集群实例Id
3990
+ */
3991
+ InstanceId?: string;
3992
+ /**
3993
+ * 用户名,登录时使用
3994
+ */
3995
+ User?: string;
3996
+ /**
3997
+ * 密码,登录时使用
3998
+ */
3999
+ Password?: string;
4000
+ /**
4001
+ * 用户描述
4002
+ 注意:此字段可能返回 null,表示取不到有效值。
4003
+ */
4004
+ Description?: string;
4005
+ /**
4006
+ * 用户标签,用于决定改用户访问RabbitMQ Management的权限范围
4007
+ 注意:此字段可能返回 null,表示取不到有效值。
4008
+ */
4009
+ Tags?: Array<string>;
4010
+ /**
4011
+ * 用户创建时间
4012
+ */
4013
+ CreateTime?: string;
4014
+ /**
4015
+ * 用户最后修改时间
4016
+ */
4017
+ ModifyTime?: string;
4018
+ /**
4019
+ * 用户类型,System:系统创建,User:用户创建
4020
+ */
4021
+ Type?: string;
4022
+ }
3784
4023
  /**
3785
4024
  * DescribeRocketMQTopics返回参数结构体
3786
4025
  */
@@ -4130,6 +4369,23 @@ export interface CreateClusterRequest {
4130
4369
  */
4131
4370
  PublicAccessEnabled?: boolean;
4132
4371
  }
4372
+ /**
4373
+ * DescribeRabbitMQVirtualHostList请求参数结构体
4374
+ */
4375
+ export interface DescribeRabbitMQVirtualHostListRequest {
4376
+ /**
4377
+ * 不适用,默认参数
4378
+ */
4379
+ InstanceId: string;
4380
+ /**
4381
+ * 偏移量
4382
+ */
4383
+ Offset?: number;
4384
+ /**
4385
+ * 一页限制
4386
+ */
4387
+ Limit?: number;
4388
+ }
4133
4389
  /**
4134
4390
  * DescribeAMQPClusters请求参数结构体
4135
4391
  */
@@ -4469,6 +4725,19 @@ export interface DeleteAMQPExchangeRequest {
4469
4725
  */
4470
4726
  Exchange: string;
4471
4727
  }
4728
+ /**
4729
+ * DeleteRabbitMQVirtualHost请求参数结构体
4730
+ */
4731
+ export interface DeleteRabbitMQVirtualHostRequest {
4732
+ /**
4733
+ * 集群实例Id
4734
+ */
4735
+ InstanceId: string;
4736
+ /**
4737
+ * vhost名
4738
+ */
4739
+ VirtualHost: string;
4740
+ }
4472
4741
  /**
4473
4742
  * DeleteRocketMQCluster返回参数结构体
4474
4743
  */
@@ -4567,6 +4836,23 @@ export interface CreateCmqTopicResponse {
4567
4836
  */
4568
4837
  RequestId?: string;
4569
4838
  }
4839
+ /**
4840
+ * SendCmqMsg返回参数结构体
4841
+ */
4842
+ export interface SendCmqMsgResponse {
4843
+ /**
4844
+ * true表示发送成功
4845
+ */
4846
+ Result: boolean;
4847
+ /**
4848
+ * 消息id
4849
+ */
4850
+ MsgId: string;
4851
+ /**
4852
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
4853
+ */
4854
+ RequestId?: string;
4855
+ }
4570
4856
  /**
4571
4857
  * Cmq DeadLetterSource
4572
4858
  */
@@ -5781,6 +6067,15 @@ export interface ClearCmqQueueResponse {
5781
6067
  */
5782
6068
  RequestId?: string;
5783
6069
  }
6070
+ /**
6071
+ * ModifyRabbitMQUser返回参数结构体
6072
+ */
6073
+ export interface ModifyRabbitMQUserResponse {
6074
+ /**
6075
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
6076
+ */
6077
+ RequestId?: string;
6078
+ }
5784
6079
  /**
5785
6080
  * CreateAMQPExchange返回参数结构体
5786
6081
  */
@@ -5800,9 +6095,14 @@ export interface DescribeNodeHealthOptRequest {
5800
6095
  InstanceId: string;
5801
6096
  }
5802
6097
  /**
5803
- * DescribeBindClusters请求参数结构体
6098
+ * DeleteRabbitMQVirtualHost返回参数结构体
5804
6099
  */
5805
- export declare type DescribeBindClustersRequest = null;
6100
+ export interface DeleteRabbitMQVirtualHostResponse {
6101
+ /**
6102
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
6103
+ */
6104
+ RequestId?: string;
6105
+ }
5806
6106
  /**
5807
6107
  * CreateRocketMQTopic返回参数结构体
5808
6108
  */
@@ -5963,68 +6263,36 @@ export interface DeleteCmqQueueRequest {
5963
6263
  QueueName: string;
5964
6264
  }
5965
6265
  /**
5966
- * DescribeRocketMQGroups请求参数结构体
6266
+ * DeleteRabbitMQUser返回参数结构体
5967
6267
  */
5968
- export interface DescribeRocketMQGroupsRequest {
5969
- /**
5970
- * 集群ID
5971
- */
5972
- ClusterId: string;
5973
- /**
5974
- * 命名空间
5975
- */
5976
- NamespaceId: string;
5977
- /**
5978
- * 偏移量
5979
- */
5980
- Offset: number;
5981
- /**
5982
- * 限制条数
5983
- */
5984
- Limit: number;
5985
- /**
5986
- * 主题名称,输入此参数可查询该主题下所有的订阅组
5987
- */
5988
- FilterTopic?: string;
5989
- /**
5990
- * 按消费组名称查询消费组,支持模糊查询
5991
- */
5992
- FilterGroup?: string;
5993
- /**
5994
- * 按照指定字段排序,可选值为tps,accumulative
5995
- */
5996
- SortedBy?: string;
5997
- /**
5998
- * 按升序或降序排列,可选值为asc,desc
5999
- */
6000
- SortOrder?: string;
6001
- /**
6002
- * 订阅组名称,指定此参数后将只返回该订阅组信息
6003
- */
6004
- FilterOneGroup?: string;
6268
+ export interface DeleteRabbitMQUserResponse {
6005
6269
  /**
6006
- * group类型
6270
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
6007
6271
  */
6008
- Types?: Array<string>;
6272
+ RequestId?: string;
6009
6273
  }
6010
6274
  /**
6011
- * DescribeRocketMQClusters返回参数结构体
6275
+ * DescribeRabbitMQVirtualHostList返回参数结构体
6012
6276
  */
6013
- export interface DescribeRocketMQClustersResponse {
6277
+ export interface DescribeRabbitMQVirtualHostListResponse {
6014
6278
  /**
6015
- * 集群信息
6016
- 注意:此字段可能返回 null,表示取不到有效值。
6279
+ * 集群列表数量
6017
6280
  */
6018
- ClusterList: Array<RocketMQClusterDetail>;
6281
+ TotalCount: number;
6019
6282
  /**
6020
- * 总条数
6283
+ * 集群列表
6284
+ 注意:此字段可能返回 null,表示取不到有效值。
6021
6285
  */
6022
- TotalCount: number;
6286
+ VirtualHostList: Array<RabbitMQPrivateVirtualHost>;
6023
6287
  /**
6024
6288
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
6025
6289
  */
6026
6290
  RequestId?: string;
6027
6291
  }
6292
+ /**
6293
+ * DescribeBindClusters请求参数结构体
6294
+ */
6295
+ export declare type DescribeBindClustersRequest = null;
6028
6296
  /**
6029
6297
  * DescribePulsarProInstanceDetail请求参数结构体
6030
6298
  */
@@ -6649,6 +6917,39 @@ export interface SendCmqMsgRequest {
6649
6917
  */
6650
6918
  DelaySeconds: number;
6651
6919
  }
6920
+ /**
6921
+ * ModifyRabbitMQUser请求参数结构体
6922
+ */
6923
+ export interface ModifyRabbitMQUserRequest {
6924
+ /**
6925
+ * 集群实例Id
6926
+ */
6927
+ InstanceId: string;
6928
+ /**
6929
+ * 用户名,登录时使用
6930
+ */
6931
+ User: string;
6932
+ /**
6933
+ * 密码,登录时使用
6934
+ */
6935
+ Password: string;
6936
+ /**
6937
+ * 描述,不传则不修改
6938
+ */
6939
+ Description?: string;
6940
+ /**
6941
+ * 用户标签,用于决定改用户访问RabbitMQ Management的权限范围,不传则不修改
6942
+ */
6943
+ Tags?: Array<string>;
6944
+ /**
6945
+ * 该用户的最大连接数,不传则不修改
6946
+ */
6947
+ MaxConnections?: number;
6948
+ /**
6949
+ * 该用户的最大channel数,不传则不修改
6950
+ */
6951
+ MaxChannels?: number;
6952
+ }
6652
6953
  /**
6653
6954
  * ModifyCmqQueueAttribute请求参数结构体
6654
6955
  */
@@ -6911,3 +7212,28 @@ export interface DescribeAllTenantsRequest {
6911
7212
  */
6912
7213
  SortOrder?: string;
6913
7214
  }
7215
+ /**
7216
+ * DescribeRabbitMQVirtualHost请求参数结构体
7217
+ */
7218
+ export interface DescribeRabbitMQVirtualHostRequest {
7219
+ /**
7220
+ * 集群实例Id
7221
+ */
7222
+ InstanceId: string;
7223
+ /**
7224
+ * vhost名,不传则查询全部
7225
+ */
7226
+ VirtualHost?: string;
7227
+ /**
7228
+ * 分页Offset
7229
+ */
7230
+ Offset?: number;
7231
+ /**
7232
+ * 分页Limit
7233
+ */
7234
+ Limit?: number;
7235
+ /**
7236
+ * search-virtual-host:vhost名称模糊查询,之前前缀和后缀匹配
7237
+ */
7238
+ Filters?: Filter;
7239
+ }