tencentcloud-sdk-nodejs 4.1.191 → 4.1.192

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.
Files changed (35) hide show
  1. package/es/common/sdk_version.js +1 -1
  2. package/es/services/hai/v20230812/hai_client.js +7 -4
  3. package/es/services/organization/v20210331/organization_client.js +9 -0
  4. package/es/services/rum/v20210622/rum_client.js +63 -27
  5. package/es/services/trocket/v20230308/trocket_client.js +20 -95
  6. package/es/services/trtc/v20190722/trtc_client.js +18 -9
  7. package/package.json +1 -1
  8. package/tencentcloud/common/sdk_version.d.ts +1 -1
  9. package/tencentcloud/common/sdk_version.js +1 -1
  10. package/tencentcloud/services/bi/v20220105/bi_models.d.ts +133 -11
  11. package/tencentcloud/services/billing/v20180709/billing_models.d.ts +19 -14
  12. package/tencentcloud/services/cloudstudio/v20230508/cloudstudio_models.d.ts +2 -2
  13. package/tencentcloud/services/cls/v20201016/cls_models.d.ts +80 -92
  14. package/tencentcloud/services/ess/v20201111/ess_models.d.ts +1 -1
  15. package/tencentcloud/services/hai/v20230812/hai_client.d.ts +9 -5
  16. package/tencentcloud/services/hai/v20230812/hai_client.js +12 -6
  17. package/tencentcloud/services/hai/v20230812/hai_models.d.ts +392 -180
  18. package/tencentcloud/services/kms/v20190118/kms_models.d.ts +156 -6
  19. package/tencentcloud/services/organization/v20210331/organization_client.d.ts +13 -1
  20. package/tencentcloud/services/organization/v20210331/organization_client.js +18 -0
  21. package/tencentcloud/services/organization/v20210331/organization_models.d.ts +174 -79
  22. package/tencentcloud/services/rum/v20210622/rum_client.d.ts +78 -29
  23. package/tencentcloud/services/rum/v20210622/rum_client.js +115 -42
  24. package/tencentcloud/services/rum/v20210622/rum_models.d.ts +2828 -1142
  25. package/tencentcloud/services/tag/v20180813/tag_models.d.ts +20 -20
  26. package/tencentcloud/services/tcb/v20180608/tcb_client.d.ts +5 -1
  27. package/tencentcloud/services/tcb/v20180608/tcb_client.js +5 -1
  28. package/tencentcloud/services/tcb/v20180608/tcb_models.d.ts +4 -0
  29. package/tencentcloud/services/trocket/v20230308/trocket_client.d.ts +49 -211
  30. package/tencentcloud/services/trocket/v20230308/trocket_client.js +58 -270
  31. package/tencentcloud/services/trocket/v20230308/trocket_models.d.ts +373 -1632
  32. package/tencentcloud/services/trtc/v20190722/trtc_client.d.ts +29 -16
  33. package/tencentcloud/services/trtc/v20190722/trtc_client.js +39 -20
  34. package/tencentcloud/services/trtc/v20190722/trtc_models.d.ts +292 -70
  35. package/tencentcloud/services/vpc/v20170312/vpc_models.d.ts +2 -2
@@ -35,27 +35,22 @@ class Client extends abstract_client_1.AbstractClient {
35
35
  return this.request("VerifyMessageConsumption", req, cb);
36
36
  }
37
37
  /**
38
- * 下线trocket下mqtt接口
38
+ * 平滑迁移过程获取源集群group列表接口。
39
39
 
40
- 查询消息列表,如查询死信,请设置ConsumerGroup参数
41
- */
42
- async DescribeMQTTMessageList(req, cb) {
43
- return this.request("DescribeMQTTMessageList", req, cb);
44
- }
45
- /**
46
- * 下线trocket下mqtt接口
40
+ Filters字段为查询过滤器,支持以下字段:
41
+ * GroupName,消费组名称,支持模糊搜索
42
+ * Imported,是否已导入
43
+ * ImportStatus,导入状态,参考[SourceClusterGroupConfig](https://cloud.tencent.com/document/api/1493/96031#SourceClusterGroupConfig)的说明
44
+ * Namespace,命名空间,仅4.x集群有效
47
45
 
48
- 更新MQTT集群绑定证书
49
- 参数传空,则为删除证书
50
- */
51
- async ModifyMQTTInstanceCertBinding(req, cb) {
52
- return this.request("ModifyMQTTInstanceCertBinding", req, cb);
53
- }
54
- /**
55
- * 修改 RocketMQ 5.x 集群接入点,操作前请先确认接入点已存在。
46
+ Filters示例:
47
+ [{
48
+ "Name": "GroupName",
49
+ "Values": ["group-a"]
50
+ }]
56
51
  */
