tencentcloud-sdk-nodejs-mqtt 4.0.1046 → 4.0.1048

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tencentcloud-sdk-nodejs-mqtt",
3
- "version": "4.0.1046",
3
+ "version": "4.0.1048",
4
4
  "description": "Tencent Cloud API NODEJS SDK",
5
5
  "main": "tencentcloud/index.js",
6
6
  "scripts": {
@@ -18,6 +18,7 @@
18
18
  import * as TencentCloudCommon from "tencentcloud-sdk-nodejs-common"
19
19
  import {
20
20
  UpdateAuthorizationPolicyPriorityResponse,
21
+ MQTTClientSubscription,
21
22
  DeleteUserRequest,
22
23
  ModifyJWTAuthenticatorResponse,
23
24
  CaCertificateItem,
@@ -25,9 +26,11 @@ import {
25
26
  ActivateDeviceCertificateRequest,
26
27
  CreateInstanceResponse,
27
28
  ApplyRegistrationCodeRequest,
29
+ DescribeMessageListRequest,
28
30
  ModifyJWTAuthenticatorRequest,
29
31
  AuthorizationPolicyPriority,
30
32
  DescribeInsPublicEndpointsResponse,
33
+ DescribeSharedSubscriptionLagResponse,
31
34
  DeleteTopicRequest,
32
35
  ModifyUserResponse,
33
36
  DescribeCaCertificateResponse,
@@ -43,12 +46,17 @@ import {
43
46
  ModifyInstanceRequest,
44
47
  RegisterDeviceCertificateResponse,
45
48
  MQTTAuthenticatorItem,
49
+ DescribeClientListResponse,
46
50
  Tag,
51
+ DescribeMessageListResponse,
52
+ HeaderItem,
47
53
  MQTTInstanceItem,
48
54
  DescribeInstanceListResponse,
49
55
  ApplyRegistrationCodeResponse,
50
56
  ModifyInstanceResponse,
57
+ CreateHttpAuthenticatorResponse,
51
58
  ModifyInsPublicEndpointResponse,
59
+ MQTTMessageItem,
52
60
  ModifyJWKSAuthenticatorResponse,
53
61
  CreateInsPublicEndpointResponse,
54
62
  CreateUserResponse,
@@ -67,6 +75,7 @@ import {
67
75
  CreateJWKSAuthenticatorRequest,
68
76
  DescribeTopicResponse,
69
77
  CreateJWKSAuthenticatorResponse,
78
+ ModifyHttpAuthenticatorResponse,
70
79
  DescribeAuthorizationPoliciesResponse,
71
80
  CreateTopicRequest,
72
81
  DeleteCaCertificateResponse,
@@ -76,15 +85,17 @@ import {
76
85
  DeactivateDeviceCertificateResponse,
77
86
  MQTTUserItem,
78
87
  ActivateCaCertificateRequest,
88
+ BodyItem,
79
89
  ActivateDeviceCertificateResponse,
80
90
  DescribeTopicRequest,
81
91
  PublishMessageRequest,
82
- CreateTopicResponse,
92
+ AuthorizationPolicyItem,
93
+ DescribeClientListRequest,
83
94
  DeleteInsPublicEndpointResponse,
84
95
  MQTTEndpointItem,
85
96
  DescribeInsVPCEndpointsRequest,
86
97
  DescribeTopicListRequest,
87
- AuthorizationPolicyItem,
98
+ CreateTopicResponse,
88
99
  RevokedDeviceCertificateRequest,
89
100
  CreateAuthorizationPolicyResponse,
90
101
  DescribeAuthenticatorRequest,
@@ -109,6 +120,8 @@ import {
109
120
  CreateJWTAuthenticatorResponse,
110
121
  DeleteAuthorizationPolicyRequest,
111
122
  DescribeAuthorizationPoliciesRequest,
123
+ RevokedDeviceCertificateResponse,
124
+ CreateHttpAuthenticatorRequest,
112
125
  DescribeProductSKUListRequest,
113
126
  DescribeTopicListResponse,
114
127
  DescribeDeviceCertificateResponse,
@@ -117,12 +130,14 @@ import {
117
130
  CreateJWTAuthenticatorRequest,
118
131
  DescribeCaCertificatesRequest,
119
132
  DeviceCertificateItem,
133
+ MQTTClientInfo,
120
134
  MQTTTopicItem,
121
135
  PriceTag,
122
136
  ModifyAuthorizationPolicyRequest,
123
- RevokedDeviceCertificateResponse,
137
+ DescribeSharedSubscriptionLagRequest,
124
138
  DeleteTopicResponse,
125
139
  ModifyInstanceCertBindingRequest,
140
+ ModifyHttpAuthenticatorRequest,
126
141
  DescribeInstanceRequest,
127
142
  DescribeCaCertificatesResponse,
128
143
  ModifyUserRequest,
@@ -342,6 +357,16 @@ export class Client extends TencentCloudCommon.AbstractClient {
342
357
  return this.request("DescribeInsVPCEndpoints", req, cb)
343
358
  }
344
359
 
360
+ /**
361
+ * 查询 MQTT 客户端详情
362
+ */
363
+ async DescribeClientList(
364
+ req: DescribeClientListRequest,
365
+ cb?: (error: string, rep: DescribeClientListResponse) => void
366
+ ): Promise<DescribeClientListResponse> {
367
+ return this.request("DescribeClientList", req, cb)
368
+ }
369
+
345
370
  /**
346
371
  * 获取产品售卖规格
347
372
  */
@@ -540,6 +565,16 @@ export class Client extends TencentCloudCommon.AbstractClient {
540
565
  return this.request("DeleteAuthorizationPolicy", req, cb)
541
566
  }
542
567
 
568
+ /**
569
+ * 修改MQTT HTTP 认证器
570
+ */
571
+ async ModifyHttpAuthenticator(
572
+ req: ModifyHttpAuthenticatorRequest,
573
+ cb?: (error: string, rep: ModifyHttpAuthenticatorResponse) => void
574
+ ): Promise<ModifyHttpAuthenticatorResponse> {
575
+ return this.request("ModifyHttpAuthenticator", req, cb)
576
+ }
577
+
543
578
  /**
544
579
  * 根据认证器类型删除一个MQTT认证器
545
580
  */
@@ -580,6 +615,16 @@ export class Client extends TencentCloudCommon.AbstractClient {
580
615
  return this.request("ActivateCaCertificate", req, cb)
581
616
  }
582
617
 
618
+ /**
619
+ * 查询消息列表,如查询死信,请设置ConsumerGroup参数
620
+ */
621
+ async DescribeMessageList(
622
+ req: DescribeMessageListRequest,
623
+ cb?: (error: string, rep: DescribeMessageListResponse) => void
624
+ ): Promise<DescribeMessageListResponse> {
625
+ return this.request("DescribeMessageList", req, cb)
626
+ }
627
+
583
628
  /**
584
629
  * 添加mqtt角色
585
630
  */
@@ -590,6 +635,16 @@ export class Client extends TencentCloudCommon.AbstractClient {
590
635
  return this.request("CreateUser", req, cb)
591
636
  }
592
637
 
638
+ /**
639
+ * 查询共享订阅消息堆积量
640
+ */
641
+ async DescribeSharedSubscriptionLag(
642
+ req: DescribeSharedSubscriptionLagRequest,
643
+ cb?: (error: string, rep: DescribeSharedSubscriptionLagResponse) => void
644
+ ): Promise<DescribeSharedSubscriptionLagResponse> {
645
+ return this.request("DescribeSharedSubscriptionLag", req, cb)
646
+ }
647
+
593
648
  /**
594
649
  * 申请ca注册码
595
650
  */
@@ -619,4 +674,14 @@ export class Client extends TencentCloudCommon.AbstractClient {
619
674
  ): Promise<ModifyInstanceResponse> {
620
675
  return this.request("ModifyInstance", req, cb)
621
676
  }
677
+
678
+ /**
679
+ * 创建一个HTTP的认证器
680
+ */
681
+ async CreateHttpAuthenticator(
682
+ req: CreateHttpAuthenticatorRequest,
683
+ cb?: (error: string, rep: CreateHttpAuthenticatorResponse) => void
684
+ ): Promise<CreateHttpAuthenticatorResponse> {
685
+ return this.request("CreateHttpAuthenticator", req, cb)
686
+ }
622
687
  }