tencentcloud-sdk-nodejs-intl-en 3.0.749 → 3.0.751
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/package.json +1 -1
- package/tencentcloud/cdb/v20170320/cdb_client.js +18 -115
- package/tencentcloud/cdb/v20170320/models.js +486 -1401
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/faceid/v20180301/faceid_client.js +42 -16
- package/tencentcloud/faceid/v20180301/models.js +275 -81
- package/tencentcloud/tdmq/v20200217/models.js +2088 -333
- package/tencentcloud/tdmq/v20200217/tdmq_client.js +655 -479
|
@@ -116,6 +116,56 @@ class DescribeBindClustersResponse extends AbstractModel {
|
|
|
116
116
|
}
|
|
117
117
|
}
|
|
118
118
|
|
|
119
|
+
/**
|
|
120
|
+
* DescribeRabbitMQVirtualHost response structure.
|
|
121
|
+
* @class
|
|
122
|
+
*/
|
|
123
|
+
class DescribeRabbitMQVirtualHostResponse extends AbstractModel {
|
|
124
|
+
constructor(){
|
|
125
|
+
super();
|
|
126
|
+
|
|
127
|
+
/**
|
|
128
|
+
* Returned number of vhosts
|
|
129
|
+
* @type {number || null}
|
|
130
|
+
*/
|
|
131
|
+
this.TotalCount = null;
|
|
132
|
+
|
|
133
|
+
/**
|
|
134
|
+
* List of vhost details
|
|
135
|
+
* @type {Array.<RabbitMQVirtualHostInfo> || null}
|
|
136
|
+
*/
|
|
137
|
+
this.VirtualHostList = null;
|
|
138
|
+
|
|
139
|
+
/**
|
|
140
|
+
* The unique request ID, which is returned for each request. RequestId is required for locating a problem.
|
|
141
|
+
* @type {string || null}
|
|
142
|
+
*/
|
|
143
|
+
this.RequestId = null;
|
|
144
|
+
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
/**
|
|
148
|
+
* @private
|
|
149
|
+
*/
|
|
150
|
+
deserialize(params) {
|
|
151
|
+
if (!params) {
|
|
152
|
+
return;
|
|
153
|
+
}
|
|
154
|
+
this.TotalCount = 'TotalCount' in params ? params.TotalCount : null;
|
|
155
|
+
|
|
156
|
+
if (params.VirtualHostList) {
|
|
157
|
+
this.VirtualHostList = new Array();
|
|
158
|
+
for (let z in params.VirtualHostList) {
|
|
159
|
+
let obj = new RabbitMQVirtualHostInfo();
|
|
160
|
+
obj.deserialize(params.VirtualHostList[z]);
|
|
161
|
+
this.VirtualHostList.push(obj);
|
|
162
|
+
}
|
|
163
|
+
}
|
|
164
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
165
|
+
|
|
166
|
+
}
|
|
167
|
+
}
|
|
168
|
+
|
|
119
169
|
/**
|
|
120
170
|
* cmq DeadLetterPolicy
|
|
121
171
|
* @class
|
|
@@ -169,6 +219,41 @@ Note: this field may return null, indicating that no valid values can be obtaine
|
|
|
169
219
|
}
|
|
170
220
|
}
|
|
171
221
|
|
|
222
|
+
/**
|
|
223
|
+
* DeleteRabbitMQUser request structure.
|
|
224
|
+
* @class
|
|
225
|
+
*/
|
|
226
|
+
class DeleteRabbitMQUserRequest extends AbstractModel {
|
|
227
|
+
constructor(){
|
|
228
|
+
super();
|
|
229
|
+
|
|
230
|
+
/**
|
|
231
|
+
* Cluster instance ID
|
|
232
|
+
* @type {string || null}
|
|
233
|
+
*/
|
|
234
|
+
this.InstanceId = null;
|
|
235
|
+
|
|
236
|
+
/**
|
|
237
|
+
* Username, which is used for login.
|
|
238
|
+
* @type {string || null}
|
|
239
|
+
*/
|
|
240
|
+
this.User = null;
|
|
241
|
+
|
|
242
|
+
}
|
|
243
|
+
|
|
244
|
+
/**
|
|
245
|
+
* @private
|
|
246
|
+
*/
|
|
247
|
+
deserialize(params) {
|
|
248
|
+
if (!params) {
|
|
249
|
+
return;
|
|
250
|
+
}
|
|
251
|
+
this.InstanceId = 'InstanceId' in params ? params.InstanceId : null;
|
|
252
|
+
this.User = 'User' in params ? params.User : null;
|
|
253
|
+
|
|
254
|
+
}
|
|
255
|
+
}
|
|
256
|
+
|
|
172
257
|
/**
|
|
173
258
|
* RocketMQ namespace information
|
|
174
259
|
* @class
|
|
@@ -184,7 +269,7 @@ class RocketMQNamespace extends AbstractModel {
|
|
|
184
269
|
this.NamespaceId = null;
|
|
185
270
|
|
|
186
271
|
/**
|
|
187
|
-
* Retention period for unconsumed messages in milliseconds. Valid range: 60 seconds–15 days.
|
|
272
|
+
* Retention period for unconsumed messages in milliseconds. Valid range: 60 seconds–15 days. This parameter is disused.
|
|
188
273
|
* @type {number || null}
|
|
189
274
|
*/
|
|
190
275
|
this.Ttl = null;
|
|
@@ -216,6 +301,13 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
216
301
|
*/
|
|
217
302
|
this.VpcEndpoint = null;
|
|
218
303
|
|
|
304
|
+
/**
|
|
305
|
+
* Internal access point address
|
|
306
|
+
Note: u200dThis field may return null, indicating that no valid values can be obtained.
|
|
307
|
+
* @type {string || null}
|
|
308
|
+
*/
|
|
309
|
+
this.InternalEndpoint = null;
|
|
310
|
+
|
|
219
311
|
}
|
|
220
312
|
|
|
221
313
|
/**
|
|
@@ -231,6 +323,7 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
231
323
|
this.Remark = 'Remark' in params ? params.Remark : null;
|
|
232
324
|
this.PublicEndpoint = 'PublicEndpoint' in params ? params.PublicEndpoint : null;
|
|
233
325
|
this.VpcEndpoint = 'VpcEndpoint' in params ? params.VpcEndpoint : null;
|
|
326
|
+
this.InternalEndpoint = 'InternalEndpoint' in params ? params.InternalEndpoint : null;
|
|
234
327
|
|
|
235
328
|
}
|
|
236
329
|
}
|
|
@@ -314,30 +407,72 @@ class DescribeSubscriptionsRequest extends AbstractModel {
|
|
|
314
407
|
}
|
|
315
408
|
|
|
316
409
|
/**
|
|
317
|
-
*
|
|
410
|
+
* DescribeRocketMQGroups request structure.
|
|
318
411
|
* @class
|
|
319
412
|
*/
|
|
320
|
-
class
|
|
413
|
+
class DescribeRocketMQGroupsRequest extends AbstractModel {
|
|
321
414
|
constructor(){
|
|
322
415
|
super();
|
|
323
416
|
|
|
324
417
|
/**
|
|
325
|
-
*
|
|
418
|
+
* Cluster ID.
|
|
326
419
|
* @type {string || null}
|
|
327
420
|
*/
|
|
328
|
-
this.
|
|
421
|
+
this.ClusterId = null;
|
|
329
422
|
|
|
330
423
|
/**
|
|
331
|
-
*
|
|
424
|
+
* Namespace.
|
|
332
425
|
* @type {string || null}
|
|
333
426
|
*/
|
|
334
|
-
this.
|
|
427
|
+
this.NamespaceId = null;
|
|
335
428
|
|
|
336
429
|
/**
|
|
337
|
-
*
|
|
430
|
+
* Offset.
|
|
338
431
|
* @type {number || null}
|
|
339
432
|
*/
|
|
340
|
-
this.
|
|
433
|
+
this.Offset = null;
|
|
434
|
+
|
|
435
|
+
/**
|
|
436
|
+
* The max number of returned results.
|
|
437
|
+
* @type {number || null}
|
|
438
|
+
*/
|
|
439
|
+
this.Limit = null;
|
|
440
|
+
|
|
441
|
+
/**
|
|
442
|
+
* Topic name, which can be used to query all subscription groups under the topic
|
|
443
|
+
* @type {string || null}
|
|
444
|
+
*/
|
|
445
|
+
this.FilterTopic = null;
|
|
446
|
+
|
|
447
|
+
/**
|
|
448
|
+
* Consumer group query by consumer group name. Fuzzy query is supported
|
|
449
|
+
* @type {string || null}
|
|
450
|
+
*/
|
|
451
|
+
this.FilterGroup = null;
|
|
452
|
+
|
|
453
|
+
/**
|
|
454
|
+
* Sort by specified field. Valid values: `tps`, `accumulative`.
|
|
455
|
+
* @type {string || null}
|
|
456
|
+
*/
|
|
457
|
+
this.SortedBy = null;
|
|
458
|
+
|
|
459
|
+
/**
|
|
460
|
+
* Sort in ascending or descending order. Valid values: `asc`, `desc`.
|
|
461
|
+
* @type {string || null}
|
|
462
|
+
*/
|
|
463
|
+
this.SortOrder = null;
|
|
464
|
+
|
|
465
|
+
/**
|
|
466
|
+
* Subscription group name. After it is specified, the information of only this subscription group will be returned.
|
|
467
|
+
* @type {string || null}
|
|
468
|
+
*/
|
|
469
|
+
this.FilterOneGroup = null;
|
|
470
|
+
|
|
471
|
+
/**
|
|
472
|
+
* Group type
|
|
473
|
+
* @type {Array.<string> || null}
|
|
474
|
+
*/
|
|
475
|
+
this.Types = null;
|
|
341
476
|
|
|
342
477
|
}
|
|
343
478
|
|
|
@@ -348,9 +483,16 @@ class InstanceNodeDistribution extends AbstractModel {
|
|
|
348
483
|
if (!params) {
|
|
349
484
|
return;
|
|
350
485
|
}
|
|
351
|
-
this.
|
|
352
|
-
this.
|
|
353
|
-
this.
|
|
486
|
+
this.ClusterId = 'ClusterId' in params ? params.ClusterId : null;
|
|
487
|
+
this.NamespaceId = 'NamespaceId' in params ? params.NamespaceId : null;
|
|
488
|
+
this.Offset = 'Offset' in params ? params.Offset : null;
|
|
489
|
+
this.Limit = 'Limit' in params ? params.Limit : null;
|
|
490
|
+
this.FilterTopic = 'FilterTopic' in params ? params.FilterTopic : null;
|
|
491
|
+
this.FilterGroup = 'FilterGroup' in params ? params.FilterGroup : null;
|
|
492
|
+
this.SortedBy = 'SortedBy' in params ? params.SortedBy : null;
|
|
493
|
+
this.SortOrder = 'SortOrder' in params ? params.SortOrder : null;
|
|
494
|
+
this.FilterOneGroup = 'FilterOneGroup' in params ? params.FilterOneGroup : null;
|
|
495
|
+
this.Types = 'Types' in params ? params.Types : null;
|
|
354
496
|
|
|
355
497
|
}
|
|
356
498
|
}
|
|
@@ -432,6 +574,55 @@ class CreateRocketMQGroupRequest extends AbstractModel {
|
|
|
432
574
|
}
|
|
433
575
|
}
|
|
434
576
|
|
|
577
|
+
/**
|
|
578
|
+
* ModifyRabbitMQVirtualHost request structure.
|
|
579
|
+
* @class
|
|
580
|
+
*/
|
|
581
|
+
class ModifyRabbitMQVirtualHostRequest extends AbstractModel {
|
|
582
|
+
constructor(){
|
|
583
|
+
super();
|
|
584
|
+
|
|
585
|
+
/**
|
|
586
|
+
* Cluster instance ID
|
|
587
|
+
* @type {string || null}
|
|
588
|
+
*/
|
|
589
|
+
this.InstanceId = null;
|
|
590
|
+
|
|
591
|
+
/**
|
|
592
|
+
* Vhost name
|
|
593
|
+
* @type {string || null}
|
|
594
|
+
*/
|
|
595
|
+
this.VirtualHost = null;
|
|
596
|
+
|
|
597
|
+
/**
|
|
598
|
+
* Description
|
|
599
|
+
* @type {string || null}
|
|
600
|
+
*/
|
|
601
|
+
this.Description = null;
|
|
602
|
+
|
|
603
|
+
/**
|
|
604
|
+
* Message trace flag. Valid values: `true` (Enabled), `false` (Disabled).
|
|
605
|
+
* @type {boolean || null}
|
|
606
|
+
*/
|
|
607
|
+
this.TraceFlag = null;
|
|
608
|
+
|
|
609
|
+
}
|
|
610
|
+
|
|
611
|
+
/**
|
|
612
|
+
* @private
|
|
613
|
+
*/
|
|
614
|
+
deserialize(params) {
|
|
615
|
+
if (!params) {
|
|
616
|
+
return;
|
|
617
|
+
}
|
|
618
|
+
this.InstanceId = 'InstanceId' in params ? params.InstanceId : null;
|
|
619
|
+
this.VirtualHost = 'VirtualHost' in params ? params.VirtualHost : null;
|
|
620
|
+
this.Description = 'Description' in params ? params.Description : null;
|
|
621
|
+
this.TraceFlag = 'TraceFlag' in params ? params.TraceFlag : null;
|
|
622
|
+
|
|
623
|
+
}
|
|
624
|
+
}
|
|
625
|
+
|
|
435
626
|
/**
|
|
436
627
|
* ModifyEnvironmentAttributes request structure.
|
|
437
628
|
* @class
|
|
@@ -470,6 +661,12 @@ class ModifyEnvironmentAttributesRequest extends AbstractModel {
|
|
|
470
661
|
*/
|
|
471
662
|
this.RetentionPolicy = null;
|
|
472
663
|
|
|
664
|
+
/**
|
|
665
|
+
* Whether to enable "Auto-Create Subscription"
|
|
666
|
+
* @type {boolean || null}
|
|
667
|
+
*/
|
|
668
|
+
this.AutoSubscriptionCreation = null;
|
|
669
|
+
|
|
473
670
|
}
|
|
474
671
|
|
|
475
672
|
/**
|
|
@@ -489,6 +686,7 @@ class ModifyEnvironmentAttributesRequest extends AbstractModel {
|
|
|
489
686
|
obj.deserialize(params.RetentionPolicy)
|
|
490
687
|
this.RetentionPolicy = obj;
|
|
491
688
|
}
|
|
689
|
+
this.AutoSubscriptionCreation = 'AutoSubscriptionCreation' in params ? params.AutoSubscriptionCreation : null;
|
|
492
690
|
|
|
493
691
|
}
|
|
494
692
|
}
|
|
@@ -821,18 +1019,40 @@ class DescribeRocketMQNamespacesResponse extends AbstractModel {
|
|
|
821
1019
|
}
|
|
822
1020
|
|
|
823
1021
|
/**
|
|
824
|
-
*
|
|
1022
|
+
* ModifyRocketMQInstanceSpec request structure.
|
|
825
1023
|
* @class
|
|
826
1024
|
*/
|
|
827
|
-
class
|
|
1025
|
+
class ModifyRocketMQInstanceSpecRequest extends AbstractModel {
|
|
828
1026
|
constructor(){
|
|
829
1027
|
super();
|
|
830
1028
|
|
|
831
1029
|
/**
|
|
832
|
-
*
|
|
1030
|
+
* ID of the exclusive instance
|
|
833
1031
|
* @type {string || null}
|
|
834
1032
|
*/
|
|
835
|
-
this.
|
|
1033
|
+
this.InstanceId = null;
|
|
1034
|
+
|
|
1035
|
+
/**
|
|
1036
|
+
* Instance specification.
|
|
1037
|
+
Valid values: `rocket-vip-basic-1` (Basic),
|
|
1038
|
+
`rocket-vip-basic-2` (Standard),
|
|
1039
|
+
`rocket-vip-basic-3` (Advanced I),
|
|
1040
|
+
`rocket-vip-basic-4` (Advanced II).
|
|
1041
|
+
* @type {string || null}
|
|
1042
|
+
*/
|
|
1043
|
+
this.Specification = null;
|
|
1044
|
+
|
|
1045
|
+
/**
|
|
1046
|
+
* Node count
|
|
1047
|
+
* @type {number || null}
|
|
1048
|
+
*/
|
|
1049
|
+
this.NodeCount = null;
|
|
1050
|
+
|
|
1051
|
+
/**
|
|
1052
|
+
* Storage space in GB
|
|
1053
|
+
* @type {number || null}
|
|
1054
|
+
*/
|
|
1055
|
+
this.StorageSize = null;
|
|
836
1056
|
|
|
837
1057
|
}
|
|
838
1058
|
|
|
@@ -843,30 +1063,27 @@ class BindCluster extends AbstractModel {
|
|
|
843
1063
|
if (!params) {
|
|
844
1064
|
return;
|
|
845
1065
|
}
|
|
846
|
-
this.
|
|
1066
|
+
this.InstanceId = 'InstanceId' in params ? params.InstanceId : null;
|
|
1067
|
+
this.Specification = 'Specification' in params ? params.Specification : null;
|
|
1068
|
+
this.NodeCount = 'NodeCount' in params ? params.NodeCount : null;
|
|
1069
|
+
this.StorageSize = 'StorageSize' in params ? params.StorageSize : null;
|
|
847
1070
|
|
|
848
1071
|
}
|
|
849
1072
|
}
|
|
850
1073
|
|
|
851
1074
|
/**
|
|
852
|
-
*
|
|
1075
|
+
* Information of dedicated clusters
|
|
853
1076
|
* @class
|
|
854
1077
|
*/
|
|
855
|
-
class
|
|
1078
|
+
class BindCluster extends AbstractModel {
|
|
856
1079
|
constructor(){
|
|
857
1080
|
super();
|
|
858
1081
|
|
|
859
1082
|
/**
|
|
860
|
-
*
|
|
861
|
-
* @type {string || null}
|
|
862
|
-
*/
|
|
863
|
-
this.ClusterId = null;
|
|
864
|
-
|
|
865
|
-
/**
|
|
866
|
-
* The unique request ID, which is returned for each request. RequestId is required for locating a problem.
|
|
1083
|
+
* Name of a physical cluster.
|
|
867
1084
|
* @type {string || null}
|
|
868
1085
|
*/
|
|
869
|
-
this.
|
|
1086
|
+
this.ClusterName = null;
|
|
870
1087
|
|
|
871
1088
|
}
|
|
872
1089
|
|
|
@@ -877,43 +1094,30 @@ class ModifyClusterResponse extends AbstractModel {
|
|
|
877
1094
|
if (!params) {
|
|
878
1095
|
return;
|
|
879
1096
|
}
|
|
880
|
-
this.
|
|
881
|
-
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
1097
|
+
this.ClusterName = 'ClusterName' in params ? params.ClusterName : null;
|
|
882
1098
|
|
|
883
1099
|
}
|
|
884
1100
|
}
|
|
885
1101
|
|
|
886
1102
|
/**
|
|
887
|
-
*
|
|
1103
|
+
* Sort by field
|
|
888
1104
|
* @class
|
|
889
1105
|
*/
|
|
890
|
-
class
|
|
1106
|
+
class Sort extends AbstractModel {
|
|
891
1107
|
constructor(){
|
|
892
1108
|
super();
|
|
893
1109
|
|
|
894
1110
|
/**
|
|
895
|
-
*
|
|
896
|
-
* @type {
|
|
897
|
-
*/
|
|
898
|
-
this.TopicNum = null;
|
|
899
|
-
|
|
900
|
-
/**
|
|
901
|
-
* Number of produced messages
|
|
902
|
-
* @type {number || null}
|
|
903
|
-
*/
|
|
904
|
-
this.ProducedMsgNum = null;
|
|
905
|
-
|
|
906
|
-
/**
|
|
907
|
-
* Number of consumed messages
|
|
908
|
-
* @type {number || null}
|
|
1111
|
+
* Sorting field.
|
|
1112
|
+
* @type {string || null}
|
|
909
1113
|
*/
|
|
910
|
-
this.
|
|
1114
|
+
this.Name = null;
|
|
911
1115
|
|
|
912
1116
|
/**
|
|
913
|
-
*
|
|
914
|
-
* @type {
|
|
1117
|
+
* Ascending order: `ASC`; descending order: `DESC`.
|
|
1118
|
+
* @type {string || null}
|
|
915
1119
|
*/
|
|
916
|
-
this.
|
|
1120
|
+
this.Order = null;
|
|
917
1121
|
|
|
918
1122
|
}
|
|
919
1123
|
|
|
@@ -924,10 +1128,143 @@ class RocketMQClusterRecentStats extends AbstractModel {
|
|
|
924
1128
|
if (!params) {
|
|
925
1129
|
return;
|
|
926
1130
|
}
|
|
927
|
-
this.
|
|
928
|
-
this.
|
|
929
|
-
|
|
930
|
-
|
|
1131
|
+
this.Name = 'Name' in params ? params.Name : null;
|
|
1132
|
+
this.Order = 'Order' in params ? params.Order : null;
|
|
1133
|
+
|
|
1134
|
+
}
|
|
1135
|
+
}
|
|
1136
|
+
|
|
1137
|
+
/**
|
|
1138
|
+
* ModifyCluster response structure.
|
|
1139
|
+
* @class
|
|
1140
|
+
*/
|
|
1141
|
+
class ModifyClusterResponse extends AbstractModel {
|
|
1142
|
+
constructor(){
|
|
1143
|
+
super();
|
|
1144
|
+
|
|
1145
|
+
/**
|
|
1146
|
+
* Pulsar cluster ID
|
|
1147
|
+
* @type {string || null}
|
|
1148
|
+
*/
|
|
1149
|
+
this.ClusterId = null;
|
|
1150
|
+
|
|
1151
|
+
/**
|
|
1152
|
+
* The unique request ID, which is returned for each request. RequestId is required for locating a problem.
|
|
1153
|
+
* @type {string || null}
|
|
1154
|
+
*/
|
|
1155
|
+
this.RequestId = null;
|
|
1156
|
+
|
|
1157
|
+
}
|
|
1158
|
+
|
|
1159
|
+
/**
|
|
1160
|
+
* @private
|
|
1161
|
+
*/
|
|
1162
|
+
deserialize(params) {
|
|
1163
|
+
if (!params) {
|
|
1164
|
+
return;
|
|
1165
|
+
}
|
|
1166
|
+
this.ClusterId = 'ClusterId' in params ? params.ClusterId : null;
|
|
1167
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
1168
|
+
|
|
1169
|
+
}
|
|
1170
|
+
}
|
|
1171
|
+
|
|
1172
|
+
/**
|
|
1173
|
+
* SendRocketMQMessage request structure.
|
|
1174
|
+
* @class
|
|
1175
|
+
*/
|
|
1176
|
+
class SendRocketMQMessageRequest extends AbstractModel {
|
|
1177
|
+
constructor(){
|
|
1178
|
+
super();
|
|
1179
|
+
|
|
1180
|
+
/**
|
|
1181
|
+
* Cluster ID
|
|
1182
|
+
* @type {string || null}
|
|
1183
|
+
*/
|
|
1184
|
+
this.ClusterId = null;
|
|
1185
|
+
|
|
1186
|
+
/**
|
|
1187
|
+
* Namespace ID
|
|
1188
|
+
* @type {string || null}
|
|
1189
|
+
*/
|
|
1190
|
+
this.NamespaceId = null;
|
|
1191
|
+
|
|
1192
|
+
/**
|
|
1193
|
+
* Topic name
|
|
1194
|
+
* @type {string || null}
|
|
1195
|
+
*/
|
|
1196
|
+
this.TopicName = null;
|
|
1197
|
+
|
|
1198
|
+
/**
|
|
1199
|
+
* Message content
|
|
1200
|
+
* @type {string || null}
|
|
1201
|
+
*/
|
|
1202
|
+
this.MsgBody = null;
|
|
1203
|
+
|
|
1204
|
+
/**
|
|
1205
|
+
* Message key
|
|
1206
|
+
* @type {string || null}
|
|
1207
|
+
*/
|
|
1208
|
+
this.MsgKey = null;
|
|
1209
|
+
|
|
1210
|
+
/**
|
|
1211
|
+
* Message tag
|
|
1212
|
+
* @type {string || null}
|
|
1213
|
+
*/
|
|
1214
|
+
this.MsgTag = null;
|
|
1215
|
+
|
|
1216
|
+
}
|
|
1217
|
+
|
|
1218
|
+
/**
|
|
1219
|
+
* @private
|
|
1220
|
+
*/
|
|
1221
|
+
deserialize(params) {
|
|
1222
|
+
if (!params) {
|
|
1223
|
+
return;
|
|
1224
|
+
}
|
|
1225
|
+
this.ClusterId = 'ClusterId' in params ? params.ClusterId : null;
|
|
1226
|
+
this.NamespaceId = 'NamespaceId' in params ? params.NamespaceId : null;
|
|
1227
|
+
this.TopicName = 'TopicName' in params ? params.TopicName : null;
|
|
1228
|
+
this.MsgBody = 'MsgBody' in params ? params.MsgBody : null;
|
|
1229
|
+
this.MsgKey = 'MsgKey' in params ? params.MsgKey : null;
|
|
1230
|
+
this.MsgTag = 'MsgTag' in params ? params.MsgTag : null;
|
|
1231
|
+
|
|
1232
|
+
}
|
|
1233
|
+
}
|
|
1234
|
+
|
|
1235
|
+
/**
|
|
1236
|
+
* TDMQ for RabbitMQ exclusive vhost
|
|
1237
|
+
* @class
|
|
1238
|
+
*/
|
|
1239
|
+
class RabbitMQPrivateVirtualHost extends AbstractModel {
|
|
1240
|
+
constructor(){
|
|
1241
|
+
super();
|
|
1242
|
+
|
|
1243
|
+
/**
|
|
1244
|
+
* Vhost name
|
|
1245
|
+
Note: u200dThis field may return null, indicating that no valid values can be obtained.
|
|
1246
|
+
* @type {string || null}
|
|
1247
|
+
*/
|
|
1248
|
+
this.VirtualHostName = null;
|
|
1249
|
+
|
|
1250
|
+
/**
|
|
1251
|
+
* Vhost description
|
|
1252
|
+
Note: u200dThis field may return null, indicating that no valid values can be obtained.
|
|
1253
|
+
* @type {string || null}
|
|
1254
|
+
*/
|
|
1255
|
+
this.Description = null;
|
|
1256
|
+
|
|
1257
|
+
}
|
|
1258
|
+
|
|
1259
|
+
/**
|
|
1260
|
+
* @private
|
|
1261
|
+
*/
|
|
1262
|
+
deserialize(params) {
|
|
1263
|
+
if (!params) {
|
|
1264
|
+
return;
|
|
1265
|
+
}
|
|
1266
|
+
this.VirtualHostName = 'VirtualHostName' in params ? params.VirtualHostName : null;
|
|
1267
|
+
this.Description = 'Description' in params ? params.Description : null;
|
|
931
1268
|
|
|
932
1269
|
}
|
|
933
1270
|
}
|
|
@@ -1026,6 +1363,27 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
1026
1363
|
*/
|
|
1027
1364
|
this.SpecName = null;
|
|
1028
1365
|
|
|
1366
|
+
/**
|
|
1367
|
+
* The maximum message retention period in hours
|
|
1368
|
+
Note: u200dThis field may return null, indicating that no valid values can be obtained.
|
|
1369
|
+
* @type {number || null}
|
|
1370
|
+
*/
|
|
1371
|
+
this.MaxRetention = null;
|
|
1372
|
+
|
|
1373
|
+
/**
|
|
1374
|
+
* The minimum message retention period in hours
|
|
1375
|
+
Note: u200dThis field may return null, indicating that no valid values can be obtained.
|
|
1376
|
+
* @type {number || null}
|
|
1377
|
+
*/
|
|
1378
|
+
this.MinRetention = null;
|
|
1379
|
+
|
|
1380
|
+
/**
|
|
1381
|
+
* Instance message retention period in hours
|
|
1382
|
+
Note: u200dThis field may return null, indicating that no valid values can be obtained.
|
|
1383
|
+
* @type {number || null}
|
|
1384
|
+
*/
|
|
1385
|
+
this.Retention = null;
|
|
1386
|
+
|
|
1029
1387
|
}
|
|
1030
1388
|
|
|
1031
1389
|
/**
|
|
@@ -1049,6 +1407,9 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
1049
1407
|
this.PayMode = 'PayMode' in params ? params.PayMode : null;
|
|
1050
1408
|
this.Remark = 'Remark' in params ? params.Remark : null;
|
|
1051
1409
|
this.SpecName = 'SpecName' in params ? params.SpecName : null;
|
|
1410
|
+
this.MaxRetention = 'MaxRetention' in params ? params.MaxRetention : null;
|
|
1411
|
+
this.MinRetention = 'MinRetention' in params ? params.MinRetention : null;
|
|
1412
|
+
this.Retention = 'Retention' in params ? params.Retention : null;
|
|
1052
1413
|
|
|
1053
1414
|
}
|
|
1054
1415
|
}
|
|
@@ -1154,6 +1515,13 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
1154
1515
|
*/
|
|
1155
1516
|
this.ExceptionInformation = null;
|
|
1156
1517
|
|
|
1518
|
+
/**
|
|
1519
|
+
* Instance status. Valid values: `0` (Creating), `1` (Normal), `2` (Isolated), `3` (Terminated), `4` (Abnormal), `5` (Delivery failed).
|
|
1520
|
+
This parameter is used to display the instance status additionally and distinguish from the `Status` parameter.
|
|
1521
|
+
* @type {number || null}
|
|
1522
|
+
*/
|
|
1523
|
+
this.ClusterStatus = null;
|
|
1524
|
+
|
|
1157
1525
|
}
|
|
1158
1526
|
|
|
1159
1527
|
/**
|
|
@@ -1178,6 +1546,7 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
1178
1546
|
this.Remark = 'Remark' in params ? params.Remark : null;
|
|
1179
1547
|
this.SpecName = 'SpecName' in params ? params.SpecName : null;
|
|
1180
1548
|
this.ExceptionInformation = 'ExceptionInformation' in params ? params.ExceptionInformation : null;
|
|
1549
|
+
this.ClusterStatus = 'ClusterStatus' in params ? params.ClusterStatus : null;
|
|
1181
1550
|
|
|
1182
1551
|
}
|
|
1183
1552
|
}
|
|
@@ -1324,6 +1693,41 @@ class CreateRabbitMQVipInstanceRequest extends AbstractModel {
|
|
|
1324
1693
|
}
|
|
1325
1694
|
}
|
|
1326
1695
|
|
|
1696
|
+
/**
|
|
1697
|
+
* CreateRabbitMQVirtualHost response structure.
|
|
1698
|
+
* @class
|
|
1699
|
+
*/
|
|
1700
|
+
class CreateRabbitMQVirtualHostResponse extends AbstractModel {
|
|
1701
|
+
constructor(){
|
|
1702
|
+
super();
|
|
1703
|
+
|
|
1704
|
+
/**
|
|
1705
|
+
* Vhost name
|
|
1706
|
+
* @type {string || null}
|
|
1707
|
+
*/
|
|
1708
|
+
this.VirtualHost = null;
|
|
1709
|
+
|
|
1710
|
+
/**
|
|
1711
|
+
* The unique request ID, which is returned for each request. RequestId is required for locating a problem.
|
|
1712
|
+
* @type {string || null}
|
|
1713
|
+
*/
|
|
1714
|
+
this.RequestId = null;
|
|
1715
|
+
|
|
1716
|
+
}
|
|
1717
|
+
|
|
1718
|
+
/**
|
|
1719
|
+
* @private
|
|
1720
|
+
*/
|
|
1721
|
+
deserialize(params) {
|
|
1722
|
+
if (!params) {
|
|
1723
|
+
return;
|
|
1724
|
+
}
|
|
1725
|
+
this.VirtualHost = 'VirtualHost' in params ? params.VirtualHost : null;
|
|
1726
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
1727
|
+
|
|
1728
|
+
}
|
|
1729
|
+
}
|
|
1730
|
+
|
|
1327
1731
|
/**
|
|
1328
1732
|
* DescribeRabbitMQNodeList request structure.
|
|
1329
1733
|
* @class
|
|
@@ -1998,6 +2402,168 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
1998
2402
|
}
|
|
1999
2403
|
}
|
|
2000
2404
|
|
|
2405
|
+
/**
|
|
2406
|
+
* ModifyRabbitMQUser request structure.
|
|
2407
|
+
* @class
|
|
2408
|
+
*/
|
|
2409
|
+
class ModifyRabbitMQUserRequest extends AbstractModel {
|
|
2410
|
+
constructor(){
|
|
2411
|
+
super();
|
|
2412
|
+
|
|
2413
|
+
/**
|
|
2414
|
+
* Cluster instance ID
|
|
2415
|
+
* @type {string || null}
|
|
2416
|
+
*/
|
|
2417
|
+
this.InstanceId = null;
|
|
2418
|
+
|
|
2419
|
+
/**
|
|
2420
|
+
* Username, which is used for login.
|
|
2421
|
+
* @type {string || null}
|
|
2422
|
+
*/
|
|
2423
|
+
this.User = null;
|
|
2424
|
+
|
|
2425
|
+
/**
|
|
2426
|
+
* Password, which is used for login.
|
|
2427
|
+
* @type {string || null}
|
|
2428
|
+
*/
|
|
2429
|
+
this.Password = null;
|
|
2430
|
+
|
|
2431
|
+
/**
|
|
2432
|
+
* Description. If this parameter is not passed in, it won't be modified.
|
|
2433
|
+
* @type {string || null}
|
|
2434
|
+
*/
|
|
2435
|
+
this.Description = null;
|
|
2436
|
+
|
|
2437
|
+
/**
|
|
2438
|
+
* User tag, which defines a user's permission scope for accessing RabbitMQ Management. If this parameter is not passed in, it won't be modified.
|
|
2439
|
+
* @type {Array.<string> || null}
|
|
2440
|
+
*/
|
|
2441
|
+
this.Tags = null;
|
|
2442
|
+
|
|
2443
|
+
/**
|
|
2444
|
+
* The maximum number of connections for the user. If this parameter is not passed in, it won't be modified.
|
|
2445
|
+
* @type {number || null}
|
|
2446
|
+
*/
|
|
2447
|
+
this.MaxConnections = null;
|
|
2448
|
+
|
|
2449
|
+
/**
|
|
2450
|
+
* The maximum number of channels for the user. If this parameter is not passed in, it won't be modified.
|
|
2451
|
+
* @type {number || null}
|
|
2452
|
+
*/
|
|
2453
|
+
this.MaxChannels = null;
|
|
2454
|
+
|
|
2455
|
+
}
|
|
2456
|
+
|
|
2457
|
+
/**
|
|
2458
|
+
* @private
|
|
2459
|
+
*/
|
|
2460
|
+
deserialize(params) {
|
|
2461
|
+
if (!params) {
|
|
2462
|
+
return;
|
|
2463
|
+
}
|
|
2464
|
+
this.InstanceId = 'InstanceId' in params ? params.InstanceId : null;
|
|
2465
|
+
this.User = 'User' in params ? params.User : null;
|
|
2466
|
+
this.Password = 'Password' in params ? params.Password : null;
|
|
2467
|
+
this.Description = 'Description' in params ? params.Description : null;
|
|
2468
|
+
this.Tags = 'Tags' in params ? params.Tags : null;
|
|
2469
|
+
this.MaxConnections = 'MaxConnections' in params ? params.MaxConnections : null;
|
|
2470
|
+
this.MaxChannels = 'MaxChannels' in params ? params.MaxChannels : null;
|
|
2471
|
+
|
|
2472
|
+
}
|
|
2473
|
+
}
|
|
2474
|
+
|
|
2475
|
+
/**
|
|
2476
|
+
* RocketMQ cluster configuration
|
|
2477
|
+
* @class
|
|
2478
|
+
*/
|
|
2479
|
+
class RocketMQClusterConfig extends AbstractModel {
|
|
2480
|
+
constructor(){
|
|
2481
|
+
super();
|
|
2482
|
+
|
|
2483
|
+
/**
|
|
2484
|
+
* Maximum TPS per namespace
|
|
2485
|
+
* @type {number || null}
|
|
2486
|
+
*/
|
|
2487
|
+
this.MaxTpsPerNamespace = null;
|
|
2488
|
+
|
|
2489
|
+
/**
|
|
2490
|
+
* Maximum number of namespaces
|
|
2491
|
+
* @type {number || null}
|
|
2492
|
+
*/
|
|
2493
|
+
this.MaxNamespaceNum = null;
|
|
2494
|
+
|
|
2495
|
+
/**
|
|
2496
|
+
* Number of used namespaces
|
|
2497
|
+
* @type {number || null}
|
|
2498
|
+
*/
|
|
2499
|
+
this.UsedNamespaceNum = null;
|
|
2500
|
+
|
|
2501
|
+
/**
|
|
2502
|
+
* Maximum number of topics
|
|
2503
|
+
* @type {number || null}
|
|
2504
|
+
*/
|
|
2505
|
+
this.MaxTopicNum = null;
|
|
2506
|
+
|
|
2507
|
+
/**
|
|
2508
|
+
* Number of used topics
|
|
2509
|
+
* @type {number || null}
|
|
2510
|
+
*/
|
|
2511
|
+
this.UsedTopicNum = null;
|
|
2512
|
+
|
|
2513
|
+
/**
|
|
2514
|
+
* Maximum number of groups
|
|
2515
|
+
* @type {number || null}
|
|
2516
|
+
*/
|
|
2517
|
+
this.MaxGroupNum = null;
|
|
2518
|
+
|
|
2519
|
+
/**
|
|
2520
|
+
* Number of used groups
|
|
2521
|
+
* @type {number || null}
|
|
2522
|
+
*/
|
|
2523
|
+
this.UsedGroupNum = null;
|
|
2524
|
+
|
|
2525
|
+
/**
|
|
2526
|
+
* Maximum message retention period in milliseconds
|
|
2527
|
+
* @type {number || null}
|
|
2528
|
+
*/
|
|
2529
|
+
this.MaxRetentionTime = null;
|
|
2530
|
+
|
|
2531
|
+
/**
|
|
2532
|
+
* Maximum message delay in milliseconds
|
|
2533
|
+
* @type {number || null}
|
|
2534
|
+
*/
|
|
2535
|
+
this.MaxLatencyTime = null;
|
|
2536
|
+
|
|
2537
|
+
/**
|
|
2538
|
+
* The maximum number of queues in a single topic
|
|
2539
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
2540
|
+
* @type {number || null}
|
|
2541
|
+
*/
|
|
2542
|
+
this.MaxQueuesPerTopic = null;
|
|
2543
|
+
|
|
2544
|
+
}
|
|
2545
|
+
|
|
2546
|
+
/**
|
|
2547
|
+
* @private
|
|
2548
|
+
*/
|
|
2549
|
+
deserialize(params) {
|
|
2550
|
+
if (!params) {
|
|
2551
|
+
return;
|
|
2552
|
+
}
|
|
2553
|
+
this.MaxTpsPerNamespace = 'MaxTpsPerNamespace' in params ? params.MaxTpsPerNamespace : null;
|
|
2554
|
+
this.MaxNamespaceNum = 'MaxNamespaceNum' in params ? params.MaxNamespaceNum : null;
|
|
2555
|
+
this.UsedNamespaceNum = 'UsedNamespaceNum' in params ? params.UsedNamespaceNum : null;
|
|
2556
|
+
this.MaxTopicNum = 'MaxTopicNum' in params ? params.MaxTopicNum : null;
|
|
2557
|
+
this.UsedTopicNum = 'UsedTopicNum' in params ? params.UsedTopicNum : null;
|
|
2558
|
+
this.MaxGroupNum = 'MaxGroupNum' in params ? params.MaxGroupNum : null;
|
|
2559
|
+
this.UsedGroupNum = 'UsedGroupNum' in params ? params.UsedGroupNum : null;
|
|
2560
|
+
this.MaxRetentionTime = 'MaxRetentionTime' in params ? params.MaxRetentionTime : null;
|
|
2561
|
+
this.MaxLatencyTime = 'MaxLatencyTime' in params ? params.MaxLatencyTime : null;
|
|
2562
|
+
this.MaxQueuesPerTopic = 'MaxQueuesPerTopic' in params ? params.MaxQueuesPerTopic : null;
|
|
2563
|
+
|
|
2564
|
+
}
|
|
2565
|
+
}
|
|
2566
|
+
|
|
2001
2567
|
/**
|
|
2002
2568
|
* DeleteCmqTopic response structure.
|
|
2003
2569
|
* @class
|
|
@@ -2124,13 +2690,13 @@ class CreateRocketMQNamespaceRequest extends AbstractModel {
|
|
|
2124
2690
|
this.NamespaceId = null;
|
|
2125
2691
|
|
|
2126
2692
|
/**
|
|
2127
|
-
*
|
|
2693
|
+
* This parameter is disused.
|
|
2128
2694
|
* @type {number || null}
|
|
2129
2695
|
*/
|
|
2130
2696
|
this.Ttl = null;
|
|
2131
2697
|
|
|
2132
2698
|
/**
|
|
2133
|
-
*
|
|
2699
|
+
* This parameter is disused.
|
|
2134
2700
|
* @type {number || null}
|
|
2135
2701
|
*/
|
|
2136
2702
|
this.RetentionTime = null;
|
|
@@ -2159,6 +2725,156 @@ class CreateRocketMQNamespaceRequest extends AbstractModel {
|
|
|
2159
2725
|
}
|
|
2160
2726
|
}
|
|
2161
2727
|
|
|
2728
|
+
/**
|
|
2729
|
+
* TDMQ for RabbitMQ vhost details
|
|
2730
|
+
* @class
|
|
2731
|
+
*/
|
|
2732
|
+
class RabbitMQVirtualHostInfo extends AbstractModel {
|
|
2733
|
+
constructor(){
|
|
2734
|
+
super();
|
|
2735
|
+
|
|
2736
|
+
/**
|
|
2737
|
+
* Cluster instance ID
|
|
2738
|
+
* @type {string || null}
|
|
2739
|
+
*/
|
|
2740
|
+
this.InstanceId = null;
|
|
2741
|
+
|
|
2742
|
+
/**
|
|
2743
|
+
* Vhost name
|
|
2744
|
+
* @type {string || null}
|
|
2745
|
+
*/
|
|
2746
|
+
this.VirtualHost = null;
|
|
2747
|
+
|
|
2748
|
+
/**
|
|
2749
|
+
* Vhost description
|
|
2750
|
+
Note: u200dThis field may return null, indicating that no valid values can be obtained.
|
|
2751
|
+
* @type {string || null}
|
|
2752
|
+
*/
|
|
2753
|
+
this.Description = null;
|
|
2754
|
+
|
|
2755
|
+
/**
|
|
2756
|
+
* Vhost tag
|
|
2757
|
+
Note: u200dThis field may return null, indicating that no valid values can be obtained.
|
|
2758
|
+
* @type {Array.<string> || null}
|
|
2759
|
+
*/
|
|
2760
|
+
this.Tags = null;
|
|
2761
|
+
|
|
2762
|
+
/**
|
|
2763
|
+
* Creation time
|
|
2764
|
+
Note: u200dThis field may return null, indicating that no valid values can be obtained.
|
|
2765
|
+
* @type {string || null}
|
|
2766
|
+
*/
|
|
2767
|
+
this.CreateTime = null;
|
|
2768
|
+
|
|
2769
|
+
/**
|
|
2770
|
+
* Modification time
|
|
2771
|
+
Note: u200dThis field may return null, indicating that no valid values can be obtained.
|
|
2772
|
+
* @type {string || null}
|
|
2773
|
+
*/
|
|
2774
|
+
this.ModifyTime = null;
|
|
2775
|
+
|
|
2776
|
+
/**
|
|
2777
|
+
* Statistics of vhost overview
|
|
2778
|
+
Note: u200dThis field may return null, indicating that no valid values can be obtained.
|
|
2779
|
+
* @type {RabbitMQVirtualHostStatistics || null}
|
|
2780
|
+
*/
|
|
2781
|
+
this.VirtualHostStatistics = null;
|
|
2782
|
+
|
|
2783
|
+
/**
|
|
2784
|
+
*
|
|
2785
|
+
* @type {string || null}
|
|
2786
|
+
*/
|
|
2787
|
+
this.Status = null;
|
|
2788
|
+
|
|
2789
|
+
/**
|
|
2790
|
+
*
|
|
2791
|
+
* @type {number || null}
|
|
2792
|
+
*/
|
|
2793
|
+
this.MessageHeapCount = null;
|
|
2794
|
+
|
|
2795
|
+
/**
|
|
2796
|
+
*
|
|
2797
|
+
* @type {number || null}
|
|
2798
|
+
*/
|
|
2799
|
+
this.MessageRateIn = null;
|
|
2800
|
+
|
|
2801
|
+
/**
|
|
2802
|
+
*
|
|
2803
|
+
* @type {number || null}
|
|
2804
|
+
*/
|
|
2805
|
+
this.MessageRateOut = null;
|
|
2806
|
+
|
|
2807
|
+
}
|
|
2808
|
+
|
|
2809
|
+
/**
|
|
2810
|
+
* @private
|
|
2811
|
+
*/
|
|
2812
|
+
deserialize(params) {
|
|
2813
|
+
if (!params) {
|
|
2814
|
+
return;
|
|
2815
|
+
}
|
|
2816
|
+
this.InstanceId = 'InstanceId' in params ? params.InstanceId : null;
|
|
2817
|
+
this.VirtualHost = 'VirtualHost' in params ? params.VirtualHost : null;
|
|
2818
|
+
this.Description = 'Description' in params ? params.Description : null;
|
|
2819
|
+
this.Tags = 'Tags' in params ? params.Tags : null;
|
|
2820
|
+
this.CreateTime = 'CreateTime' in params ? params.CreateTime : null;
|
|
2821
|
+
this.ModifyTime = 'ModifyTime' in params ? params.ModifyTime : null;
|
|
2822
|
+
|
|
2823
|
+
if (params.VirtualHostStatistics) {
|
|
2824
|
+
let obj = new RabbitMQVirtualHostStatistics();
|
|
2825
|
+
obj.deserialize(params.VirtualHostStatistics)
|
|
2826
|
+
this.VirtualHostStatistics = obj;
|
|
2827
|
+
}
|
|
2828
|
+
this.Status = 'Status' in params ? params.Status : null;
|
|
2829
|
+
this.MessageHeapCount = 'MessageHeapCount' in params ? params.MessageHeapCount : null;
|
|
2830
|
+
this.MessageRateIn = 'MessageRateIn' in params ? params.MessageRateIn : null;
|
|
2831
|
+
this.MessageRateOut = 'MessageRateOut' in params ? params.MessageRateOut : null;
|
|
2832
|
+
|
|
2833
|
+
}
|
|
2834
|
+
}
|
|
2835
|
+
|
|
2836
|
+
/**
|
|
2837
|
+
* Information of instance node distribution
|
|
2838
|
+
* @class
|
|
2839
|
+
*/
|
|
2840
|
+
class InstanceNodeDistribution extends AbstractModel {
|
|
2841
|
+
constructor(){
|
|
2842
|
+
super();
|
|
2843
|
+
|
|
2844
|
+
/**
|
|
2845
|
+
* AZ
|
|
2846
|
+
* @type {string || null}
|
|
2847
|
+
*/
|
|
2848
|
+
this.ZoneName = null;
|
|
2849
|
+
|
|
2850
|
+
/**
|
|
2851
|
+
* AZ ID
|
|
2852
|
+
* @type {string || null}
|
|
2853
|
+
*/
|
|
2854
|
+
this.ZoneId = null;
|
|
2855
|
+
|
|
2856
|
+
/**
|
|
2857
|
+
* Number of nodes
|
|
2858
|
+
* @type {number || null}
|
|
2859
|
+
*/
|
|
2860
|
+
this.NodeCount = null;
|
|
2861
|
+
|
|
2862
|
+
}
|
|
2863
|
+
|
|
2864
|
+
/**
|
|
2865
|
+
* @private
|
|
2866
|
+
*/
|
|
2867
|
+
deserialize(params) {
|
|
2868
|
+
if (!params) {
|
|
2869
|
+
return;
|
|
2870
|
+
}
|
|
2871
|
+
this.ZoneName = 'ZoneName' in params ? params.ZoneName : null;
|
|
2872
|
+
this.ZoneId = 'ZoneId' in params ? params.ZoneId : null;
|
|
2873
|
+
this.NodeCount = 'NodeCount' in params ? params.NodeCount : null;
|
|
2874
|
+
|
|
2875
|
+
}
|
|
2876
|
+
}
|
|
2877
|
+
|
|
2162
2878
|
/**
|
|
2163
2879
|
* DescribeCmqTopicDetail response structure.
|
|
2164
2880
|
* @class
|
|
@@ -2167,12 +2883,46 @@ class DescribeCmqTopicDetailResponse extends AbstractModel {
|
|
|
2167
2883
|
constructor(){
|
|
2168
2884
|
super();
|
|
2169
2885
|
|
|
2170
|
-
/**
|
|
2171
|
-
* Topic details
|
|
2172
|
-
* @type {CmqTopic || null}
|
|
2173
|
-
*/
|
|
2174
|
-
this.TopicDescribe = null;
|
|
2175
|
-
|
|
2886
|
+
/**
|
|
2887
|
+
* Topic details
|
|
2888
|
+
* @type {CmqTopic || null}
|
|
2889
|
+
*/
|
|
2890
|
+
this.TopicDescribe = null;
|
|
2891
|
+
|
|
2892
|
+
/**
|
|
2893
|
+
* The unique request ID, which is returned for each request. RequestId is required for locating a problem.
|
|
2894
|
+
* @type {string || null}
|
|
2895
|
+
*/
|
|
2896
|
+
this.RequestId = null;
|
|
2897
|
+
|
|
2898
|
+
}
|
|
2899
|
+
|
|
2900
|
+
/**
|
|
2901
|
+
* @private
|
|
2902
|
+
*/
|
|
2903
|
+
deserialize(params) {
|
|
2904
|
+
if (!params) {
|
|
2905
|
+
return;
|
|
2906
|
+
}
|
|
2907
|
+
|
|
2908
|
+
if (params.TopicDescribe) {
|
|
2909
|
+
let obj = new CmqTopic();
|
|
2910
|
+
obj.deserialize(params.TopicDescribe)
|
|
2911
|
+
this.TopicDescribe = obj;
|
|
2912
|
+
}
|
|
2913
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
2914
|
+
|
|
2915
|
+
}
|
|
2916
|
+
}
|
|
2917
|
+
|
|
2918
|
+
/**
|
|
2919
|
+
* ModifyRabbitMQVirtualHost response structure.
|
|
2920
|
+
* @class
|
|
2921
|
+
*/
|
|
2922
|
+
class ModifyRabbitMQVirtualHostResponse extends AbstractModel {
|
|
2923
|
+
constructor(){
|
|
2924
|
+
super();
|
|
2925
|
+
|
|
2176
2926
|
/**
|
|
2177
2927
|
* The unique request ID, which is returned for each request. RequestId is required for locating a problem.
|
|
2178
2928
|
* @type {string || null}
|
|
@@ -2188,12 +2938,6 @@ class DescribeCmqTopicDetailResponse extends AbstractModel {
|
|
|
2188
2938
|
if (!params) {
|
|
2189
2939
|
return;
|
|
2190
2940
|
}
|
|
2191
|
-
|
|
2192
|
-
if (params.TopicDescribe) {
|
|
2193
|
-
let obj = new CmqTopic();
|
|
2194
|
-
obj.deserialize(params.TopicDescribe)
|
|
2195
|
-
this.TopicDescribe = obj;
|
|
2196
|
-
}
|
|
2197
2941
|
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
2198
2942
|
|
|
2199
2943
|
}
|
|
@@ -2548,6 +3292,62 @@ Note: this field may return null, indicating that no valid values can be obtaine
|
|
|
2548
3292
|
}
|
|
2549
3293
|
}
|
|
2550
3294
|
|
|
3295
|
+
/**
|
|
3296
|
+
* Statistics of vhost overview
|
|
3297
|
+
* @class
|
|
3298
|
+
*/
|
|
3299
|
+
class RabbitMQVirtualHostStatistics extends AbstractModel {
|
|
3300
|
+
constructor(){
|
|
3301
|
+
super();
|
|
3302
|
+
|
|
3303
|
+
/**
|
|
3304
|
+
* The number of queues in the current vhost
|
|
3305
|
+
* @type {number || null}
|
|
3306
|
+
*/
|
|
3307
|
+
this.CurrentQueues = null;
|
|
3308
|
+
|
|
3309
|
+
/**
|
|
3310
|
+
* The number of exchanges in the current vhost
|
|
3311
|
+
* @type {number || null}
|
|
3312
|
+
*/
|
|
3313
|
+
this.CurrentExchanges = null;
|
|
3314
|
+
|
|
3315
|
+
/**
|
|
3316
|
+
* The number of connections in the current vhost
|
|
3317
|
+
* @type {number || null}
|
|
3318
|
+
*/
|
|
3319
|
+
this.CurrentConnections = null;
|
|
3320
|
+
|
|
3321
|
+
/**
|
|
3322
|
+
* The number of channels in the current vhost
|
|
3323
|
+
* @type {number || null}
|
|
3324
|
+
*/
|
|
3325
|
+
this.CurrentChannels = null;
|
|
3326
|
+
|
|
3327
|
+
/**
|
|
3328
|
+
* The number of users in the current vhost
|
|
3329
|
+
* @type {number || null}
|
|
3330
|
+
*/
|
|
3331
|
+
this.CurrentUsers = null;
|
|
3332
|
+
|
|
3333
|
+
}
|
|
3334
|
+
|
|
3335
|
+
/**
|
|
3336
|
+
* @private
|
|
3337
|
+
*/
|
|
3338
|
+
deserialize(params) {
|
|
3339
|
+
if (!params) {
|
|
3340
|
+
return;
|
|
3341
|
+
}
|
|
3342
|
+
this.CurrentQueues = 'CurrentQueues' in params ? params.CurrentQueues : null;
|
|
3343
|
+
this.CurrentExchanges = 'CurrentExchanges' in params ? params.CurrentExchanges : null;
|
|
3344
|
+
this.CurrentConnections = 'CurrentConnections' in params ? params.CurrentConnections : null;
|
|
3345
|
+
this.CurrentChannels = 'CurrentChannels' in params ? params.CurrentChannels : null;
|
|
3346
|
+
this.CurrentUsers = 'CurrentUsers' in params ? params.CurrentUsers : null;
|
|
3347
|
+
|
|
3348
|
+
}
|
|
3349
|
+
}
|
|
3350
|
+
|
|
2551
3351
|
/**
|
|
2552
3352
|
* CreateSubscription response structure.
|
|
2553
3353
|
* @class
|
|
@@ -3187,6 +3987,12 @@ class CreateEnvironmentRequest extends AbstractModel {
|
|
|
3187
3987
|
*/
|
|
3188
3988
|
this.RetentionPolicy = null;
|
|
3189
3989
|
|
|
3990
|
+
/**
|
|
3991
|
+
* Whether to enable "Auto-Create Subscription"
|
|
3992
|
+
* @type {boolean || null}
|
|
3993
|
+
*/
|
|
3994
|
+
this.AutoSubscriptionCreation = null;
|
|
3995
|
+
|
|
3190
3996
|
}
|
|
3191
3997
|
|
|
3192
3998
|
/**
|
|
@@ -3206,6 +4012,7 @@ class CreateEnvironmentRequest extends AbstractModel {
|
|
|
3206
4012
|
obj.deserialize(params.RetentionPolicy)
|
|
3207
4013
|
this.RetentionPolicy = obj;
|
|
3208
4014
|
}
|
|
4015
|
+
this.AutoSubscriptionCreation = 'AutoSubscriptionCreation' in params ? params.AutoSubscriptionCreation : null;
|
|
3209
4016
|
|
|
3210
4017
|
}
|
|
3211
4018
|
}
|
|
@@ -3253,6 +4060,64 @@ class DeleteTopicsResponse extends AbstractModel {
|
|
|
3253
4060
|
}
|
|
3254
4061
|
}
|
|
3255
4062
|
|
|
4063
|
+
/**
|
|
4064
|
+
* ModifyEnvironmentAttributes response structure.
|
|
4065
|
+
* @class
|
|
4066
|
+
*/
|
|
4067
|
+
class ModifyEnvironmentAttributesResponse extends AbstractModel {
|
|
4068
|
+
constructor(){
|
|
4069
|
+
super();
|
|
4070
|
+
|
|
4071
|
+
/**
|
|
4072
|
+
* Namespace name.
|
|
4073
|
+
* @type {string || null}
|
|
4074
|
+
*/
|
|
4075
|
+
this.EnvironmentId = null;
|
|
4076
|
+
|
|
4077
|
+
/**
|
|
4078
|
+
* TTL for unconsumed messages in seconds.
|
|
4079
|
+
* @type {number || null}
|
|
4080
|
+
*/
|
|
4081
|
+
this.MsgTTL = null;
|
|
4082
|
+
|
|
4083
|
+
/**
|
|
4084
|
+
* Remarks (up to 128 characters).
|
|
4085
|
+
Note: this field may return null, indicating that no valid values can be obtained.
|
|
4086
|
+
* @type {string || null}
|
|
4087
|
+
*/
|
|
4088
|
+
this.Remark = null;
|
|
4089
|
+
|
|
4090
|
+
/**
|
|
4091
|
+
* Namespace ID
|
|
4092
|
+
Note: this field may return null, indicating that no valid values can be obtained.
|
|
4093
|
+
* @type {string || null}
|
|
4094
|
+
*/
|
|
4095
|
+
this.NamespaceId = null;
|
|
4096
|
+
|
|
4097
|
+
/**
|
|
4098
|
+
* The unique request ID, which is returned for each request. RequestId is required for locating a problem.
|
|
4099
|
+
* @type {string || null}
|
|
4100
|
+
*/
|
|
4101
|
+
this.RequestId = null;
|
|
4102
|
+
|
|
4103
|
+
}
|
|
4104
|
+
|
|
4105
|
+
/**
|
|
4106
|
+
* @private
|
|
4107
|
+
*/
|
|
4108
|
+
deserialize(params) {
|
|
4109
|
+
if (!params) {
|
|
4110
|
+
return;
|
|
4111
|
+
}
|
|
4112
|
+
this.EnvironmentId = 'EnvironmentId' in params ? params.EnvironmentId : null;
|
|
4113
|
+
this.MsgTTL = 'MsgTTL' in params ? params.MsgTTL : null;
|
|
4114
|
+
this.Remark = 'Remark' in params ? params.Remark : null;
|
|
4115
|
+
this.NamespaceId = 'NamespaceId' in params ? params.NamespaceId : null;
|
|
4116
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
4117
|
+
|
|
4118
|
+
}
|
|
4119
|
+
}
|
|
4120
|
+
|
|
3256
4121
|
/**
|
|
3257
4122
|
* DescribeClusters request structure.
|
|
3258
4123
|
* @class
|
|
@@ -3490,31 +4355,180 @@ Note: this field may return null, indicating that no valid values can be obtaine
|
|
|
3490
4355
|
obj.deserialize(params.ClusterStats)
|
|
3491
4356
|
this.ClusterStats = obj;
|
|
3492
4357
|
}
|
|
3493
|
-
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
4358
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
4359
|
+
|
|
4360
|
+
}
|
|
4361
|
+
}
|
|
4362
|
+
|
|
4363
|
+
/**
|
|
4364
|
+
* DescribeCmqSubscriptionDetail response structure.
|
|
4365
|
+
* @class
|
|
4366
|
+
*/
|
|
4367
|
+
class DescribeCmqSubscriptionDetailResponse extends AbstractModel {
|
|
4368
|
+
constructor(){
|
|
4369
|
+
super();
|
|
4370
|
+
|
|
4371
|
+
/**
|
|
4372
|
+
* Total number
|
|
4373
|
+
* @type {number || null}
|
|
4374
|
+
*/
|
|
4375
|
+
this.TotalCount = null;
|
|
4376
|
+
|
|
4377
|
+
/**
|
|
4378
|
+
* Set of subscription attributes
|
|
4379
|
+
Note: this field may return null, indicating that no valid values can be obtained.
|
|
4380
|
+
* @type {Array.<CmqSubscription> || null}
|
|
4381
|
+
*/
|
|
4382
|
+
this.SubscriptionSet = null;
|
|
4383
|
+
|
|
4384
|
+
/**
|
|
4385
|
+
* The unique request ID, which is returned for each request. RequestId is required for locating a problem.
|
|
4386
|
+
* @type {string || null}
|
|
4387
|
+
*/
|
|
4388
|
+
this.RequestId = null;
|
|
4389
|
+
|
|
4390
|
+
}
|
|
4391
|
+
|
|
4392
|
+
/**
|
|
4393
|
+
* @private
|
|
4394
|
+
*/
|
|
4395
|
+
deserialize(params) {
|
|
4396
|
+
if (!params) {
|
|
4397
|
+
return;
|
|
4398
|
+
}
|
|
4399
|
+
this.TotalCount = 'TotalCount' in params ? params.TotalCount : null;
|
|
4400
|
+
|
|
4401
|
+
if (params.SubscriptionSet) {
|
|
4402
|
+
this.SubscriptionSet = new Array();
|
|
4403
|
+
for (let z in params.SubscriptionSet) {
|
|
4404
|
+
let obj = new CmqSubscription();
|
|
4405
|
+
obj.deserialize(params.SubscriptionSet[z]);
|
|
4406
|
+
this.SubscriptionSet.push(obj);
|
|
4407
|
+
}
|
|
4408
|
+
}
|
|
4409
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
4410
|
+
|
|
4411
|
+
}
|
|
4412
|
+
}
|
|
4413
|
+
|
|
4414
|
+
/**
|
|
4415
|
+
* VPC binding record
|
|
4416
|
+
* @class
|
|
4417
|
+
*/
|
|
4418
|
+
class VpcBindRecord extends AbstractModel {
|
|
4419
|
+
constructor(){
|
|
4420
|
+
super();
|
|
4421
|
+
|
|
4422
|
+
/**
|
|
4423
|
+
* Tenant VPC ID
|
|
4424
|
+
* @type {string || null}
|
|
4425
|
+
*/
|
|
4426
|
+
this.UniqueVpcId = null;
|
|
4427
|
+
|
|
4428
|
+
/**
|
|
4429
|
+
* Tenant VPC subnet ID
|
|
4430
|
+
* @type {string || null}
|
|
4431
|
+
*/
|
|
4432
|
+
this.UniqueSubnetId = null;
|
|
4433
|
+
|
|
4434
|
+
/**
|
|
4435
|
+
* Route ID
|
|
4436
|
+
* @type {string || null}
|
|
4437
|
+
*/
|
|
4438
|
+
this.RouterId = null;
|
|
4439
|
+
|
|
4440
|
+
/**
|
|
4441
|
+
* VPC ID
|
|
4442
|
+
* @type {string || null}
|
|
4443
|
+
*/
|
|
4444
|
+
this.Ip = null;
|
|
4445
|
+
|
|
4446
|
+
/**
|
|
4447
|
+
* VPC port
|
|
4448
|
+
* @type {number || null}
|
|
4449
|
+
*/
|
|
4450
|
+
this.Port = null;
|
|
4451
|
+
|
|
4452
|
+
/**
|
|
4453
|
+
* Remarks (up to 128 characters)
|
|
4454
|
+
Note: this field may return null, indicating that no valid values can be obtained.
|
|
4455
|
+
* @type {string || null}
|
|
4456
|
+
*/
|
|
4457
|
+
this.Remark = null;
|
|
4458
|
+
|
|
4459
|
+
}
|
|
4460
|
+
|
|
4461
|
+
/**
|
|
4462
|
+
* @private
|
|
4463
|
+
*/
|
|
4464
|
+
deserialize(params) {
|
|
4465
|
+
if (!params) {
|
|
4466
|
+
return;
|
|
4467
|
+
}
|
|
4468
|
+
this.UniqueVpcId = 'UniqueVpcId' in params ? params.UniqueVpcId : null;
|
|
4469
|
+
this.UniqueSubnetId = 'UniqueSubnetId' in params ? params.UniqueSubnetId : null;
|
|
4470
|
+
this.RouterId = 'RouterId' in params ? params.RouterId : null;
|
|
4471
|
+
this.Ip = 'Ip' in params ? params.Ip : null;
|
|
4472
|
+
this.Port = 'Port' in params ? params.Port : null;
|
|
4473
|
+
this.Remark = 'Remark' in params ? params.Remark : null;
|
|
4474
|
+
|
|
4475
|
+
}
|
|
4476
|
+
}
|
|
4477
|
+
|
|
4478
|
+
/**
|
|
4479
|
+
* RewindCmqQueue request structure.
|
|
4480
|
+
* @class
|
|
4481
|
+
*/
|
|
4482
|
+
class RewindCmqQueueRequest extends AbstractModel {
|
|
4483
|
+
constructor(){
|
|
4484
|
+
super();
|
|
4485
|
+
|
|
4486
|
+
/**
|
|
4487
|
+
* Queue name, which must be unique under the same account in the same region. It can contain up to 64 letters, digits, and hyphens and must begin with a letter.
|
|
4488
|
+
* @type {string || null}
|
|
4489
|
+
*/
|
|
4490
|
+
this.QueueName = null;
|
|
4491
|
+
|
|
4492
|
+
/**
|
|
4493
|
+
* After this time is configured, the `(Batch)receiveMessage` API will consume the messages received after this timestamp in the order in which they are produced.
|
|
4494
|
+
* @type {number || null}
|
|
4495
|
+
*/
|
|
4496
|
+
this.StartConsumeTime = null;
|
|
4497
|
+
|
|
4498
|
+
}
|
|
4499
|
+
|
|
4500
|
+
/**
|
|
4501
|
+
* @private
|
|
4502
|
+
*/
|
|
4503
|
+
deserialize(params) {
|
|
4504
|
+
if (!params) {
|
|
4505
|
+
return;
|
|
4506
|
+
}
|
|
4507
|
+
this.QueueName = 'QueueName' in params ? params.QueueName : null;
|
|
4508
|
+
this.StartConsumeTime = 'StartConsumeTime' in params ? params.StartConsumeTime : null;
|
|
3494
4509
|
|
|
3495
4510
|
}
|
|
3496
4511
|
}
|
|
3497
4512
|
|
|
3498
4513
|
/**
|
|
3499
|
-
*
|
|
4514
|
+
* DescribeRabbitMQUser response structure.
|
|
3500
4515
|
* @class
|
|
3501
4516
|
*/
|
|
3502
|
-
class
|
|
4517
|
+
class DescribeRabbitMQUserResponse extends AbstractModel {
|
|
3503
4518
|
constructor(){
|
|
3504
4519
|
super();
|
|
3505
4520
|
|
|
3506
4521
|
/**
|
|
3507
|
-
*
|
|
4522
|
+
* Returned number of users
|
|
3508
4523
|
* @type {number || null}
|
|
3509
4524
|
*/
|
|
3510
4525
|
this.TotalCount = null;
|
|
3511
4526
|
|
|
3512
4527
|
/**
|
|
3513
|
-
*
|
|
3514
|
-
|
|
3515
|
-
* @type {Array.<CmqSubscription> || null}
|
|
4528
|
+
* The list of the created TDMQ for RabbitMQ users
|
|
4529
|
+
* @type {Array.<RabbitMQUser> || null}
|
|
3516
4530
|
*/
|
|
3517
|
-
this.
|
|
4531
|
+
this.RabbitMQUserList = null;
|
|
3518
4532
|
|
|
3519
4533
|
/**
|
|
3520
4534
|
* The unique request ID, which is returned for each request. RequestId is required for locating a problem.
|
|
@@ -3533,12 +4547,12 @@ Note: this field may return null, indicating that no valid values can be obtaine
|
|
|
3533
4547
|
}
|
|
3534
4548
|
this.TotalCount = 'TotalCount' in params ? params.TotalCount : null;
|
|
3535
4549
|
|
|
3536
|
-
if (params.
|
|
3537
|
-
this.
|
|
3538
|
-
for (let z in params.
|
|
3539
|
-
let obj = new
|
|
3540
|
-
obj.deserialize(params.
|
|
3541
|
-
this.
|
|
4550
|
+
if (params.RabbitMQUserList) {
|
|
4551
|
+
this.RabbitMQUserList = new Array();
|
|
4552
|
+
for (let z in params.RabbitMQUserList) {
|
|
4553
|
+
let obj = new RabbitMQUser();
|
|
4554
|
+
obj.deserialize(params.RabbitMQUserList[z]);
|
|
4555
|
+
this.RabbitMQUserList.push(obj);
|
|
3542
4556
|
}
|
|
3543
4557
|
}
|
|
3544
4558
|
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
@@ -3547,88 +4561,62 @@ Note: this field may return null, indicating that no valid values can be obtaine
|
|
|
3547
4561
|
}
|
|
3548
4562
|
|
|
3549
4563
|
/**
|
|
3550
|
-
*
|
|
4564
|
+
* DescribeRocketMQMsg response structure.
|
|
3551
4565
|
* @class
|
|
3552
4566
|
*/
|
|
3553
|
-
class
|
|
4567
|
+
class DescribeRocketMQMsgResponse extends AbstractModel {
|
|
3554
4568
|
constructor(){
|
|
3555
4569
|
super();
|
|
3556
4570
|
|
|
3557
4571
|
/**
|
|
3558
|
-
*
|
|
4572
|
+
* Message body
|
|
3559
4573
|
* @type {string || null}
|
|
3560
4574
|
*/
|
|
3561
|
-
this.
|
|
4575
|
+
this.Body = null;
|
|
3562
4576
|
|
|
3563
4577
|
/**
|
|
3564
|
-
*
|
|
4578
|
+
* Details parameter
|
|
3565
4579
|
* @type {string || null}
|
|
3566
4580
|
*/
|
|
3567
|
-
this.
|
|
4581
|
+
this.Properties = null;
|
|
3568
4582
|
|
|
3569
4583
|
/**
|
|
3570
|
-
*
|
|
4584
|
+
* Production time
|
|
3571
4585
|
* @type {string || null}
|
|
3572
4586
|
*/
|
|
3573
|
-
this.
|
|
4587
|
+
this.ProduceTime = null;
|
|
3574
4588
|
|
|
3575
4589
|
/**
|
|
3576
|
-
*
|
|
4590
|
+
* Message ID
|
|
3577
4591
|
* @type {string || null}
|
|
3578
4592
|
*/
|
|
3579
|
-
this.
|
|
4593
|
+
this.MsgId = null;
|
|
3580
4594
|
|
|
3581
4595
|
/**
|
|
3582
|
-
*
|
|
3583
|
-
* @type {
|
|
4596
|
+
* Producer address
|
|
4597
|
+
* @type {string || null}
|
|
3584
4598
|
*/
|
|
3585
|
-
this.
|
|
4599
|
+
this.ProducerAddr = null;
|
|
3586
4600
|
|
|
3587
4601
|
/**
|
|
3588
|
-
*
|
|
3589
|
-
Note:
|
|
3590
|
-
* @type {
|
|
4602
|
+
* Consumption details of a consumer group
|
|
4603
|
+
Note: u200dThis field may return null, indicating that no valid values can be obtained.
|
|
4604
|
+
* @type {Array.<RocketMQMessageTrack> || null}
|
|
3591
4605
|
*/
|
|
3592
|
-
this.
|
|
3593
|
-
|
|
3594
|
-
}
|
|
3595
|
-
|
|
3596
|
-
/**
|
|
3597
|
-
* @private
|
|
3598
|
-
*/
|
|
3599
|
-
deserialize(params) {
|
|
3600
|
-
if (!params) {
|
|
3601
|
-
return;
|
|
3602
|
-
}
|
|
3603
|
-
this.UniqueVpcId = 'UniqueVpcId' in params ? params.UniqueVpcId : null;
|
|
3604
|
-
this.UniqueSubnetId = 'UniqueSubnetId' in params ? params.UniqueSubnetId : null;
|
|
3605
|
-
this.RouterId = 'RouterId' in params ? params.RouterId : null;
|
|
3606
|
-
this.Ip = 'Ip' in params ? params.Ip : null;
|
|
3607
|
-
this.Port = 'Port' in params ? params.Port : null;
|
|
3608
|
-
this.Remark = 'Remark' in params ? params.Remark : null;
|
|
3609
|
-
|
|
3610
|
-
}
|
|
3611
|
-
}
|
|
3612
|
-
|
|
3613
|
-
/**
|
|
3614
|
-
* RewindCmqQueue request structure.
|
|
3615
|
-
* @class
|
|
3616
|
-
*/
|
|
3617
|
-
class RewindCmqQueueRequest extends AbstractModel {
|
|
3618
|
-
constructor(){
|
|
3619
|
-
super();
|
|
4606
|
+
this.MessageTracks = null;
|
|
3620
4607
|
|
|
3621
4608
|
/**
|
|
3622
|
-
*
|
|
4609
|
+
* Topic name displayed on the details page
|
|
4610
|
+
Note: u200dThis field may return null, indicating that no valid values can be obtained.
|
|
3623
4611
|
* @type {string || null}
|
|
3624
4612
|
*/
|
|
3625
|
-
this.
|
|
4613
|
+
this.ShowTopicName = null;
|
|
3626
4614
|
|
|
3627
4615
|
/**
|
|
3628
|
-
*
|
|
3629
|
-
* @type {
|
|
4616
|
+
* The unique request ID, which is returned for each request. RequestId is required for locating a problem.
|
|
4617
|
+
* @type {string || null}
|
|
3630
4618
|
*/
|
|
3631
|
-
this.
|
|
4619
|
+
this.RequestId = null;
|
|
3632
4620
|
|
|
3633
4621
|
}
|
|
3634
4622
|
|
|
@@ -3639,8 +4627,22 @@ class RewindCmqQueueRequest extends AbstractModel {
|
|
|
3639
4627
|
if (!params) {
|
|
3640
4628
|
return;
|
|
3641
4629
|
}
|
|
3642
|
-
this.
|
|
3643
|
-
this.
|
|
4630
|
+
this.Body = 'Body' in params ? params.Body : null;
|
|
4631
|
+
this.Properties = 'Properties' in params ? params.Properties : null;
|
|
4632
|
+
this.ProduceTime = 'ProduceTime' in params ? params.ProduceTime : null;
|
|
4633
|
+
this.MsgId = 'MsgId' in params ? params.MsgId : null;
|
|
4634
|
+
this.ProducerAddr = 'ProducerAddr' in params ? params.ProducerAddr : null;
|
|
4635
|
+
|
|
4636
|
+
if (params.MessageTracks) {
|
|
4637
|
+
this.MessageTracks = new Array();
|
|
4638
|
+
for (let z in params.MessageTracks) {
|
|
4639
|
+
let obj = new RocketMQMessageTrack();
|
|
4640
|
+
obj.deserialize(params.MessageTracks[z]);
|
|
4641
|
+
this.MessageTracks.push(obj);
|
|
4642
|
+
}
|
|
4643
|
+
}
|
|
4644
|
+
this.ShowTopicName = 'ShowTopicName' in params ? params.ShowTopicName : null;
|
|
4645
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
3644
4646
|
|
|
3645
4647
|
}
|
|
3646
4648
|
}
|
|
@@ -3755,6 +4757,12 @@ class ModifyRocketMQClusterRequest extends AbstractModel {
|
|
|
3755
4757
|
*/
|
|
3756
4758
|
this.Remark = null;
|
|
3757
4759
|
|
|
4760
|
+
/**
|
|
4761
|
+
* Whether to enable the HTTP access over the public network
|
|
4762
|
+
* @type {boolean || null}
|
|
4763
|
+
*/
|
|
4764
|
+
this.PublicAccessEnabled = null;
|
|
4765
|
+
|
|
3758
4766
|
}
|
|
3759
4767
|
|
|
3760
4768
|
/**
|
|
@@ -3767,6 +4775,35 @@ class ModifyRocketMQClusterRequest extends AbstractModel {
|
|
|
3767
4775
|
this.ClusterId = 'ClusterId' in params ? params.ClusterId : null;
|
|
3768
4776
|
this.ClusterName = 'ClusterName' in params ? params.ClusterName : null;
|
|
3769
4777
|
this.Remark = 'Remark' in params ? params.Remark : null;
|
|
4778
|
+
this.PublicAccessEnabled = 'PublicAccessEnabled' in params ? params.PublicAccessEnabled : null;
|
|
4779
|
+
|
|
4780
|
+
}
|
|
4781
|
+
}
|
|
4782
|
+
|
|
4783
|
+
/**
|
|
4784
|
+
* DeleteRabbitMQVirtualHost response structure.
|
|
4785
|
+
* @class
|
|
4786
|
+
*/
|
|
4787
|
+
class DeleteRabbitMQVirtualHostResponse extends AbstractModel {
|
|
4788
|
+
constructor(){
|
|
4789
|
+
super();
|
|
4790
|
+
|
|
4791
|
+
/**
|
|
4792
|
+
* The unique request ID, which is returned for each request. RequestId is required for locating a problem.
|
|
4793
|
+
* @type {string || null}
|
|
4794
|
+
*/
|
|
4795
|
+
this.RequestId = null;
|
|
4796
|
+
|
|
4797
|
+
}
|
|
4798
|
+
|
|
4799
|
+
/**
|
|
4800
|
+
* @private
|
|
4801
|
+
*/
|
|
4802
|
+
deserialize(params) {
|
|
4803
|
+
if (!params) {
|
|
4804
|
+
return;
|
|
4805
|
+
}
|
|
4806
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
3770
4807
|
|
|
3771
4808
|
}
|
|
3772
4809
|
}
|
|
@@ -4054,30 +5091,24 @@ class CreateRocketMQClusterRequest extends AbstractModel {
|
|
|
4054
5091
|
}
|
|
4055
5092
|
|
|
4056
5093
|
/**
|
|
4057
|
-
*
|
|
5094
|
+
* CreateRabbitMQUser response structure.
|
|
4058
5095
|
* @class
|
|
4059
5096
|
*/
|
|
4060
|
-
class
|
|
5097
|
+
class CreateRabbitMQUserResponse extends AbstractModel {
|
|
4061
5098
|
constructor(){
|
|
4062
5099
|
super();
|
|
4063
5100
|
|
|
4064
5101
|
/**
|
|
4065
|
-
*
|
|
5102
|
+
* Username, which is used for login.
|
|
4066
5103
|
* @type {string || null}
|
|
4067
5104
|
*/
|
|
4068
|
-
this.
|
|
5105
|
+
this.User = null;
|
|
4069
5106
|
|
|
4070
5107
|
/**
|
|
4071
|
-
*
|
|
5108
|
+
* The unique request ID, which is returned for each request. RequestId is required for locating a problem.
|
|
4072
5109
|
* @type {string || null}
|
|
4073
5110
|
*/
|
|
4074
|
-
this.
|
|
4075
|
-
|
|
4076
|
-
/**
|
|
4077
|
-
* Delay time
|
|
4078
|
-
* @type {number || null}
|
|
4079
|
-
*/
|
|
4080
|
-
this.DelaySeconds = null;
|
|
5111
|
+
this.RequestId = null;
|
|
4081
5112
|
|
|
4082
5113
|
}
|
|
4083
5114
|
|
|
@@ -4088,9 +5119,8 @@ class SendCmqMsgRequest extends AbstractModel {
|
|
|
4088
5119
|
if (!params) {
|
|
4089
5120
|
return;
|
|
4090
5121
|
}
|
|
4091
|
-
this.
|
|
4092
|
-
this.
|
|
4093
|
-
this.DelaySeconds = 'DelaySeconds' in params ? params.DelaySeconds : null;
|
|
5122
|
+
this.User = 'User' in params ? params.User : null;
|
|
5123
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
4094
5124
|
|
|
4095
5125
|
}
|
|
4096
5126
|
}
|
|
@@ -4348,6 +5378,49 @@ class DeleteRocketMQTopicResponse extends AbstractModel {
|
|
|
4348
5378
|
}
|
|
4349
5379
|
}
|
|
4350
5380
|
|
|
5381
|
+
/**
|
|
5382
|
+
* SendRocketMQMessage response structure.
|
|
5383
|
+
* @class
|
|
5384
|
+
*/
|
|
5385
|
+
class SendRocketMQMessageResponse extends AbstractModel {
|
|
5386
|
+
constructor(){
|
|
5387
|
+
super();
|
|
5388
|
+
|
|
5389
|
+
/**
|
|
5390
|
+
* Message sending result
|
|
5391
|
+
* @type {boolean || null}
|
|
5392
|
+
*/
|
|
5393
|
+
this.Result = null;
|
|
5394
|
+
|
|
5395
|
+
/**
|
|
5396
|
+
* Message ID
|
|
5397
|
+
Note: u200dThis field may return null, indicating that no valid values can be obtained.
|
|
5398
|
+
* @type {string || null}
|
|
5399
|
+
*/
|
|
5400
|
+
this.MsgId = null;
|
|
5401
|
+
|
|
5402
|
+
/**
|
|
5403
|
+
* The unique request ID, which is returned for each request. RequestId is required for locating a problem.
|
|
5404
|
+
* @type {string || null}
|
|
5405
|
+
*/
|
|
5406
|
+
this.RequestId = null;
|
|
5407
|
+
|
|
5408
|
+
}
|
|
5409
|
+
|
|
5410
|
+
/**
|
|
5411
|
+
* @private
|
|
5412
|
+
*/
|
|
5413
|
+
deserialize(params) {
|
|
5414
|
+
if (!params) {
|
|
5415
|
+
return;
|
|
5416
|
+
}
|
|
5417
|
+
this.Result = 'Result' in params ? params.Result : null;
|
|
5418
|
+
this.MsgId = 'MsgId' in params ? params.MsgId : null;
|
|
5419
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
5420
|
+
|
|
5421
|
+
}
|
|
5422
|
+
}
|
|
5423
|
+
|
|
4351
5424
|
/**
|
|
4352
5425
|
* ModifyCmqTopicAttribute request structure.
|
|
4353
5426
|
* @class
|
|
@@ -4809,27 +5882,127 @@ Note: this field may return `null`, indicating that no valid values can be obtai
|
|
|
4809
5882
|
* DescribeSubscriptions response structure.
|
|
4810
5883
|
* @class
|
|
4811
5884
|
*/
|
|
4812
|
-
class DescribeSubscriptionsResponse extends AbstractModel {
|
|
5885
|
+
class DescribeSubscriptionsResponse extends AbstractModel {
|
|
5886
|
+
constructor(){
|
|
5887
|
+
super();
|
|
5888
|
+
|
|
5889
|
+
/**
|
|
5890
|
+
* Array of subscriber sets.
|
|
5891
|
+
* @type {Array.<Subscription> || null}
|
|
5892
|
+
*/
|
|
5893
|
+
this.SubscriptionSets = null;
|
|
5894
|
+
|
|
5895
|
+
/**
|
|
5896
|
+
* The total number of returned results.
|
|
5897
|
+
* @type {number || null}
|
|
5898
|
+
*/
|
|
5899
|
+
this.TotalCount = null;
|
|
5900
|
+
|
|
5901
|
+
/**
|
|
5902
|
+
* The unique request ID, which is returned for each request. RequestId is required for locating a problem.
|
|
5903
|
+
* @type {string || null}
|
|
5904
|
+
*/
|
|
5905
|
+
this.RequestId = null;
|
|
5906
|
+
|
|
5907
|
+
}
|
|
5908
|
+
|
|
5909
|
+
/**
|
|
5910
|
+
* @private
|
|
5911
|
+
*/
|
|
5912
|
+
deserialize(params) {
|
|
5913
|
+
if (!params) {
|
|
5914
|
+
return;
|
|
5915
|
+
}
|
|
5916
|
+
|
|
5917
|
+
if (params.SubscriptionSets) {
|
|
5918
|
+
this.SubscriptionSets = new Array();
|
|
5919
|
+
for (let z in params.SubscriptionSets) {
|
|
5920
|
+
let obj = new Subscription();
|
|
5921
|
+
obj.deserialize(params.SubscriptionSets[z]);
|
|
5922
|
+
this.SubscriptionSets.push(obj);
|
|
5923
|
+
}
|
|
5924
|
+
}
|
|
5925
|
+
this.TotalCount = 'TotalCount' in params ? params.TotalCount : null;
|
|
5926
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
5927
|
+
|
|
5928
|
+
}
|
|
5929
|
+
}
|
|
5930
|
+
|
|
5931
|
+
/**
|
|
5932
|
+
* TDMQ for RocketMQ message trace information
|
|
5933
|
+
* @class
|
|
5934
|
+
*/
|
|
5935
|
+
class RocketMQMessageTrack extends AbstractModel {
|
|
5936
|
+
constructor(){
|
|
5937
|
+
super();
|
|
5938
|
+
|
|
5939
|
+
/**
|
|
5940
|
+
* Consumer group
|
|
5941
|
+
* @type {string || null}
|
|
5942
|
+
*/
|
|
5943
|
+
this.Group = null;
|
|
5944
|
+
|
|
5945
|
+
/**
|
|
5946
|
+
* Consumption status
|
|
5947
|
+
* @type {string || null}
|
|
5948
|
+
*/
|
|
5949
|
+
this.ConsumeStatus = null;
|
|
5950
|
+
|
|
5951
|
+
/**
|
|
5952
|
+
* Message trace type
|
|
5953
|
+
* @type {string || null}
|
|
5954
|
+
*/
|
|
5955
|
+
this.TrackType = null;
|
|
5956
|
+
|
|
5957
|
+
/**
|
|
5958
|
+
* Exception information
|
|
5959
|
+
Note: u200dThis field may return null, indicating that no valid values can be obtained.
|
|
5960
|
+
* @type {string || null}
|
|
5961
|
+
*/
|
|
5962
|
+
this.ExceptionDesc = null;
|
|
5963
|
+
|
|
5964
|
+
}
|
|
5965
|
+
|
|
5966
|
+
/**
|
|
5967
|
+
* @private
|
|
5968
|
+
*/
|
|
5969
|
+
deserialize(params) {
|
|
5970
|
+
if (!params) {
|
|
5971
|
+
return;
|
|
5972
|
+
}
|
|
5973
|
+
this.Group = 'Group' in params ? params.Group : null;
|
|
5974
|
+
this.ConsumeStatus = 'ConsumeStatus' in params ? params.ConsumeStatus : null;
|
|
5975
|
+
this.TrackType = 'TrackType' in params ? params.TrackType : null;
|
|
5976
|
+
this.ExceptionDesc = 'ExceptionDesc' in params ? params.ExceptionDesc : null;
|
|
5977
|
+
|
|
5978
|
+
}
|
|
5979
|
+
}
|
|
5980
|
+
|
|
5981
|
+
/**
|
|
5982
|
+
* ModifyRole request structure.
|
|
5983
|
+
* @class
|
|
5984
|
+
*/
|
|
5985
|
+
class ModifyRoleRequest extends AbstractModel {
|
|
4813
5986
|
constructor(){
|
|
4814
5987
|
super();
|
|
4815
5988
|
|
|
4816
5989
|
/**
|
|
4817
|
-
*
|
|
4818
|
-
* @type {
|
|
5990
|
+
* Role name, which can contain up to 32 letters, digits, hyphens, and underscores.
|
|
5991
|
+
* @type {string || null}
|
|
4819
5992
|
*/
|
|
4820
|
-
this.
|
|
5993
|
+
this.RoleName = null;
|
|
4821
5994
|
|
|
4822
5995
|
/**
|
|
4823
|
-
*
|
|
4824
|
-
* @type {
|
|
5996
|
+
* Remarks (up to 128 characters).
|
|
5997
|
+
* @type {string || null}
|
|
4825
5998
|
*/
|
|
4826
|
-
this.
|
|
5999
|
+
this.Remark = null;
|
|
4827
6000
|
|
|
4828
6001
|
/**
|
|
4829
|
-
*
|
|
6002
|
+
* Cluster ID (required)
|
|
4830
6003
|
* @type {string || null}
|
|
4831
6004
|
*/
|
|
4832
|
-
this.
|
|
6005
|
+
this.ClusterId = null;
|
|
4833
6006
|
|
|
4834
6007
|
}
|
|
4835
6008
|
|
|
@@ -4840,46 +6013,56 @@ class DescribeSubscriptionsResponse extends AbstractModel {
|
|
|
4840
6013
|
if (!params) {
|
|
4841
6014
|
return;
|
|
4842
6015
|
}
|
|
4843
|
-
|
|
4844
|
-
|
|
4845
|
-
|
|
4846
|
-
for (let z in params.SubscriptionSets) {
|
|
4847
|
-
let obj = new Subscription();
|
|
4848
|
-
obj.deserialize(params.SubscriptionSets[z]);
|
|
4849
|
-
this.SubscriptionSets.push(obj);
|
|
4850
|
-
}
|
|
4851
|
-
}
|
|
4852
|
-
this.TotalCount = 'TotalCount' in params ? params.TotalCount : null;
|
|
4853
|
-
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
6016
|
+
this.RoleName = 'RoleName' in params ? params.RoleName : null;
|
|
6017
|
+
this.Remark = 'Remark' in params ? params.Remark : null;
|
|
6018
|
+
this.ClusterId = 'ClusterId' in params ? params.ClusterId : null;
|
|
4854
6019
|
|
|
4855
6020
|
}
|
|
4856
6021
|
}
|
|
4857
6022
|
|
|
4858
6023
|
/**
|
|
4859
|
-
*
|
|
6024
|
+
* DescribeRocketMQMsg request structure.
|
|
4860
6025
|
* @class
|
|
4861
6026
|
*/
|
|
4862
|
-
class
|
|
6027
|
+
class DescribeRocketMQMsgRequest extends AbstractModel {
|
|
4863
6028
|
constructor(){
|
|
4864
6029
|
super();
|
|
4865
6030
|
|
|
4866
6031
|
/**
|
|
4867
|
-
*
|
|
6032
|
+
* Cluster ID
|
|
4868
6033
|
* @type {string || null}
|
|
4869
6034
|
*/
|
|
4870
|
-
this.
|
|
6035
|
+
this.ClusterId = null;
|
|
4871
6036
|
|
|
4872
6037
|
/**
|
|
4873
|
-
*
|
|
6038
|
+
* Namespace ID
|
|
4874
6039
|
* @type {string || null}
|
|
4875
6040
|
*/
|
|
4876
|
-
this.
|
|
6041
|
+
this.EnvironmentId = null;
|
|
4877
6042
|
|
|
4878
6043
|
/**
|
|
4879
|
-
*
|
|
6044
|
+
* Topic name. Pass in the group ID when querying a dead letter queue.
|
|
4880
6045
|
* @type {string || null}
|
|
4881
6046
|
*/
|
|
4882
|
-
this.
|
|
6047
|
+
this.TopicName = null;
|
|
6048
|
+
|
|
6049
|
+
/**
|
|
6050
|
+
* Message ID
|
|
6051
|
+
* @type {string || null}
|
|
6052
|
+
*/
|
|
6053
|
+
this.MsgId = null;
|
|
6054
|
+
|
|
6055
|
+
/**
|
|
6056
|
+
* ID of a TDMQ for Pulsar message
|
|
6057
|
+
* @type {string || null}
|
|
6058
|
+
*/
|
|
6059
|
+
this.PulsarMsgId = null;
|
|
6060
|
+
|
|
6061
|
+
/**
|
|
6062
|
+
* The value of this parameter is `true` when you query a dead letter queue. It only applies to TDMQ for RocketMQ.
|
|
6063
|
+
* @type {boolean || null}
|
|
6064
|
+
*/
|
|
6065
|
+
this.QueryDlqMsg = null;
|
|
4883
6066
|
|
|
4884
6067
|
}
|
|
4885
6068
|
|
|
@@ -4890,9 +6073,12 @@ class ModifyRoleRequest extends AbstractModel {
|
|
|
4890
6073
|
if (!params) {
|
|
4891
6074
|
return;
|
|
4892
6075
|
}
|
|
4893
|
-
this.RoleName = 'RoleName' in params ? params.RoleName : null;
|
|
4894
|
-
this.Remark = 'Remark' in params ? params.Remark : null;
|
|
4895
6076
|
this.ClusterId = 'ClusterId' in params ? params.ClusterId : null;
|
|
6077
|
+
this.EnvironmentId = 'EnvironmentId' in params ? params.EnvironmentId : null;
|
|
6078
|
+
this.TopicName = 'TopicName' in params ? params.TopicName : null;
|
|
6079
|
+
this.MsgId = 'MsgId' in params ? params.MsgId : null;
|
|
6080
|
+
this.PulsarMsgId = 'PulsarMsgId' in params ? params.PulsarMsgId : null;
|
|
6081
|
+
this.QueryDlqMsg = 'QueryDlqMsg' in params ? params.QueryDlqMsg : null;
|
|
4896
6082
|
|
|
4897
6083
|
}
|
|
4898
6084
|
}
|
|
@@ -5710,6 +6896,48 @@ class ModifyRocketMQNamespaceResponse extends AbstractModel {
|
|
|
5710
6896
|
}
|
|
5711
6897
|
}
|
|
5712
6898
|
|
|
6899
|
+
/**
|
|
6900
|
+
* SendCmqMsg request structure.
|
|
6901
|
+
* @class
|
|
6902
|
+
*/
|
|
6903
|
+
class SendCmqMsgRequest extends AbstractModel {
|
|
6904
|
+
constructor(){
|
|
6905
|
+
super();
|
|
6906
|
+
|
|
6907
|
+
/**
|
|
6908
|
+
* Queue name
|
|
6909
|
+
* @type {string || null}
|
|
6910
|
+
*/
|
|
6911
|
+
this.QueueName = null;
|
|
6912
|
+
|
|
6913
|
+
/**
|
|
6914
|
+
* Message content
|
|
6915
|
+
* @type {string || null}
|
|
6916
|
+
*/
|
|
6917
|
+
this.MsgContent = null;
|
|
6918
|
+
|
|
6919
|
+
/**
|
|
6920
|
+
* Delay time
|
|
6921
|
+
* @type {number || null}
|
|
6922
|
+
*/
|
|
6923
|
+
this.DelaySeconds = null;
|
|
6924
|
+
|
|
6925
|
+
}
|
|
6926
|
+
|
|
6927
|
+
/**
|
|
6928
|
+
* @private
|
|
6929
|
+
*/
|
|
6930
|
+
deserialize(params) {
|
|
6931
|
+
if (!params) {
|
|
6932
|
+
return;
|
|
6933
|
+
}
|
|
6934
|
+
this.QueueName = 'QueueName' in params ? params.QueueName : null;
|
|
6935
|
+
this.MsgContent = 'MsgContent' in params ? params.MsgContent : null;
|
|
6936
|
+
this.DelaySeconds = 'DelaySeconds' in params ? params.DelaySeconds : null;
|
|
6937
|
+
|
|
6938
|
+
}
|
|
6939
|
+
}
|
|
6940
|
+
|
|
5713
6941
|
/**
|
|
5714
6942
|
* DeleteEnvironments request structure.
|
|
5715
6943
|
* @class
|
|
@@ -6076,13 +7304,13 @@ class ModifyRocketMQNamespaceRequest extends AbstractModel {
|
|
|
6076
7304
|
this.NamespaceId = null;
|
|
6077
7305
|
|
|
6078
7306
|
/**
|
|
6079
|
-
*
|
|
7307
|
+
* This parameter is disused.
|
|
6080
7308
|
* @type {number || null}
|
|
6081
7309
|
*/
|
|
6082
7310
|
this.Ttl = null;
|
|
6083
7311
|
|
|
6084
7312
|
/**
|
|
6085
|
-
*
|
|
7313
|
+
* This parameter is disused.
|
|
6086
7314
|
* @type {number || null}
|
|
6087
7315
|
*/
|
|
6088
7316
|
this.RetentionTime = null;
|
|
@@ -6093,6 +7321,12 @@ class ModifyRocketMQNamespaceRequest extends AbstractModel {
|
|
|
6093
7321
|
*/
|
|
6094
7322
|
this.Remark = null;
|
|
6095
7323
|
|
|
7324
|
+
/**
|
|
7325
|
+
* Whether to enable the public network access
|
|
7326
|
+
* @type {boolean || null}
|
|
7327
|
+
*/
|
|
7328
|
+
this.PublicAccessEnabled = null;
|
|
7329
|
+
|
|
6096
7330
|
}
|
|
6097
7331
|
|
|
6098
7332
|
/**
|
|
@@ -6107,6 +7341,7 @@ class ModifyRocketMQNamespaceRequest extends AbstractModel {
|
|
|
6107
7341
|
this.Ttl = 'Ttl' in params ? params.Ttl : null;
|
|
6108
7342
|
this.RetentionTime = 'RetentionTime' in params ? params.RetentionTime : null;
|
|
6109
7343
|
this.Remark = 'Remark' in params ? params.Remark : null;
|
|
7344
|
+
this.PublicAccessEnabled = 'PublicAccessEnabled' in params ? params.PublicAccessEnabled : null;
|
|
6110
7345
|
|
|
6111
7346
|
}
|
|
6112
7347
|
}
|
|
@@ -6220,6 +7455,93 @@ class DeleteRolesResponse extends AbstractModel {
|
|
|
6220
7455
|
}
|
|
6221
7456
|
}
|
|
6222
7457
|
|
|
7458
|
+
/**
|
|
7459
|
+
* Relationship between the namespaces that are bound in batches and role permissions
|
|
7460
|
+
* @class
|
|
7461
|
+
*/
|
|
7462
|
+
class EnvironmentRoleSet extends AbstractModel {
|
|
7463
|
+
constructor(){
|
|
7464
|
+
super();
|
|
7465
|
+
|
|
7466
|
+
/**
|
|
7467
|
+
* The IDs of the bound namespaces cannot be delicate and the namespaces must contain resources
|
|
7468
|
+
Note: u200dThis field may return null, indicating that no valid values can be obtained.
|
|
7469
|
+
* @type {string || null}
|
|
7470
|
+
*/
|
|
7471
|
+
this.EnvironmentId = null;
|
|
7472
|
+
|
|
7473
|
+
/**
|
|
7474
|
+
* Permissions to be bound to a namespace. Enumerated values: `consume`, `produce`, and `consume, produce`. This parameter cannot be left empty.
|
|
7475
|
+
|
|
7476
|
+
Note: u200dThis field may return null, indicating that no valid values can be obtained.
|
|
7477
|
+
* @type {Array.<string> || null}
|
|
7478
|
+
*/
|
|
7479
|
+
this.Permissions = null;
|
|
7480
|
+
|
|
7481
|
+
}
|
|
7482
|
+
|
|
7483
|
+
/**
|
|
7484
|
+
* @private
|
|
7485
|
+
*/
|
|
7486
|
+
deserialize(params) {
|
|
7487
|
+
if (!params) {
|
|
7488
|
+
return;
|
|
7489
|
+
}
|
|
7490
|
+
this.EnvironmentId = 'EnvironmentId' in params ? params.EnvironmentId : null;
|
|
7491
|
+
this.Permissions = 'Permissions' in params ? params.Permissions : null;
|
|
7492
|
+
|
|
7493
|
+
}
|
|
7494
|
+
}
|
|
7495
|
+
|
|
7496
|
+
/**
|
|
7497
|
+
* Recent RocketMQ usage
|
|
7498
|
+
* @class
|
|
7499
|
+
*/
|
|
7500
|
+
class RocketMQClusterRecentStats extends AbstractModel {
|
|
7501
|
+
constructor(){
|
|
7502
|
+
super();
|
|
7503
|
+
|
|
7504
|
+
/**
|
|
7505
|
+
* Number of topics
|
|
7506
|
+
* @type {number || null}
|
|
7507
|
+
*/
|
|
7508
|
+
this.TopicNum = null;
|
|
7509
|
+
|
|
7510
|
+
/**
|
|
7511
|
+
* Number of produced messages
|
|
7512
|
+
* @type {number || null}
|
|
7513
|
+
*/
|
|
7514
|
+
this.ProducedMsgNum = null;
|
|
7515
|
+
|
|
7516
|
+
/**
|
|
7517
|
+
* Number of consumed messages
|
|
7518
|
+
* @type {number || null}
|
|
7519
|
+
*/
|
|
7520
|
+
this.ConsumedMsgNum = null;
|
|
7521
|
+
|
|
7522
|
+
/**
|
|
7523
|
+
* Number of retained messages
|
|
7524
|
+
* @type {number || null}
|
|
7525
|
+
*/
|
|
7526
|
+
this.AccumulativeMsgNum = null;
|
|
7527
|
+
|
|
7528
|
+
}
|
|
7529
|
+
|
|
7530
|
+
/**
|
|
7531
|
+
* @private
|
|
7532
|
+
*/
|
|
7533
|
+
deserialize(params) {
|
|
7534
|
+
if (!params) {
|
|
7535
|
+
return;
|
|
7536
|
+
}
|
|
7537
|
+
this.TopicNum = 'TopicNum' in params ? params.TopicNum : null;
|
|
7538
|
+
this.ProducedMsgNum = 'ProducedMsgNum' in params ? params.ProducedMsgNum : null;
|
|
7539
|
+
this.ConsumedMsgNum = 'ConsumedMsgNum' in params ? params.ConsumedMsgNum : null;
|
|
7540
|
+
this.AccumulativeMsgNum = 'AccumulativeMsgNum' in params ? params.AccumulativeMsgNum : null;
|
|
7541
|
+
|
|
7542
|
+
}
|
|
7543
|
+
}
|
|
7544
|
+
|
|
6223
7545
|
/**
|
|
6224
7546
|
* ModifyRocketMQTopic request structure.
|
|
6225
7547
|
* @class
|
|
@@ -6383,6 +7705,20 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
6383
7705
|
*/
|
|
6384
7706
|
this.HttpVpcEndpoint = null;
|
|
6385
7707
|
|
|
7708
|
+
/**
|
|
7709
|
+
* Internal TCP access address
|
|
7710
|
+
Note: u200dThis field may return null, indicating that no valid values can be obtained.
|
|
7711
|
+
* @type {string || null}
|
|
7712
|
+
*/
|
|
7713
|
+
this.InternalEndpoint = null;
|
|
7714
|
+
|
|
7715
|
+
/**
|
|
7716
|
+
* Internal HTTP access address
|
|
7717
|
+
Note: u200dThis field may return null, indicating that no valid values can be obtained.
|
|
7718
|
+
* @type {string || null}
|
|
7719
|
+
*/
|
|
7720
|
+
this.HttpInternalEndpoint = null;
|
|
7721
|
+
|
|
6386
7722
|
}
|
|
6387
7723
|
|
|
6388
7724
|
/**
|
|
@@ -6415,6 +7751,71 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
6415
7751
|
this.IsolateTime = 'IsolateTime' in params ? params.IsolateTime : null;
|
|
6416
7752
|
this.HttpPublicEndpoint = 'HttpPublicEndpoint' in params ? params.HttpPublicEndpoint : null;
|
|
6417
7753
|
this.HttpVpcEndpoint = 'HttpVpcEndpoint' in params ? params.HttpVpcEndpoint : null;
|
|
7754
|
+
this.InternalEndpoint = 'InternalEndpoint' in params ? params.InternalEndpoint : null;
|
|
7755
|
+
this.HttpInternalEndpoint = 'HttpInternalEndpoint' in params ? params.HttpInternalEndpoint : null;
|
|
7756
|
+
|
|
7757
|
+
}
|
|
7758
|
+
}
|
|
7759
|
+
|
|
7760
|
+
/**
|
|
7761
|
+
* DescribeRabbitMQUser request structure.
|
|
7762
|
+
* @class
|
|
7763
|
+
*/
|
|
7764
|
+
class DescribeRabbitMQUserRequest extends AbstractModel {
|
|
7765
|
+
constructor(){
|
|
7766
|
+
super();
|
|
7767
|
+
|
|
7768
|
+
/**
|
|
7769
|
+
* Cluster instance ID
|
|
7770
|
+
* @type {string || null}
|
|
7771
|
+
*/
|
|
7772
|
+
this.InstanceId = null;
|
|
7773
|
+
|
|
7774
|
+
/**
|
|
7775
|
+
* Username search by prefix or suffix
|
|
7776
|
+
* @type {string || null}
|
|
7777
|
+
*/
|
|
7778
|
+
this.SearchUser = null;
|
|
7779
|
+
|
|
7780
|
+
/**
|
|
7781
|
+
* Pagination offset
|
|
7782
|
+
* @type {number || null}
|
|
7783
|
+
*/
|
|
7784
|
+
this.Offset = null;
|
|
7785
|
+
|
|
7786
|
+
/**
|
|
7787
|
+
* Pagination limit
|
|
7788
|
+
* @type {number || null}
|
|
7789
|
+
*/
|
|
7790
|
+
this.Limit = null;
|
|
7791
|
+
|
|
7792
|
+
/**
|
|
7793
|
+
* Username, which is queried by exact match.
|
|
7794
|
+
* @type {string || null}
|
|
7795
|
+
*/
|
|
7796
|
+
this.User = null;
|
|
7797
|
+
|
|
7798
|
+
/**
|
|
7799
|
+
* User tag, which is used to filter users.
|
|
7800
|
+
* @type {Array.<string> || null}
|
|
7801
|
+
*/
|
|
7802
|
+
this.Tags = null;
|
|
7803
|
+
|
|
7804
|
+
}
|
|
7805
|
+
|
|
7806
|
+
/**
|
|
7807
|
+
* @private
|
|
7808
|
+
*/
|
|
7809
|
+
deserialize(params) {
|
|
7810
|
+
if (!params) {
|
|
7811
|
+
return;
|
|
7812
|
+
}
|
|
7813
|
+
this.InstanceId = 'InstanceId' in params ? params.InstanceId : null;
|
|
7814
|
+
this.SearchUser = 'SearchUser' in params ? params.SearchUser : null;
|
|
7815
|
+
this.Offset = 'Offset' in params ? params.Offset : null;
|
|
7816
|
+
this.Limit = 'Limit' in params ? params.Limit : null;
|
|
7817
|
+
this.User = 'User' in params ? params.User : null;
|
|
7818
|
+
this.Tags = 'Tags' in params ? params.Tags : null;
|
|
6418
7819
|
|
|
6419
7820
|
}
|
|
6420
7821
|
}
|
|
@@ -6533,6 +7934,13 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
6533
7934
|
*/
|
|
6534
7935
|
this.RetentionPolicy = null;
|
|
6535
7936
|
|
|
7937
|
+
/**
|
|
7938
|
+
* Whether to enable "Auto-Create Subscription"
|
|
7939
|
+
Note: u200dThis field may return null, indicating that no valid values can be obtained.
|
|
7940
|
+
* @type {boolean || null}
|
|
7941
|
+
*/
|
|
7942
|
+
this.AutoSubscriptionCreation = null;
|
|
7943
|
+
|
|
6536
7944
|
}
|
|
6537
7945
|
|
|
6538
7946
|
/**
|
|
@@ -6556,6 +7964,7 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
6556
7964
|
obj.deserialize(params.RetentionPolicy)
|
|
6557
7965
|
this.RetentionPolicy = obj;
|
|
6558
7966
|
}
|
|
7967
|
+
this.AutoSubscriptionCreation = 'AutoSubscriptionCreation' in params ? params.AutoSubscriptionCreation : null;
|
|
6559
7968
|
|
|
6560
7969
|
}
|
|
6561
7970
|
}
|
|
@@ -7274,6 +8683,48 @@ class CreateClusterRequest extends AbstractModel {
|
|
|
7274
8683
|
}
|
|
7275
8684
|
}
|
|
7276
8685
|
|
|
8686
|
+
/**
|
|
8687
|
+
* DescribeRabbitMQVirtualHostList request structure.
|
|
8688
|
+
* @class
|
|
8689
|
+
*/
|
|
8690
|
+
class DescribeRabbitMQVirtualHostListRequest extends AbstractModel {
|
|
8691
|
+
constructor(){
|
|
8692
|
+
super();
|
|
8693
|
+
|
|
8694
|
+
/**
|
|
8695
|
+
* A default parameter that won’t be used
|
|
8696
|
+
* @type {string || null}
|
|
8697
|
+
*/
|
|
8698
|
+
this.InstanceId = null;
|
|
8699
|
+
|
|
8700
|
+
/**
|
|
8701
|
+
* Offset
|
|
8702
|
+
* @type {number || null}
|
|
8703
|
+
*/
|
|
8704
|
+
this.Offset = null;
|
|
8705
|
+
|
|
8706
|
+
/**
|
|
8707
|
+
* The maximum number of entries per page
|
|
8708
|
+
* @type {number || null}
|
|
8709
|
+
*/
|
|
8710
|
+
this.Limit = null;
|
|
8711
|
+
|
|
8712
|
+
}
|
|
8713
|
+
|
|
8714
|
+
/**
|
|
8715
|
+
* @private
|
|
8716
|
+
*/
|
|
8717
|
+
deserialize(params) {
|
|
8718
|
+
if (!params) {
|
|
8719
|
+
return;
|
|
8720
|
+
}
|
|
8721
|
+
this.InstanceId = 'InstanceId' in params ? params.InstanceId : null;
|
|
8722
|
+
this.Offset = 'Offset' in params ? params.Offset : null;
|
|
8723
|
+
this.Limit = 'Limit' in params ? params.Limit : null;
|
|
8724
|
+
|
|
8725
|
+
}
|
|
8726
|
+
}
|
|
8727
|
+
|
|
7277
8728
|
/**
|
|
7278
8729
|
* ModifyCmqQueueAttribute response structure.
|
|
7279
8730
|
* @class
|
|
@@ -7599,6 +9050,42 @@ class ModifyTopicResponse extends AbstractModel {
|
|
|
7599
9050
|
}
|
|
7600
9051
|
}
|
|
7601
9052
|
|
|
9053
|
+
/**
|
|
9054
|
+
* ModifyRocketMQInstanceSpec response structure.
|
|
9055
|
+
* @class
|
|
9056
|
+
*/
|
|
9057
|
+
class ModifyRocketMQInstanceSpecResponse extends AbstractModel {
|
|
9058
|
+
constructor(){
|
|
9059
|
+
super();
|
|
9060
|
+
|
|
9061
|
+
/**
|
|
9062
|
+
* Order ID
|
|
9063
|
+
Note: u200dThis field may return null, indicating that no valid values can be obtained.
|
|
9064
|
+
* @type {string || null}
|
|
9065
|
+
*/
|
|
9066
|
+
this.OrderId = null;
|
|
9067
|
+
|
|
9068
|
+
/**
|
|
9069
|
+
* The unique request ID, which is returned for each request. RequestId is required for locating a problem.
|
|
9070
|
+
* @type {string || null}
|
|
9071
|
+
*/
|
|
9072
|
+
this.RequestId = null;
|
|
9073
|
+
|
|
9074
|
+
}
|
|
9075
|
+
|
|
9076
|
+
/**
|
|
9077
|
+
* @private
|
|
9078
|
+
*/
|
|
9079
|
+
deserialize(params) {
|
|
9080
|
+
if (!params) {
|
|
9081
|
+
return;
|
|
9082
|
+
}
|
|
9083
|
+
this.OrderId = 'OrderId' in params ? params.OrderId : null;
|
|
9084
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
9085
|
+
|
|
9086
|
+
}
|
|
9087
|
+
}
|
|
9088
|
+
|
|
7602
9089
|
/**
|
|
7603
9090
|
* DescribeRocketMQVipInstances request structure.
|
|
7604
9091
|
* @class
|
|
@@ -7677,6 +9164,41 @@ class DescribeRocketMQVipInstanceDetailRequest extends AbstractModel {
|
|
|
7677
9164
|
}
|
|
7678
9165
|
}
|
|
7679
9166
|
|
|
9167
|
+
/**
|
|
9168
|
+
* DeleteRabbitMQVirtualHost request structure.
|
|
9169
|
+
* @class
|
|
9170
|
+
*/
|
|
9171
|
+
class DeleteRabbitMQVirtualHostRequest extends AbstractModel {
|
|
9172
|
+
constructor(){
|
|
9173
|
+
super();
|
|
9174
|
+
|
|
9175
|
+
/**
|
|
9176
|
+
* Cluster instance ID
|
|
9177
|
+
* @type {string || null}
|
|
9178
|
+
*/
|
|
9179
|
+
this.InstanceId = null;
|
|
9180
|
+
|
|
9181
|
+
/**
|
|
9182
|
+
* Vhost name
|
|
9183
|
+
* @type {string || null}
|
|
9184
|
+
*/
|
|
9185
|
+
this.VirtualHost = null;
|
|
9186
|
+
|
|
9187
|
+
}
|
|
9188
|
+
|
|
9189
|
+
/**
|
|
9190
|
+
* @private
|
|
9191
|
+
*/
|
|
9192
|
+
deserialize(params) {
|
|
9193
|
+
if (!params) {
|
|
9194
|
+
return;
|
|
9195
|
+
}
|
|
9196
|
+
this.InstanceId = 'InstanceId' in params ? params.InstanceId : null;
|
|
9197
|
+
this.VirtualHost = 'VirtualHost' in params ? params.VirtualHost : null;
|
|
9198
|
+
|
|
9199
|
+
}
|
|
9200
|
+
}
|
|
9201
|
+
|
|
7680
9202
|
/**
|
|
7681
9203
|
* DeleteRocketMQCluster response structure.
|
|
7682
9204
|
* @class
|
|
@@ -8336,73 +9858,62 @@ class DeleteCmqSubscribeRequest extends AbstractModel {
|
|
|
8336
9858
|
}
|
|
8337
9859
|
|
|
8338
9860
|
/**
|
|
8339
|
-
*
|
|
9861
|
+
* TDMQ for RabbitMQ user entity details
|
|
8340
9862
|
* @class
|
|
8341
9863
|
*/
|
|
8342
|
-
class
|
|
9864
|
+
class RabbitMQUser extends AbstractModel {
|
|
8343
9865
|
constructor(){
|
|
8344
9866
|
super();
|
|
8345
9867
|
|
|
8346
9868
|
/**
|
|
8347
|
-
*
|
|
8348
|
-
* @type {
|
|
8349
|
-
*/
|
|
8350
|
-
this.MaxTpsPerNamespace = null;
|
|
8351
|
-
|
|
8352
|
-
/**
|
|
8353
|
-
* Maximum number of namespaces
|
|
8354
|
-
* @type {number || null}
|
|
8355
|
-
*/
|
|
8356
|
-
this.MaxNamespaceNum = null;
|
|
8357
|
-
|
|
8358
|
-
/**
|
|
8359
|
-
* Number of used namespaces
|
|
8360
|
-
* @type {number || null}
|
|
9869
|
+
* Cluster instance ID
|
|
9870
|
+
* @type {string || null}
|
|
8361
9871
|
*/
|
|
8362
|
-
this.
|
|
9872
|
+
this.InstanceId = null;
|
|
8363
9873
|
|
|
8364
9874
|
/**
|
|
8365
|
-
*
|
|
8366
|
-
* @type {
|
|
9875
|
+
* Username, which is used for login.
|
|
9876
|
+
* @type {string || null}
|
|
8367
9877
|
*/
|
|
8368
|
-
this.
|
|
9878
|
+
this.User = null;
|
|
8369
9879
|
|
|
8370
9880
|
/**
|
|
8371
|
-
*
|
|
8372
|
-
* @type {
|
|
9881
|
+
* Password, which is used for login.
|
|
9882
|
+
* @type {string || null}
|
|
8373
9883
|
*/
|
|
8374
|
-
this.
|
|
9884
|
+
this.Password = null;
|
|
8375
9885
|
|
|
8376
9886
|
/**
|
|
8377
|
-
*
|
|
8378
|
-
|
|
9887
|
+
* User description
|
|
9888
|
+
Note: u200dThis field may return null, indicating that no valid values can be obtained.
|
|
9889
|
+
* @type {string || null}
|
|
8379
9890
|
*/
|
|
8380
|
-
this.
|
|
9891
|
+
this.Description = null;
|
|
8381
9892
|
|
|
8382
9893
|
/**
|
|
8383
|
-
*
|
|
8384
|
-
|
|
9894
|
+
* User tag, which defines a user's permission scope for accessing RabbitMQ Managementu200d.
|
|
9895
|
+
Note: u200dThis field may return null, indicating that no valid values can be obtained.
|
|
9896
|
+
* @type {Array.<string> || null}
|
|
8385
9897
|
*/
|
|
8386
|
-
this.
|
|
9898
|
+
this.Tags = null;
|
|
8387
9899
|
|
|
8388
9900
|
/**
|
|
8389
|
-
*
|
|
8390
|
-
* @type {
|
|
9901
|
+
* User creation time
|
|
9902
|
+
* @type {string || null}
|
|
8391
9903
|
*/
|
|
8392
|
-
this.
|
|
9904
|
+
this.CreateTime = null;
|
|
8393
9905
|
|
|
8394
9906
|
/**
|
|
8395
|
-
*
|
|
8396
|
-
* @type {
|
|
9907
|
+
* Last user modification time
|
|
9908
|
+
* @type {string || null}
|
|
8397
9909
|
*/
|
|
8398
|
-
this.
|
|
9910
|
+
this.ModifyTime = null;
|
|
8399
9911
|
|
|
8400
9912
|
/**
|
|
8401
|
-
*
|
|
8402
|
-
|
|
8403
|
-
* @type {number || null}
|
|
9913
|
+
* User type. Valid values: `System` (Created by system), `User` (Created by user).
|
|
9914
|
+
* @type {string || null}
|
|
8404
9915
|
*/
|
|
8405
|
-
this.
|
|
9916
|
+
this.Type = null;
|
|
8406
9917
|
|
|
8407
9918
|
}
|
|
8408
9919
|
|
|
@@ -8413,16 +9924,14 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
8413
9924
|
if (!params) {
|
|
8414
9925
|
return;
|
|
8415
9926
|
}
|
|
8416
|
-
this.
|
|
8417
|
-
this.
|
|
8418
|
-
this.
|
|
8419
|
-
this.
|
|
8420
|
-
this.
|
|
8421
|
-
this.
|
|
8422
|
-
this.
|
|
8423
|
-
this.
|
|
8424
|
-
this.MaxLatencyTime = 'MaxLatencyTime' in params ? params.MaxLatencyTime : null;
|
|
8425
|
-
this.MaxQueuesPerTopic = 'MaxQueuesPerTopic' in params ? params.MaxQueuesPerTopic : null;
|
|
9927
|
+
this.InstanceId = 'InstanceId' in params ? params.InstanceId : null;
|
|
9928
|
+
this.User = 'User' in params ? params.User : null;
|
|
9929
|
+
this.Password = 'Password' in params ? params.Password : null;
|
|
9930
|
+
this.Description = 'Description' in params ? params.Description : null;
|
|
9931
|
+
this.Tags = 'Tags' in params ? params.Tags : null;
|
|
9932
|
+
this.CreateTime = 'CreateTime' in params ? params.CreateTime : null;
|
|
9933
|
+
this.ModifyTime = 'ModifyTime' in params ? params.ModifyTime : null;
|
|
9934
|
+
this.Type = 'Type' in params ? params.Type : null;
|
|
8426
9935
|
|
|
8427
9936
|
}
|
|
8428
9937
|
}
|
|
@@ -9374,6 +10883,13 @@ Note: this field may return null, indicating that no valid values can be obtaine
|
|
|
9374
10883
|
*/
|
|
9375
10884
|
this.Remark = null;
|
|
9376
10885
|
|
|
10886
|
+
/**
|
|
10887
|
+
* Namespaces that are bound in batches
|
|
10888
|
+
Note: u200dThis field may return null, indicating that no valid values can be obtained.
|
|
10889
|
+
* @type {Array.<EnvironmentRoleSet> || null}
|
|
10890
|
+
*/
|
|
10891
|
+
this.EnvironmentRoleSets = null;
|
|
10892
|
+
|
|
9377
10893
|
/**
|
|
9378
10894
|
* The unique request ID, which is returned for each request. RequestId is required for locating a problem.
|
|
9379
10895
|
* @type {string || null}
|
|
@@ -9392,6 +10908,15 @@ Note: this field may return null, indicating that no valid values can be obtaine
|
|
|
9392
10908
|
this.RoleName = 'RoleName' in params ? params.RoleName : null;
|
|
9393
10909
|
this.Token = 'Token' in params ? params.Token : null;
|
|
9394
10910
|
this.Remark = 'Remark' in params ? params.Remark : null;
|
|
10911
|
+
|
|
10912
|
+
if (params.EnvironmentRoleSets) {
|
|
10913
|
+
this.EnvironmentRoleSets = new Array();
|
|
10914
|
+
for (let z in params.EnvironmentRoleSets) {
|
|
10915
|
+
let obj = new EnvironmentRoleSet();
|
|
10916
|
+
obj.deserialize(params.EnvironmentRoleSets[z]);
|
|
10917
|
+
this.EnvironmentRoleSets.push(obj);
|
|
10918
|
+
}
|
|
10919
|
+
}
|
|
9395
10920
|
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
9396
10921
|
|
|
9397
10922
|
}
|
|
@@ -9545,6 +11070,34 @@ class ClearCmqQueueResponse extends AbstractModel {
|
|
|
9545
11070
|
}
|
|
9546
11071
|
}
|
|
9547
11072
|
|
|
11073
|
+
/**
|
|
11074
|
+
* ModifyRabbitMQUser response structure.
|
|
11075
|
+
* @class
|
|
11076
|
+
*/
|
|
11077
|
+
class ModifyRabbitMQUserResponse extends AbstractModel {
|
|
11078
|
+
constructor(){
|
|
11079
|
+
super();
|
|
11080
|
+
|
|
11081
|
+
/**
|
|
11082
|
+
* The unique request ID, which is returned for each request. RequestId is required for locating a problem.
|
|
11083
|
+
* @type {string || null}
|
|
11084
|
+
*/
|
|
11085
|
+
this.RequestId = null;
|
|
11086
|
+
|
|
11087
|
+
}
|
|
11088
|
+
|
|
11089
|
+
/**
|
|
11090
|
+
* @private
|
|
11091
|
+
*/
|
|
11092
|
+
deserialize(params) {
|
|
11093
|
+
if (!params) {
|
|
11094
|
+
return;
|
|
11095
|
+
}
|
|
11096
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
11097
|
+
|
|
11098
|
+
}
|
|
11099
|
+
}
|
|
11100
|
+
|
|
9548
11101
|
/**
|
|
9549
11102
|
* DescribeBindClusters request structure.
|
|
9550
11103
|
* @class
|
|
@@ -9595,44 +11148,36 @@ class CreateRocketMQTopicResponse extends AbstractModel {
|
|
|
9595
11148
|
}
|
|
9596
11149
|
|
|
9597
11150
|
/**
|
|
9598
|
-
*
|
|
11151
|
+
* CreateRabbitMQVirtualHost request structure.
|
|
9599
11152
|
* @class
|
|
9600
11153
|
*/
|
|
9601
|
-
class
|
|
11154
|
+
class CreateRabbitMQVirtualHostRequest extends AbstractModel {
|
|
9602
11155
|
constructor(){
|
|
9603
11156
|
super();
|
|
9604
11157
|
|
|
9605
11158
|
/**
|
|
9606
|
-
*
|
|
11159
|
+
* Cluster instance ID
|
|
9607
11160
|
* @type {string || null}
|
|
9608
11161
|
*/
|
|
9609
|
-
this.
|
|
9610
|
-
|
|
9611
|
-
/**
|
|
9612
|
-
* TTL for unconsumed messages in seconds.
|
|
9613
|
-
* @type {number || null}
|
|
9614
|
-
*/
|
|
9615
|
-
this.MsgTTL = null;
|
|
11162
|
+
this.InstanceId = null;
|
|
9616
11163
|
|
|
9617
11164
|
/**
|
|
9618
|
-
*
|
|
9619
|
-
Note: this field may return null, indicating that no valid values can be obtained.
|
|
11165
|
+
* Vhost name
|
|
9620
11166
|
* @type {string || null}
|
|
9621
11167
|
*/
|
|
9622
|
-
this.
|
|
11168
|
+
this.VirtualHost = null;
|
|
9623
11169
|
|
|
9624
11170
|
/**
|
|
9625
|
-
*
|
|
9626
|
-
Note: this field may return null, indicating that no valid values can be obtained.
|
|
11171
|
+
* Description
|
|
9627
11172
|
* @type {string || null}
|
|
9628
11173
|
*/
|
|
9629
|
-
this.
|
|
11174
|
+
this.Description = null;
|
|
9630
11175
|
|
|
9631
11176
|
/**
|
|
9632
|
-
*
|
|
9633
|
-
* @type {
|
|
11177
|
+
* Message trace flag. Valid values: `true` (Enabled), `false` (Disabled, which is the default value).
|
|
11178
|
+
* @type {boolean || null}
|
|
9634
11179
|
*/
|
|
9635
|
-
this.
|
|
11180
|
+
this.TraceFlag = null;
|
|
9636
11181
|
|
|
9637
11182
|
}
|
|
9638
11183
|
|
|
@@ -9643,11 +11188,10 @@ Note: this field may return null, indicating that no valid values can be obtaine
|
|
|
9643
11188
|
if (!params) {
|
|
9644
11189
|
return;
|
|
9645
11190
|
}
|
|
9646
|
-
this.
|
|
9647
|
-
this.
|
|
9648
|
-
this.
|
|
9649
|
-
this.
|
|
9650
|
-
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
11191
|
+
this.InstanceId = 'InstanceId' in params ? params.InstanceId : null;
|
|
11192
|
+
this.VirtualHost = 'VirtualHost' in params ? params.VirtualHost : null;
|
|
11193
|
+
this.Description = 'Description' in params ? params.Description : null;
|
|
11194
|
+
this.TraceFlag = 'TraceFlag' in params ? params.TraceFlag : null;
|
|
9651
11195
|
|
|
9652
11196
|
}
|
|
9653
11197
|
}
|
|
@@ -9724,7 +11268,7 @@ class CreateCmqQueueRequest extends AbstractModel {
|
|
|
9724
11268
|
super();
|
|
9725
11269
|
|
|
9726
11270
|
/**
|
|
9727
|
-
* Queue name, which
|
|
11271
|
+
* Queue name, which is unique under the same account in a single region. It is a string of up to 64 characters. It can contain letters, digits, and hyphens (-) and must start with a letter.
|
|
9728
11272
|
* @type {string || null}
|
|
9729
11273
|
*/
|
|
9730
11274
|
this.QueueName = null;
|
|
@@ -9895,15 +11439,43 @@ class ModifyEnvironmentRoleResponse extends AbstractModel {
|
|
|
9895
11439
|
* DeleteCmqQueue request structure.
|
|
9896
11440
|
* @class
|
|
9897
11441
|
*/
|
|
9898
|
-
class DeleteCmqQueueRequest extends AbstractModel {
|
|
11442
|
+
class DeleteCmqQueueRequest extends AbstractModel {
|
|
11443
|
+
constructor(){
|
|
11444
|
+
super();
|
|
11445
|
+
|
|
11446
|
+
/**
|
|
11447
|
+
* Queue name, which must be unique under the same account in the same region. It can contain up to 64 letters, digits, and hyphens and must begin with a letter.
|
|
11448
|
+
* @type {string || null}
|
|
11449
|
+
*/
|
|
11450
|
+
this.QueueName = null;
|
|
11451
|
+
|
|
11452
|
+
}
|
|
11453
|
+
|
|
11454
|
+
/**
|
|
11455
|
+
* @private
|
|
11456
|
+
*/
|
|
11457
|
+
deserialize(params) {
|
|
11458
|
+
if (!params) {
|
|
11459
|
+
return;
|
|
11460
|
+
}
|
|
11461
|
+
this.QueueName = 'QueueName' in params ? params.QueueName : null;
|
|
11462
|
+
|
|
11463
|
+
}
|
|
11464
|
+
}
|
|
11465
|
+
|
|
11466
|
+
/**
|
|
11467
|
+
* DeleteRabbitMQUser response structure.
|
|
11468
|
+
* @class
|
|
11469
|
+
*/
|
|
11470
|
+
class DeleteRabbitMQUserResponse extends AbstractModel {
|
|
9899
11471
|
constructor(){
|
|
9900
11472
|
super();
|
|
9901
11473
|
|
|
9902
11474
|
/**
|
|
9903
|
-
*
|
|
11475
|
+
* The unique request ID, which is returned for each request. RequestId is required for locating a problem.
|
|
9904
11476
|
* @type {string || null}
|
|
9905
11477
|
*/
|
|
9906
|
-
this.
|
|
11478
|
+
this.RequestId = null;
|
|
9907
11479
|
|
|
9908
11480
|
}
|
|
9909
11481
|
|
|
@@ -9914,78 +11486,37 @@ class DeleteCmqQueueRequest extends AbstractModel {
|
|
|
9914
11486
|
if (!params) {
|
|
9915
11487
|
return;
|
|
9916
11488
|
}
|
|
9917
|
-
this.
|
|
11489
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
9918
11490
|
|
|
9919
11491
|
}
|
|
9920
11492
|
}
|
|
9921
11493
|
|
|
9922
11494
|
/**
|
|
9923
|
-
*
|
|
11495
|
+
* DescribeRabbitMQVirtualHostList response structure.
|
|
9924
11496
|
* @class
|
|
9925
11497
|
*/
|
|
9926
|
-
class
|
|
11498
|
+
class DescribeRabbitMQVirtualHostListResponse extends AbstractModel {
|
|
9927
11499
|
constructor(){
|
|
9928
11500
|
super();
|
|
9929
11501
|
|
|
9930
11502
|
/**
|
|
9931
|
-
*
|
|
9932
|
-
* @type {string || null}
|
|
9933
|
-
*/
|
|
9934
|
-
this.ClusterId = null;
|
|
9935
|
-
|
|
9936
|
-
/**
|
|
9937
|
-
* Namespace.
|
|
9938
|
-
* @type {string || null}
|
|
9939
|
-
*/
|
|
9940
|
-
this.NamespaceId = null;
|
|
9941
|
-
|
|
9942
|
-
/**
|
|
9943
|
-
* Offset.
|
|
9944
|
-
* @type {number || null}
|
|
9945
|
-
*/
|
|
9946
|
-
this.Offset = null;
|
|
9947
|
-
|
|
9948
|
-
/**
|
|
9949
|
-
* The max number of returned results.
|
|
11503
|
+
* The number of clusters
|
|
9950
11504
|
* @type {number || null}
|
|
9951
11505
|
*/
|
|
9952
|
-
this.
|
|
9953
|
-
|
|
9954
|
-
/**
|
|
9955
|
-
* Topic name, which can be used to query all subscription groups under the topic
|
|
9956
|
-
* @type {string || null}
|
|
9957
|
-
*/
|
|
9958
|
-
this.FilterTopic = null;
|
|
9959
|
-
|
|
9960
|
-
/**
|
|
9961
|
-
* Consumer group query by consumer group name. Fuzzy query is supported
|
|
9962
|
-
* @type {string || null}
|
|
9963
|
-
*/
|
|
9964
|
-
this.FilterGroup = null;
|
|
9965
|
-
|
|
9966
|
-
/**
|
|
9967
|
-
* Sort by specified field. Valid values: `tps`, `accumulative`.
|
|
9968
|
-
* @type {string || null}
|
|
9969
|
-
*/
|
|
9970
|
-
this.SortedBy = null;
|
|
11506
|
+
this.TotalCount = null;
|
|
9971
11507
|
|
|
9972
11508
|
/**
|
|
9973
|
-
*
|
|
9974
|
-
|
|
11509
|
+
* Cluster list
|
|
11510
|
+
Note: u200dThis field may return null, indicating that no valid values can be obtained.
|
|
11511
|
+
* @type {Array.<RabbitMQPrivateVirtualHost> || null}
|
|
9975
11512
|
*/
|
|
9976
|
-
this.
|
|
11513
|
+
this.VirtualHostList = null;
|
|
9977
11514
|
|
|
9978
11515
|
/**
|
|
9979
|
-
*
|
|
11516
|
+
* The unique request ID, which is returned for each request. RequestId is required for locating a problem.
|
|
9980
11517
|
* @type {string || null}
|
|
9981
11518
|
*/
|
|
9982
|
-
this.
|
|
9983
|
-
|
|
9984
|
-
/**
|
|
9985
|
-
* Group type
|
|
9986
|
-
* @type {Array.<string> || null}
|
|
9987
|
-
*/
|
|
9988
|
-
this.Types = null;
|
|
11519
|
+
this.RequestId = null;
|
|
9989
11520
|
|
|
9990
11521
|
}
|
|
9991
11522
|
|
|
@@ -9996,16 +11527,17 @@ class DescribeRocketMQGroupsRequest extends AbstractModel {
|
|
|
9996
11527
|
if (!params) {
|
|
9997
11528
|
return;
|
|
9998
11529
|
}
|
|
9999
|
-
this.
|
|
10000
|
-
|
|
10001
|
-
|
|
10002
|
-
|
|
10003
|
-
|
|
10004
|
-
|
|
10005
|
-
|
|
10006
|
-
|
|
10007
|
-
|
|
10008
|
-
|
|
11530
|
+
this.TotalCount = 'TotalCount' in params ? params.TotalCount : null;
|
|
11531
|
+
|
|
11532
|
+
if (params.VirtualHostList) {
|
|
11533
|
+
this.VirtualHostList = new Array();
|
|
11534
|
+
for (let z in params.VirtualHostList) {
|
|
11535
|
+
let obj = new RabbitMQPrivateVirtualHost();
|
|
11536
|
+
obj.deserialize(params.VirtualHostList[z]);
|
|
11537
|
+
this.VirtualHostList.push(obj);
|
|
11538
|
+
}
|
|
11539
|
+
}
|
|
11540
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
10009
11541
|
|
|
10010
11542
|
}
|
|
10011
11543
|
}
|
|
@@ -10090,24 +11622,55 @@ class DescribePulsarProInstanceDetailRequest extends AbstractModel {
|
|
|
10090
11622
|
}
|
|
10091
11623
|
|
|
10092
11624
|
/**
|
|
10093
|
-
*
|
|
11625
|
+
* CreateRabbitMQUser request structure.
|
|
10094
11626
|
* @class
|
|
10095
11627
|
*/
|
|
10096
|
-
class
|
|
11628
|
+
class CreateRabbitMQUserRequest extends AbstractModel {
|
|
10097
11629
|
constructor(){
|
|
10098
11630
|
super();
|
|
10099
11631
|
|
|
10100
11632
|
/**
|
|
10101
|
-
*
|
|
11633
|
+
* Cluster instance ID
|
|
10102
11634
|
* @type {string || null}
|
|
10103
11635
|
*/
|
|
10104
|
-
this.
|
|
11636
|
+
this.InstanceId = null;
|
|
10105
11637
|
|
|
10106
11638
|
/**
|
|
10107
|
-
*
|
|
11639
|
+
* Username, which is used for login.
|
|
10108
11640
|
* @type {string || null}
|
|
10109
11641
|
*/
|
|
10110
|
-
this.
|
|
11642
|
+
this.User = null;
|
|
11643
|
+
|
|
11644
|
+
/**
|
|
11645
|
+
* Password, which is used for login.
|
|
11646
|
+
* @type {string || null}
|
|
11647
|
+
*/
|
|
11648
|
+
this.Password = null;
|
|
11649
|
+
|
|
11650
|
+
/**
|
|
11651
|
+
* Description
|
|
11652
|
+
* @type {string || null}
|
|
11653
|
+
*/
|
|
11654
|
+
this.Description = null;
|
|
11655
|
+
|
|
11656
|
+
/**
|
|
11657
|
+
* User tag, which defines a user's permission scope for accessing RabbitMQ Managementu200d.
|
|
11658
|
+
Valid values: `management` (Common console user), monitoring` (Console admin user), other values: Non-console user.
|
|
11659
|
+
* @type {Array.<string> || null}
|
|
11660
|
+
*/
|
|
11661
|
+
this.Tags = null;
|
|
11662
|
+
|
|
11663
|
+
/**
|
|
11664
|
+
* The maximum number of connections for the user. If this parameter is left empty, there's no limit for the number.
|
|
11665
|
+
* @type {number || null}
|
|
11666
|
+
*/
|
|
11667
|
+
this.MaxConnections = null;
|
|
11668
|
+
|
|
11669
|
+
/**
|
|
11670
|
+
* The maximum number of channels for the user. If this parameter is left empty, there's no limit for the number.
|
|
11671
|
+
* @type {number || null}
|
|
11672
|
+
*/
|
|
11673
|
+
this.MaxChannels = null;
|
|
10111
11674
|
|
|
10112
11675
|
}
|
|
10113
11676
|
|
|
@@ -10118,8 +11681,13 @@ class Sort extends AbstractModel {
|
|
|
10118
11681
|
if (!params) {
|
|
10119
11682
|
return;
|
|
10120
11683
|
}
|
|
10121
|
-
this.
|
|
10122
|
-
this.
|
|
11684
|
+
this.InstanceId = 'InstanceId' in params ? params.InstanceId : null;
|
|
11685
|
+
this.User = 'User' in params ? params.User : null;
|
|
11686
|
+
this.Password = 'Password' in params ? params.Password : null;
|
|
11687
|
+
this.Description = 'Description' in params ? params.Description : null;
|
|
11688
|
+
this.Tags = 'Tags' in params ? params.Tags : null;
|
|
11689
|
+
this.MaxConnections = 'MaxConnections' in params ? params.MaxConnections : null;
|
|
11690
|
+
this.MaxChannels = 'MaxChannels' in params ? params.MaxChannels : null;
|
|
10123
11691
|
|
|
10124
11692
|
}
|
|
10125
11693
|
}
|
|
@@ -11044,6 +12612,34 @@ class DeleteCmqSubscribeResponse extends AbstractModel {
|
|
|
11044
12612
|
}
|
|
11045
12613
|
}
|
|
11046
12614
|
|
|
12615
|
+
/**
|
|
12616
|
+
* DeleteRabbitMQVipInstance request structure.
|
|
12617
|
+
* @class
|
|
12618
|
+
*/
|
|
12619
|
+
class DeleteRabbitMQVipInstanceRequest extends AbstractModel {
|
|
12620
|
+
constructor(){
|
|
12621
|
+
super();
|
|
12622
|
+
|
|
12623
|
+
/**
|
|
12624
|
+
* Instance ID
|
|
12625
|
+
* @type {string || null}
|
|
12626
|
+
*/
|
|
12627
|
+
this.InstanceId = null;
|
|
12628
|
+
|
|
12629
|
+
}
|
|
12630
|
+
|
|
12631
|
+
/**
|
|
12632
|
+
* @private
|
|
12633
|
+
*/
|
|
12634
|
+
deserialize(params) {
|
|
12635
|
+
if (!params) {
|
|
12636
|
+
return;
|
|
12637
|
+
}
|
|
12638
|
+
this.InstanceId = 'InstanceId' in params ? params.InstanceId : null;
|
|
12639
|
+
|
|
12640
|
+
}
|
|
12641
|
+
}
|
|
12642
|
+
|
|
11047
12643
|
/**
|
|
11048
12644
|
* DescribePublisherSummary request structure.
|
|
11049
12645
|
* @class
|
|
@@ -11235,6 +12831,13 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
11235
12831
|
*/
|
|
11236
12832
|
this.MaxStorage = null;
|
|
11237
12833
|
|
|
12834
|
+
/**
|
|
12835
|
+
* Whether the route can be modified
|
|
12836
|
+
Note: u200dThis field may return null, indicating that no valid values can be obtained.
|
|
12837
|
+
* @type {boolean || null}
|
|
12838
|
+
*/
|
|
12839
|
+
this.CanEditRoute = null;
|
|
12840
|
+
|
|
11238
12841
|
}
|
|
11239
12842
|
|
|
11240
12843
|
/**
|
|
@@ -11260,6 +12863,7 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
11260
12863
|
}
|
|
11261
12864
|
}
|
|
11262
12865
|
this.MaxStorage = 'MaxStorage' in params ? params.MaxStorage : null;
|
|
12866
|
+
this.CanEditRoute = 'CanEditRoute' in params ? params.CanEditRoute : null;
|
|
11263
12867
|
|
|
11264
12868
|
}
|
|
11265
12869
|
}
|
|
@@ -11545,6 +13149,50 @@ class CreateEnvironmentRoleRequest extends AbstractModel {
|
|
|
11545
13149
|
}
|
|
11546
13150
|
}
|
|
11547
13151
|
|
|
13152
|
+
/**
|
|
13153
|
+
* DeleteRabbitMQVipInstance response structure.
|
|
13154
|
+
* @class
|
|
13155
|
+
*/
|
|
13156
|
+
class DeleteRabbitMQVipInstanceResponse extends AbstractModel {
|
|
13157
|
+
constructor(){
|
|
13158
|
+
super();
|
|
13159
|
+
|
|
13160
|
+
/**
|
|
13161
|
+
* Order ID
|
|
13162
|
+
Note: u200dThis field may return null, indicating that no valid values can be obtained.
|
|
13163
|
+
* @type {string || null}
|
|
13164
|
+
*/
|
|
13165
|
+
this.TranId = null;
|
|
13166
|
+
|
|
13167
|
+
/**
|
|
13168
|
+
* Instance ID
|
|
13169
|
+
Note: u200dThis field may return null, indicating that no valid values can be obtained.
|
|
13170
|
+
* @type {string || null}
|
|
13171
|
+
*/
|
|
13172
|
+
this.InstanceId = null;
|
|
13173
|
+
|
|
13174
|
+
/**
|
|
13175
|
+
* The unique request ID, which is returned for each request. RequestId is required for locating a problem.
|
|
13176
|
+
* @type {string || null}
|
|
13177
|
+
*/
|
|
13178
|
+
this.RequestId = null;
|
|
13179
|
+
|
|
13180
|
+
}
|
|
13181
|
+
|
|
13182
|
+
/**
|
|
13183
|
+
* @private
|
|
13184
|
+
*/
|
|
13185
|
+
deserialize(params) {
|
|
13186
|
+
if (!params) {
|
|
13187
|
+
return;
|
|
13188
|
+
}
|
|
13189
|
+
this.TranId = 'TranId' in params ? params.TranId : null;
|
|
13190
|
+
this.InstanceId = 'InstanceId' in params ? params.InstanceId : null;
|
|
13191
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
13192
|
+
|
|
13193
|
+
}
|
|
13194
|
+
}
|
|
13195
|
+
|
|
11548
13196
|
/**
|
|
11549
13197
|
* ModifyRocketMQTopic response structure.
|
|
11550
13198
|
* @class
|
|
@@ -11573,14 +13221,92 @@ class ModifyRocketMQTopicResponse extends AbstractModel {
|
|
|
11573
13221
|
}
|
|
11574
13222
|
}
|
|
11575
13223
|
|
|
13224
|
+
/**
|
|
13225
|
+
* DescribeRabbitMQVirtualHost request structure.
|
|
13226
|
+
* @class
|
|
13227
|
+
*/
|
|
13228
|
+
class DescribeRabbitMQVirtualHostRequest extends AbstractModel {
|
|
13229
|
+
constructor(){
|
|
13230
|
+
super();
|
|
13231
|
+
|
|
13232
|
+
/**
|
|
13233
|
+
* Cluster instance ID
|
|
13234
|
+
* @type {string || null}
|
|
13235
|
+
*/
|
|
13236
|
+
this.InstanceId = null;
|
|
13237
|
+
|
|
13238
|
+
/**
|
|
13239
|
+
* Vhost name. If this parameter is not specified, all will be queried by default.
|
|
13240
|
+
* @type {string || null}
|
|
13241
|
+
*/
|
|
13242
|
+
this.VirtualHost = null;
|
|
13243
|
+
|
|
13244
|
+
/**
|
|
13245
|
+
* Pagination offset
|
|
13246
|
+
* @type {number || null}
|
|
13247
|
+
*/
|
|
13248
|
+
this.Offset = null;
|
|
13249
|
+
|
|
13250
|
+
/**
|
|
13251
|
+
* Pagination limit
|
|
13252
|
+
* @type {number || null}
|
|
13253
|
+
*/
|
|
13254
|
+
this.Limit = null;
|
|
13255
|
+
|
|
13256
|
+
/**
|
|
13257
|
+
* Fuzzy query by vhost name
|
|
13258
|
+
* @type {Filter || null}
|
|
13259
|
+
*/
|
|
13260
|
+
this.Filters = null;
|
|
13261
|
+
|
|
13262
|
+
/**
|
|
13263
|
+
*
|
|
13264
|
+
* @type {string || null}
|
|
13265
|
+
*/
|
|
13266
|
+
this.SortElement = null;
|
|
13267
|
+
|
|
13268
|
+
/**
|
|
13269
|
+
*
|
|
13270
|
+
* @type {string || null}
|
|
13271
|
+
*/
|
|
13272
|
+
this.SortOrder = null;
|
|
13273
|
+
|
|
13274
|
+
}
|
|
13275
|
+
|
|
13276
|
+
/**
|
|
13277
|
+
* @private
|
|
13278
|
+
*/
|
|
13279
|
+
deserialize(params) {
|
|
13280
|
+
if (!params) {
|
|
13281
|
+
return;
|
|
13282
|
+
}
|
|
13283
|
+
this.InstanceId = 'InstanceId' in params ? params.InstanceId : null;
|
|
13284
|
+
this.VirtualHost = 'VirtualHost' in params ? params.VirtualHost : null;
|
|
13285
|
+
this.Offset = 'Offset' in params ? params.Offset : null;
|
|
13286
|
+
this.Limit = 'Limit' in params ? params.Limit : null;
|
|
13287
|
+
|
|
13288
|
+
if (params.Filters) {
|
|
13289
|
+
let obj = new Filter();
|
|
13290
|
+
obj.deserialize(params.Filters)
|
|
13291
|
+
this.Filters = obj;
|
|
13292
|
+
}
|
|
13293
|
+
this.SortElement = 'SortElement' in params ? params.SortElement : null;
|
|
13294
|
+
this.SortOrder = 'SortOrder' in params ? params.SortOrder : null;
|
|
13295
|
+
|
|
13296
|
+
}
|
|
13297
|
+
}
|
|
13298
|
+
|
|
11576
13299
|
module.exports = {
|
|
11577
13300
|
DescribeRolesResponse: DescribeRolesResponse,
|
|
11578
13301
|
DescribeBindClustersResponse: DescribeBindClustersResponse,
|
|
13302
|
+
DescribeRabbitMQVirtualHostResponse: DescribeRabbitMQVirtualHostResponse,
|
|
11579
13303
|
CmqDeadLetterPolicy: CmqDeadLetterPolicy,
|
|
13304
|
+
DeleteRabbitMQUserRequest: DeleteRabbitMQUserRequest,
|
|
11580
13305
|
RocketMQNamespace: RocketMQNamespace,
|
|
11581
13306
|
DescribeSubscriptionsRequest: DescribeSubscriptionsRequest,
|
|
11582
|
-
|
|
13307
|
+
DescribeRocketMQGroupsRequest: DescribeRocketMQGroupsRequest,
|
|
11583
13308
|
CreateRocketMQGroupRequest: CreateRocketMQGroupRequest,
|
|
13309
|
+
ModifyRabbitMQVirtualHostRequest: ModifyRabbitMQVirtualHostRequest,
|
|
11584
13310
|
ModifyEnvironmentAttributesRequest: ModifyEnvironmentAttributesRequest,
|
|
11585
13311
|
DeleteClusterResponse: DeleteClusterResponse,
|
|
11586
13312
|
SendBatchMessagesResponse: SendBatchMessagesResponse,
|
|
@@ -11589,13 +13315,17 @@ module.exports = {
|
|
|
11589
13315
|
PulsarProClusterSpecInfo: PulsarProClusterSpecInfo,
|
|
11590
13316
|
RocketMQTopicDistribution: RocketMQTopicDistribution,
|
|
11591
13317
|
DescribeRocketMQNamespacesResponse: DescribeRocketMQNamespacesResponse,
|
|
13318
|
+
ModifyRocketMQInstanceSpecRequest: ModifyRocketMQInstanceSpecRequest,
|
|
11592
13319
|
BindCluster: BindCluster,
|
|
13320
|
+
Sort: Sort,
|
|
11593
13321
|
ModifyClusterResponse: ModifyClusterResponse,
|
|
11594
|
-
|
|
13322
|
+
SendRocketMQMessageRequest: SendRocketMQMessageRequest,
|
|
13323
|
+
RabbitMQPrivateVirtualHost: RabbitMQPrivateVirtualHost,
|
|
11595
13324
|
RocketMQVipInstance: RocketMQVipInstance,
|
|
11596
13325
|
RabbitMQVipInstance: RabbitMQVipInstance,
|
|
11597
13326
|
DescribeCmqQueuesResponse: DescribeCmqQueuesResponse,
|
|
11598
13327
|
CreateRabbitMQVipInstanceRequest: CreateRabbitMQVipInstanceRequest,
|
|
13328
|
+
CreateRabbitMQVirtualHostResponse: CreateRabbitMQVirtualHostResponse,
|
|
11599
13329
|
DescribeRabbitMQNodeListRequest: DescribeRabbitMQNodeListRequest,
|
|
11600
13330
|
PublishCmqMsgRequest: PublishCmqMsgRequest,
|
|
11601
13331
|
RocketMQInstanceConfig: RocketMQInstanceConfig,
|
|
@@ -11605,12 +13335,18 @@ module.exports = {
|
|
|
11605
13335
|
CmqSubscription: CmqSubscription,
|
|
11606
13336
|
DeleteRocketMQGroupRequest: DeleteRocketMQGroupRequest,
|
|
11607
13337
|
RocketMQGroup: RocketMQGroup,
|
|
13338
|
+
ModifyRabbitMQUserRequest: ModifyRabbitMQUserRequest,
|
|
13339
|
+
RocketMQClusterConfig: RocketMQClusterConfig,
|
|
11608
13340
|
DeleteCmqTopicResponse: DeleteCmqTopicResponse,
|
|
11609
13341
|
CreateSubscriptionRequest: CreateSubscriptionRequest,
|
|
11610
13342
|
CreateRocketMQNamespaceRequest: CreateRocketMQNamespaceRequest,
|
|
13343
|
+
RabbitMQVirtualHostInfo: RabbitMQVirtualHostInfo,
|
|
13344
|
+
InstanceNodeDistribution: InstanceNodeDistribution,
|
|
11611
13345
|
DescribeCmqTopicDetailResponse: DescribeCmqTopicDetailResponse,
|
|
13346
|
+
ModifyRabbitMQVirtualHostResponse: ModifyRabbitMQVirtualHostResponse,
|
|
11612
13347
|
CmqQueue: CmqQueue,
|
|
11613
13348
|
CreateEnvironmentResponse: CreateEnvironmentResponse,
|
|
13349
|
+
RabbitMQVirtualHostStatistics: RabbitMQVirtualHostStatistics,
|
|
11614
13350
|
CreateSubscriptionResponse: CreateSubscriptionResponse,
|
|
11615
13351
|
SendMsgResponse: SendMsgResponse,
|
|
11616
13352
|
ModifyCmqTopicAttributeResponse: ModifyCmqTopicAttributeResponse,
|
|
@@ -11623,6 +13359,7 @@ module.exports = {
|
|
|
11623
13359
|
DescribeCmqQueueDetailResponse: DescribeCmqQueueDetailResponse,
|
|
11624
13360
|
CreateEnvironmentRequest: CreateEnvironmentRequest,
|
|
11625
13361
|
DeleteTopicsResponse: DeleteTopicsResponse,
|
|
13362
|
+
ModifyEnvironmentAttributesResponse: ModifyEnvironmentAttributesResponse,
|
|
11626
13363
|
DescribeClustersRequest: DescribeClustersRequest,
|
|
11627
13364
|
SubscriptionTopic: SubscriptionTopic,
|
|
11628
13365
|
RocketMQTopic: RocketMQTopic,
|
|
@@ -11630,16 +13367,19 @@ module.exports = {
|
|
|
11630
13367
|
DescribeCmqSubscriptionDetailResponse: DescribeCmqSubscriptionDetailResponse,
|
|
11631
13368
|
VpcBindRecord: VpcBindRecord,
|
|
11632
13369
|
RewindCmqQueueRequest: RewindCmqQueueRequest,
|
|
13370
|
+
DescribeRabbitMQUserResponse: DescribeRabbitMQUserResponse,
|
|
13371
|
+
DescribeRocketMQMsgResponse: DescribeRocketMQMsgResponse,
|
|
11633
13372
|
ModifyClusterRequest: ModifyClusterRequest,
|
|
11634
13373
|
DescribeEnvironmentAttributesRequest: DescribeEnvironmentAttributesRequest,
|
|
11635
13374
|
ModifyRocketMQClusterRequest: ModifyRocketMQClusterRequest,
|
|
13375
|
+
DeleteRabbitMQVirtualHostResponse: DeleteRabbitMQVirtualHostResponse,
|
|
11636
13376
|
AcknowledgeMessageRequest: AcknowledgeMessageRequest,
|
|
11637
13377
|
ResetRocketMQConsumerOffSetResponse: ResetRocketMQConsumerOffSetResponse,
|
|
11638
13378
|
DescribeRocketMQVipInstanceDetailResponse: DescribeRocketMQVipInstanceDetailResponse,
|
|
11639
13379
|
PublishCmqMsgResponse: PublishCmqMsgResponse,
|
|
11640
13380
|
DescribePublishersRequest: DescribePublishersRequest,
|
|
11641
13381
|
CreateRocketMQClusterRequest: CreateRocketMQClusterRequest,
|
|
11642
|
-
|
|
13382
|
+
CreateRabbitMQUserResponse: CreateRabbitMQUserResponse,
|
|
11643
13383
|
AcknowledgeMessageResponse: AcknowledgeMessageResponse,
|
|
11644
13384
|
DeleteEnvironmentRolesResponse: DeleteEnvironmentRolesResponse,
|
|
11645
13385
|
DescribeClusterDetailRequest: DescribeClusterDetailRequest,
|
|
@@ -11648,6 +13388,7 @@ module.exports = {
|
|
|
11648
13388
|
DeleteCmqQueueResponse: DeleteCmqQueueResponse,
|
|
11649
13389
|
DescribeRocketMQClusterRequest: DescribeRocketMQClusterRequest,
|
|
11650
13390
|
DeleteRocketMQTopicResponse: DeleteRocketMQTopicResponse,
|
|
13391
|
+
SendRocketMQMessageResponse: SendRocketMQMessageResponse,
|
|
11651
13392
|
ModifyCmqTopicAttributeRequest: ModifyCmqTopicAttributeRequest,
|
|
11652
13393
|
DescribeRabbitMQVipInstancesResponse: DescribeRabbitMQVipInstancesResponse,
|
|
11653
13394
|
DeleteRolesRequest: DeleteRolesRequest,
|
|
@@ -11655,7 +13396,9 @@ module.exports = {
|
|
|
11655
13396
|
CreateCmqSubscribeResponse: CreateCmqSubscribeResponse,
|
|
11656
13397
|
Publisher: Publisher,
|
|
11657
13398
|
DescribeSubscriptionsResponse: DescribeSubscriptionsResponse,
|
|
13399
|
+
RocketMQMessageTrack: RocketMQMessageTrack,
|
|
11658
13400
|
ModifyRoleRequest: ModifyRoleRequest,
|
|
13401
|
+
DescribeRocketMQMsgRequest: DescribeRocketMQMsgRequest,
|
|
11659
13402
|
SendMessagesResponse: SendMessagesResponse,
|
|
11660
13403
|
ReceiveMessageRequest: ReceiveMessageRequest,
|
|
11661
13404
|
CreateTopicRequest: CreateTopicRequest,
|
|
@@ -11670,6 +13413,7 @@ module.exports = {
|
|
|
11670
13413
|
CmqTopic: CmqTopic,
|
|
11671
13414
|
UnbindCmqDeadLetterResponse: UnbindCmqDeadLetterResponse,
|
|
11672
13415
|
ModifyRocketMQNamespaceResponse: ModifyRocketMQNamespaceResponse,
|
|
13416
|
+
SendCmqMsgRequest: SendCmqMsgRequest,
|
|
11673
13417
|
DeleteEnvironmentsRequest: DeleteEnvironmentsRequest,
|
|
11674
13418
|
DescribeRocketMQClustersRequest: DescribeRocketMQClustersRequest,
|
|
11675
13419
|
DescribeBindVpcsRequest: DescribeBindVpcsRequest,
|
|
@@ -11681,8 +13425,11 @@ module.exports = {
|
|
|
11681
13425
|
ModifyRocketMQNamespaceRequest: ModifyRocketMQNamespaceRequest,
|
|
11682
13426
|
DescribeEnvironmentRolesRequest: DescribeEnvironmentRolesRequest,
|
|
11683
13427
|
DeleteRolesResponse: DeleteRolesResponse,
|
|
13428
|
+
EnvironmentRoleSet: EnvironmentRoleSet,
|
|
13429
|
+
RocketMQClusterRecentStats: RocketMQClusterRecentStats,
|
|
11684
13430
|
ModifyRocketMQTopicRequest: ModifyRocketMQTopicRequest,
|
|
11685
13431
|
RocketMQClusterInfo: RocketMQClusterInfo,
|
|
13432
|
+
DescribeRabbitMQUserRequest: DescribeRabbitMQUserRequest,
|
|
11686
13433
|
DescribeRocketMQTopicsResponse: DescribeRocketMQTopicsResponse,
|
|
11687
13434
|
Environment: Environment,
|
|
11688
13435
|
RocketMQClusterDetail: RocketMQClusterDetail,
|
|
@@ -11697,14 +13444,17 @@ module.exports = {
|
|
|
11697
13444
|
DeleteRocketMQNamespaceRequest: DeleteRocketMQNamespaceRequest,
|
|
11698
13445
|
DescribeRolesRequest: DescribeRolesRequest,
|
|
11699
13446
|
CreateClusterRequest: CreateClusterRequest,
|
|
13447
|
+
DescribeRabbitMQVirtualHostListRequest: DescribeRabbitMQVirtualHostListRequest,
|
|
11700
13448
|
ModifyCmqQueueAttributeResponse: ModifyCmqQueueAttributeResponse,
|
|
11701
13449
|
CreateTopicResponse: CreateTopicResponse,
|
|
11702
13450
|
DescribeCmqQueuesRequest: DescribeCmqQueuesRequest,
|
|
11703
13451
|
DescribeEnvironmentsResponse: DescribeEnvironmentsResponse,
|
|
11704
13452
|
ModifyCmqSubscriptionAttributeRequest: ModifyCmqSubscriptionAttributeRequest,
|
|
11705
13453
|
ModifyTopicResponse: ModifyTopicResponse,
|
|
13454
|
+
ModifyRocketMQInstanceSpecResponse: ModifyRocketMQInstanceSpecResponse,
|
|
11706
13455
|
DescribeRocketMQVipInstancesRequest: DescribeRocketMQVipInstancesRequest,
|
|
11707
13456
|
DescribeRocketMQVipInstanceDetailRequest: DescribeRocketMQVipInstanceDetailRequest,
|
|
13457
|
+
DeleteRabbitMQVirtualHostRequest: DeleteRabbitMQVirtualHostRequest,
|
|
11708
13458
|
DeleteRocketMQClusterResponse: DeleteRocketMQClusterResponse,
|
|
11709
13459
|
CreateCmqTopicResponse: CreateCmqTopicResponse,
|
|
11710
13460
|
CmqDeadLetterSource: CmqDeadLetterSource,
|
|
@@ -11720,7 +13470,7 @@ module.exports = {
|
|
|
11720
13470
|
Consumer: Consumer,
|
|
11721
13471
|
DescribeBindVpcsResponse: DescribeBindVpcsResponse,
|
|
11722
13472
|
DeleteCmqSubscribeRequest: DeleteCmqSubscribeRequest,
|
|
11723
|
-
|
|
13473
|
+
RabbitMQUser: RabbitMQUser,
|
|
11724
13474
|
DescribeCmqDeadLetterSourceQueuesResponse: DescribeCmqDeadLetterSourceQueuesResponse,
|
|
11725
13475
|
DeleteSubscriptionsResponse: DeleteSubscriptionsResponse,
|
|
11726
13476
|
DeleteRocketMQTopicRequest: DeleteRocketMQTopicRequest,
|
|
@@ -11741,17 +13491,19 @@ module.exports = {
|
|
|
11741
13491
|
DescribePulsarProInstancesResponse: DescribePulsarProInstancesResponse,
|
|
11742
13492
|
DeleteEnvironmentRolesRequest: DeleteEnvironmentRolesRequest,
|
|
11743
13493
|
ClearCmqQueueResponse: ClearCmqQueueResponse,
|
|
13494
|
+
ModifyRabbitMQUserResponse: ModifyRabbitMQUserResponse,
|
|
11744
13495
|
DescribeBindClustersRequest: DescribeBindClustersRequest,
|
|
11745
13496
|
CreateRocketMQTopicResponse: CreateRocketMQTopicResponse,
|
|
11746
|
-
|
|
13497
|
+
CreateRabbitMQVirtualHostRequest: CreateRabbitMQVirtualHostRequest,
|
|
11747
13498
|
EnvironmentRole: EnvironmentRole,
|
|
11748
13499
|
CreateCmqQueueRequest: CreateCmqQueueRequest,
|
|
11749
13500
|
ModifyEnvironmentRoleResponse: ModifyEnvironmentRoleResponse,
|
|
11750
13501
|
DeleteCmqQueueRequest: DeleteCmqQueueRequest,
|
|
11751
|
-
|
|
13502
|
+
DeleteRabbitMQUserResponse: DeleteRabbitMQUserResponse,
|
|
13503
|
+
DescribeRabbitMQVirtualHostListResponse: DescribeRabbitMQVirtualHostListResponse,
|
|
11752
13504
|
DescribeRocketMQClustersResponse: DescribeRocketMQClustersResponse,
|
|
11753
13505
|
DescribePulsarProInstanceDetailRequest: DescribePulsarProInstanceDetailRequest,
|
|
11754
|
-
|
|
13506
|
+
CreateRabbitMQUserRequest: CreateRabbitMQUserRequest,
|
|
11755
13507
|
CreateRoleRequest: CreateRoleRequest,
|
|
11756
13508
|
PulsarNetworkAccessPointInfo: PulsarNetworkAccessPointInfo,
|
|
11757
13509
|
ModifyEnvironmentRoleRequest: ModifyEnvironmentRoleRequest,
|
|
@@ -11768,6 +13520,7 @@ module.exports = {
|
|
|
11768
13520
|
ModifyCmqQueueAttributeRequest: ModifyCmqQueueAttributeRequest,
|
|
11769
13521
|
RabbitMQPrivateNode: RabbitMQPrivateNode,
|
|
11770
13522
|
DeleteCmqSubscribeResponse: DeleteCmqSubscribeResponse,
|
|
13523
|
+
DeleteRabbitMQVipInstanceRequest: DeleteRabbitMQVipInstanceRequest,
|
|
11771
13524
|
DescribePublisherSummaryRequest: DescribePublisherSummaryRequest,
|
|
11772
13525
|
DeleteSubscriptionsRequest: DeleteSubscriptionsRequest,
|
|
11773
13526
|
VpcConfig: VpcConfig,
|
|
@@ -11778,6 +13531,8 @@ module.exports = {
|
|
|
11778
13531
|
DescribeClusterDetailResponse: DescribeClusterDetailResponse,
|
|
11779
13532
|
SendMessagesRequest: SendMessagesRequest,
|
|
11780
13533
|
CreateEnvironmentRoleRequest: CreateEnvironmentRoleRequest,
|
|
13534
|
+
DeleteRabbitMQVipInstanceResponse: DeleteRabbitMQVipInstanceResponse,
|
|
11781
13535
|
ModifyRocketMQTopicResponse: ModifyRocketMQTopicResponse,
|
|
13536
|
+
DescribeRabbitMQVirtualHostRequest: DescribeRabbitMQVirtualHostRequest,
|
|
11782
13537
|
|
|
11783
13538
|
}
|