tencentcloud-sdk-nodejs-tdmq 4.0.242 → 4.0.248
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/CHANGELOG.md +519 -72
- package/README.md +1 -1
- package/package.json +1 -1
- package/products.md +31 -28
- package/src/services/tdmq/v20200217/tdmq_client.ts +700 -440
- package/src/services/tdmq/v20200217/tdmq_models.ts +1488 -279
- package/tencentcloud/services/tdmq/v20200217/tdmq_client.d.ts +221 -137
- package/tencentcloud/services/tdmq/v20200217/tdmq_client.js +330 -204
- package/tencentcloud/services/tdmq/v20200217/tdmq_models.d.ts +1270 -250
|
@@ -36,23 +36,43 @@ export interface DescribeRolesResponse {
|
|
|
36
36
|
}
|
|
37
37
|
|
|
38
38
|
/**
|
|
39
|
-
*
|
|
39
|
+
* DescribeAMQPRouteRelations请求参数结构体
|
|
40
40
|
*/
|
|
41
|
-
export interface
|
|
41
|
+
export interface DescribeAMQPRouteRelationsRequest {
|
|
42
42
|
/**
|
|
43
|
-
*
|
|
43
|
+
* 查询偏移量
|
|
44
44
|
*/
|
|
45
|
-
|
|
45
|
+
Offset: number
|
|
46
46
|
|
|
47
47
|
/**
|
|
48
|
-
*
|
|
48
|
+
* 查询限制数
|
|
49
49
|
*/
|
|
50
|
-
|
|
50
|
+
Limit: number
|
|
51
51
|
|
|
52
52
|
/**
|
|
53
|
-
*
|
|
53
|
+
* 集群ID
|
|
54
54
|
*/
|
|
55
|
-
|
|
55
|
+
ClusterId: string
|
|
56
|
+
|
|
57
|
+
/**
|
|
58
|
+
* Vhost名称
|
|
59
|
+
*/
|
|
60
|
+
VHostId: string
|
|
61
|
+
|
|
62
|
+
/**
|
|
63
|
+
* 按源exchange名称过滤查询结果,支持模糊查询
|
|
64
|
+
*/
|
|
65
|
+
FilterSourceExchange?: string
|
|
66
|
+
|
|
67
|
+
/**
|
|
68
|
+
* 按绑定的目标类型过滤查询结果,可选值:Exchange、Queue
|
|
69
|
+
*/
|
|
70
|
+
FilterDestType?: string
|
|
71
|
+
|
|
72
|
+
/**
|
|
73
|
+
* 按目标名称过滤查询结果,支持模糊查询
|
|
74
|
+
*/
|
|
75
|
+
FilterDestValue?: string
|
|
56
76
|
}
|
|
57
77
|
|
|
58
78
|
/**
|
|
@@ -306,6 +326,41 @@ export interface CreateCmqTopicRequest {
|
|
|
306
326
|
Trace?: boolean
|
|
307
327
|
}
|
|
308
328
|
|
|
329
|
+
/**
|
|
330
|
+
* CreateAMQPExchange请求参数结构体
|
|
331
|
+
*/
|
|
332
|
+
export interface CreateAMQPExchangeRequest {
|
|
333
|
+
/**
|
|
334
|
+
* 交换机名称,3-64个字符,只能包含字母、数字、“-”及“_”
|
|
335
|
+
*/
|
|
336
|
+
Exchange: string
|
|
337
|
+
|
|
338
|
+
/**
|
|
339
|
+
* 交换机所在的vhost,目前支持在单个vhost下创建主题
|
|
340
|
+
*/
|
|
341
|
+
VHosts: Array<string>
|
|
342
|
+
|
|
343
|
+
/**
|
|
344
|
+
* 交换机类型,可选值为Direct, Fanout, Topic
|
|
345
|
+
*/
|
|
346
|
+
Type: string
|
|
347
|
+
|
|
348
|
+
/**
|
|
349
|
+
* 集群ID
|
|
350
|
+
*/
|
|
351
|
+
ClusterId: string
|
|
352
|
+
|
|
353
|
+
/**
|
|
354
|
+
* 交换机说明,最大128个字符
|
|
355
|
+
*/
|
|
356
|
+
Remark?: string
|
|
357
|
+
|
|
358
|
+
/**
|
|
359
|
+
* 备用交换机名称
|
|
360
|
+
*/
|
|
361
|
+
AlternateExchange?: string
|
|
362
|
+
}
|
|
363
|
+
|
|
309
364
|
/**
|
|
310
365
|
* DescribeRocketMQNamespaces返回参数结构体
|
|
311
366
|
*/
|
|
@@ -326,6 +381,26 @@ export interface DescribeRocketMQNamespacesResponse {
|
|
|
326
381
|
RequestId?: string
|
|
327
382
|
}
|
|
328
383
|
|
|
384
|
+
/**
|
|
385
|
+
* DescribeBindClusters返回参数结构体
|
|
386
|
+
*/
|
|
387
|
+
export interface DescribeBindClustersResponse {
|
|
388
|
+
/**
|
|
389
|
+
* 专享集群的数量
|
|
390
|
+
*/
|
|
391
|
+
TotalCount: number
|
|
392
|
+
|
|
393
|
+
/**
|
|
394
|
+
* 专享集群的列表
|
|
395
|
+
*/
|
|
396
|
+
ClusterSet: Array<BindCluster>
|
|
397
|
+
|
|
398
|
+
/**
|
|
399
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
400
|
+
*/
|
|
401
|
+
RequestId?: string
|
|
402
|
+
}
|
|
403
|
+
|
|
329
404
|
/**
|
|
330
405
|
* 用户专享集群信息
|
|
331
406
|
*/
|
|
@@ -398,48 +473,23 @@ export interface DescribeNamespaceBundlesOptResponse {
|
|
|
398
473
|
}
|
|
399
474
|
|
|
400
475
|
/**
|
|
401
|
-
*
|
|
476
|
+
* DescribeBindVpcs返回参数结构体
|
|
402
477
|
*/
|
|
403
|
-
export interface
|
|
404
|
-
/**
|
|
405
|
-
* 主题名字,在单个地域同一帐号下唯一。主题名称是一个不超过64个字符的字符串,必须以字母为首字符,剩余部分可以包含字母、数字和横划线(-)。
|
|
406
|
-
*/
|
|
407
|
-
TopicName: string
|
|
408
|
-
|
|
409
|
-
/**
|
|
410
|
-
* 订阅名字,在单个地域同一帐号的同一主题下唯一。订阅名称是一个不超过64个字符的字符串,必须以字母为首字符,剩余部分可以包含字母、数字和横划线(-)。
|
|
411
|
-
*/
|
|
412
|
-
SubscriptionName: string
|
|
413
|
-
|
|
414
|
-
/**
|
|
415
|
-
* 订阅的协议,目前支持两种协议:http、queue。使用http协议,用户需自己搭建接受消息的web server。使用queue,消息会自动推送到CMQ queue,用户可以并发地拉取消息。
|
|
416
|
-
*/
|
|
417
|
-
Protocol: string
|
|
418
|
-
|
|
419
|
-
/**
|
|
420
|
-
* 接收通知的Endpoint,根据协议Protocol区分:对于http,Endpoint必须以“`http://`”开头,host可以是域名或IP;对于Queue,则填QueueName。 请注意,目前推送服务不能推送到私有网络中,因此Endpoint填写为私有网络域名或地址将接收不到推送的消息,目前支持推送到公网和基础网络。
|
|
421
|
-
*/
|
|
422
|
-
Endpoint: string
|
|
423
|
-
|
|
424
|
-
/**
|
|
425
|
-
* 向Endpoint推送消息出现错误时,CMQ推送服务器的重试策略。取值有:1)BACKOFF_RETRY,退避重试。每隔一定时间重试一次,重试够一定次数后,就把该消息丢弃,继续推送下一条消息;2)EXPONENTIAL_DECAY_RETRY,指数衰退重试。每次重试的间隔是指数递增的,例如开始1s,后面是2s,4s,8s...由于Topic消息的周期是一天,所以最多重试一天就把消息丢弃。默认值是EXPONENTIAL_DECAY_RETRY。
|
|
426
|
-
*/
|
|
427
|
-
NotifyStrategy?: string
|
|
428
|
-
|
|
478
|
+
export interface DescribeBindVpcsResponse {
|
|
429
479
|
/**
|
|
430
|
-
*
|
|
480
|
+
* 记录数。
|
|
431
481
|
*/
|
|
432
|
-
|
|
482
|
+
TotalCount?: number
|
|
433
483
|
|
|
434
484
|
/**
|
|
435
|
-
*
|
|
485
|
+
* Vpc集合。
|
|
436
486
|
*/
|
|
437
|
-
|
|
487
|
+
VpcSets?: Array<VpcBindRecord>
|
|
438
488
|
|
|
439
489
|
/**
|
|
440
|
-
*
|
|
490
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
441
491
|
*/
|
|
442
|
-
|
|
492
|
+
RequestId?: string
|
|
443
493
|
}
|
|
444
494
|
|
|
445
495
|
/**
|
|
@@ -543,6 +593,57 @@ filterType = 2表示用户使用 bindingKey 过滤。
|
|
|
543
593
|
NotifyContentFormat: string
|
|
544
594
|
}
|
|
545
595
|
|
|
596
|
+
/**
|
|
597
|
+
* ModifyAMQPVHost返回参数结构体
|
|
598
|
+
*/
|
|
599
|
+
export interface ModifyAMQPVHostResponse {
|
|
600
|
+
/**
|
|
601
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
602
|
+
*/
|
|
603
|
+
RequestId?: string
|
|
604
|
+
}
|
|
605
|
+
|
|
606
|
+
/**
|
|
607
|
+
* DescribeAMQPCluster返回参数结构体
|
|
608
|
+
*/
|
|
609
|
+
export interface DescribeAMQPClusterResponse {
|
|
610
|
+
/**
|
|
611
|
+
* 集群信息
|
|
612
|
+
*/
|
|
613
|
+
ClusterInfo: AMQPClusterInfo
|
|
614
|
+
|
|
615
|
+
/**
|
|
616
|
+
* 集群配置
|
|
617
|
+
*/
|
|
618
|
+
ClusterConfig: AMQPClusterConfig
|
|
619
|
+
|
|
620
|
+
/**
|
|
621
|
+
* 集群最近使用量
|
|
622
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
623
|
+
*/
|
|
624
|
+
ClusterStats: AMQPClusterRecentStats
|
|
625
|
+
|
|
626
|
+
/**
|
|
627
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
628
|
+
*/
|
|
629
|
+
RequestId?: string
|
|
630
|
+
}
|
|
631
|
+
|
|
632
|
+
/**
|
|
633
|
+
* CreateAMQPCluster请求参数结构体
|
|
634
|
+
*/
|
|
635
|
+
export interface CreateAMQPClusterRequest {
|
|
636
|
+
/**
|
|
637
|
+
* 3-64个字符,只能包含字母、数字、“-”及“_”
|
|
638
|
+
*/
|
|
639
|
+
Name: string
|
|
640
|
+
|
|
641
|
+
/**
|
|
642
|
+
* 集群描述,128个字符以内
|
|
643
|
+
*/
|
|
644
|
+
Remark?: string
|
|
645
|
+
}
|
|
646
|
+
|
|
546
647
|
/**
|
|
547
648
|
* DeleteRocketMQGroup请求参数结构体
|
|
548
649
|
*/
|
|
@@ -568,6 +669,31 @@ export interface DeleteRocketMQGroupRequest {
|
|
|
568
669
|
*/
|
|
569
670
|
export type RocketMQGroup = null
|
|
570
671
|
|
|
672
|
+
/**
|
|
673
|
+
* AMQP集群近期使用量
|
|
674
|
+
*/
|
|
675
|
+
export interface AMQPClusterRecentStats {
|
|
676
|
+
/**
|
|
677
|
+
* Queue数量
|
|
678
|
+
*/
|
|
679
|
+
QueueNum: number
|
|
680
|
+
|
|
681
|
+
/**
|
|
682
|
+
* 消息生产数
|
|
683
|
+
*/
|
|
684
|
+
ProducedMsgNum: number
|
|
685
|
+
|
|
686
|
+
/**
|
|
687
|
+
* 消息堆积数
|
|
688
|
+
*/
|
|
689
|
+
AccumulativeMsgNum: number
|
|
690
|
+
|
|
691
|
+
/**
|
|
692
|
+
* Exchange数量
|
|
693
|
+
*/
|
|
694
|
+
ExchangeNum: number
|
|
695
|
+
}
|
|
696
|
+
|
|
571
697
|
/**
|
|
572
698
|
* DeleteCmqTopic返回参数结构体
|
|
573
699
|
*/
|
|
@@ -578,6 +704,31 @@ export interface DeleteCmqTopicResponse {
|
|
|
578
704
|
RequestId?: string
|
|
579
705
|
}
|
|
580
706
|
|
|
707
|
+
/**
|
|
708
|
+
* ModifyAMQPVHost请求参数结构体
|
|
709
|
+
*/
|
|
710
|
+
export interface ModifyAMQPVHostRequest {
|
|
711
|
+
/**
|
|
712
|
+
* 集群ID
|
|
713
|
+
*/
|
|
714
|
+
ClusterId: string
|
|
715
|
+
|
|
716
|
+
/**
|
|
717
|
+
* vhost名称,3-64个字符,只能包含字母、数字、“-”及“_”
|
|
718
|
+
*/
|
|
719
|
+
VHostId: string
|
|
720
|
+
|
|
721
|
+
/**
|
|
722
|
+
* 未消费消息的保留时间,以毫秒为单位,60秒-15天
|
|
723
|
+
*/
|
|
724
|
+
MsgTtl: number
|
|
725
|
+
|
|
726
|
+
/**
|
|
727
|
+
* 说明,最大128个字符
|
|
728
|
+
*/
|
|
729
|
+
Remark?: string
|
|
730
|
+
}
|
|
731
|
+
|
|
581
732
|
/**
|
|
582
733
|
* CreateSubscription请求参数结构体
|
|
583
734
|
*/
|
|
@@ -668,6 +819,58 @@ export interface DescribeCmqTopicDetailResponse {
|
|
|
668
819
|
RequestId?: string
|
|
669
820
|
}
|
|
670
821
|
|
|
822
|
+
/**
|
|
823
|
+
* 命名空间信息
|
|
824
|
+
*/
|
|
825
|
+
export interface Environment {
|
|
826
|
+
/**
|
|
827
|
+
* 命名空间名称
|
|
828
|
+
*/
|
|
829
|
+
EnvironmentId: string
|
|
830
|
+
|
|
831
|
+
/**
|
|
832
|
+
* 说明
|
|
833
|
+
*/
|
|
834
|
+
Remark: string
|
|
835
|
+
|
|
836
|
+
/**
|
|
837
|
+
* 未消费消息过期时间,单位:秒,最大1296000(15天)
|
|
838
|
+
*/
|
|
839
|
+
MsgTTL: number
|
|
840
|
+
|
|
841
|
+
/**
|
|
842
|
+
* 创建时间
|
|
843
|
+
*/
|
|
844
|
+
CreateTime: string
|
|
845
|
+
|
|
846
|
+
/**
|
|
847
|
+
* 最近修改时间
|
|
848
|
+
*/
|
|
849
|
+
UpdateTime: string
|
|
850
|
+
|
|
851
|
+
/**
|
|
852
|
+
* 命名空间ID
|
|
853
|
+
*/
|
|
854
|
+
NamespaceId: string
|
|
855
|
+
|
|
856
|
+
/**
|
|
857
|
+
* 命名空间名称
|
|
858
|
+
*/
|
|
859
|
+
NamespaceName: string
|
|
860
|
+
|
|
861
|
+
/**
|
|
862
|
+
* Topic数量
|
|
863
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
864
|
+
*/
|
|
865
|
+
TopicNum: number
|
|
866
|
+
|
|
867
|
+
/**
|
|
868
|
+
* 消息保留策略
|
|
869
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
870
|
+
*/
|
|
871
|
+
RetentionPolicy: RetentionPolicy
|
|
872
|
+
}
|
|
873
|
+
|
|
671
874
|
/**
|
|
672
875
|
* cmq 批量queue属性信息
|
|
673
876
|
*/
|
|
@@ -906,9 +1109,9 @@ export interface CreateSubscriptionResponse {
|
|
|
906
1109
|
}
|
|
907
1110
|
|
|
908
1111
|
/**
|
|
909
|
-
*
|
|
1112
|
+
* DeleteAMQPQueue返回参数结构体
|
|
910
1113
|
*/
|
|
911
|
-
export interface
|
|
1114
|
+
export interface DeleteAMQPQueueResponse {
|
|
912
1115
|
/**
|
|
913
1116
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
914
1117
|
*/
|
|
@@ -1088,23 +1291,43 @@ export interface Topic {
|
|
|
1088
1291
|
}
|
|
1089
1292
|
|
|
1090
1293
|
/**
|
|
1091
|
-
*
|
|
1294
|
+
* DescribeAMQPVHosts返回参数结构体
|
|
1092
1295
|
*/
|
|
1093
|
-
export interface
|
|
1296
|
+
export interface DescribeAMQPVHostsResponse {
|
|
1094
1297
|
/**
|
|
1095
|
-
*
|
|
1298
|
+
* Vhost 列表
|
|
1096
1299
|
*/
|
|
1097
|
-
|
|
1300
|
+
VHosts: Array<AMQPVHost>
|
|
1098
1301
|
|
|
1099
1302
|
/**
|
|
1100
|
-
*
|
|
1303
|
+
* 总条数
|
|
1101
1304
|
*/
|
|
1102
|
-
|
|
1305
|
+
TotalCount: number
|
|
1103
1306
|
|
|
1104
1307
|
/**
|
|
1105
|
-
*
|
|
1308
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
1106
1309
|
*/
|
|
1107
|
-
|
|
1310
|
+
RequestId?: string
|
|
1311
|
+
}
|
|
1312
|
+
|
|
1313
|
+
/**
|
|
1314
|
+
* DescribeEnvironments请求参数结构体
|
|
1315
|
+
*/
|
|
1316
|
+
export interface DescribeEnvironmentsRequest {
|
|
1317
|
+
/**
|
|
1318
|
+
* 命名空间名称,模糊搜索。
|
|
1319
|
+
*/
|
|
1320
|
+
EnvironmentId?: string
|
|
1321
|
+
|
|
1322
|
+
/**
|
|
1323
|
+
* 起始下标,不填默认为0。
|
|
1324
|
+
*/
|
|
1325
|
+
Offset?: number
|
|
1326
|
+
|
|
1327
|
+
/**
|
|
1328
|
+
* 返回数量,不填则默认为10,最大值为20。
|
|
1329
|
+
*/
|
|
1330
|
+
Limit?: number
|
|
1108
1331
|
|
|
1109
1332
|
/**
|
|
1110
1333
|
* Pulsar 集群的ID
|
|
@@ -1145,6 +1368,26 @@ export interface DescribeRocketMQNamespacesRequest {
|
|
|
1145
1368
|
NameKeyword?: string
|
|
1146
1369
|
}
|
|
1147
1370
|
|
|
1371
|
+
/**
|
|
1372
|
+
* DeleteAMQPCluster返回参数结构体
|
|
1373
|
+
*/
|
|
1374
|
+
export interface DeleteAMQPClusterResponse {
|
|
1375
|
+
/**
|
|
1376
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
1377
|
+
*/
|
|
1378
|
+
RequestId?: string
|
|
1379
|
+
}
|
|
1380
|
+
|
|
1381
|
+
/**
|
|
1382
|
+
* DescribeAMQPCluster请求参数结构体
|
|
1383
|
+
*/
|
|
1384
|
+
export interface DescribeAMQPClusterRequest {
|
|
1385
|
+
/**
|
|
1386
|
+
* 集群ID
|
|
1387
|
+
*/
|
|
1388
|
+
ClusterId: string
|
|
1389
|
+
}
|
|
1390
|
+
|
|
1148
1391
|
/**
|
|
1149
1392
|
* DescribeRocketMQTopics请求参数结构体
|
|
1150
1393
|
*/
|
|
@@ -1236,18 +1479,53 @@ export interface CreateEnvironmentRequest {
|
|
|
1236
1479
|
}
|
|
1237
1480
|
|
|
1238
1481
|
/**
|
|
1239
|
-
*
|
|
1482
|
+
* CreateAMQPQueue请求参数结构体
|
|
1240
1483
|
*/
|
|
1241
|
-
export interface
|
|
1484
|
+
export interface CreateAMQPQueueRequest {
|
|
1242
1485
|
/**
|
|
1243
|
-
*
|
|
1486
|
+
* 队列名称,3-64个字符,只能包含字母、数字、“-”及“_”
|
|
1244
1487
|
*/
|
|
1245
|
-
|
|
1488
|
+
Queue: string
|
|
1246
1489
|
|
|
1247
1490
|
/**
|
|
1248
|
-
*
|
|
1491
|
+
* 队列所在的vhost名称
|
|
1249
1492
|
*/
|
|
1250
|
-
|
|
1493
|
+
VHostId: string
|
|
1494
|
+
|
|
1495
|
+
/**
|
|
1496
|
+
* 是否自动清除
|
|
1497
|
+
*/
|
|
1498
|
+
AutoDelete: boolean
|
|
1499
|
+
|
|
1500
|
+
/**
|
|
1501
|
+
* 集群ID
|
|
1502
|
+
*/
|
|
1503
|
+
ClusterId: string
|
|
1504
|
+
|
|
1505
|
+
/**
|
|
1506
|
+
* 队列说明,最大128个字符
|
|
1507
|
+
*/
|
|
1508
|
+
Remark?: string
|
|
1509
|
+
|
|
1510
|
+
/**
|
|
1511
|
+
* 死信exchange
|
|
1512
|
+
*/
|
|
1513
|
+
DeadLetterExchange?: string
|
|
1514
|
+
|
|
1515
|
+
/**
|
|
1516
|
+
* 路由键
|
|
1517
|
+
*/
|
|
1518
|
+
DeadLetterRoutingKey?: string
|
|
1519
|
+
}
|
|
1520
|
+
|
|
1521
|
+
/**
|
|
1522
|
+
* ClearCmqQueue请求参数结构体
|
|
1523
|
+
*/
|
|
1524
|
+
export interface ClearCmqQueueRequest {
|
|
1525
|
+
/**
|
|
1526
|
+
* 队列名字,在单个地域同一帐号下唯一。队列名称是一个不超过64个字符的字符串,必须以字母为首字符,剩余部分可以包含字母、数字和横划线(-)。
|
|
1527
|
+
*/
|
|
1528
|
+
QueueName: string
|
|
1251
1529
|
}
|
|
1252
1530
|
|
|
1253
1531
|
/**
|
|
@@ -1311,6 +1589,16 @@ export interface DescribeRocketMQClusterResponse {
|
|
|
1311
1589
|
RequestId?: string
|
|
1312
1590
|
}
|
|
1313
1591
|
|
|
1592
|
+
/**
|
|
1593
|
+
* CreateAMQPVHost返回参数结构体
|
|
1594
|
+
*/
|
|
1595
|
+
export interface CreateAMQPVHostResponse {
|
|
1596
|
+
/**
|
|
1597
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
1598
|
+
*/
|
|
1599
|
+
RequestId?: string
|
|
1600
|
+
}
|
|
1601
|
+
|
|
1314
1602
|
/**
|
|
1315
1603
|
* DescribeCmqSubscriptionDetail返回参数结构体
|
|
1316
1604
|
*/
|
|
@@ -1383,6 +1671,31 @@ export interface RewindCmqQueueRequest {
|
|
|
1383
1671
|
StartConsumeTime: number
|
|
1384
1672
|
}
|
|
1385
1673
|
|
|
1674
|
+
/**
|
|
1675
|
+
* DescribeAMQPVHosts请求参数结构体
|
|
1676
|
+
*/
|
|
1677
|
+
export interface DescribeAMQPVHostsRequest {
|
|
1678
|
+
/**
|
|
1679
|
+
* 集群ID
|
|
1680
|
+
*/
|
|
1681
|
+
ClusterId: string
|
|
1682
|
+
|
|
1683
|
+
/**
|
|
1684
|
+
* 偏移量
|
|
1685
|
+
*/
|
|
1686
|
+
Offset: number
|
|
1687
|
+
|
|
1688
|
+
/**
|
|
1689
|
+
* 限制数目
|
|
1690
|
+
*/
|
|
1691
|
+
Limit: number
|
|
1692
|
+
|
|
1693
|
+
/**
|
|
1694
|
+
* 按名称搜索
|
|
1695
|
+
*/
|
|
1696
|
+
NameKeyword?: string
|
|
1697
|
+
}
|
|
1698
|
+
|
|
1386
1699
|
/**
|
|
1387
1700
|
* ModifyCluster请求参数结构体
|
|
1388
1701
|
*/
|
|
@@ -1409,18 +1722,48 @@ export interface ModifyClusterRequest {
|
|
|
1409
1722
|
}
|
|
1410
1723
|
|
|
1411
1724
|
/**
|
|
1412
|
-
*
|
|
1725
|
+
* DescribeAMQPQueues请求参数结构体
|
|
1413
1726
|
*/
|
|
1414
|
-
export interface
|
|
1727
|
+
export interface DescribeAMQPQueuesRequest {
|
|
1415
1728
|
/**
|
|
1416
|
-
*
|
|
1729
|
+
* 查询偏移量
|
|
1417
1730
|
*/
|
|
1418
|
-
|
|
1731
|
+
Offset: number
|
|
1419
1732
|
|
|
1420
1733
|
/**
|
|
1421
|
-
*
|
|
1734
|
+
* 查询限制数
|
|
1422
1735
|
*/
|
|
1423
|
-
|
|
1736
|
+
Limit: number
|
|
1737
|
+
|
|
1738
|
+
/**
|
|
1739
|
+
* 集群ID
|
|
1740
|
+
*/
|
|
1741
|
+
ClusterId: string
|
|
1742
|
+
|
|
1743
|
+
/**
|
|
1744
|
+
* Vhost名称
|
|
1745
|
+
*/
|
|
1746
|
+
VHostId: string
|
|
1747
|
+
|
|
1748
|
+
/**
|
|
1749
|
+
* 按队列名称搜索,支持模糊查询
|
|
1750
|
+
*/
|
|
1751
|
+
NameKeyword?: string
|
|
1752
|
+
|
|
1753
|
+
/**
|
|
1754
|
+
* 查询结果排序规则,ASC为升序,DESC为降序
|
|
1755
|
+
*/
|
|
1756
|
+
SortOrder?: string
|
|
1757
|
+
|
|
1758
|
+
/**
|
|
1759
|
+
* 对查询结果排序,此为排序字段,目前支持Accumulative(消息堆积量)、Tps
|
|
1760
|
+
*/
|
|
1761
|
+
SortedBy?: string
|
|
1762
|
+
|
|
1763
|
+
/**
|
|
1764
|
+
* 队列名称,指定此参数后将只返回该队列信息
|
|
1765
|
+
*/
|
|
1766
|
+
FilterOneQueue?: string
|
|
1424
1767
|
}
|
|
1425
1768
|
|
|
1426
1769
|
/**
|
|
@@ -1443,6 +1786,77 @@ export interface ModifyRocketMQClusterRequest {
|
|
|
1443
1786
|
Remark?: string
|
|
1444
1787
|
}
|
|
1445
1788
|
|
|
1789
|
+
/**
|
|
1790
|
+
* vhostd信息
|
|
1791
|
+
*/
|
|
1792
|
+
export interface AMQPVHost {
|
|
1793
|
+
/**
|
|
1794
|
+
* 命名空间名称,3-64个字符,只能包含字母、数字、“-”及“_”
|
|
1795
|
+
*/
|
|
1796
|
+
VHostId: string
|
|
1797
|
+
|
|
1798
|
+
/**
|
|
1799
|
+
* 未消费消息的保留时间,以毫秒单位,范围60秒到15天
|
|
1800
|
+
*/
|
|
1801
|
+
MsgTtl: number
|
|
1802
|
+
|
|
1803
|
+
/**
|
|
1804
|
+
* 备注
|
|
1805
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1806
|
+
*/
|
|
1807
|
+
Remark: string
|
|
1808
|
+
|
|
1809
|
+
/**
|
|
1810
|
+
* 创建时间,以毫秒为单位
|
|
1811
|
+
*/
|
|
1812
|
+
CreateTime: number
|
|
1813
|
+
|
|
1814
|
+
/**
|
|
1815
|
+
* 更新时间,以毫秒为单位
|
|
1816
|
+
*/
|
|
1817
|
+
UpdateTime: number
|
|
1818
|
+
|
|
1819
|
+
/**
|
|
1820
|
+
* 用户名
|
|
1821
|
+
*/
|
|
1822
|
+
Username: string
|
|
1823
|
+
|
|
1824
|
+
/**
|
|
1825
|
+
* 密码
|
|
1826
|
+
*/
|
|
1827
|
+
Password: string
|
|
1828
|
+
}
|
|
1829
|
+
|
|
1830
|
+
/**
|
|
1831
|
+
* ModifyAMQPExchange返回参数结构体
|
|
1832
|
+
*/
|
|
1833
|
+
export interface ModifyAMQPExchangeResponse {
|
|
1834
|
+
/**
|
|
1835
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
1836
|
+
*/
|
|
1837
|
+
RequestId?: string
|
|
1838
|
+
}
|
|
1839
|
+
|
|
1840
|
+
/**
|
|
1841
|
+
* DescribeAMQPExchanges返回参数结构体
|
|
1842
|
+
*/
|
|
1843
|
+
export interface DescribeAMQPExchangesResponse {
|
|
1844
|
+
/**
|
|
1845
|
+
* 总记录数
|
|
1846
|
+
*/
|
|
1847
|
+
TotalCount: number
|
|
1848
|
+
|
|
1849
|
+
/**
|
|
1850
|
+
* 主题信息列表
|
|
1851
|
+
*/
|
|
1852
|
+
Exchanges: Array<AMQPExchange>
|
|
1853
|
+
|
|
1854
|
+
/**
|
|
1855
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
1856
|
+
*/
|
|
1857
|
+
RequestId?: string
|
|
1858
|
+
}
|
|
1859
|
+
|
|
1446
1860
|
/**
|
|
1447
1861
|
* AcknowledgeMessage请求参数结构体
|
|
1448
1862
|
*/
|
|
@@ -1463,6 +1877,16 @@ export interface AcknowledgeMessageRequest {
|
|
|
1463
1877
|
SubName: string
|
|
1464
1878
|
}
|
|
1465
1879
|
|
|
1880
|
+
/**
|
|
1881
|
+
* DeleteAMQPCluster请求参数结构体
|
|
1882
|
+
*/
|
|
1883
|
+
export interface DeleteAMQPClusterRequest {
|
|
1884
|
+
/**
|
|
1885
|
+
* 待删除的集群Id。
|
|
1886
|
+
*/
|
|
1887
|
+
ClusterId: string
|
|
1888
|
+
}
|
|
1889
|
+
|
|
1466
1890
|
/**
|
|
1467
1891
|
* DescribeTopics返回参数结构体
|
|
1468
1892
|
*/
|
|
@@ -1519,23 +1943,18 @@ export interface CreateRocketMQClusterRequest {
|
|
|
1519
1943
|
}
|
|
1520
1944
|
|
|
1521
1945
|
/**
|
|
1522
|
-
*
|
|
1946
|
+
* DeleteAMQPVHost请求参数结构体
|
|
1523
1947
|
*/
|
|
1524
|
-
export interface
|
|
1525
|
-
/**
|
|
1526
|
-
* 队列名
|
|
1527
|
-
*/
|
|
1528
|
-
QueueName: string
|
|
1529
|
-
|
|
1948
|
+
export interface DeleteAMQPVHostRequest {
|
|
1530
1949
|
/**
|
|
1531
|
-
*
|
|
1950
|
+
* 集群ID
|
|
1532
1951
|
*/
|
|
1533
|
-
|
|
1952
|
+
ClusterId: string
|
|
1534
1953
|
|
|
1535
1954
|
/**
|
|
1536
|
-
*
|
|
1955
|
+
* vhost名称
|
|
1537
1956
|
*/
|
|
1538
|
-
|
|
1957
|
+
VHostId: string
|
|
1539
1958
|
}
|
|
1540
1959
|
|
|
1541
1960
|
/**
|
|
@@ -1554,6 +1973,16 @@ export interface AcknowledgeMessageResponse {
|
|
|
1554
1973
|
RequestId?: string
|
|
1555
1974
|
}
|
|
1556
1975
|
|
|
1976
|
+
/**
|
|
1977
|
+
* ModifyCmqQueueAttribute返回参数结构体
|
|
1978
|
+
*/
|
|
1979
|
+
export interface ModifyCmqQueueAttributeResponse {
|
|
1980
|
+
/**
|
|
1981
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
1982
|
+
*/
|
|
1983
|
+
RequestId?: string
|
|
1984
|
+
}
|
|
1985
|
+
|
|
1557
1986
|
/**
|
|
1558
1987
|
* DeleteEnvironmentRoles返回参数结构体
|
|
1559
1988
|
*/
|
|
@@ -1594,6 +2023,46 @@ export interface ModifyRoleResponse {
|
|
|
1594
2023
|
RequestId?: string
|
|
1595
2024
|
}
|
|
1596
2025
|
|
|
2026
|
+
/**
|
|
2027
|
+
* ModifyAMQPQueue请求参数结构体
|
|
2028
|
+
*/
|
|
2029
|
+
export interface ModifyAMQPQueueRequest {
|
|
2030
|
+
/**
|
|
2031
|
+
* 集群ID
|
|
2032
|
+
*/
|
|
2033
|
+
ClusterId: string
|
|
2034
|
+
|
|
2035
|
+
/**
|
|
2036
|
+
* Vhost名称
|
|
2037
|
+
*/
|
|
2038
|
+
VHostId: string
|
|
2039
|
+
|
|
2040
|
+
/**
|
|
2041
|
+
* 队列名称
|
|
2042
|
+
*/
|
|
2043
|
+
Queue: string
|
|
2044
|
+
|
|
2045
|
+
/**
|
|
2046
|
+
* 是否自动清除
|
|
2047
|
+
*/
|
|
2048
|
+
AutoDelete: boolean
|
|
2049
|
+
|
|
2050
|
+
/**
|
|
2051
|
+
* 说明信息,最大128个字符
|
|
2052
|
+
*/
|
|
2053
|
+
Remark?: string
|
|
2054
|
+
|
|
2055
|
+
/**
|
|
2056
|
+
* 死信exchange
|
|
2057
|
+
*/
|
|
2058
|
+
DeadLetterExchange?: string
|
|
2059
|
+
|
|
2060
|
+
/**
|
|
2061
|
+
* 路由键
|
|
2062
|
+
*/
|
|
2063
|
+
DeadLetterRoutingKey?: string
|
|
2064
|
+
}
|
|
2065
|
+
|
|
1597
2066
|
/**
|
|
1598
2067
|
* 标签的key/value的类型
|
|
1599
2068
|
*/
|
|
@@ -1800,18 +2269,43 @@ export interface CreateCmqSubscribeResponse {
|
|
|
1800
2269
|
}
|
|
1801
2270
|
|
|
1802
2271
|
/**
|
|
1803
|
-
*
|
|
2272
|
+
* DescribeCmqDeadLetterSourceQueues请求参数结构体
|
|
1804
2273
|
*/
|
|
1805
|
-
export interface
|
|
2274
|
+
export interface DescribeCmqDeadLetterSourceQueuesRequest {
|
|
1806
2275
|
/**
|
|
1807
|
-
*
|
|
2276
|
+
* 死信队列名称
|
|
1808
2277
|
*/
|
|
1809
|
-
|
|
2278
|
+
DeadLetterQueueName: string
|
|
1810
2279
|
|
|
1811
2280
|
/**
|
|
1812
|
-
*
|
|
2281
|
+
* 分页时本页获取主题列表的起始位置。如果填写了该值,必须也要填写 limit 。该值缺省时,后台取默认值 0。
|
|
1813
2282
|
*/
|
|
1814
|
-
|
|
2283
|
+
Limit?: number
|
|
2284
|
+
|
|
2285
|
+
/**
|
|
2286
|
+
* 分页时本页获取主题的个数,如果不传递该参数,则该参数默认为20,最大值为50。
|
|
2287
|
+
*/
|
|
2288
|
+
Offset?: number
|
|
2289
|
+
|
|
2290
|
+
/**
|
|
2291
|
+
* 根据SourceQueueName过滤
|
|
2292
|
+
*/
|
|
2293
|
+
SourceQueueName?: string
|
|
2294
|
+
}
|
|
2295
|
+
|
|
2296
|
+
/**
|
|
2297
|
+
* DescribeSubscriptions返回参数结构体
|
|
2298
|
+
*/
|
|
2299
|
+
export interface DescribeSubscriptionsResponse {
|
|
2300
|
+
/**
|
|
2301
|
+
* 订阅者集合数组。
|
|
2302
|
+
*/
|
|
2303
|
+
SubscriptionSets: Array<Subscription>
|
|
2304
|
+
|
|
2305
|
+
/**
|
|
2306
|
+
* 数量。
|
|
2307
|
+
*/
|
|
2308
|
+
TotalCount: number
|
|
1815
2309
|
|
|
1816
2310
|
/**
|
|
1817
2311
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
@@ -1989,6 +2483,26 @@ export interface DeleteEnvironmentsResponse {
|
|
|
1989
2483
|
RequestId?: string
|
|
1990
2484
|
}
|
|
1991
2485
|
|
|
2486
|
+
/**
|
|
2487
|
+
* ModifyAMQPCluster请求参数结构体
|
|
2488
|
+
*/
|
|
2489
|
+
export interface ModifyAMQPClusterRequest {
|
|
2490
|
+
/**
|
|
2491
|
+
* 集群ID
|
|
2492
|
+
*/
|
|
2493
|
+
ClusterId: string
|
|
2494
|
+
|
|
2495
|
+
/**
|
|
2496
|
+
* 3-64个字符,只能包含字母、数字、“-”及“_”
|
|
2497
|
+
*/
|
|
2498
|
+
ClusterName: string
|
|
2499
|
+
|
|
2500
|
+
/**
|
|
2501
|
+
* 说明信息,不超过128个字符
|
|
2502
|
+
*/
|
|
2503
|
+
Remark?: string
|
|
2504
|
+
}
|
|
2505
|
+
|
|
1992
2506
|
/**
|
|
1993
2507
|
* DescribeEnvironmentRoles返回参数结构体
|
|
1994
2508
|
*/
|
|
@@ -2010,13 +2524,38 @@ export interface DescribeEnvironmentRolesResponse {
|
|
|
2010
2524
|
}
|
|
2011
2525
|
|
|
2012
2526
|
/**
|
|
2013
|
-
*
|
|
2527
|
+
* DescribeAMQPCreateQuota返回参数结构体
|
|
2014
2528
|
*/
|
|
2015
|
-
export interface
|
|
2529
|
+
export interface DescribeAMQPCreateQuotaResponse {
|
|
2016
2530
|
/**
|
|
2017
|
-
*
|
|
2531
|
+
* 租户总共可使用集群数量
|
|
2018
2532
|
*/
|
|
2019
|
-
|
|
2533
|
+
MaxClusterNum: number
|
|
2534
|
+
|
|
2535
|
+
/**
|
|
2536
|
+
* 租户已创建集群数量
|
|
2537
|
+
*/
|
|
2538
|
+
UsedClusterNum: number
|
|
2539
|
+
|
|
2540
|
+
/**
|
|
2541
|
+
* Exchange容量
|
|
2542
|
+
*/
|
|
2543
|
+
ExchangeCapacity: number
|
|
2544
|
+
|
|
2545
|
+
/**
|
|
2546
|
+
* Queue容量
|
|
2547
|
+
*/
|
|
2548
|
+
QueueCapacity: number
|
|
2549
|
+
|
|
2550
|
+
/**
|
|
2551
|
+
* 单Vhost TPS
|
|
2552
|
+
*/
|
|
2553
|
+
MaxTpsPerVHost: number
|
|
2554
|
+
|
|
2555
|
+
/**
|
|
2556
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
2557
|
+
*/
|
|
2558
|
+
RequestId?: string
|
|
2020
2559
|
}
|
|
2021
2560
|
|
|
2022
2561
|
/**
|
|
@@ -2221,6 +2760,77 @@ export interface ModifyRocketMQNamespaceResponse {
|
|
|
2221
2760
|
RequestId?: string
|
|
2222
2761
|
}
|
|
2223
2762
|
|
|
2763
|
+
/**
|
|
2764
|
+
* AMQP路由关系
|
|
2765
|
+
*/
|
|
2766
|
+
export interface AMQPRouteRelation {
|
|
2767
|
+
/**
|
|
2768
|
+
* 路由关系ID
|
|
2769
|
+
*/
|
|
2770
|
+
RouteRelationId: string
|
|
2771
|
+
|
|
2772
|
+
/**
|
|
2773
|
+
* 源Exchange
|
|
2774
|
+
*/
|
|
2775
|
+
SourceExchange: string
|
|
2776
|
+
|
|
2777
|
+
/**
|
|
2778
|
+
* 目标类型:Queue|Exchange
|
|
2779
|
+
*/
|
|
2780
|
+
DestType: string
|
|
2781
|
+
|
|
2782
|
+
/**
|
|
2783
|
+
* 目标值
|
|
2784
|
+
*/
|
|
2785
|
+
DestValue: string
|
|
2786
|
+
|
|
2787
|
+
/**
|
|
2788
|
+
* 绑定key
|
|
2789
|
+
*/
|
|
2790
|
+
RoutingKey: string
|
|
2791
|
+
|
|
2792
|
+
/**
|
|
2793
|
+
* 源路由类型:Direct|Topic|Fanout
|
|
2794
|
+
*/
|
|
2795
|
+
SourceExchangeType: string
|
|
2796
|
+
|
|
2797
|
+
/**
|
|
2798
|
+
* 创建时间,以毫秒为单位
|
|
2799
|
+
*/
|
|
2800
|
+
CreateTime: number
|
|
2801
|
+
|
|
2802
|
+
/**
|
|
2803
|
+
* 修改时间,以毫秒为单位
|
|
2804
|
+
*/
|
|
2805
|
+
UpdateTime: number
|
|
2806
|
+
|
|
2807
|
+
/**
|
|
2808
|
+
* 说明信息
|
|
2809
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2810
|
+
*/
|
|
2811
|
+
Remark: string
|
|
2812
|
+
}
|
|
2813
|
+
|
|
2814
|
+
/**
|
|
2815
|
+
* DeleteAMQPQueue请求参数结构体
|
|
2816
|
+
*/
|
|
2817
|
+
export interface DeleteAMQPQueueRequest {
|
|
2818
|
+
/**
|
|
2819
|
+
* 集群ID
|
|
2820
|
+
*/
|
|
2821
|
+
ClusterId: string
|
|
2822
|
+
|
|
2823
|
+
/**
|
|
2824
|
+
* Vhost名称
|
|
2825
|
+
*/
|
|
2826
|
+
VHostId: string
|
|
2827
|
+
|
|
2828
|
+
/**
|
|
2829
|
+
* 队列名称
|
|
2830
|
+
*/
|
|
2831
|
+
Queue: string
|
|
2832
|
+
}
|
|
2833
|
+
|
|
2224
2834
|
/**
|
|
2225
2835
|
* DeleteEnvironments请求参数结构体
|
|
2226
2836
|
*/
|
|
@@ -2276,6 +2886,43 @@ export interface DescribeRocketMQClustersRequest {
|
|
|
2276
2886
|
Filters?: Array<Filter>
|
|
2277
2887
|
}
|
|
2278
2888
|
|
|
2889
|
+
/**
|
|
2890
|
+
* ReceiveMessage返回参数结构体
|
|
2891
|
+
*/
|
|
2892
|
+
export interface ReceiveMessageResponse {
|
|
2893
|
+
/**
|
|
2894
|
+
* 用作标识消息的唯一主键
|
|
2895
|
+
*/
|
|
2896
|
+
MessageID: string
|
|
2897
|
+
|
|
2898
|
+
/**
|
|
2899
|
+
* 接收消息的内容
|
|
2900
|
+
*/
|
|
2901
|
+
MessagePayload: string
|
|
2902
|
+
|
|
2903
|
+
/**
|
|
2904
|
+
* 提供给 Ack 接口,用来Ack哪一个topic中的消息
|
|
2905
|
+
*/
|
|
2906
|
+
AckTopic: string
|
|
2907
|
+
|
|
2908
|
+
/**
|
|
2909
|
+
* 返回的错误信息,如果为空,说明没有错误
|
|
2910
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2911
|
+
*/
|
|
2912
|
+
ErrorMsg: string
|
|
2913
|
+
|
|
2914
|
+
/**
|
|
2915
|
+
* 返回订阅者的名字,用来创建 ack consumer时使用
|
|
2916
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2917
|
+
*/
|
|
2918
|
+
SubName: string
|
|
2919
|
+
|
|
2920
|
+
/**
|
|
2921
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
2922
|
+
*/
|
|
2923
|
+
RequestId?: string
|
|
2924
|
+
}
|
|
2925
|
+
|
|
2279
2926
|
/**
|
|
2280
2927
|
* DescribeBindVpcs请求参数结构体
|
|
2281
2928
|
*/
|
|
@@ -2316,6 +2963,16 @@ export interface DescribeClustersResponse {
|
|
|
2316
2963
|
RequestId?: string
|
|
2317
2964
|
}
|
|
2318
2965
|
|
|
2966
|
+
/**
|
|
2967
|
+
* DeleteRocketMQNamespace返回参数结构体
|
|
2968
|
+
*/
|
|
2969
|
+
export interface DeleteRocketMQNamespaceResponse {
|
|
2970
|
+
/**
|
|
2971
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
2972
|
+
*/
|
|
2973
|
+
RequestId?: string
|
|
2974
|
+
}
|
|
2975
|
+
|
|
2319
2976
|
/**
|
|
2320
2977
|
* ClearCmqSubscriptionFilterTags请求参数结构体
|
|
2321
2978
|
*/
|
|
@@ -2357,33 +3014,28 @@ export interface CreateRocketMQGroupResponse {
|
|
|
2357
3014
|
}
|
|
2358
3015
|
|
|
2359
3016
|
/**
|
|
2360
|
-
*
|
|
3017
|
+
* CreateEnvironmentRole请求参数结构体
|
|
2361
3018
|
*/
|
|
2362
|
-
export interface
|
|
2363
|
-
/**
|
|
2364
|
-
* 集群ID
|
|
2365
|
-
*/
|
|
2366
|
-
ClusterId: string
|
|
2367
|
-
|
|
3019
|
+
export interface CreateEnvironmentRoleRequest {
|
|
2368
3020
|
/**
|
|
2369
|
-
*
|
|
3021
|
+
* 环境(命名空间)名称。
|
|
2370
3022
|
*/
|
|
2371
|
-
|
|
3023
|
+
EnvironmentId: string
|
|
2372
3024
|
|
|
2373
3025
|
/**
|
|
2374
|
-
*
|
|
3026
|
+
* 角色名称。
|
|
2375
3027
|
*/
|
|
2376
|
-
|
|
3028
|
+
RoleName: string
|
|
2377
3029
|
|
|
2378
3030
|
/**
|
|
2379
|
-
*
|
|
3031
|
+
* 授权项,最多只能包含produce、consume两项的非空字符串数组。
|
|
2380
3032
|
*/
|
|
2381
|
-
|
|
3033
|
+
Permissions: Array<string>
|
|
2382
3034
|
|
|
2383
3035
|
/**
|
|
2384
|
-
*
|
|
3036
|
+
* 必填字段,集群的ID
|
|
2385
3037
|
*/
|
|
2386
|
-
|
|
3038
|
+
ClusterId?: string
|
|
2387
3039
|
}
|
|
2388
3040
|
|
|
2389
3041
|
/**
|
|
@@ -2439,6 +3091,16 @@ export interface DeleteRolesResponse {
|
|
|
2439
3091
|
RequestId?: string
|
|
2440
3092
|
}
|
|
2441
3093
|
|
|
3094
|
+
/**
|
|
3095
|
+
* SendMsg返回参数结构体
|
|
3096
|
+
*/
|
|
3097
|
+
export interface SendMsgResponse {
|
|
3098
|
+
/**
|
|
3099
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
3100
|
+
*/
|
|
3101
|
+
RequestId?: string
|
|
3102
|
+
}
|
|
3103
|
+
|
|
2442
3104
|
/**
|
|
2443
3105
|
* ModifyRocketMQTopic请求参数结构体
|
|
2444
3106
|
*/
|
|
@@ -2490,55 +3152,28 @@ export interface DescribeRocketMQTopicsResponse {
|
|
|
2490
3152
|
}
|
|
2491
3153
|
|
|
2492
3154
|
/**
|
|
2493
|
-
*
|
|
3155
|
+
* CreateAMQPVHost请求参数结构体
|
|
2494
3156
|
*/
|
|
2495
|
-
export interface
|
|
2496
|
-
/**
|
|
2497
|
-
* 命名空间名称
|
|
2498
|
-
*/
|
|
2499
|
-
EnvironmentId: string
|
|
2500
|
-
|
|
2501
|
-
/**
|
|
2502
|
-
* 说明
|
|
2503
|
-
*/
|
|
2504
|
-
Remark: string
|
|
2505
|
-
|
|
2506
|
-
/**
|
|
2507
|
-
* 未消费消息过期时间,单位:秒,最大1296000(15天)
|
|
2508
|
-
*/
|
|
2509
|
-
MsgTTL: number
|
|
2510
|
-
|
|
3157
|
+
export interface CreateAMQPVHostRequest {
|
|
2511
3158
|
/**
|
|
2512
|
-
*
|
|
3159
|
+
* 集群ID
|
|
2513
3160
|
*/
|
|
2514
|
-
|
|
3161
|
+
ClusterId: string
|
|
2515
3162
|
|
|
2516
3163
|
/**
|
|
2517
|
-
*
|
|
3164
|
+
* vhost名称,3-64个字符,只能包含字母、数字、“-”及“_”
|
|
2518
3165
|
*/
|
|
2519
|
-
|
|
3166
|
+
VHostId: string
|
|
2520
3167
|
|
|
2521
3168
|
/**
|
|
2522
|
-
*
|
|
3169
|
+
* 未消费消息的保留时间,以毫秒为单位,60秒-15天
|
|
2523
3170
|
*/
|
|
2524
|
-
|
|
3171
|
+
MsgTtl: number
|
|
2525
3172
|
|
|
2526
3173
|
/**
|
|
2527
|
-
*
|
|
3174
|
+
* 说明,最大128个字符
|
|
2528
3175
|
*/
|
|
2529
|
-
|
|
2530
|
-
|
|
2531
|
-
/**
|
|
2532
|
-
* Topic数量
|
|
2533
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2534
|
-
*/
|
|
2535
|
-
TopicNum: number
|
|
2536
|
-
|
|
2537
|
-
/**
|
|
2538
|
-
* 消息保留策略
|
|
2539
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2540
|
-
*/
|
|
2541
|
-
RetentionPolicy: RetentionPolicy
|
|
3176
|
+
Remark?: string
|
|
2542
3177
|
}
|
|
2543
3178
|
|
|
2544
3179
|
/**
|
|
@@ -2706,43 +3341,38 @@ export interface CreateClusterResponse {
|
|
|
2706
3341
|
}
|
|
2707
3342
|
|
|
2708
3343
|
/**
|
|
2709
|
-
*
|
|
3344
|
+
* DeleteAMQPExchange返回参数结构体
|
|
2710
3345
|
*/
|
|
2711
|
-
export interface
|
|
3346
|
+
export interface DeleteAMQPExchangeResponse {
|
|
2712
3347
|
/**
|
|
2713
|
-
*
|
|
3348
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
2714
3349
|
*/
|
|
2715
|
-
|
|
3350
|
+
RequestId?: string
|
|
3351
|
+
}
|
|
2716
3352
|
|
|
3353
|
+
/**
|
|
3354
|
+
* DeleteRocketMQNamespace请求参数结构体
|
|
3355
|
+
*/
|
|
3356
|
+
export interface DeleteRocketMQNamespaceRequest {
|
|
2717
3357
|
/**
|
|
2718
|
-
*
|
|
3358
|
+
* 集群ID
|
|
2719
3359
|
*/
|
|
2720
|
-
|
|
3360
|
+
ClusterId: string
|
|
2721
3361
|
|
|
2722
3362
|
/**
|
|
2723
|
-
*
|
|
3363
|
+
* 命名空间名称
|
|
2724
3364
|
*/
|
|
2725
|
-
|
|
2726
|
-
|
|
2727
|
-
/**
|
|
2728
|
-
* 根据SourceQueueName过滤
|
|
2729
|
-
*/
|
|
2730
|
-
SourceQueueName?: string
|
|
2731
|
-
}
|
|
3365
|
+
NamespaceId: string
|
|
3366
|
+
}
|
|
2732
3367
|
|
|
2733
3368
|
/**
|
|
2734
|
-
*
|
|
3369
|
+
* CreateAMQPQueue返回参数结构体
|
|
2735
3370
|
*/
|
|
2736
|
-
export interface
|
|
3371
|
+
export interface CreateAMQPQueueResponse {
|
|
2737
3372
|
/**
|
|
2738
|
-
*
|
|
2739
|
-
*/
|
|
2740
|
-
ClusterId: string
|
|
2741
|
-
|
|
2742
|
-
/**
|
|
2743
|
-
* 命名空间名称
|
|
3373
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
2744
3374
|
*/
|
|
2745
|
-
|
|
3375
|
+
RequestId?: string
|
|
2746
3376
|
}
|
|
2747
3377
|
|
|
2748
3378
|
/**
|
|
@@ -2776,9 +3406,49 @@ export interface CreateClusterRequest {
|
|
|
2776
3406
|
}
|
|
2777
3407
|
|
|
2778
3408
|
/**
|
|
2779
|
-
*
|
|
3409
|
+
* DescribeAMQPClusters请求参数结构体
|
|
2780
3410
|
*/
|
|
2781
|
-
export interface
|
|
3411
|
+
export interface DescribeAMQPClustersRequest {
|
|
3412
|
+
/**
|
|
3413
|
+
* 偏移量
|
|
3414
|
+
*/
|
|
3415
|
+
Offset: number
|
|
3416
|
+
|
|
3417
|
+
/**
|
|
3418
|
+
* 限制数目
|
|
3419
|
+
*/
|
|
3420
|
+
Limit: number
|
|
3421
|
+
|
|
3422
|
+
/**
|
|
3423
|
+
* 按照集群ID关键字搜索
|
|
3424
|
+
*/
|
|
3425
|
+
IdKeyword?: string
|
|
3426
|
+
|
|
3427
|
+
/**
|
|
3428
|
+
* 按照集群名称关键字搜索
|
|
3429
|
+
*/
|
|
3430
|
+
NameKeyword?: string
|
|
3431
|
+
|
|
3432
|
+
/**
|
|
3433
|
+
* 集群ID列表过滤
|
|
3434
|
+
*/
|
|
3435
|
+
ClusterIdList?: Array<string>
|
|
3436
|
+
|
|
3437
|
+
/**
|
|
3438
|
+
* 标签过滤查找时,需要设置为true
|
|
3439
|
+
*/
|
|
3440
|
+
IsTagFilter?: boolean
|
|
3441
|
+
|
|
3442
|
+
/**
|
|
3443
|
+
* 过滤器。目前支持按标签过滤。
|
|
3444
|
+
*/
|
|
3445
|
+
Filters?: Array<Filter>
|
|
3446
|
+
}
|
|
3447
|
+
|
|
3448
|
+
/**
|
|
3449
|
+
* CreateAMQPRouteRelation返回参数结构体
|
|
3450
|
+
*/
|
|
3451
|
+
export interface CreateAMQPRouteRelationResponse {
|
|
2782
3452
|
/**
|
|
2783
3453
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
2784
3454
|
*/
|
|
@@ -2940,35 +3610,91 @@ export interface ModifyTopicResponse {
|
|
|
2940
3610
|
}
|
|
2941
3611
|
|
|
2942
3612
|
/**
|
|
2943
|
-
*
|
|
3613
|
+
* AMQP集群基本信息
|
|
2944
3614
|
*/
|
|
2945
|
-
export interface
|
|
3615
|
+
export interface AMQPClusterInfo {
|
|
2946
3616
|
/**
|
|
2947
|
-
*
|
|
3617
|
+
* 集群ID
|
|
2948
3618
|
*/
|
|
2949
|
-
|
|
3619
|
+
ClusterId: string
|
|
2950
3620
|
|
|
2951
3621
|
/**
|
|
2952
|
-
*
|
|
3622
|
+
* 集群名称
|
|
2953
3623
|
*/
|
|
2954
|
-
|
|
3624
|
+
ClusterName: string
|
|
2955
3625
|
|
|
2956
3626
|
/**
|
|
2957
|
-
*
|
|
3627
|
+
* 地域信息
|
|
2958
3628
|
*/
|
|
2959
|
-
|
|
3629
|
+
Region: string
|
|
2960
3630
|
|
|
2961
3631
|
/**
|
|
2962
|
-
|
|
3632
|
+
* 创建时间,毫秒为单位
|
|
3633
|
+
*/
|
|
3634
|
+
CreateTime: number
|
|
3635
|
+
|
|
3636
|
+
/**
|
|
3637
|
+
* 集群说明信息
|
|
2963
3638
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
2964
3639
|
*/
|
|
2965
|
-
|
|
3640
|
+
Remark: string
|
|
2966
3641
|
|
|
2967
3642
|
/**
|
|
2968
|
-
*
|
|
3643
|
+
* 公网接入地址
|
|
2969
3644
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
2970
3645
|
*/
|
|
2971
|
-
|
|
3646
|
+
PublicEndPoint: string
|
|
3647
|
+
|
|
3648
|
+
/**
|
|
3649
|
+
* VPC接入地址
|
|
3650
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3651
|
+
*/
|
|
3652
|
+
VpcEndPoint: string
|
|
3653
|
+
}
|
|
3654
|
+
|
|
3655
|
+
/**
|
|
3656
|
+
* DescribeAMQPRouteRelations返回参数结构体
|
|
3657
|
+
*/
|
|
3658
|
+
export interface DescribeAMQPRouteRelationsResponse {
|
|
3659
|
+
/**
|
|
3660
|
+
* 总记录数
|
|
3661
|
+
*/
|
|
3662
|
+
TotalCount: number
|
|
3663
|
+
|
|
3664
|
+
/**
|
|
3665
|
+
* 路由关系列表
|
|
3666
|
+
*/
|
|
3667
|
+
RouteRelations: Array<AMQPRouteRelation>
|
|
3668
|
+
|
|
3669
|
+
/**
|
|
3670
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
3671
|
+
*/
|
|
3672
|
+
RequestId?: string
|
|
3673
|
+
}
|
|
3674
|
+
|
|
3675
|
+
/**
|
|
3676
|
+
* DeleteTopics返回参数结构体
|
|
3677
|
+
*/
|
|
3678
|
+
export interface DeleteTopicsResponse {
|
|
3679
|
+
/**
|
|
3680
|
+
* 被删除的主题数组。
|
|
3681
|
+
*/
|
|
3682
|
+
TopicSets: Array<TopicRecord>
|
|
3683
|
+
|
|
3684
|
+
/**
|
|
3685
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
3686
|
+
*/
|
|
3687
|
+
RequestId?: string
|
|
3688
|
+
}
|
|
3689
|
+
|
|
3690
|
+
/**
|
|
3691
|
+
* CreateAMQPCluster返回参数结构体
|
|
3692
|
+
*/
|
|
3693
|
+
export interface CreateAMQPClusterResponse {
|
|
3694
|
+
/**
|
|
3695
|
+
* 集群ID
|
|
3696
|
+
*/
|
|
3697
|
+
ClusterId: string
|
|
2972
3698
|
|
|
2973
3699
|
/**
|
|
2974
3700
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
@@ -2976,6 +3702,26 @@ export interface ReceiveMessageResponse {
|
|
|
2976
3702
|
RequestId?: string
|
|
2977
3703
|
}
|
|
2978
3704
|
|
|
3705
|
+
/**
|
|
3706
|
+
* DeleteAMQPExchange请求参数结构体
|
|
3707
|
+
*/
|
|
3708
|
+
export interface DeleteAMQPExchangeRequest {
|
|
3709
|
+
/**
|
|
3710
|
+
* 集群ID
|
|
3711
|
+
*/
|
|
3712
|
+
ClusterId: string
|
|
3713
|
+
|
|
3714
|
+
/**
|
|
3715
|
+
* Vhost名称
|
|
3716
|
+
*/
|
|
3717
|
+
VHostId: string
|
|
3718
|
+
|
|
3719
|
+
/**
|
|
3720
|
+
* 交换机名称
|
|
3721
|
+
*/
|
|
3722
|
+
Exchange: string
|
|
3723
|
+
}
|
|
3724
|
+
|
|
2979
3725
|
/**
|
|
2980
3726
|
* DeleteRocketMQCluster返回参数结构体
|
|
2981
3727
|
*/
|
|
@@ -3079,50 +3825,49 @@ export interface Filter {
|
|
|
3079
3825
|
}
|
|
3080
3826
|
|
|
3081
3827
|
/**
|
|
3082
|
-
*
|
|
3828
|
+
* AMQP Exchange信息
|
|
3083
3829
|
*/
|
|
3084
|
-
export interface
|
|
3830
|
+
export interface AMQPExchange {
|
|
3085
3831
|
/**
|
|
3086
|
-
|
|
3087
|
-
|
|
3088
|
-
|
|
3089
|
-
Address: string
|
|
3832
|
+
* Exchange名称
|
|
3833
|
+
*/
|
|
3834
|
+
Name: string
|
|
3090
3835
|
|
|
3091
3836
|
/**
|
|
3092
|
-
|
|
3093
|
-
|
|
3094
|
-
|
|
3095
|
-
Partitions: number
|
|
3837
|
+
* Exchange的类别,为枚举类型:Direct, Fanout, Topic
|
|
3838
|
+
*/
|
|
3839
|
+
Type: string
|
|
3096
3840
|
|
|
3097
3841
|
/**
|
|
3098
|
-
|
|
3099
|
-
|
|
3100
|
-
|
|
3101
|
-
ClientVersion: string
|
|
3842
|
+
* 主绑定数
|
|
3843
|
+
*/
|
|
3844
|
+
SourceBindedNum: number
|
|
3102
3845
|
|
|
3103
3846
|
/**
|
|
3104
|
-
*
|
|
3847
|
+
* 说明
|
|
3105
3848
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
3106
3849
|
*/
|
|
3107
|
-
|
|
3850
|
+
Remark: string
|
|
3108
3851
|
|
|
3109
3852
|
/**
|
|
3110
|
-
|
|
3111
|
-
|
|
3112
|
-
|
|
3113
|
-
ProducerId: string
|
|
3853
|
+
* 被绑定数
|
|
3854
|
+
*/
|
|
3855
|
+
DestBindedNum: number
|
|
3114
3856
|
|
|
3115
3857
|
/**
|
|
3116
|
-
|
|
3117
|
-
|
|
3118
|
-
|
|
3119
|
-
AverageMsgSize: string
|
|
3858
|
+
* 创建时间,以毫秒为单位
|
|
3859
|
+
*/
|
|
3860
|
+
CreateTime: number
|
|
3120
3861
|
|
|
3121
3862
|
/**
|
|
3122
|
-
|
|
3123
|
-
|
|
3124
|
-
|
|
3125
|
-
|
|
3863
|
+
* 创建时间,以毫秒为单位
|
|
3864
|
+
*/
|
|
3865
|
+
UpdateTime: number
|
|
3866
|
+
|
|
3867
|
+
/**
|
|
3868
|
+
* 是否为内部Exchange(以amq.前缀开头的)
|
|
3869
|
+
*/
|
|
3870
|
+
Internal: boolean
|
|
3126
3871
|
}
|
|
3127
3872
|
|
|
3128
3873
|
/**
|
|
@@ -3272,23 +4017,48 @@ export interface Consumer {
|
|
|
3272
4017
|
}
|
|
3273
4018
|
|
|
3274
4019
|
/**
|
|
3275
|
-
*
|
|
4020
|
+
* CreateCmqSubscribe请求参数结构体
|
|
3276
4021
|
*/
|
|
3277
|
-
export interface
|
|
4022
|
+
export interface CreateCmqSubscribeRequest {
|
|
3278
4023
|
/**
|
|
3279
|
-
*
|
|
4024
|
+
* 主题名字,在单个地域同一帐号下唯一。主题名称是一个不超过64个字符的字符串,必须以字母为首字符,剩余部分可以包含字母、数字和横划线(-)。
|
|
3280
4025
|
*/
|
|
3281
|
-
|
|
4026
|
+
TopicName: string
|
|
3282
4027
|
|
|
3283
4028
|
/**
|
|
3284
|
-
*
|
|
4029
|
+
* 订阅名字,在单个地域同一帐号的同一主题下唯一。订阅名称是一个不超过64个字符的字符串,必须以字母为首字符,剩余部分可以包含字母、数字和横划线(-)。
|
|
3285
4030
|
*/
|
|
3286
|
-
|
|
4031
|
+
SubscriptionName: string
|
|
3287
4032
|
|
|
3288
4033
|
/**
|
|
3289
|
-
*
|
|
4034
|
+
* 订阅的协议,目前支持两种协议:http、queue。使用http协议,用户需自己搭建接受消息的web server。使用queue,消息会自动推送到CMQ queue,用户可以并发地拉取消息。
|
|
3290
4035
|
*/
|
|
3291
|
-
|
|
4036
|
+
Protocol: string
|
|
4037
|
+
|
|
4038
|
+
/**
|
|
4039
|
+
* 接收通知的Endpoint,根据协议Protocol区分:对于http,Endpoint必须以“`http://`”开头,host可以是域名或IP;对于Queue,则填QueueName。 请注意,目前推送服务不能推送到私有网络中,因此Endpoint填写为私有网络域名或地址将接收不到推送的消息,目前支持推送到公网和基础网络。
|
|
4040
|
+
*/
|
|
4041
|
+
Endpoint: string
|
|
4042
|
+
|
|
4043
|
+
/**
|
|
4044
|
+
* 向Endpoint推送消息出现错误时,CMQ推送服务器的重试策略。取值有:1)BACKOFF_RETRY,退避重试。每隔一定时间重试一次,重试够一定次数后,就把该消息丢弃,继续推送下一条消息;2)EXPONENTIAL_DECAY_RETRY,指数衰退重试。每次重试的间隔是指数递增的,例如开始1s,后面是2s,4s,8s...由于Topic消息的周期是一天,所以最多重试一天就把消息丢弃。默认值是EXPONENTIAL_DECAY_RETRY。
|
|
4045
|
+
*/
|
|
4046
|
+
NotifyStrategy?: string
|
|
4047
|
+
|
|
4048
|
+
/**
|
|
4049
|
+
* 消息正文。消息标签(用于消息过滤)。标签数量不能超过5个,每个标签不超过16个字符。与(Batch)PublishMessage的MsgTag参数配合使用,规则:1)如果FilterTag没有设置,则无论MsgTag是否有设置,订阅接收所有发布到Topic的消息;2)如果FilterTag数组有值,则只有数组中至少有一个值在MsgTag数组中也存在时(即FilterTag和MsgTag有交集),订阅才接收该发布到Topic的消息;3)如果FilterTag数组有值,但MsgTag没设置,则不接收任何发布到Topic的消息,可以认为是2)的一种特例,此时FilterTag和MsgTag没有交集。规则整体的设计思想是以订阅者的意愿为主。
|
|
4050
|
+
*/
|
|
4051
|
+
FilterTag?: Array<string>
|
|
4052
|
+
|
|
4053
|
+
/**
|
|
4054
|
+
* BindingKey数量不超过5个, 每个BindingKey长度不超过64字节,该字段表示订阅接收消息的过滤策略,每个BindingKey最多含有15个“.”, 即最多16个词组。
|
|
4055
|
+
*/
|
|
4056
|
+
BindingKey?: Array<string>
|
|
4057
|
+
|
|
4058
|
+
/**
|
|
4059
|
+
* 推送内容的格式。取值:1)JSON;2)SIMPLIFIED,即raw格式。如果Protocol是queue,则取值必须为SIMPLIFIED。如果Protocol是http,两个值均可以,默认值是JSON。
|
|
4060
|
+
*/
|
|
4061
|
+
NotifyContentFormat?: string
|
|
3292
4062
|
}
|
|
3293
4063
|
|
|
3294
4064
|
/**
|
|
@@ -3306,6 +4076,27 @@ export interface DeleteCmqSubscribeRequest {
|
|
|
3306
4076
|
SubscriptionName: string
|
|
3307
4077
|
}
|
|
3308
4078
|
|
|
4079
|
+
/**
|
|
4080
|
+
* DescribeAMQPClusters返回参数结构体
|
|
4081
|
+
*/
|
|
4082
|
+
export interface DescribeAMQPClustersResponse {
|
|
4083
|
+
/**
|
|
4084
|
+
* 集群信息
|
|
4085
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4086
|
+
*/
|
|
4087
|
+
ClusterList: Array<AMQPClusterDetail>
|
|
4088
|
+
|
|
4089
|
+
/**
|
|
4090
|
+
* 总条数
|
|
4091
|
+
*/
|
|
4092
|
+
TotalCount: number
|
|
4093
|
+
|
|
4094
|
+
/**
|
|
4095
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
4096
|
+
*/
|
|
4097
|
+
RequestId?: string
|
|
4098
|
+
}
|
|
4099
|
+
|
|
3309
4100
|
/**
|
|
3310
4101
|
* RocketMQ集群配置
|
|
3311
4102
|
*/
|
|
@@ -3585,32 +4376,107 @@ export interface CreateRocketMQClusterResponse {
|
|
|
3585
4376
|
}
|
|
3586
4377
|
|
|
3587
4378
|
/**
|
|
3588
|
-
*
|
|
4379
|
+
* DescribeAMQPCreateQuota请求参数结构体
|
|
3589
4380
|
*/
|
|
3590
|
-
export
|
|
3591
|
-
/**
|
|
3592
|
-
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
3593
|
-
*/
|
|
3594
|
-
RequestId?: string
|
|
3595
|
-
}
|
|
4381
|
+
export type DescribeAMQPCreateQuotaRequest = null
|
|
3596
4382
|
|
|
3597
4383
|
/**
|
|
3598
|
-
*
|
|
4384
|
+
* AMQP 队列信息
|
|
3599
4385
|
*/
|
|
3600
|
-
export interface
|
|
4386
|
+
export interface AMQPQueueDetail {
|
|
3601
4387
|
/**
|
|
3602
|
-
*
|
|
4388
|
+
* Queue名称
|
|
3603
4389
|
*/
|
|
3604
|
-
|
|
4390
|
+
Name: string
|
|
3605
4391
|
|
|
3606
4392
|
/**
|
|
3607
|
-
|
|
3608
|
-
|
|
3609
|
-
|
|
4393
|
+
* 说明
|
|
4394
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4395
|
+
*/
|
|
4396
|
+
Remark: string
|
|
3610
4397
|
|
|
3611
4398
|
/**
|
|
3612
|
-
|
|
3613
|
-
|
|
4399
|
+
* 被绑定数
|
|
4400
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4401
|
+
*/
|
|
4402
|
+
DestBindedNum: number
|
|
4403
|
+
|
|
4404
|
+
/**
|
|
4405
|
+
* 创建时间,以毫秒为单位
|
|
4406
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4407
|
+
*/
|
|
4408
|
+
CreateTime: number
|
|
4409
|
+
|
|
4410
|
+
/**
|
|
4411
|
+
* 创建时间,以毫秒为单位
|
|
4412
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4413
|
+
*/
|
|
4414
|
+
UpdateTime: number
|
|
4415
|
+
|
|
4416
|
+
/**
|
|
4417
|
+
* 在线消费者数
|
|
4418
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4419
|
+
*/
|
|
4420
|
+
OnlineConsumerNum: number
|
|
4421
|
+
|
|
4422
|
+
/**
|
|
4423
|
+
* 每秒钟的事务数
|
|
4424
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4425
|
+
*/
|
|
4426
|
+
Tps: number
|
|
4427
|
+
|
|
4428
|
+
/**
|
|
4429
|
+
* 消息堆积数
|
|
4430
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4431
|
+
*/
|
|
4432
|
+
AccumulativeMsgNum: number
|
|
4433
|
+
|
|
4434
|
+
/**
|
|
4435
|
+
* 是否自动删除
|
|
4436
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4437
|
+
*/
|
|
4438
|
+
AutoDelete: boolean
|
|
4439
|
+
|
|
4440
|
+
/**
|
|
4441
|
+
* 死信交换机
|
|
4442
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4443
|
+
*/
|
|
4444
|
+
DeadLetterExchange: string
|
|
4445
|
+
|
|
4446
|
+
/**
|
|
4447
|
+
* 死信交换机路由键
|
|
4448
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4449
|
+
*/
|
|
4450
|
+
DeadLetterRoutingKey: string
|
|
4451
|
+
}
|
|
4452
|
+
|
|
4453
|
+
/**
|
|
4454
|
+
* DeleteAMQPRouteRelation返回参数结构体
|
|
4455
|
+
*/
|
|
4456
|
+
export interface DeleteAMQPRouteRelationResponse {
|
|
4457
|
+
/**
|
|
4458
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
4459
|
+
*/
|
|
4460
|
+
RequestId?: string
|
|
4461
|
+
}
|
|
4462
|
+
|
|
4463
|
+
/**
|
|
4464
|
+
* SendMsg请求参数结构体
|
|
4465
|
+
*/
|
|
4466
|
+
export interface SendMsgRequest {
|
|
4467
|
+
/**
|
|
4468
|
+
* 环境(命名空间)名称。
|
|
4469
|
+
*/
|
|
4470
|
+
EnvironmentId: string
|
|
4471
|
+
|
|
4472
|
+
/**
|
|
4473
|
+
* 主题名称,如果是分区topic需要指定具体分区,如果没有指定则默认发到0分区,例如:my_topic-partition-0。
|
|
4474
|
+
*/
|
|
4475
|
+
TopicName: string
|
|
4476
|
+
|
|
4477
|
+
/**
|
|
4478
|
+
* 消息内容,不能为空且大小不得大于5242880个byte。
|
|
4479
|
+
*/
|
|
3614
4480
|
MsgContent: string
|
|
3615
4481
|
|
|
3616
4482
|
/**
|
|
@@ -3629,6 +4495,26 @@ export interface DescribeCmqQueueDetailRequest {
|
|
|
3629
4495
|
QueueName: string
|
|
3630
4496
|
}
|
|
3631
4497
|
|
|
4498
|
+
/**
|
|
4499
|
+
* DescribeAMQPQueues返回参数结构体
|
|
4500
|
+
*/
|
|
4501
|
+
export interface DescribeAMQPQueuesResponse {
|
|
4502
|
+
/**
|
|
4503
|
+
* 总记录数
|
|
4504
|
+
*/
|
|
4505
|
+
TotalCount: number
|
|
4506
|
+
|
|
4507
|
+
/**
|
|
4508
|
+
* 队列信息列表
|
|
4509
|
+
*/
|
|
4510
|
+
Queues: Array<AMQPQueueDetail>
|
|
4511
|
+
|
|
4512
|
+
/**
|
|
4513
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
4514
|
+
*/
|
|
4515
|
+
RequestId?: string
|
|
4516
|
+
}
|
|
4517
|
+
|
|
3632
4518
|
/**
|
|
3633
4519
|
* CreateRocketMQTopic请求参数结构体
|
|
3634
4520
|
*/
|
|
@@ -3695,6 +4581,21 @@ export interface DeleteRocketMQClusterRequest {
|
|
|
3695
4581
|
ClusterId: string
|
|
3696
4582
|
}
|
|
3697
4583
|
|
|
4584
|
+
/**
|
|
4585
|
+
* DescribeEnvironmentAttributes请求参数结构体
|
|
4586
|
+
*/
|
|
4587
|
+
export interface DescribeEnvironmentAttributesRequest {
|
|
4588
|
+
/**
|
|
4589
|
+
* 环境(命名空间)名称。
|
|
4590
|
+
*/
|
|
4591
|
+
EnvironmentId: string
|
|
4592
|
+
|
|
4593
|
+
/**
|
|
4594
|
+
* Pulsar 集群的ID
|
|
4595
|
+
*/
|
|
4596
|
+
ClusterId?: string
|
|
4597
|
+
}
|
|
4598
|
+
|
|
3698
4599
|
/**
|
|
3699
4600
|
* DeleteEnvironmentRoles请求参数结构体
|
|
3700
4601
|
*/
|
|
@@ -3725,6 +4626,16 @@ export interface ClearCmqQueueResponse {
|
|
|
3725
4626
|
RequestId?: string
|
|
3726
4627
|
}
|
|
3727
4628
|
|
|
4629
|
+
/**
|
|
4630
|
+
* CreateAMQPExchange返回参数结构体
|
|
4631
|
+
*/
|
|
4632
|
+
export interface CreateAMQPExchangeResponse {
|
|
4633
|
+
/**
|
|
4634
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
4635
|
+
*/
|
|
4636
|
+
RequestId?: string
|
|
4637
|
+
}
|
|
4638
|
+
|
|
3728
4639
|
/**
|
|
3729
4640
|
* DescribeNodeHealthOpt请求参数结构体
|
|
3730
4641
|
*/
|
|
@@ -3817,6 +4728,16 @@ export interface EnvironmentRole {
|
|
|
3817
4728
|
UpdateTime: string
|
|
3818
4729
|
}
|
|
3819
4730
|
|
|
4731
|
+
/**
|
|
4732
|
+
* ModifyAMQPQueue返回参数结构体
|
|
4733
|
+
*/
|
|
4734
|
+
export interface ModifyAMQPQueueResponse {
|
|
4735
|
+
/**
|
|
4736
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
4737
|
+
*/
|
|
4738
|
+
RequestId?: string
|
|
4739
|
+
}
|
|
4740
|
+
|
|
3820
4741
|
/**
|
|
3821
4742
|
* CreateCmqQueue请求参数结构体
|
|
3822
4743
|
*/
|
|
@@ -4148,6 +5069,16 @@ export interface Role {
|
|
|
4148
5069
|
UpdateTime: string
|
|
4149
5070
|
}
|
|
4150
5071
|
|
|
5072
|
+
/**
|
|
5073
|
+
* ModifyAMQPCluster返回参数结构体
|
|
5074
|
+
*/
|
|
5075
|
+
export interface ModifyAMQPClusterResponse {
|
|
5076
|
+
/**
|
|
5077
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
5078
|
+
*/
|
|
5079
|
+
RequestId?: string
|
|
5080
|
+
}
|
|
5081
|
+
|
|
4151
5082
|
/**
|
|
4152
5083
|
* 订阅关系
|
|
4153
5084
|
*/
|
|
@@ -4168,6 +5099,96 @@ export interface SubscriptionTopic {
|
|
|
4168
5099
|
SubscriptionName: string
|
|
4169
5100
|
}
|
|
4170
5101
|
|
|
5102
|
+
/**
|
|
5103
|
+
* AMQP集群配置
|
|
5104
|
+
*/
|
|
5105
|
+
export interface AMQPClusterConfig {
|
|
5106
|
+
/**
|
|
5107
|
+
* 单Vhost TPS上限
|
|
5108
|
+
*/
|
|
5109
|
+
MaxTpsPerVHost: number
|
|
5110
|
+
|
|
5111
|
+
/**
|
|
5112
|
+
* 单Vhost客户端连接数上限
|
|
5113
|
+
*/
|
|
5114
|
+
MaxConnNumPerVHost: number
|
|
5115
|
+
|
|
5116
|
+
/**
|
|
5117
|
+
* 最大Vhost数量
|
|
5118
|
+
*/
|
|
5119
|
+
MaxVHostNum: number
|
|
5120
|
+
|
|
5121
|
+
/**
|
|
5122
|
+
* 最大exchange数量
|
|
5123
|
+
*/
|
|
5124
|
+
MaxExchangeNum: number
|
|
5125
|
+
|
|
5126
|
+
/**
|
|
5127
|
+
* 最大Queue数量
|
|
5128
|
+
*/
|
|
5129
|
+
MaxQueueNum: number
|
|
5130
|
+
|
|
5131
|
+
/**
|
|
5132
|
+
* 消息最大保留时间,以毫秒为单位
|
|
5133
|
+
*/
|
|
5134
|
+
MaxRetentionTime: number
|
|
5135
|
+
|
|
5136
|
+
/**
|
|
5137
|
+
* 已使用Vhost数量
|
|
5138
|
+
*/
|
|
5139
|
+
UsedVHostNum: number
|
|
5140
|
+
|
|
5141
|
+
/**
|
|
5142
|
+
* 已使用exchange数量
|
|
5143
|
+
*/
|
|
5144
|
+
UsedExchangeNum: number
|
|
5145
|
+
|
|
5146
|
+
/**
|
|
5147
|
+
* 已使用queue数量
|
|
5148
|
+
*/
|
|
5149
|
+
UsedQueueNum: number
|
|
5150
|
+
}
|
|
5151
|
+
|
|
5152
|
+
/**
|
|
5153
|
+
* DescribeAMQPExchanges请求参数结构体
|
|
5154
|
+
*/
|
|
5155
|
+
export interface DescribeAMQPExchangesRequest {
|
|
5156
|
+
/**
|
|
5157
|
+
* 查询偏移量
|
|
5158
|
+
*/
|
|
5159
|
+
Offset: number
|
|
5160
|
+
|
|
5161
|
+
/**
|
|
5162
|
+
* 查询限制数
|
|
5163
|
+
*/
|
|
5164
|
+
Limit: number
|
|
5165
|
+
|
|
5166
|
+
/**
|
|
5167
|
+
* 集群ID
|
|
5168
|
+
*/
|
|
5169
|
+
ClusterId: string
|
|
5170
|
+
|
|
5171
|
+
/**
|
|
5172
|
+
* Vhost ID
|
|
5173
|
+
*/
|
|
5174
|
+
VHostId: string
|
|
5175
|
+
|
|
5176
|
+
/**
|
|
5177
|
+
* 按路由类型过滤查询结果,可选择Direct, Fanout, Topic
|
|
5178
|
+
*/
|
|
5179
|
+
FilterType?: Array<string>
|
|
5180
|
+
|
|
5181
|
+
/**
|
|
5182
|
+
* 按exchange名称搜索,支持模糊查询
|
|
5183
|
+
*/
|
|
5184
|
+
FilterName?: string
|
|
5185
|
+
|
|
5186
|
+
/**
|
|
5187
|
+
* 过滤查询内部或者外部exchange
|
|
5188
|
+
*/
|
|
5189
|
+
FilterInternal?: boolean
|
|
5190
|
+
}
|
|
5191
|
+
|
|
4171
5192
|
/**
|
|
4172
5193
|
* DescribeProducers返回参数结构体
|
|
4173
5194
|
*/
|
|
@@ -4198,6 +5219,31 @@ export interface CreateRocketMQNamespaceResponse {
|
|
|
4198
5219
|
RequestId?: string
|
|
4199
5220
|
}
|
|
4200
5221
|
|
|
5222
|
+
/**
|
|
5223
|
+
* ModifyAMQPExchange请求参数结构体
|
|
5224
|
+
*/
|
|
5225
|
+
export interface ModifyAMQPExchangeRequest {
|
|
5226
|
+
/**
|
|
5227
|
+
* 集群ID
|
|
5228
|
+
*/
|
|
5229
|
+
ClusterId: string
|
|
5230
|
+
|
|
5231
|
+
/**
|
|
5232
|
+
* Vhost间名称
|
|
5233
|
+
*/
|
|
5234
|
+
VHostId: string
|
|
5235
|
+
|
|
5236
|
+
/**
|
|
5237
|
+
* 交换机名称
|
|
5238
|
+
*/
|
|
5239
|
+
Exchange: string
|
|
5240
|
+
|
|
5241
|
+
/**
|
|
5242
|
+
* 说明信息,最大128个字符
|
|
5243
|
+
*/
|
|
5244
|
+
Remark?: string
|
|
5245
|
+
}
|
|
5246
|
+
|
|
4201
5247
|
/**
|
|
4202
5248
|
* SendBatchMessages请求参数结构体
|
|
4203
5249
|
*/
|
|
@@ -4258,6 +5304,26 @@ export interface DeleteCmqTopicRequest {
|
|
|
4258
5304
|
TopicName: string
|
|
4259
5305
|
}
|
|
4260
5306
|
|
|
5307
|
+
/**
|
|
5308
|
+
* DeleteAMQPRouteRelation请求参数结构体
|
|
5309
|
+
*/
|
|
5310
|
+
export interface DeleteAMQPRouteRelationRequest {
|
|
5311
|
+
/**
|
|
5312
|
+
* 集群ID
|
|
5313
|
+
*/
|
|
5314
|
+
ClusterId: string
|
|
5315
|
+
|
|
5316
|
+
/**
|
|
5317
|
+
* Vhost名称
|
|
5318
|
+
*/
|
|
5319
|
+
VHostId: string
|
|
5320
|
+
|
|
5321
|
+
/**
|
|
5322
|
+
* 路由关系ID
|
|
5323
|
+
*/
|
|
5324
|
+
RouteRelationId: string
|
|
5325
|
+
}
|
|
5326
|
+
|
|
4261
5327
|
/**
|
|
4262
5328
|
* SendCmqMsg返回参数结构体
|
|
4263
5329
|
*/
|
|
@@ -4328,6 +5394,134 @@ export interface UnbindCmqDeadLetterRequest {
|
|
|
4328
5394
|
SourceQueueName: string
|
|
4329
5395
|
}
|
|
4330
5396
|
|
|
5397
|
+
/**
|
|
5398
|
+
* CreateAMQPRouteRelation请求参数结构体
|
|
5399
|
+
*/
|
|
5400
|
+
export interface CreateAMQPRouteRelationRequest {
|
|
5401
|
+
/**
|
|
5402
|
+
* 集群ID
|
|
5403
|
+
*/
|
|
5404
|
+
ClusterId: string
|
|
5405
|
+
|
|
5406
|
+
/**
|
|
5407
|
+
* 交换机所在的vhost
|
|
5408
|
+
*/
|
|
5409
|
+
VHostId: string
|
|
5410
|
+
|
|
5411
|
+
/**
|
|
5412
|
+
* 源Exchange名称
|
|
5413
|
+
*/
|
|
5414
|
+
SourceExchange: string
|
|
5415
|
+
|
|
5416
|
+
/**
|
|
5417
|
+
* 目标类型:Queue|Exchange
|
|
5418
|
+
*/
|
|
5419
|
+
DestType: string
|
|
5420
|
+
|
|
5421
|
+
/**
|
|
5422
|
+
* 目标值
|
|
5423
|
+
*/
|
|
5424
|
+
DestValue: string
|
|
5425
|
+
|
|
5426
|
+
/**
|
|
5427
|
+
* 交换机说明,最大128个字符
|
|
5428
|
+
*/
|
|
5429
|
+
Remark?: string
|
|
5430
|
+
|
|
5431
|
+
/**
|
|
5432
|
+
* 绑定key,缺省值为default
|
|
5433
|
+
*/
|
|
5434
|
+
RoutingKey?: string
|
|
5435
|
+
}
|
|
5436
|
+
|
|
5437
|
+
/**
|
|
5438
|
+
* DeleteCmqSubscribe返回参数结构体
|
|
5439
|
+
*/
|
|
5440
|
+
export interface DeleteCmqSubscribeResponse {
|
|
5441
|
+
/**
|
|
5442
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
5443
|
+
*/
|
|
5444
|
+
RequestId?: string
|
|
5445
|
+
}
|
|
5446
|
+
|
|
5447
|
+
/**
|
|
5448
|
+
* DescribeRoles请求参数结构体
|
|
5449
|
+
*/
|
|
5450
|
+
export interface DescribeRolesRequest {
|
|
5451
|
+
/**
|
|
5452
|
+
* 角色名称,模糊查询
|
|
5453
|
+
*/
|
|
5454
|
+
RoleName?: string
|
|
5455
|
+
|
|
5456
|
+
/**
|
|
5457
|
+
* 起始下标,不填默认为0。
|
|
5458
|
+
*/
|
|
5459
|
+
Offset?: number
|
|
5460
|
+
|
|
5461
|
+
/**
|
|
5462
|
+
* 返回数量,不填则默认为10,最大值为20。
|
|
5463
|
+
*/
|
|
5464
|
+
Limit?: number
|
|
5465
|
+
|
|
5466
|
+
/**
|
|
5467
|
+
* 必填字段,集群Id
|
|
5468
|
+
*/
|
|
5469
|
+
ClusterId?: string
|
|
5470
|
+
|
|
5471
|
+
/**
|
|
5472
|
+
* * RoleName
|
|
5473
|
+
按照角色名进行过滤,精确查询。
|
|
5474
|
+
类型:String
|
|
5475
|
+
必选:否
|
|
5476
|
+
*/
|
|
5477
|
+
Filters?: Array<Filter>
|
|
5478
|
+
}
|
|
5479
|
+
|
|
5480
|
+
/**
|
|
5481
|
+
* DeleteSubscriptions请求参数结构体
|
|
5482
|
+
*/
|
|
5483
|
+
export interface DeleteSubscriptionsRequest {
|
|
5484
|
+
/**
|
|
5485
|
+
* 订阅关系集合,每次最多删除20个。
|
|
5486
|
+
*/
|
|
5487
|
+
SubscriptionTopicSets: Array<SubscriptionTopic>
|
|
5488
|
+
|
|
5489
|
+
/**
|
|
5490
|
+
* pulsar集群Id。
|
|
5491
|
+
*/
|
|
5492
|
+
ClusterId?: string
|
|
5493
|
+
|
|
5494
|
+
/**
|
|
5495
|
+
* 环境(命名空间)名称。
|
|
5496
|
+
*/
|
|
5497
|
+
EnvironmentId?: string
|
|
5498
|
+
|
|
5499
|
+
/**
|
|
5500
|
+
* 是否强制删除,默认为false
|
|
5501
|
+
*/
|
|
5502
|
+
Force?: boolean
|
|
5503
|
+
}
|
|
5504
|
+
|
|
5505
|
+
/**
|
|
5506
|
+
* SendCmqMsg请求参数结构体
|
|
5507
|
+
*/
|
|
5508
|
+
export interface SendCmqMsgRequest {
|
|
5509
|
+
/**
|
|
5510
|
+
* 队列名
|
|
5511
|
+
*/
|
|
5512
|
+
QueueName: string
|
|
5513
|
+
|
|
5514
|
+
/**
|
|
5515
|
+
* 消息内容
|
|
5516
|
+
*/
|
|
5517
|
+
MsgContent: string
|
|
5518
|
+
|
|
5519
|
+
/**
|
|
5520
|
+
* 延迟时间
|
|
5521
|
+
*/
|
|
5522
|
+
DelaySeconds: number
|
|
5523
|
+
}
|
|
5524
|
+
|
|
4331
5525
|
/**
|
|
4332
5526
|
* ModifyCmqQueueAttribute请求参数结构体
|
|
4333
5527
|
*/
|
|
@@ -4409,9 +5603,9 @@ export interface ModifyCmqQueueAttributeRequest {
|
|
|
4409
5603
|
}
|
|
4410
5604
|
|
|
4411
5605
|
/**
|
|
4412
|
-
*
|
|
5606
|
+
* ModifyRocketMQGroup返回参数结构体
|
|
4413
5607
|
*/
|
|
4414
|
-
export interface
|
|
5608
|
+
export interface ModifyRocketMQGroupResponse {
|
|
4415
5609
|
/**
|
|
4416
5610
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
4417
5611
|
*/
|
|
@@ -4419,71 +5613,71 @@ export interface DeleteCmqSubscribeResponse {
|
|
|
4419
5613
|
}
|
|
4420
5614
|
|
|
4421
5615
|
/**
|
|
4422
|
-
*
|
|
5616
|
+
* 生产者连接实例
|
|
4423
5617
|
*/
|
|
4424
|
-
export interface
|
|
5618
|
+
export interface Connection {
|
|
4425
5619
|
/**
|
|
4426
|
-
|
|
4427
|
-
|
|
4428
|
-
|
|
5620
|
+
* 生产者地址。
|
|
5621
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5622
|
+
*/
|
|
5623
|
+
Address: string
|
|
4429
5624
|
|
|
4430
5625
|
/**
|
|
4431
|
-
|
|
4432
|
-
|
|
4433
|
-
|
|
5626
|
+
* 主题分区。
|
|
5627
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5628
|
+
*/
|
|
5629
|
+
Partitions: number
|
|
4434
5630
|
|
|
4435
5631
|
/**
|
|
4436
|
-
|
|
4437
|
-
|
|
4438
|
-
|
|
5632
|
+
* 生产者版本。
|
|
5633
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5634
|
+
*/
|
|
5635
|
+
ClientVersion: string
|
|
4439
5636
|
|
|
4440
5637
|
/**
|
|
4441
|
-
|
|
4442
|
-
|
|
4443
|
-
|
|
5638
|
+
* 生产者名称。
|
|
5639
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5640
|
+
*/
|
|
5641
|
+
ProducerName: string
|
|
4444
5642
|
|
|
4445
5643
|
/**
|
|
4446
|
-
*
|
|
4447
|
-
|
|
4448
|
-
类型:String
|
|
4449
|
-
必选:否
|
|
5644
|
+
* 生产者ID。
|
|
5645
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4450
5646
|
*/
|
|
4451
|
-
|
|
4452
|
-
}
|
|
5647
|
+
ProducerId: string
|
|
4453
5648
|
|
|
4454
|
-
/**
|
|
4455
|
-
* DeleteSubscriptions请求参数结构体
|
|
4456
|
-
*/
|
|
4457
|
-
export interface DeleteSubscriptionsRequest {
|
|
4458
5649
|
/**
|
|
4459
|
-
|
|
4460
|
-
|
|
4461
|
-
|
|
5650
|
+
* 消息平均大小(byte)。
|
|
5651
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5652
|
+
*/
|
|
5653
|
+
AverageMsgSize: string
|
|
4462
5654
|
|
|
4463
5655
|
/**
|
|
4464
|
-
|
|
4465
|
-
|
|
4466
|
-
|
|
5656
|
+
* 生成速率(byte/秒)。
|
|
5657
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5658
|
+
*/
|
|
5659
|
+
MsgThroughputIn: string
|
|
5660
|
+
}
|
|
4467
5661
|
|
|
5662
|
+
/**
|
|
5663
|
+
* 租户AMQP集群详细信息
|
|
5664
|
+
*/
|
|
5665
|
+
export interface AMQPClusterDetail {
|
|
4468
5666
|
/**
|
|
4469
|
-
*
|
|
5667
|
+
* 集群基本信息
|
|
4470
5668
|
*/
|
|
4471
|
-
|
|
5669
|
+
Info: AMQPClusterInfo
|
|
4472
5670
|
|
|
4473
5671
|
/**
|
|
4474
|
-
*
|
|
5672
|
+
* 集群配置信息
|
|
4475
5673
|
*/
|
|
4476
|
-
|
|
4477
|
-
}
|
|
5674
|
+
Config: AMQPClusterConfig
|
|
4478
5675
|
|
|
4479
|
-
/**
|
|
4480
|
-
* ModifyRocketMQGroup返回参数结构体
|
|
4481
|
-
*/
|
|
4482
|
-
export interface ModifyRocketMQGroupResponse {
|
|
4483
5676
|
/**
|
|
4484
|
-
|
|
4485
|
-
|
|
4486
|
-
|
|
5677
|
+
* 标签
|
|
5678
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5679
|
+
*/
|
|
5680
|
+
Tags: Array<Tag>
|
|
4487
5681
|
}
|
|
4488
5682
|
|
|
4489
5683
|
/**
|
|
@@ -4537,28 +5731,43 @@ export interface SendMessagesRequest {
|
|
|
4537
5731
|
}
|
|
4538
5732
|
|
|
4539
5733
|
/**
|
|
4540
|
-
*
|
|
5734
|
+
* ModifyRocketMQNamespace请求参数结构体
|
|
4541
5735
|
*/
|
|
4542
|
-
export interface
|
|
5736
|
+
export interface ModifyRocketMQNamespaceRequest {
|
|
4543
5737
|
/**
|
|
4544
|
-
*
|
|
5738
|
+
* 集群ID
|
|
4545
5739
|
*/
|
|
4546
|
-
|
|
5740
|
+
ClusterId: string
|
|
4547
5741
|
|
|
4548
5742
|
/**
|
|
4549
|
-
*
|
|
5743
|
+
* 命名空间名称,3-64个字符,只能包含字母、数字、“-”及“_”
|
|
4550
5744
|
*/
|
|
4551
|
-
|
|
5745
|
+
NamespaceId: string
|
|
4552
5746
|
|
|
4553
5747
|
/**
|
|
4554
|
-
*
|
|
5748
|
+
* 未消费消息的保留时间,以毫秒为单位,60秒-15天
|
|
4555
5749
|
*/
|
|
4556
|
-
|
|
5750
|
+
Ttl: number
|
|
4557
5751
|
|
|
4558
5752
|
/**
|
|
4559
|
-
*
|
|
5753
|
+
* 消息持久化后保留的时间,以毫秒为单位
|
|
4560
5754
|
*/
|
|
4561
|
-
|
|
5755
|
+
RetentionTime: number
|
|
5756
|
+
|
|
5757
|
+
/**
|
|
5758
|
+
* 说明,最大128个字符
|
|
5759
|
+
*/
|
|
5760
|
+
Remark?: string
|
|
5761
|
+
}
|
|
5762
|
+
|
|
5763
|
+
/**
|
|
5764
|
+
* DeleteAMQPVHost返回参数结构体
|
|
5765
|
+
*/
|
|
5766
|
+
export interface DeleteAMQPVHostResponse {
|
|
5767
|
+
/**
|
|
5768
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
5769
|
+
*/
|
|
5770
|
+
RequestId?: string
|
|
4562
5771
|
}
|
|
4563
5772
|
|
|
4564
5773
|
/**
|