57
- async ModifyInstanceEndpoint(req, cb) {
58
- return this.request("ModifyInstanceEndpoint", req, cb);
52
+ async DescribeSourceClusterGroupList(req, cb) {
53
+ return this.request("DescribeSourceClusterGroupList", req, cb);
59
54
  }
60
55
  /**
61
56
  * 查询Topic迁移状态列表。
@@ -100,28 +95,12 @@ Filters示例:
100
95
  async DescribeTopicListByGroup(req, cb) {
101
96
  return this.request("DescribeTopicListByGroup", req, cb);
102
97
  }
103
- /**
104
- * 下线trocket下mqtt接口
105
-
106
- 修改主题属性
107
- */
108
- async ModifyMQTTTopic(req, cb) {
109
- return this.request("ModifyMQTTTopic", req, cb);
110
- }
111
98
  /**
112
99
  * 从迁移列表中移除主题,仅当主题处于初始状态时有效
113
100
  */
114
101
  async RemoveMigratingTopic(req, cb) {
115
102
  return this.request("RemoveMigratingTopic", req, cb);
116
103
  }
117
- /**
118
- * 下线trocket下mqtt接口
119
-
120
- 删除MQTT访问用户
121
- */
122
- async DeleteMQTTUser(req, cb) {
123
- return this.request("DeleteMQTTUser", req, cb);
124
- }
125
104
  /**
126
105
  * 添加角色。
127
106
  当前 API 适用集群:5.x 集群。4.x 集群的创建角色接口文档见 [CreateRocketMQRole](https://cloud.tencent.com/document/product/1179/107538),给角色授权接口文档见 [CreateRocketMQEnvironmentRole](https://cloud.tencent.com/document/product/1179/107539)。
@@ -175,30 +154,17 @@ Filters示例:
175
154
  return this.request("CreateConsumerGroup", req, cb);
176
155
  }
177
156
  /**
178
- * 下线trocket下mqtt接口
179
-
180
- 获取产品售卖规格
181
- */
182
- async DescribeMQTTProductSKUList(req, cb) {
183
- return this.request("DescribeMQTTProductSKUList", req, cb);
184
- }
185
- /**
186
- * 平滑迁移过程获取源集群group列表接口。
157
+ * 查询角色列表,Filter参数使用说明如下:
187
158
 
188
- Filters字段为查询过滤器,支持以下字段:
189
- * GroupName,消费组名称,支持模糊搜索
190
- * Imported,是否已导入
191
- * ImportStatus,导入状态,参考[SourceClusterGroupConfig](https://cloud.tencent.com/document/api/1493/96031#SourceClusterGroupConfig)的说明
192
- * Namespace,命名空间,仅4.x集群有效
159
+ - RoleName 角色名称,支持模糊搜索,从本接口返回值或控制台获得
160
+ - AccessKey AccessKey,支持模糊搜索,从本接口返回值或控制台获得
193
161
 
194
162
  Filters示例:
195
- [{
196
- "Name": "GroupName",
197
- "Values": ["group-a"]
198
- }]
163
+ [{ "Name": "RoleName", "Values": ["test_role"] }]
164
+ 当前 API 适用集群:5.x 集群。4.x 集群的查询角色列表接口文档见 [DescribeRocketMQRoles](https://cloud.tencent.com/document/product/1179/107534),查询角色授权列表接口文档见 [DescribeRocketMQEnvironmentRoles](https://cloud.tencent.com/document/product/1179/107535)。
199
165
  */
200
- async DescribeSourceClusterGroupList(req, cb) {
201
- return this.request("DescribeSourceClusterGroupList", req, cb);
166
+ async DescribeRoleList(req, cb) {
167
+ return this.request("DescribeRoleList", req, cb);
202
168
  }
203
169
  /**
204
170
  * 检查迁移中的主题是否处于正常状态,只有处于正常状态的主题,才可以进入下一个迁移阶段
@@ -214,43 +180,11 @@ Filters示例:
214
180
  return this.request("DescribeMessage", req, cb);
215
181
  }
216
182
  /**
217
- * 下线trocket下mqtt接口
218
-
219
- 查询用户列表,Filter参数使用说明如下:
220
-
221
- 1. Username,用户名称模糊搜索
222
- */
223
- async DescribeMQTTUserList(req, cb) {
224
- return this.request("DescribeMQTTUserList", req, cb);
225
- }
226
- /**
227
- * 下线trocket下mqtt接口
228
-
229
- 删除MQTT实例的公网接入点
230
- */
231
- async DeleteMQTTInsPublicEndpoint(req, cb) {
232
- return this.request("DeleteMQTTInsPublicEndpoint", req, cb);
233
- }
234
- /**
235
- * 查询角色列表,Filter参数使用说明如下:
236
-
237
- - RoleName 角色名称,支持模糊搜索,从本接口返回值或控制台获得
238
- - AccessKey AccessKey,支持模糊搜索,从本接口返回值或控制台获得
239
-
240
- Filters示例:
241
- [{ "Name": "RoleName", "Values": ["test_role"] }]
242
- 当前 API 适用集群:5.x 集群。4.x 集群的查询角色列表接口文档见 [DescribeRocketMQRoles](https://cloud.tencent.com/document/product/1179/107534),查询角色授权列表接口文档见 [DescribeRocketMQEnvironmentRoles](https://cloud.tencent.com/document/product/1179/107535)。
243
- */
244
- async DescribeRoleList(req, cb) {
245
- return this.request("DescribeRoleList", req, cb);
246
- }
247
- /**
248
- * 下线trocket下mqtt接口
249
-
250
- 修改MQTT角色
183
+ * 重置消费位点。
184
+ 当前 API 适用集群:5.x 集群。4.x 集群的重置消费位点接口文档见 [ResetRocketMQConsumerOffSet](https://cloud.tencent.com/document/api/1179/71662)。
251
185
  */
252
- async ModifyMQTTUser(req, cb) {
253
- return this.request("ModifyMQTTUser", req, cb);
186
+ async ResetConsumerGroupOffset(req, cb) {
187
+ return this.request("ResetConsumerGroupOffset", req, cb);
254
188
  }
255
189
  /**
256
190
  * 删除消费组。消费者组删除后,消费者组的所有配置和相关数据都会被清空,且无法找回。删除后,在线的消费者客户端会出现报错,建议您提前下线客户端。
@@ -259,15 +193,6 @@ Filters示例:
259
193
  async DeleteConsumerGroup(req, cb) {
260
194
  return this.request("DeleteConsumerGroup", req, cb);
261
195
  }
262
- /**
263
- * 查询主题关联的生产者列表信息,Filters支持以下筛选条件:
264
- - ClientIP,客户端IP
265
- - ClientID,客户端ID
266
- 当前 API 适用集群:5.x 集群。4.x 集群的查询生产者客户端列表接口文档见 [DescribeRocketMQProducers](https://cloud.tencent.com/document/api/1179/122749)。
267
- */
268
- async DescribeProducerList(req, cb) {
269
- return this.request("DescribeProducerList", req, cb);
270
- }
271
196
  /**
272
197
  * 修改消费组属性。
273
198
  当前 API 适用集群:5.x 集群。4.x 集群的修改消费组属性接口文档见 [ModifyRocketMQGroup](https://cloud.tencent.com/document/api/1179/63416)。
@@ -275,14 +200,6 @@ Filters示例:
275
200
  async ModifyConsumerGroup(req, cb) {
276
201
  return this.request("ModifyConsumerGroup", req, cb);
277
202
  }
278
- /**
279
- * 下线trocket下mqtt接口
280
-
281
- 查询MQTT实例公网接入点
282
- */
283
- async DescribeMQTTInsVPCEndpoints(req, cb) {
284
- return this.request("DescribeMQTTInsVPCEndpoints", req, cb);
285
- }
286
203
  /**
287
204
  * 查询消费者客户端详情。
288
205
  当前 API 适用集群:5.x 集群。4.x 集群的查询消费者客户端详情接口文档见 [DescribeRocketMQConsumerConnectionDetail](https://cloud.tencent.com/document/product/1179/102490)。
@@ -304,28 +221,10 @@ Filters示例:
304
221
  return this.request("DeleteRole", req, cb);
305
222
  }
306
223
  /**
307
- * 下线trocket下mqtt接口
308
-
309
- 删除MQTT实例
310
- */
311
- async DeleteMQTTInstance(req, cb) {
312
- return this.request("DeleteMQTTInstance", req, cb);
313
- }
314
- /**
315
- * 下线trocket下mqtt接口
316
-
317
- 查询MQTT消息详情
318
- */
319
- async DescribeMQTTMessage(req, cb) {
320
- return this.request("DescribeMQTTMessage", req, cb);
321
- }
322
- /**
323
- * 下线trocket下mqtt接口
324
-
325
- 更新MQTT实例公网接入点
224
+ * 查询产品售卖规格,针对 RocketMQ 5.x 集群。
326
225
  */
327
- async ModifyMQTTInsPublicEndpoint(req, cb) {
328
- return this.request("ModifyMQTTInsPublicEndpoint", req, cb);
226
+ async DescribeProductSKUs(req, cb) {
227
+ return this.request("DescribeProductSKUs", req, cb);
329
228
  }
330
229
  /**
331
230
  * 修改迁移中的Topic状态进入下一步
@@ -341,25 +240,10 @@ Filters示例:
341
240
  return this.request("DescribeConsumerLag", req, cb);
342
241
  }
343
242
  /**
344
- * 下线trocket下mqtt接口
345
-
346
- 查询mqtt主题详情
347
- */
348
- async DescribeMQTTTopic(req, cb) {
349
- return this.request("DescribeMQTTTopic", req, cb);
350
- }
351
- /**
352
- * 查询产品售卖规格,针对 RocketMQ 5.x 集群。
353
- */
354
- async DescribeProductSKUs(req, cb) {
355
- return this.request("DescribeProductSKUs", req, cb);
356
- }
357
- /**
358
- * 修改 RocketMQ 5.x 集群属性,仅支持修改运行中的集群。
359
- 当前 API 适用集群:5.x 集群。修改 4.x 集群属性的接口文档见 [ModifyRocketMQInstance](https://cloud.tencent.com/document/product/1179/108862)。
243
+ * 导入topic列表
360
244
  */
361
- async ModifyInstance(req, cb) {
362
- return this.request("ModifyInstance", req, cb);
245
+ async ImportSourceClusterTopics(req, cb) {
246
+ return this.request("ImportSourceClusterTopics", req, cb);
363
247
  }
364
248
  /**
365
249
  * 查询消费组详情。
@@ -375,47 +259,6 @@ Filters示例:
375
259
  async CreateTopic(req, cb) {
376
260
  return this.request("CreateTopic", req, cb);
377
261
  }
378
- /**
379
- * 查询消息列表。如果查询死信消息,请设置ConsumerGroup参数。
380
- 当前 API 适用集群:5.x 集群。4.x 集群的查询消息列表接口文档见 [DescribeRocketMQTopicMsgs](https://cloud.tencent.com/document/product/1179/97761)。
381
- */
382
- async DescribeMessageList(req, cb) {
383
- return this.request("DescribeMessageList", req, cb);
384
- }
385
- /**
386
- * 重置消费位点。
387
- 当前 API 适用集群:5.x 集群。4.x 集群的重置消费位点接口文档见 [ResetRocketMQConsumerOffSet](https://cloud.tencent.com/document/api/1179/71662)。
388
- */
389
- async ResetConsumerGroupOffset(req, cb) {
390
- return this.request("ResetConsumerGroupOffset", req, cb);
391
- }
392
- /**
393
- * 下线trocket下mqtt接口
394
-
395
- 获取主题列表,Filter参数使用说明如下:
396
-
397
- 1. TopicName,主题名称模糊搜索
398
- 2. TopicType,主题类型查询,支持多选,可选值:Normal,Order,Transaction,DelayScheduled
399
- */
400
- async DescribeMQTTTopicList(req, cb) {
401
- return this.request("DescribeMQTTTopicList", req, cb);
402
- }
403
- /**
404
- * 下线trocket下mqtt接口
405
-
406
- 查询实例信息
407
- */
408
- async DescribeMQTTInstance(req, cb) {
409
- return this.request("DescribeMQTTInstance", req, cb);
410
- }
411
- /**
412
- * 下线trocket下mqtt接口
413
-
414
- 创建主题
415
- */
416
- async CreateMQTTTopic(req, cb) {
417
- return this.request("CreateMQTTTopic", req, cb);
418
- }
419
262
  /**
420
263
  * 创建 RocketMQ 5.x 集群。
421
264
  当前 API 适用集群:5.x 集群。创建 4.x 专享/通用集群的接口文档见 [CreateRocketMQVipInstance](https://cloud.tencent.com/document/product/1179/95721)。
@@ -424,12 +267,11 @@ Filters示例:
424
267
  return this.request("CreateInstance", req, cb);
425
268
  }
426
269
  /**
427
- * 下线trocket下mqtt接口
428
-
429
- 删除MQTT主题
270
+ * 查询消息列表。如果查询死信消息,请设置ConsumerGroup参数。
271
+ 当前 API 适用集群:5.x 集群。4.x 集群的查询消息列表接口文档见 [DescribeRocketMQTopicMsgs](https://cloud.tencent.com/document/product/1179/97761)。
430
272
  */
431
- async DeleteMQTTTopic(req, cb) {
432
- return this.request("DeleteMQTTTopic", req, cb);
273
+ async DescribeMessageList(req, cb) {
274
+ return this.request("DescribeMessageList", req, cb);
433
275
  }
434
276
  /**
435
277
  * 查询 RocketMQ 5.x 集群信息。
@@ -439,10 +281,10 @@ Filters示例:
439
281
  return this.request("DescribeInstance", req, cb);
440
282
  }
441
283
  /**
442
- * 导入topic列表
284
+ * 修改 RocketMQ 5.x 集群接入点,操作前请先确认接入点已存在。
443
285
  */
444
- async ImportSourceClusterTopics(req, cb) {
445
- return this.request("ImportSourceClusterTopics", req, cb);
286
+ async ModifyInstanceEndpoint(req, cb) {
287
+ return this.request("ModifyInstanceEndpoint", req, cb);
446
288
  }
447
289
  /**
448
290
  * 获取主题列表,Filter参数使用说明如下:
@@ -465,65 +307,13 @@ Filters示例:
465
307
  return this.request("ResendDeadLetterMessage", req, cb);
466
308
  }
467
309
  /**
468
- * 下线trocket下mqtt接口
469
-
470
- 查询MQTT实例公网接入点
471
- */
472
- async DescribeMQTTInsPublicEndpoints(req, cb) {
473
- return this.request("DescribeMQTTInsPublicEndpoints", req, cb);
474
- }
475
- /**
476
- * 下线trocket下mqtt接口
477
-
478
- 查询MQTT集群证书列表
479
- */
480
- async DescribeMQTTInstanceCert(req, cb) {
481
- return this.request("DescribeMQTTInstanceCert", req, cb);
482
- }
483
- /**
484
- * 下线trocket下mqtt接口
485
-
486
- 修改实例属性
487
- */
488
- async ModifyMQTTInstance(req, cb) {
489
- return this.request("ModifyMQTTInstance", req, cb);
490
- }
491
- /**
492
- * 下线trocket下mqtt接口
493
-
494
- 获取实例列表,Filters参数使用说明如下:
495
- 1. InstanceName, 名称模糊查询
496
- 2. InstanceId,实例ID查询
497
- 3. InstanceType, 实例类型查询,支持多选
498
- 3. InstanceStatus,实例状态查询,支持多选
499
-
500
- 当使用TagFilters查询时,Filters参数失效。
501
- */
502
- async DescribeMQTTInstanceList(req, cb) {
503
- return this.request("DescribeMQTTInstanceList", req, cb);
504
- }
505
- /**
506
- * 获取消费组列表,Filter参数使用说明如下:
507
-
508
- - ConsumerGroupName 消费组名称,支持模糊查询,从 [DescribeConsumerGroupList](https://cloud.tencent.com/document/api/1493/101535) 接口返回的 [ConsumeGroupItem](https://cloud.tencent.com/document/api/1493/96031#ConsumeGroupItem) 或控制台获得。
509
- - ConsumeMessageOrderly,投递顺序性,枚举值如下:
510
- - true 顺序投递
511
- - false 并发投递
512
-
513
- Filters示例:
514
- [{ "Name": "ConsumeMessageOrderly", "Values": ["true"] }]
515
- 当前 API 适用集群:5.x 集群。4.x 集群的获取消费组列表接口文档见 [DescribeRocketMQGroups](https://cloud.tencent.com/document/api/1179/63420)。
516
- */
517
- async DescribeConsumerGroupList(req, cb) {
518
- return this.request("DescribeConsumerGroupList", req, cb);
519
- }
520
- /**
521
- * 下线trocket下mqtt接口
522
-
523
- 购买新的MQTT实例
310
+ * 查询主题关联的生产者列表信息,Filters支持以下筛选条件:
311
+ - ClientIP,客户端IP
312
+ - ClientID,客户端ID
313
+ 当前 API 适用集群:5.x 集群。4.x 集群的查询生产者客户端列表接口文档见 [DescribeRocketMQProducers](https://cloud.tencent.com/document/api/1179/122749)。
524
314
  */
525
- async CreateMQTTInstance(req, cb) {
526
- return this.request("CreateMQTTInstance", req, cb);
315
+ async DescribeProducerList(req, cb) {
316
+ return this.request("DescribeProducerList", req, cb);
527
317
  }
528
318
  /**
529
319
  * 查询集群列表,仅支持 5.x 集群。Filters参数使用说明如下:
@@ -559,12 +349,19 @@ Filters示例:
559
349
  return this.request("DescribeFusionInstanceList", req, cb);
560
350
  }
561
351
  /**
562
- * 下线trocket下mqtt接口
352
+ * 获取消费组列表,Filter参数使用说明如下:
563
353
 
564
- 添加mqtt角色
354
+ - ConsumerGroupName 消费组名称,支持模糊查询,从 [DescribeConsumerGroupList](https://cloud.tencent.com/document/api/1493/101535) 接口返回的 [ConsumeGroupItem](https://cloud.tencent.com/document/api/1493/96031#ConsumeGroupItem) 或控制台获得。
355
+ - ConsumeMessageOrderly,投递顺序性,枚举值如下:
356
+ - true 顺序投递
357
+ - false 并发投递
358
+
359
+ Filters示例:
360
+ [{ "Name": "ConsumeMessageOrderly", "Values": ["true"] }]
361
+ 当前 API 适用集群:5.x 集群。4.x 集群的获取消费组列表接口文档见 [DescribeRocketMQGroups](https://cloud.tencent.com/document/api/1179/63420)。
565
362
  */
566
- async CreateMQTTUser(req, cb) {
567
- return this.request("CreateMQTTUser", req, cb);
363
+ async DescribeConsumerGroupList(req, cb) {
364
+ return this.request("DescribeConsumerGroupList", req, cb);
568
365
  }
569
366
  /**
570
367
  * 修改角色。
@@ -573,14 +370,6 @@ Filters示例:
573
370
  async ModifyRole(req, cb) {
574
371
  return this.request("ModifyRole", req, cb);
575
372
  }
576
- /**
577
- * 下线trocket下mqtt接口
578
-
579
- 查询 MQTT 客户端详情
580
- */
581
- async DescribeMQTTClient(req, cb) {
582
- return this.request("DescribeMQTTClient", req, cb);
583
- }
584
373
  /**
585
374
  * 查询主题详情,Offset和Limit参数是指订阅该主题的消费组查询分页参数,Filter参数使用说明如下:
586
375
 
@@ -635,12 +424,11 @@ Type,根据任务类型精确查找
635
424
  return this.request("RollbackMigratingTopicStage", req, cb);
636
425
  }
637
426
  /**
638
- * 下线trocket下mqtt接口
639
-
640
- 为MQTT实例创建公网接入点
427
+ * 修改 RocketMQ 5.x 集群属性,仅支持修改运行中的集群。
428
+ 当前 API 适用集群:5.x 集群。修改 4.x 集群属性的接口文档见 [ModifyRocketMQInstance](https://cloud.tencent.com/document/product/1179/108862)。
641
429
  */
642
- async CreateMQTTInsPublicEndpoint(req, cb) {
643
- return this.request("CreateMQTTInsPublicEndpoint", req, cb);
430
+ async ModifyInstance(req, cb) {
431
+ return this.request("ModifyInstance", req, cb);
644
432
  }
645
433
  }
646
434
  exports.Client = Client;