tencentcloud-sdk-nodejs-intl-en 3.0.1393 → 3.0.1394
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/billing/v20180709/billing_client.js +127 -34
- package/tencentcloud/billing/v20180709/models.js +2908 -880
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/faceid/v20180301/models.js +19 -13
- package/tencentcloud/trabbit/v20230418/models.js +371 -77
- package/tencentcloud/trabbit/v20230418/trabbit_client.js +1 -0
|
@@ -95,7 +95,7 @@ class DeleteRabbitMQServerlessPermissionResponse extends AbstractModel {
|
|
|
95
95
|
}
|
|
96
96
|
|
|
97
97
|
/**
|
|
98
|
-
*
|
|
98
|
+
* Key-value pair
|
|
99
99
|
* @class
|
|
100
100
|
*/
|
|
101
101
|
class RabbitMQServerlessKeyValuePair extends AbstractModel {
|
|
@@ -103,13 +103,13 @@ class RabbitMQServerlessKeyValuePair extends AbstractModel {
|
|
|
103
103
|
super();
|
|
104
104
|
|
|
105
105
|
/**
|
|
106
|
-
*
|
|
106
|
+
* Key.
|
|
107
107
|
* @type {string || null}
|
|
108
108
|
*/
|
|
109
109
|
this.Key = null;
|
|
110
110
|
|
|
111
111
|
/**
|
|
112
|
-
*
|
|
112
|
+
* Value.
|
|
113
113
|
* @type {string || null}
|
|
114
114
|
*/
|
|
115
115
|
this.Value = null;
|
|
@@ -138,59 +138,65 @@ class RabbitMQBindingListInfo extends AbstractModel {
|
|
|
138
138
|
super();
|
|
139
139
|
|
|
140
140
|
/**
|
|
141
|
-
*
|
|
141
|
+
* <p>Routing relationship id</p>
|
|
142
142
|
* @type {number || null}
|
|
143
143
|
*/
|
|
144
144
|
this.BindingId = null;
|
|
145
145
|
|
|
146
146
|
/**
|
|
147
|
-
* Vhost parameter
|
|
147
|
+
* <p>Vhost parameter</p>
|
|
148
148
|
* @type {string || null}
|
|
149
149
|
*/
|
|
150
150
|
this.VirtualHost = null;
|
|
151
151
|
|
|
152
152
|
/**
|
|
153
|
-
* Source exchange name
|
|
153
|
+
* <p>Source exchange name</p>
|
|
154
154
|
* @type {string || null}
|
|
155
155
|
*/
|
|
156
156
|
this.Source = null;
|
|
157
157
|
|
|
158
158
|
/**
|
|
159
|
-
* Target type
|
|
159
|
+
* <p>Target type, queue or exchange</p>
|
|
160
160
|
* @type {string || null}
|
|
161
161
|
*/
|
|
162
162
|
this.DestinationType = null;
|
|
163
163
|
|
|
164
164
|
/**
|
|
165
|
-
* Target resource name
|
|
165
|
+
* <p>Target resource name</p>
|
|
166
166
|
* @type {string || null}
|
|
167
167
|
*/
|
|
168
168
|
this.Destination = null;
|
|
169
169
|
|
|
170
170
|
/**
|
|
171
|
-
*
|
|
171
|
+
* <p>Bind key</p>
|
|
172
172
|
* @type {string || null}
|
|
173
173
|
*/
|
|
174
174
|
this.RoutingKey = null;
|
|
175
175
|
|
|
176
176
|
/**
|
|
177
|
-
* Source exchange type
|
|
177
|
+
* <p>Source exchange type</p>
|
|
178
178
|
* @type {string || null}
|
|
179
179
|
*/
|
|
180
180
|
this.SourceExchangeType = null;
|
|
181
181
|
|
|
182
182
|
/**
|
|
183
|
-
* Creation time
|
|
183
|
+
* <p>Creation time.</p>
|
|
184
184
|
* @type {string || null}
|
|
185
185
|
*/
|
|
186
186
|
this.CreateTime = null;
|
|
187
187
|
|
|
188
188
|
/**
|
|
189
|
-
* Modification time
|
|
189
|
+
* <p>Modification time.</p>
|
|
190
190
|
* @type {string || null}
|
|
191
191
|
*/
|
|
192
192
|
this.ModifyTime = null;
|
|
193
193
|
|
|
194
|
+
/**
|
|
195
|
+
* <p>Bind parameter. Parameters can be passed in during binding for header type Exchange. No need to input for other types of Exchange.</p>
|
|
196
|
+
* @type {Array.<RabbitMQServerlessKeyValuePair> || null}
|
|
197
|
+
*/
|
|
198
|
+
this.Arguments = null;
|
|
199
|
+
|
|
194
200
|
}
|
|
195
201
|
|
|
196
202
|
/**
|
|
@@ -210,6 +216,15 @@ class RabbitMQBindingListInfo extends AbstractModel {
|
|
|
210
216
|
this.CreateTime = 'CreateTime' in params ? params.CreateTime : null;
|
|
211
217
|
this.ModifyTime = 'ModifyTime' in params ? params.ModifyTime : null;
|
|
212
218
|
|
|
219
|
+
if (params.Arguments) {
|
|
220
|
+
this.Arguments = new Array();
|
|
221
|
+
for (let z in params.Arguments) {
|
|
222
|
+
let obj = new RabbitMQServerlessKeyValuePair();
|
|
223
|
+
obj.deserialize(params.Arguments[z]);
|
|
224
|
+
this.Arguments.push(obj);
|
|
225
|
+
}
|
|
226
|
+
}
|
|
227
|
+
|
|
213
228
|
}
|
|
214
229
|
}
|
|
215
230
|
|
|
@@ -347,6 +362,41 @@ class DescribeRabbitMQServerlessUserResponse extends AbstractModel {
|
|
|
347
362
|
}
|
|
348
363
|
}
|
|
349
364
|
|
|
365
|
+
/**
|
|
366
|
+
* Tag.
|
|
367
|
+
* @class
|
|
368
|
+
*/
|
|
369
|
+
class RabbitMQServerlessTag extends AbstractModel {
|
|
370
|
+
constructor(){
|
|
371
|
+
super();
|
|
372
|
+
|
|
373
|
+
/**
|
|
374
|
+
* Tag key.
|
|
375
|
+
* @type {string || null}
|
|
376
|
+
*/
|
|
377
|
+
this.TagKey = null;
|
|
378
|
+
|
|
379
|
+
/**
|
|
380
|
+
* Tag value.
|
|
381
|
+
* @type {string || null}
|
|
382
|
+
*/
|
|
383
|
+
this.TagValue = null;
|
|
384
|
+
|
|
385
|
+
}
|
|
386
|
+
|
|
387
|
+
/**
|
|
388
|
+
* @private
|
|
389
|
+
*/
|
|
390
|
+
deserialize(params) {
|
|
391
|
+
if (!params) {
|
|
392
|
+
return;
|
|
393
|
+
}
|
|
394
|
+
this.TagKey = 'TagKey' in params ? params.TagKey : null;
|
|
395
|
+
this.TagValue = 'TagValue' in params ? params.TagValue : null;
|
|
396
|
+
|
|
397
|
+
}
|
|
398
|
+
}
|
|
399
|
+
|
|
350
400
|
/**
|
|
351
401
|
* ModifyRabbitMQServerlessExchange response structure.
|
|
352
402
|
* @class
|
|
@@ -1174,6 +1224,24 @@ class ModifyRabbitMQServerlessInstanceRequest extends AbstractModel {
|
|
|
1174
1224
|
*/
|
|
1175
1225
|
this.TraceFlag = null;
|
|
1176
1226
|
|
|
1227
|
+
/**
|
|
1228
|
+
* Traffic throttling production consumption ratio
|
|
1229
|
+
* @type {number || null}
|
|
1230
|
+
*/
|
|
1231
|
+
this.SendReceiveRatio = null;
|
|
1232
|
+
|
|
1233
|
+
/**
|
|
1234
|
+
* Specifies whether to delete all tags. Default value: false.
|
|
1235
|
+
* @type {boolean || null}
|
|
1236
|
+
*/
|
|
1237
|
+
this.DeleteAllTags = null;
|
|
1238
|
+
|
|
1239
|
+
/**
|
|
1240
|
+
* Modified instance tag list
|
|
1241
|
+
* @type {Array.<RabbitMQServerlessTag> || null}
|
|
1242
|
+
*/
|
|
1243
|
+
this.InstanceTags = null;
|
|
1244
|
+
|
|
1177
1245
|
}
|
|
1178
1246
|
|
|
1179
1247
|
/**
|
|
@@ -1187,6 +1255,17 @@ class ModifyRabbitMQServerlessInstanceRequest extends AbstractModel {
|
|
|
1187
1255
|
this.ClusterName = 'ClusterName' in params ? params.ClusterName : null;
|
|
1188
1256
|
this.Remark = 'Remark' in params ? params.Remark : null;
|
|
1189
1257
|
this.TraceFlag = 'TraceFlag' in params ? params.TraceFlag : null;
|
|
1258
|
+
this.SendReceiveRatio = 'SendReceiveRatio' in params ? params.SendReceiveRatio : null;
|
|
1259
|
+
this.DeleteAllTags = 'DeleteAllTags' in params ? params.DeleteAllTags : null;
|
|
1260
|
+
|
|
1261
|
+
if (params.InstanceTags) {
|
|
1262
|
+
this.InstanceTags = new Array();
|
|
1263
|
+
for (let z in params.InstanceTags) {
|
|
1264
|
+
let obj = new RabbitMQServerlessTag();
|
|
1265
|
+
obj.deserialize(params.InstanceTags[z]);
|
|
1266
|
+
this.InstanceTags.push(obj);
|
|
1267
|
+
}
|
|
1268
|
+
}
|
|
1190
1269
|
|
|
1191
1270
|
}
|
|
1192
1271
|
}
|
|
@@ -1320,6 +1399,18 @@ class RabbitMQServerlessInstance extends AbstractModel {
|
|
|
1320
1399
|
*/
|
|
1321
1400
|
this.IsolatedTime = null;
|
|
1322
1401
|
|
|
1402
|
+
/**
|
|
1403
|
+
* Serverless Extension Fields
|
|
1404
|
+
* @type {string || null}
|
|
1405
|
+
*/
|
|
1406
|
+
this.ServerlessExt = null;
|
|
1407
|
+
|
|
1408
|
+
/**
|
|
1409
|
+
* Instance tag list.
|
|
1410
|
+
* @type {Array.<RabbitMQServerlessTag> || null}
|
|
1411
|
+
*/
|
|
1412
|
+
this.Tags = null;
|
|
1413
|
+
|
|
1323
1414
|
}
|
|
1324
1415
|
|
|
1325
1416
|
/**
|
|
@@ -1357,6 +1448,16 @@ class RabbitMQServerlessInstance extends AbstractModel {
|
|
|
1357
1448
|
this.NodeCount = 'NodeCount' in params ? params.NodeCount : null;
|
|
1358
1449
|
this.MaxStorage = 'MaxStorage' in params ? params.MaxStorage : null;
|
|
1359
1450
|
this.IsolatedTime = 'IsolatedTime' in params ? params.IsolatedTime : null;
|
|
1451
|
+
this.ServerlessExt = 'ServerlessExt' in params ? params.ServerlessExt : null;
|
|
1452
|
+
|
|
1453
|
+
if (params.Tags) {
|
|
1454
|
+
this.Tags = new Array();
|
|
1455
|
+
for (let z in params.Tags) {
|
|
1456
|
+
let obj = new RabbitMQServerlessTag();
|
|
1457
|
+
obj.deserialize(params.Tags[z]);
|
|
1458
|
+
this.Tags.push(obj);
|
|
1459
|
+
}
|
|
1460
|
+
}
|
|
1360
1461
|
|
|
1361
1462
|
}
|
|
1362
1463
|
}
|
|
@@ -1550,6 +1651,12 @@ class RabbitMQServerlessAccessInfo extends AbstractModel {
|
|
|
1550
1651
|
*/
|
|
1551
1652
|
this.PublicDataStreamStatus = null;
|
|
1552
1653
|
|
|
1654
|
+
/**
|
|
1655
|
+
* Public network CLB instance ID
|
|
1656
|
+
* @type {string || null}
|
|
1657
|
+
*/
|
|
1658
|
+
this.PublicClbId = null;
|
|
1659
|
+
|
|
1553
1660
|
}
|
|
1554
1661
|
|
|
1555
1662
|
/**
|
|
@@ -1561,6 +1668,7 @@ class RabbitMQServerlessAccessInfo extends AbstractModel {
|
|
|
1561
1668
|
}
|
|
1562
1669
|
this.PublicAccessEndpoint = 'PublicAccessEndpoint' in params ? params.PublicAccessEndpoint : null;
|
|
1563
1670
|
this.PublicDataStreamStatus = 'PublicDataStreamStatus' in params ? params.PublicDataStreamStatus : null;
|
|
1671
|
+
this.PublicClbId = 'PublicClbId' in params ? params.PublicClbId : null;
|
|
1564
1672
|
|
|
1565
1673
|
}
|
|
1566
1674
|
}
|
|
@@ -1736,13 +1844,13 @@ class DescribeRabbitMQServerlessQueuesResponse extends AbstractModel {
|
|
|
1736
1844
|
super();
|
|
1737
1845
|
|
|
1738
1846
|
/**
|
|
1739
|
-
* Queue list
|
|
1847
|
+
* <p>Queue list info</p>
|
|
1740
1848
|
* @type {Array.<RabbitMQQueueListInfo> || null}
|
|
1741
1849
|
*/
|
|
1742
1850
|
this.QueueInfoList = null;
|
|
1743
1851
|
|
|
1744
1852
|
/**
|
|
1745
|
-
* Quantity
|
|
1853
|
+
* <p>Quantity</p>
|
|
1746
1854
|
* @type {number || null}
|
|
1747
1855
|
*/
|
|
1748
1856
|
this.TotalCount = null;
|
|
@@ -1902,6 +2010,12 @@ class CreateRabbitMQServerlessExchangeRequest extends AbstractModel {
|
|
|
1902
2010
|
*/
|
|
1903
2011
|
this.AlternateExchange = null;
|
|
1904
2012
|
|
|
2013
|
+
/**
|
|
2014
|
+
* exchange type behind delay type, supports "fanout", "direct", "topic", "headers".
|
|
2015
|
+
* @type {string || null}
|
|
2016
|
+
*/
|
|
2017
|
+
this.DelayedExchangeType = null;
|
|
2018
|
+
|
|
1905
2019
|
}
|
|
1906
2020
|
|
|
1907
2021
|
/**
|
|
@@ -1920,6 +2034,7 @@ class CreateRabbitMQServerlessExchangeRequest extends AbstractModel {
|
|
|
1920
2034
|
this.AutoDelete = 'AutoDelete' in params ? params.AutoDelete : null;
|
|
1921
2035
|
this.Internal = 'Internal' in params ? params.Internal : null;
|
|
1922
2036
|
this.AlternateExchange = 'AlternateExchange' in params ? params.AlternateExchange : null;
|
|
2037
|
+
this.DelayedExchangeType = 'DelayedExchangeType' in params ? params.DelayedExchangeType : null;
|
|
1923
2038
|
|
|
1924
2039
|
}
|
|
1925
2040
|
}
|
|
@@ -1945,31 +2060,31 @@ class DescribeRabbitMQServerlessConnectionRequest extends AbstractModel {
|
|
|
1945
2060
|
this.VirtualHost = null;
|
|
1946
2061
|
|
|
1947
2062
|
/**
|
|
1948
|
-
* Sort by which field. Supported
|
|
2063
|
+
* Sort by which field. Supported values: channel (number of channels), incoming_bytes (inbound traffic volume), outgoing_bytes (outbound traffic volume).
|
|
1949
2064
|
* @type {string || null}
|
|
1950
2065
|
*/
|
|
1951
2066
|
this.SortElement = null;
|
|
1952
2067
|
|
|
1953
2068
|
/**
|
|
1954
|
-
*
|
|
2069
|
+
* Sorting method: ASC, DESC
|
|
1955
2070
|
* @type {string || null}
|
|
1956
2071
|
*/
|
|
1957
2072
|
this.SortType = null;
|
|
1958
2073
|
|
|
1959
2074
|
/**
|
|
1960
|
-
*
|
|
2075
|
+
* Pagination parameters, started from which data entry
|
|
1961
2076
|
* @type {number || null}
|
|
1962
2077
|
*/
|
|
1963
2078
|
this.Offset = null;
|
|
1964
2079
|
|
|
1965
2080
|
/**
|
|
1966
|
-
*
|
|
2081
|
+
* Page size.
|
|
1967
2082
|
* @type {number || null}
|
|
1968
2083
|
*/
|
|
1969
2084
|
this.Limit = null;
|
|
1970
2085
|
|
|
1971
2086
|
/**
|
|
1972
|
-
*
|
|
2087
|
+
* Connection name fuzzy search
|
|
1973
2088
|
* @type {string || null}
|
|
1974
2089
|
*/
|
|
1975
2090
|
this.Name = null;
|
|
@@ -2094,155 +2209,197 @@ class RabbitMQClusterInfo extends AbstractModel {
|
|
|
2094
2209
|
super();
|
|
2095
2210
|
|
|
2096
2211
|
/**
|
|
2097
|
-
* Cluster ID
|
|
2212
|
+
* <p>Cluster ID.</p>
|
|
2098
2213
|
* @type {string || null}
|
|
2099
2214
|
*/
|
|
2100
2215
|
this.ClusterId = null;
|
|
2101
2216
|
|
|
2102
2217
|
/**
|
|
2103
|
-
* Cluster name
|
|
2218
|
+
* <p>Cluster name.</p>
|
|
2104
2219
|
* @type {string || null}
|
|
2105
2220
|
*/
|
|
2106
2221
|
this.ClusterName = null;
|
|
2107
2222
|
|
|
2108
2223
|
/**
|
|
2109
|
-
*
|
|
2224
|
+
* <p>Regional information</p>
|
|
2110
2225
|
* @type {string || null}
|
|
2111
2226
|
*/
|
|
2112
2227
|
this.Region = null;
|
|
2113
2228
|
|
|
2114
2229
|
/**
|
|
2115
|
-
* Creation time
|
|
2230
|
+
* <p>Creation time in milliseconds</p>
|
|
2116
2231
|
* @type {number || null}
|
|
2117
2232
|
*/
|
|
2118
2233
|
this.CreateTime = null;
|
|
2119
2234
|
|
|
2120
2235
|
/**
|
|
2121
|
-
* Cluster description
|
|
2236
|
+
* <p>Cluster description information</p>
|
|
2122
2237
|
* @type {string || null}
|
|
2123
2238
|
*/
|
|
2124
2239
|
this.Remark = null;
|
|
2125
2240
|
|
|
2126
2241
|
/**
|
|
2127
|
-
* VPC and network
|
|
2242
|
+
* <p>VPC and network info</p>
|
|
2128
2243
|
* @type {Array.<VpcEndpointInfo> || null}
|
|
2129
2244
|
*/
|
|
2130
2245
|
this.Vpcs = null;
|
|
2131
2246
|
|
|
2132
2247
|
/**
|
|
2133
|
-
*
|
|
2248
|
+
* <p>AZ information</p>
|
|
2134
2249
|
* @type {Array.<number> || null}
|
|
2135
2250
|
*/
|
|
2136
2251
|
this.ZoneIds = null;
|
|
2137
2252
|
|
|
2138
2253
|
/**
|
|
2139
|
-
*
|
|
2254
|
+
* <p>Number of virtual hosts</p>
|
|
2140
2255
|
* @type {number || null}
|
|
2141
2256
|
*/
|
|
2142
2257
|
this.VirtualHostNumber = null;
|
|
2143
2258
|
|
|
2144
2259
|
/**
|
|
2145
|
-
* Number of queues
|
|
2260
|
+
* <p>Number of queues</p>
|
|
2146
2261
|
* @type {number || null}
|
|
2147
2262
|
*/
|
|
2148
2263
|
this.QueueNumber = null;
|
|
2149
2264
|
|
|
2150
2265
|
/**
|
|
2151
|
-
* Number of messages produced per second
|
|
2266
|
+
* <p>Number of messages produced per second Unit: messages/second</p>
|
|
2152
2267
|
* @type {number || null}
|
|
2153
2268
|
*/
|
|
2154
2269
|
this.MessagePublishRate = null;
|
|
2155
2270
|
|
|
2156
2271
|
/**
|
|
2157
|
-
* Number of accumulated messages
|
|
2272
|
+
* <p>Number of accumulated messages Unit: unit</p>
|
|
2158
2273
|
* @type {number || null}
|
|
2159
2274
|
*/
|
|
2160
2275
|
this.MessageStackNumber = null;
|
|
2161
2276
|
|
|
2162
2277
|
/**
|
|
2163
|
-
* Expiration time
|
|
2278
|
+
* <p>Expiration time</p>
|
|
2164
2279
|
* @type {number || null}
|
|
2165
2280
|
*/
|
|
2166
2281
|
this.ExpireTime = null;
|
|
2167
2282
|
|
|
2168
2283
|
/**
|
|
2169
|
-
*
|
|
2284
|
+
* <p>Number of channels</p>
|
|
2170
2285
|
* @type {number || null}
|
|
2171
2286
|
*/
|
|
2172
2287
|
this.ChannelNumber = null;
|
|
2173
2288
|
|
|
2174
2289
|
/**
|
|
2175
|
-
*
|
|
2290
|
+
* <p>Number of connections</p>
|
|
2176
2291
|
* @type {number || null}
|
|
2177
2292
|
*/
|
|
2178
2293
|
this.ConnectionNumber = null;
|
|
2179
2294
|
|
|
2180
2295
|
/**
|
|
2181
|
-
* Number of consumers
|
|
2296
|
+
* <p>Number of consumers</p>
|
|
2182
2297
|
* @type {number || null}
|
|
2183
2298
|
*/
|
|
2184
2299
|
this.ConsumerNumber = null;
|
|
2185
2300
|
|
|
2186
2301
|
/**
|
|
2187
|
-
* Number of Exchanges
|
|
2302
|
+
* <p>Number of Exchanges</p>
|
|
2188
2303
|
* @type {number || null}
|
|
2189
2304
|
*/
|
|
2190
2305
|
this.ExchangeNumber = null;
|
|
2191
2306
|
|
|
2192
2307
|
/**
|
|
2193
|
-
* Cluster exception information
|
|
2308
|
+
* <p>Cluster exception information</p>
|
|
2194
2309
|
* @type {string || null}
|
|
2195
2310
|
*/
|
|
2196
2311
|
this.ExceptionInformation = null;
|
|
2197
2312
|
|
|
2198
2313
|
/**
|
|
2199
|
-
* Instance status. 0 indicates creating in progress
|
|
2314
|
+
* <p>Instance status. 0 indicates creating in progress, 1 indicates normal, 2 indicates isolated, 3 indicates terminated, 4 - abnormal, 5 - delivery failed</p>
|
|
2200
2315
|
* @type {number || null}
|
|
2201
2316
|
*/
|
|
2202
2317
|
this.ClusterStatus = null;
|
|
2203
2318
|
|
|
2204
2319
|
/**
|
|
2205
|
-
*
|
|
2320
|
+
* <p>Automatic renewal flag. 0: default status (initial status (that is manual renewal) if no status is set by the user); 1: automatic renewal; 2: no automatic renewal (set by the user).</p>
|
|
2206
2321
|
* @type {number || null}
|
|
2207
2322
|
*/
|
|
2208
2323
|
this.AutoRenewFlag = null;
|
|
2209
2324
|
|
|
2210
2325
|
/**
|
|
2211
|
-
* Whether the
|
|
2326
|
+
* <p>Whether to enable the mirror queue policy. 1 means enabled, 0 means disabled.</p>
|
|
2212
2327
|
* @type {number || null}
|
|
2213
2328
|
*/
|
|
2214
2329
|
this.MirrorQueuePolicyFlag = null;
|
|
2215
2330
|
|
|
2216
2331
|
/**
|
|
2217
|
-
* Number of messages consumed per second
|
|
2332
|
+
* <p>Number of messages consumed per second Unit: messages/second</p>
|
|
2218
2333
|
* @type {number || null}
|
|
2219
2334
|
*/
|
|
2220
2335
|
this.MessageConsumeRate = null;
|
|
2221
2336
|
|
|
2222
2337
|
/**
|
|
2223
|
-
*
|
|
2338
|
+
* <p>Cluster version information</p>
|
|
2224
2339
|
* @type {string || null}
|
|
2225
2340
|
*/
|
|
2226
2341
|
this.ClusterVersion = null;
|
|
2227
2342
|
|
|
2228
2343
|
/**
|
|
2229
|
-
* Billing mode.
|
|
2344
|
+
* <p>Billing mode. 0 - Postpaid, 1 - Prepaid</p>
|
|
2230
2345
|
* @type {number || null}
|
|
2231
2346
|
*/
|
|
2232
2347
|
this.PayMode = null;
|
|
2233
2348
|
|
|
2234
2349
|
/**
|
|
2235
|
-
*
|
|
2350
|
+
* <p>Cluster type.</p>
|
|
2236
2351
|
* @type {number || null}
|
|
2237
2352
|
*/
|
|
2238
2353
|
this.InstanceType = null;
|
|
2239
2354
|
|
|
2240
2355
|
/**
|
|
2241
|
-
*
|
|
2356
|
+
* <p>Message retention period Unit: hour</p>
|
|
2242
2357
|
* @type {number || null}
|
|
2243
2358
|
*/
|
|
2244
2359
|
this.MessageRetainTime = null;
|
|
2245
2360
|
|
|
2361
|
+
/**
|
|
2362
|
+
* <p>Traffic ratio of sending messages</p>
|
|
2363
|
+
* @type {number || null}
|
|
2364
|
+
*/
|
|
2365
|
+
this.SendReceiveRatio = null;
|
|
2366
|
+
|
|
2367
|
+
/**
|
|
2368
|
+
* <p>Message trace retention time in hours</p>
|
|
2369
|
+
* @type {number || null}
|
|
2370
|
+
*/
|
|
2371
|
+
this.TraceTime = null;
|
|
2372
|
+
|
|
2373
|
+
/**
|
|
2374
|
+
* <p>Instance tag list</p>
|
|
2375
|
+
* @type {Array.<RabbitMQServerlessTag> || null}
|
|
2376
|
+
*/
|
|
2377
|
+
this.Tags = null;
|
|
2378
|
+
|
|
2379
|
+
/**
|
|
2380
|
+
* <p>Elastic scaling enabled tps</p>
|
|
2381
|
+
* @type {boolean || null}
|
|
2382
|
+
*/
|
|
2383
|
+
this.ElasticTpsFlag = null;
|
|
2384
|
+
|
|
2385
|
+
/**
|
|
2386
|
+
* <p>Elastic tps multiple, default is 1x</p>
|
|
2387
|
+
* @type {number || null}
|
|
2388
|
+
*/
|
|
2389
|
+
this.ElasticTpsRatio = null;
|
|
2390
|
+
|
|
2391
|
+
/**
|
|
2392
|
+
* <p>Maximum retry count</p>
|
|
2393
|
+
* @type {number || null}
|
|
2394
|
+
*/
|
|
2395
|
+
this.MaxRedeliverCount = null;
|
|
2396
|
+
|
|
2397
|
+
/**
|
|
2398
|
+
* <p>Consumption timeout period Unit: min</p>
|
|
2399
|
+
* @type {number || null}
|
|
2400
|
+
*/
|
|
2401
|
+
this.ConsumerTimeout = null;
|
|
2402
|
+
|
|
2246
2403
|
}
|
|
2247
2404
|
|
|
2248
2405
|
/**
|
|
@@ -2285,6 +2442,21 @@ class RabbitMQClusterInfo extends AbstractModel {
|
|
|
2285
2442
|
this.PayMode = 'PayMode' in params ? params.PayMode : null;
|
|
2286
2443
|
this.InstanceType = 'InstanceType' in params ? params.InstanceType : null;
|
|
2287
2444
|
this.MessageRetainTime = 'MessageRetainTime' in params ? params.MessageRetainTime : null;
|
|
2445
|
+
this.SendReceiveRatio = 'SendReceiveRatio' in params ? params.SendReceiveRatio : null;
|
|
2446
|
+
this.TraceTime = 'TraceTime' in params ? params.TraceTime : null;
|
|
2447
|
+
|
|
2448
|
+
if (params.Tags) {
|
|
2449
|
+
this.Tags = new Array();
|
|
2450
|
+
for (let z in params.Tags) {
|
|
2451
|
+
let obj = new RabbitMQServerlessTag();
|
|
2452
|
+
obj.deserialize(params.Tags[z]);
|
|
2453
|
+
this.Tags.push(obj);
|
|
2454
|
+
}
|
|
2455
|
+
}
|
|
2456
|
+
this.ElasticTpsFlag = 'ElasticTpsFlag' in params ? params.ElasticTpsFlag : null;
|
|
2457
|
+
this.ElasticTpsRatio = 'ElasticTpsRatio' in params ? params.ElasticTpsRatio : null;
|
|
2458
|
+
this.MaxRedeliverCount = 'MaxRedeliverCount' in params ? params.MaxRedeliverCount : null;
|
|
2459
|
+
this.ConsumerTimeout = 'ConsumerTimeout' in params ? params.ConsumerTimeout : null;
|
|
2288
2460
|
|
|
2289
2461
|
}
|
|
2290
2462
|
}
|
|
@@ -2298,13 +2470,13 @@ class DescribeRabbitMQServerlessBindingsResponse extends AbstractModel {
|
|
|
2298
2470
|
super();
|
|
2299
2471
|
|
|
2300
2472
|
/**
|
|
2301
|
-
* Route relationship list
|
|
2473
|
+
* <p>Route relationship list</p>
|
|
2302
2474
|
* @type {Array.<RabbitMQBindingListInfo> || null}
|
|
2303
2475
|
*/
|
|
2304
2476
|
this.BindingInfoList = null;
|
|
2305
2477
|
|
|
2306
2478
|
/**
|
|
2307
|
-
* Quantity
|
|
2479
|
+
* <p>Quantity</p>
|
|
2308
2480
|
* @type {number || null}
|
|
2309
2481
|
*/
|
|
2310
2482
|
this.TotalCount = null;
|
|
@@ -2488,6 +2660,12 @@ class DescribeRabbitMQServerlessConsumersRequest extends AbstractModel {
|
|
|
2488
2660
|
*/
|
|
2489
2661
|
this.SearchWord = null;
|
|
2490
2662
|
|
|
2663
|
+
/**
|
|
2664
|
+
* channelId
|
|
2665
|
+
* @type {string || null}
|
|
2666
|
+
*/
|
|
2667
|
+
this.Channel = null;
|
|
2668
|
+
|
|
2491
2669
|
}
|
|
2492
2670
|
|
|
2493
2671
|
/**
|
|
@@ -2503,6 +2681,7 @@ class DescribeRabbitMQServerlessConsumersRequest extends AbstractModel {
|
|
|
2503
2681
|
this.Limit = 'Limit' in params ? params.Limit : null;
|
|
2504
2682
|
this.Offset = 'Offset' in params ? params.Offset : null;
|
|
2505
2683
|
this.SearchWord = 'SearchWord' in params ? params.SearchWord : null;
|
|
2684
|
+
this.Channel = 'Channel' in params ? params.Channel : null;
|
|
2506
2685
|
|
|
2507
2686
|
}
|
|
2508
2687
|
}
|
|
@@ -2527,6 +2706,48 @@ class RabbitMQConsumersListInfo extends AbstractModel {
|
|
|
2527
2706
|
*/
|
|
2528
2707
|
this.ConsumerTag = null;
|
|
2529
2708
|
|
|
2709
|
+
/**
|
|
2710
|
+
* Consume target queue
|
|
2711
|
+
* @type {string || null}
|
|
2712
|
+
*/
|
|
2713
|
+
this.QueueName = null;
|
|
2714
|
+
|
|
2715
|
+
/**
|
|
2716
|
+
* Whether required for the consumer to manually ack
|
|
2717
|
+
* @type {boolean || null}
|
|
2718
|
+
*/
|
|
2719
|
+
this.AckRequired = null;
|
|
2720
|
+
|
|
2721
|
+
/**
|
|
2722
|
+
* Consumer qos value
|
|
2723
|
+
* @type {number || null}
|
|
2724
|
+
*/
|
|
2725
|
+
this.PrefetchCount = null;
|
|
2726
|
+
|
|
2727
|
+
/**
|
|
2728
|
+
* Consumer status
|
|
2729
|
+
* @type {string || null}
|
|
2730
|
+
*/
|
|
2731
|
+
this.Active = null;
|
|
2732
|
+
|
|
2733
|
+
/**
|
|
2734
|
+
* Time of the last message submission
|
|
2735
|
+
* @type {string || null}
|
|
2736
|
+
*/
|
|
2737
|
+
this.LastDeliveredTime = null;
|
|
2738
|
+
|
|
2739
|
+
/**
|
|
2740
|
+
* Number of unconfirmed messages of the consumer
|
|
2741
|
+
* @type {number || null}
|
|
2742
|
+
*/
|
|
2743
|
+
this.UnAckMsgCount = null;
|
|
2744
|
+
|
|
2745
|
+
/**
|
|
2746
|
+
* channel belonging to the consumer
|
|
2747
|
+
* @type {string || null}
|
|
2748
|
+
*/
|
|
2749
|
+
this.ChannelName = null;
|
|
2750
|
+
|
|
2530
2751
|
}
|
|
2531
2752
|
|
|
2532
2753
|
/**
|
|
@@ -2538,6 +2759,13 @@ class RabbitMQConsumersListInfo extends AbstractModel {
|
|
|
2538
2759
|
}
|
|
2539
2760
|
this.ClientIp = 'ClientIp' in params ? params.ClientIp : null;
|
|
2540
2761
|
this.ConsumerTag = 'ConsumerTag' in params ? params.ConsumerTag : null;
|
|
2762
|
+
this.QueueName = 'QueueName' in params ? params.QueueName : null;
|
|
2763
|
+
this.AckRequired = 'AckRequired' in params ? params.AckRequired : null;
|
|
2764
|
+
this.PrefetchCount = 'PrefetchCount' in params ? params.PrefetchCount : null;
|
|
2765
|
+
this.Active = 'Active' in params ? params.Active : null;
|
|
2766
|
+
this.LastDeliveredTime = 'LastDeliveredTime' in params ? params.LastDeliveredTime : null;
|
|
2767
|
+
this.UnAckMsgCount = 'UnAckMsgCount' in params ? params.UnAckMsgCount : null;
|
|
2768
|
+
this.ChannelName = 'ChannelName' in params ? params.ChannelName : null;
|
|
2541
2769
|
|
|
2542
2770
|
}
|
|
2543
2771
|
}
|
|
@@ -2551,19 +2779,19 @@ class CreateRabbitMQServerlessBindingResponse extends AbstractModel {
|
|
|
2551
2779
|
super();
|
|
2552
2780
|
|
|
2553
2781
|
/**
|
|
2554
|
-
* Queue name
|
|
2782
|
+
* <p>Queue name</p>
|
|
2555
2783
|
* @type {string || null}
|
|
2556
2784
|
*/
|
|
2557
2785
|
this.InstanceId = null;
|
|
2558
2786
|
|
|
2559
2787
|
/**
|
|
2560
|
-
* vhost parameter
|
|
2788
|
+
* <p>vhost parameter</p>
|
|
2561
2789
|
* @type {string || null}
|
|
2562
2790
|
*/
|
|
2563
2791
|
this.VirtualHost = null;
|
|
2564
2792
|
|
|
2565
2793
|
/**
|
|
2566
|
-
*
|
|
2794
|
+
* <p>Routing relationship Id</p>
|
|
2567
2795
|
* @type {number || null}
|
|
2568
2796
|
*/
|
|
2569
2797
|
this.BindingId = null;
|
|
@@ -3379,6 +3607,12 @@ class RabbitMQClusterSpecInfo extends AbstractModel {
|
|
|
3379
3607
|
*/
|
|
3380
3608
|
this.PublicNetworkTps = null;
|
|
3381
3609
|
|
|
3610
|
+
/**
|
|
3611
|
+
* Feature list corresponding to the instance, yes means supported, no means unsupported
|
|
3612
|
+
* @type {string || null}
|
|
3613
|
+
*/
|
|
3614
|
+
this.Features = null;
|
|
3615
|
+
|
|
3382
3616
|
}
|
|
3383
3617
|
|
|
3384
3618
|
/**
|
|
@@ -3397,6 +3631,7 @@ class RabbitMQClusterSpecInfo extends AbstractModel {
|
|
|
3397
3631
|
this.MaxUserNum = 'MaxUserNum' in params ? params.MaxUserNum : null;
|
|
3398
3632
|
this.MaxBandWidth = 'MaxBandWidth' in params ? params.MaxBandWidth : null;
|
|
3399
3633
|
this.PublicNetworkTps = 'PublicNetworkTps' in params ? params.PublicNetworkTps : null;
|
|
3634
|
+
this.Features = 'Features' in params ? params.Features : null;
|
|
3400
3635
|
|
|
3401
3636
|
}
|
|
3402
3637
|
}
|
|
@@ -3445,43 +3680,43 @@ class CreateRabbitMQServerlessBindingRequest extends AbstractModel {
|
|
|
3445
3680
|
super();
|
|
3446
3681
|
|
|
3447
3682
|
/**
|
|
3448
|
-
* Instance
|
|
3683
|
+
* <p>Instance Id</p>
|
|
3449
3684
|
* @type {string || null}
|
|
3450
3685
|
*/
|
|
3451
3686
|
this.InstanceId = null;
|
|
3452
3687
|
|
|
3453
3688
|
/**
|
|
3454
|
-
* Vhost parameter
|
|
3689
|
+
* <p>Vhost parameter</p>
|
|
3455
3690
|
* @type {string || null}
|
|
3456
3691
|
*/
|
|
3457
3692
|
this.VirtualHost = null;
|
|
3458
3693
|
|
|
3459
3694
|
/**
|
|
3460
|
-
* Source exchange
|
|
3695
|
+
* <p>Source exchange</p>
|
|
3461
3696
|
* @type {string || null}
|
|
3462
3697
|
*/
|
|
3463
3698
|
this.Source = null;
|
|
3464
3699
|
|
|
3465
3700
|
/**
|
|
3466
|
-
* Target type
|
|
3701
|
+
* <p>Target type, value queue or exchange</p>
|
|
3467
3702
|
* @type {string || null}
|
|
3468
3703
|
*/
|
|
3469
3704
|
this.DestinationType = null;
|
|
3470
3705
|
|
|
3471
3706
|
/**
|
|
3472
|
-
* Target queue or
|
|
3707
|
+
* <p>Target queue or switch</p>
|
|
3473
3708
|
* @type {string || null}
|
|
3474
3709
|
*/
|
|
3475
3710
|
this.Destination = null;
|
|
3476
3711
|
|
|
3477
3712
|
/**
|
|
3478
|
-
*
|
|
3713
|
+
* <p>Bind key</p>
|
|
3479
3714
|
* @type {string || null}
|
|
3480
3715
|
*/
|
|
3481
3716
|
this.RoutingKey = null;
|
|
3482
3717
|
|
|
3483
3718
|
/**
|
|
3484
|
-
*
|
|
3719
|
+
* <p>When creating a Binding for Header type Exchange, parameters can be passed in. No need to input for other types of Exchange.</p>
|
|
3485
3720
|
* @type {Array.<RabbitMQServerlessKeyValuePair> || null}
|
|
3486
3721
|
*/
|
|
3487
3722
|
this.Arguments = null;
|
|
@@ -3953,6 +4188,36 @@ class RabbitMQConnection extends AbstractModel {
|
|
|
3953
4188
|
*/
|
|
3954
4189
|
this.Channels = null;
|
|
3955
4190
|
|
|
4191
|
+
/**
|
|
4192
|
+
* Inbound traffic volume in bytes
|
|
4193
|
+
* @type {number || null}
|
|
4194
|
+
*/
|
|
4195
|
+
this.IncomingBytes = null;
|
|
4196
|
+
|
|
4197
|
+
/**
|
|
4198
|
+
* Outbound traffic volume in bytes
|
|
4199
|
+
* @type {number || null}
|
|
4200
|
+
*/
|
|
4201
|
+
this.OutgoingBytes = null;
|
|
4202
|
+
|
|
4203
|
+
/**
|
|
4204
|
+
* Heartbeat interval. Default 60s.
|
|
4205
|
+
* @type {number || null}
|
|
4206
|
+
*/
|
|
4207
|
+
this.Heartbeat = null;
|
|
4208
|
+
|
|
4209
|
+
/**
|
|
4210
|
+
* Maximum number of channels per link. Default 1024.
|
|
4211
|
+
* @type {number || null}
|
|
4212
|
+
*/
|
|
4213
|
+
this.MaxChannel = null;
|
|
4214
|
+
|
|
4215
|
+
/**
|
|
4216
|
+
* Idle time point
|
|
4217
|
+
* @type {string || null}
|
|
4218
|
+
*/
|
|
4219
|
+
this.IdleSince = null;
|
|
4220
|
+
|
|
3956
4221
|
}
|
|
3957
4222
|
|
|
3958
4223
|
/**
|
|
@@ -3969,6 +4234,11 @@ class RabbitMQConnection extends AbstractModel {
|
|
|
3969
4234
|
this.SSL = 'SSL' in params ? params.SSL : null;
|
|
3970
4235
|
this.Protocol = 'Protocol' in params ? params.Protocol : null;
|
|
3971
4236
|
this.Channels = 'Channels' in params ? params.Channels : null;
|
|
4237
|
+
this.IncomingBytes = 'IncomingBytes' in params ? params.IncomingBytes : null;
|
|
4238
|
+
this.OutgoingBytes = 'OutgoingBytes' in params ? params.OutgoingBytes : null;
|
|
4239
|
+
this.Heartbeat = 'Heartbeat' in params ? params.Heartbeat : null;
|
|
4240
|
+
this.MaxChannel = 'MaxChannel' in params ? params.MaxChannel : null;
|
|
4241
|
+
this.IdleSince = 'IdleSince' in params ? params.IdleSince : null;
|
|
3972
4242
|
|
|
3973
4243
|
}
|
|
3974
4244
|
}
|
|
@@ -4441,54 +4711,49 @@ class DescribeRabbitMQServerlessQueuesRequest extends AbstractModel {
|
|
|
4441
4711
|
super();
|
|
4442
4712
|
|
|
4443
4713
|
/**
|
|
4444
|
-
* Instance
|
|
4714
|
+
* <p>Instance Id</p>
|
|
4445
4715
|
* @type {string || null}
|
|
4446
4716
|
*/
|
|
4447
4717
|
this.InstanceId = null;
|
|
4448
4718
|
|
|
4449
4719
|
/**
|
|
4450
|
-
* Vhost parameter
|
|
4720
|
+
* <p>Vhost parameter</p>
|
|
4451
4721
|
* @type {string || null}
|
|
4452
4722
|
*/
|
|
4453
4723
|
this.VirtualHost = null;
|
|
4454
4724
|
|
|
4455
4725
|
/**
|
|
4456
|
-
* Pagination offset
|
|
4726
|
+
* <p>Pagination offset.</p>
|
|
4457
4727
|
* @type {number || null}
|
|
4458
4728
|
*/
|
|
4459
4729
|
this.Offset = null;
|
|
4460
4730
|
|
|
4461
4731
|
/**
|
|
4462
|
-
* Pagination limit
|
|
4732
|
+
* <p>Pagination limit.</p>
|
|
4463
4733
|
* @type {number || null}
|
|
4464
4734
|
*/
|
|
4465
4735
|
this.Limit = null;
|
|
4466
4736
|
|
|
4467
4737
|
/**
|
|
4468
|
-
* Search
|
|
4738
|
+
* <p>Search keyword</p>
|
|
4469
4739
|
* @type {string || null}
|
|
4470
4740
|
*/
|
|
4471
4741
|
this.SearchWord = null;
|
|
4472
4742
|
|
|
4473
4743
|
/**
|
|
4474
|
-
*
|
|
4744
|
+
* <p>Queue type filter criteria. Leave blank or use "all" for classic and quorum queues; "classic" for classic queues; "quorum" for quorum queues.</p>
|
|
4475
4745
|
* @type {string || null}
|
|
4476
4746
|
*/
|
|
4477
4747
|
this.QueueType = null;
|
|
4478
4748
|
|
|
4479
4749
|
/**
|
|
4480
|
-
* Sorting field
|
|
4481
|
-
ConsumerNumber: specifies the number of online consumers.
|
|
4482
|
-
MessageHeapCount specifies the number of message backlogs.
|
|
4483
|
-
MessageRateInOut specifies the total production and consumption rate.
|
|
4484
|
-
MessageRateIn specifies the production rate.
|
|
4485
|
-
MessageRateOut specifies the consumption rate.
|
|
4750
|
+
* <p>Sorting field:<br>messages_ready - message backlog;<br>publish - production rate;<br>deliver - consumption rate;<br>consumers - number of online consumers;</p>
|
|
4486
4751
|
* @type {string || null}
|
|
4487
4752
|
*/
|
|
4488
4753
|
this.SortElement = null;
|
|
4489
4754
|
|
|
4490
4755
|
/**
|
|
4491
|
-
* Sort order
|
|
4756
|
+
* <p>Sort order, asc or desc</p>
|
|
4492
4757
|
* @type {string || null}
|
|
4493
4758
|
*/
|
|
4494
4759
|
this.SortOrder = null;
|
|
@@ -4523,49 +4788,49 @@ class DescribeRabbitMQServerlessBindingsRequest extends AbstractModel {
|
|
|
4523
4788
|
super();
|
|
4524
4789
|
|
|
4525
4790
|
/**
|
|
4526
|
-
* Instance
|
|
4791
|
+
* <p>Instance Id</p>
|
|
4527
4792
|
* @type {string || null}
|
|
4528
4793
|
*/
|
|
4529
4794
|
this.InstanceId = null;
|
|
4530
4795
|
|
|
4531
4796
|
/**
|
|
4532
|
-
* Vhost parameter
|
|
4797
|
+
* <p>Vhost parameter</p>
|
|
4533
4798
|
* @type {string || null}
|
|
4534
4799
|
*/
|
|
4535
4800
|
this.VirtualHost = null;
|
|
4536
4801
|
|
|
4537
4802
|
/**
|
|
4538
|
-
* Pagination
|
|
4803
|
+
* <p>Pagination offset</p>
|
|
4539
4804
|
* @type {number || null}
|
|
4540
4805
|
*/
|
|
4541
4806
|
this.Offset = null;
|
|
4542
4807
|
|
|
4543
4808
|
/**
|
|
4544
|
-
* Pagination
|
|
4809
|
+
* <p>Pagination limit</p>
|
|
4545
4810
|
* @type {number || null}
|
|
4546
4811
|
*/
|
|
4547
4812
|
this.Limit = null;
|
|
4548
4813
|
|
|
4549
4814
|
/**
|
|
4550
|
-
* Search keywords
|
|
4815
|
+
* <p>Search keywords, do fuzzy search based on source exchange name/target resource name</p>
|
|
4551
4816
|
* @type {string || null}
|
|
4552
4817
|
*/
|
|
4553
4818
|
this.SearchWord = null;
|
|
4554
4819
|
|
|
4555
4820
|
/**
|
|
4556
|
-
*
|
|
4821
|
+
* <p>Precise search and filter based on source Exchange</p>
|
|
4557
4822
|
* @type {string || null}
|
|
4558
4823
|
*/
|
|
4559
4824
|
this.SourceExchange = null;
|
|
4560
4825
|
|
|
4561
4826
|
/**
|
|
4562
|
-
*
|
|
4827
|
+
* <p>Precise search filter based on target QueueName and DestinationExchange cannot be set both at the same time</p>
|
|
4563
4828
|
* @type {string || null}
|
|
4564
4829
|
*/
|
|
4565
4830
|
this.QueueName = null;
|
|
4566
4831
|
|
|
4567
4832
|
/**
|
|
4568
|
-
* Precise search filter based on target Exchange
|
|
4833
|
+
* <p>Precise search filter based on target Exchange and QueueName filter cannot be set both at the same time</p>
|
|
4569
4834
|
* @type {string || null}
|
|
4570
4835
|
*/
|
|
4571
4836
|
this.DestinationExchange = null;
|
|
@@ -4792,6 +5057,12 @@ class ModifyRabbitMQServerlessExchangeRequest extends AbstractModel {
|
|
|
4792
5057
|
*/
|
|
4793
5058
|
this.Remark = null;
|
|
4794
5059
|
|
|
5060
|
+
/**
|
|
5061
|
+
* standby switch
|
|
5062
|
+
* @type {string || null}
|
|
5063
|
+
*/
|
|
5064
|
+
this.AlternateExchange = null;
|
|
5065
|
+
|
|
4795
5066
|
}
|
|
4796
5067
|
|
|
4797
5068
|
/**
|
|
@@ -4805,6 +5076,7 @@ class ModifyRabbitMQServerlessExchangeRequest extends AbstractModel {
|
|
|
4805
5076
|
this.VirtualHost = 'VirtualHost' in params ? params.VirtualHost : null;
|
|
4806
5077
|
this.ExchangeName = 'ExchangeName' in params ? params.ExchangeName : null;
|
|
4807
5078
|
this.Remark = 'Remark' in params ? params.Remark : null;
|
|
5079
|
+
this.AlternateExchange = 'AlternateExchange' in params ? params.AlternateExchange : null;
|
|
4808
5080
|
|
|
4809
5081
|
}
|
|
4810
5082
|
}
|
|
@@ -4974,6 +5246,24 @@ class ModifyRabbitMQServerlessQueueRequest extends AbstractModel {
|
|
|
4974
5246
|
*/
|
|
4975
5247
|
this.Remark = null;
|
|
4976
5248
|
|
|
5249
|
+
/**
|
|
5250
|
+
* MessageTTL parameter in milliseconds, dedicated to classic event type
|
|
5251
|
+
* @type {number || null}
|
|
5252
|
+
*/
|
|
5253
|
+
this.MessageTTL = null;
|
|
5254
|
+
|
|
5255
|
+
/**
|
|
5256
|
+
* DeadLetterExchange parameter. It specifies that expired or rejected messages can be delivered to the specified dead letter exchange.
|
|
5257
|
+
* @type {string || null}
|
|
5258
|
+
*/
|
|
5259
|
+
this.DeadLetterExchange = null;
|
|
5260
|
+
|
|
5261
|
+
/**
|
|
5262
|
+
* DeadLetterRoutingKey parameter. The value can only contain letters, digits, periods (.), hyphens (-), at signs (@), and underscores (_).
|
|
5263
|
+
* @type {string || null}
|
|
5264
|
+
*/
|
|
5265
|
+
this.DeadLetterRoutingKey = null;
|
|
5266
|
+
|
|
4977
5267
|
}
|
|
4978
5268
|
|
|
4979
5269
|
/**
|
|
@@ -4987,6 +5277,9 @@ class ModifyRabbitMQServerlessQueueRequest extends AbstractModel {
|
|
|
4987
5277
|
this.VirtualHost = 'VirtualHost' in params ? params.VirtualHost : null;
|
|
4988
5278
|
this.QueueName = 'QueueName' in params ? params.QueueName : null;
|
|
4989
5279
|
this.Remark = 'Remark' in params ? params.Remark : null;
|
|
5280
|
+
this.MessageTTL = 'MessageTTL' in params ? params.MessageTTL : null;
|
|
5281
|
+
this.DeadLetterExchange = 'DeadLetterExchange' in params ? params.DeadLetterExchange : null;
|
|
5282
|
+
this.DeadLetterRoutingKey = 'DeadLetterRoutingKey' in params ? params.DeadLetterRoutingKey : null;
|
|
4990
5283
|
|
|
4991
5284
|
}
|
|
4992
5285
|
}
|
|
@@ -4999,6 +5292,7 @@ module.exports = {
|
|
|
4999
5292
|
ModifyRabbitMQServerlessUserResponse: ModifyRabbitMQServerlessUserResponse,
|
|
5000
5293
|
CreateRabbitMQServerlessVirtualHostRequest: CreateRabbitMQServerlessVirtualHostRequest,
|
|
5001
5294
|
DescribeRabbitMQServerlessUserResponse: DescribeRabbitMQServerlessUserResponse,
|
|
5295
|
+
RabbitMQServerlessTag: RabbitMQServerlessTag,
|
|
5002
5296
|
ModifyRabbitMQServerlessExchangeResponse: ModifyRabbitMQServerlessExchangeResponse,
|
|
5003
5297
|
DescribeRabbitMQServerlessConsumersResponse: DescribeRabbitMQServerlessConsumersResponse,
|
|
5004
5298
|
DescribeRabbitMQServerlessQueueDetailResponse: DescribeRabbitMQServerlessQueueDetailResponse,
|