tencentcloud-sdk-nodejs-mqtt 4.0.1048 → 4.1.4
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/README.md +18 -4
- package/es/index.js +1 -0
- package/es/services/index.js +1 -0
- package/es/services/mqtt/index.js +4 -0
- package/es/services/mqtt/v20240516/index.js +6 -0
- package/es/services/mqtt/v20240516/mqtt_client.js +162 -0
- package/es/services/mqtt/v20240516/mqtt_models.js +0 -0
- package/package.json +26 -8
- package/tencentcloud/services/mqtt/v20240516/index.js +2 -1
- package/tencentcloud/services/mqtt/v20240516/mqtt_client.js +2 -1
- package/tencentcloud/services/mqtt/v20240516/mqtt_models.d.ts +12 -11
- package/index.d.ts +0 -2
- package/index.js +0 -6
- package/prettier.config.js +0 -38
- package/src/index.ts +0 -1
- package/src/services/index.ts +0 -1
- package/src/services/mqtt/index.ts +0 -5
- package/src/services/mqtt/v20240516/index.ts +0 -6
- package/src/services/mqtt/v20240516/mqtt_client.ts +0 -687
- package/src/services/mqtt/v20240516/mqtt_models.ts +0 -2749
- package/tsconfig.json +0 -33
- package/typings/index.d.ts +0 -2
|
@@ -1,2749 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
* Copyright (c) 2018 THL A29 Limited, a Tencent company. All Rights Reserved.
|
|
3
|
-
*
|
|
4
|
-
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
-
* you may not use this file except in compliance with the License.
|
|
6
|
-
* You may obtain a copy of the License at
|
|
7
|
-
*
|
|
8
|
-
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
-
*
|
|
10
|
-
* Unless required by applicable law or agreed to in writing,
|
|
11
|
-
* software distributed under the License is distributed on an
|
|
12
|
-
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
13
|
-
* KIND, either express or implied. See the License for the
|
|
14
|
-
* specific language governing permissions and limitations
|
|
15
|
-
* under the License.
|
|
16
|
-
*/
|
|
17
|
-
|
|
18
|
-
/**
|
|
19
|
-
* UpdateAuthorizationPolicyPriority返回参数结构体
|
|
20
|
-
*/
|
|
21
|
-
export interface UpdateAuthorizationPolicyPriorityResponse {
|
|
22
|
-
/**
|
|
23
|
-
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
24
|
-
*/
|
|
25
|
-
RequestId?: string
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
/**
|
|
29
|
-
* MQTT 订阅关系
|
|
30
|
-
*/
|
|
31
|
-
export interface MQTTClientSubscription {
|
|
32
|
-
/**
|
|
33
|
-
* topic 订阅
|
|
34
|
-
*/
|
|
35
|
-
TopicFilter?: string
|
|
36
|
-
/**
|
|
37
|
-
* 服务质量等级
|
|
38
|
-
*/
|
|
39
|
-
Qos?: number
|
|
40
|
-
/**
|
|
41
|
-
* 堆积数量
|
|
42
|
-
*/
|
|
43
|
-
Lag?: number
|
|
44
|
-
/**
|
|
45
|
-
* 投递未确认数量
|
|
46
|
-
*/
|
|
47
|
-
Inflight?: number
|
|
48
|
-
}
|
|
49
|
-
|
|
50
|
-
/**
|
|
51
|
-
* DeleteUser请求参数结构体
|
|
52
|
-
*/
|
|
53
|
-
export interface DeleteUserRequest {
|
|
54
|
-
/**
|
|
55
|
-
* 实例ID
|
|
56
|
-
*/
|
|
57
|
-
InstanceId: string
|
|
58
|
-
/**
|
|
59
|
-
* 用户名
|
|
60
|
-
*/
|
|
61
|
-
Username: string
|
|
62
|
-
}
|
|
63
|
-
|
|
64
|
-
/**
|
|
65
|
-
* ModifyJWTAuthenticator返回参数结构体
|
|
66
|
-
*/
|
|
67
|
-
export interface ModifyJWTAuthenticatorResponse {
|
|
68
|
-
/**
|
|
69
|
-
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
70
|
-
*/
|
|
71
|
-
RequestId?: string
|
|
72
|
-
}
|
|
73
|
-
|
|
74
|
-
/**
|
|
75
|
-
* CA证书信息
|
|
76
|
-
*/
|
|
77
|
-
export interface CaCertificateItem {
|
|
78
|
-
/**
|
|
79
|
-
* common name
|
|
80
|
-
*/
|
|
81
|
-
CaCn?: string
|
|
82
|
-
/**
|
|
83
|
-
* 证书内容
|
|
84
|
-
*/
|
|
85
|
-
CaCertificate?: string
|
|
86
|
-
/**
|
|
87
|
-
* 证书序列号
|
|
88
|
-
*/
|
|
89
|
-
CaSn?: string
|
|
90
|
-
/**
|
|
91
|
-
* 证书格式
|
|
92
|
-
*/
|
|
93
|
-
Format?: string
|
|
94
|
-
/**
|
|
95
|
-
* 验证证书内容
|
|
96
|
-
*/
|
|
97
|
-
VerificationCertificate?: string
|
|
98
|
-
/**
|
|
99
|
-
* ca状态
|
|
100
|
-
*/
|
|
101
|
-
Status?: string
|
|
102
|
-
/**
|
|
103
|
-
* 上次激活时间
|
|
104
|
-
*/
|
|
105
|
-
LastActivationTime?: number
|
|
106
|
-
/**
|
|
107
|
-
* 创建时间
|
|
108
|
-
*/
|
|
109
|
-
CreatedTime?: number
|
|
110
|
-
/**
|
|
111
|
-
* 预销毁时间
|
|
112
|
-
*/
|
|
113
|
-
UpdateTime?: number
|
|
114
|
-
/**
|
|
115
|
-
* 上次去激活时间
|
|
116
|
-
*/
|
|
117
|
-
LastInactivationTime?: number
|
|
118
|
-
/**
|
|
119
|
-
* Ca证书颁发者CN
|
|
120
|
-
*/
|
|
121
|
-
CaIssuerCn?: string
|
|
122
|
-
/**
|
|
123
|
-
* 生效时间
|
|
124
|
-
*/
|
|
125
|
-
NotBeforeTime?: number
|
|
126
|
-
/**
|
|
127
|
-
* 失效时间
|
|
128
|
-
*/
|
|
129
|
-
NotAfterTime?: number
|
|
130
|
-
}
|
|
131
|
-
|
|
132
|
-
/**
|
|
133
|
-
* ModifyAuthorizationPolicy返回参数结构体
|
|
134
|
-
*/
|
|
135
|
-
export interface ModifyAuthorizationPolicyResponse {
|
|
136
|
-
/**
|
|
137
|
-
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
138
|
-
*/
|
|
139
|
-
RequestId?: string
|
|
140
|
-
}
|
|
141
|
-
|
|
142
|
-
/**
|
|
143
|
-
* ActivateDeviceCertificate请求参数结构体
|
|
144
|
-
*/
|
|
145
|
-
export interface ActivateDeviceCertificateRequest {
|
|
146
|
-
/**
|
|
147
|
-
* 集群id
|
|
148
|
-
*/
|
|
149
|
-
InstanceId: string
|
|
150
|
-
/**
|
|
151
|
-
* 设备证书序列号
|
|
152
|
-
*/
|
|
153
|
-
DeviceCertificateSn: string
|
|
154
|
-
}
|
|
155
|
-
|
|
156
|
-
/**
|
|
157
|
-
* CreateInstance返回参数结构体
|
|
158
|
-
*/
|
|
159
|
-
export interface CreateInstanceResponse {
|
|
160
|
-
/**
|
|
161
|
-
* 实例ID
|
|
162
|
-
*/
|
|
163
|
-
InstanceId?: string
|
|
164
|
-
/**
|
|
165
|
-
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
166
|
-
*/
|
|
167
|
-
RequestId?: string
|
|
168
|
-
}
|
|
169
|
-
|
|
170
|
-
/**
|
|
171
|
-
* ApplyRegistrationCode请求参数结构体
|
|
172
|
-
*/
|
|
173
|
-
export interface ApplyRegistrationCodeRequest {
|
|
174
|
-
/**
|
|
175
|
-
* 集群id
|
|
176
|
-
*/
|
|
177
|
-
InstanceId: string
|
|
178
|
-
}
|
|
179
|
-
|
|
180
|
-
/**
|
|
181
|
-
* DescribeMessageList请求参数结构体
|
|
182
|
-
*/
|
|
183
|
-
export interface DescribeMessageListRequest {
|
|
184
|
-
/**
|
|
185
|
-
* 实例ID
|
|
186
|
-
*/
|
|
187
|
-
InstanceId: string
|
|
188
|
-
/**
|
|
189
|
-
* 主题
|
|
190
|
-
*/
|
|
191
|
-
Topic: string
|
|
192
|
-
/**
|
|
193
|
-
* 开始时间
|
|
194
|
-
*/
|
|
195
|
-
StartTime: number
|
|
196
|
-
/**
|
|
197
|
-
* 结束时间
|
|
198
|
-
*/
|
|
199
|
-
EndTime: number
|
|
200
|
-
/**
|
|
201
|
-
* 请求任务id
|
|
202
|
-
*/
|
|
203
|
-
TaskRequestId: string
|
|
204
|
-
/**
|
|
205
|
-
* 查询起始位置
|
|
206
|
-
*/
|
|
207
|
-
Offset?: number
|
|
208
|
-
/**
|
|
209
|
-
* 查询结果限制数量
|
|
210
|
-
*/
|
|
211
|
-
Limit?: number
|
|
212
|
-
}
|
|
213
|
-
|
|
214
|
-
/**
|
|
215
|
-
* ModifyJWTAuthenticator请求参数结构体
|
|
216
|
-
*/
|
|
217
|
-
export interface ModifyJWTAuthenticatorRequest {
|
|
218
|
-
/**
|
|
219
|
-
* 实例ID
|
|
220
|
-
*/
|
|
221
|
-
InstanceId: string
|
|
222
|
-
/**
|
|
223
|
-
* 算法:hmac-based,public-key
|
|
224
|
-
*/
|
|
225
|
-
Algorithm?: string
|
|
226
|
-
/**
|
|
227
|
-
* 设备连接时传递jwt的key;
|
|
228
|
-
username-使用用户名字段传递;
|
|
229
|
-
password-使用密码字段传递
|
|
230
|
-
*/
|
|
231
|
-
From?: string
|
|
232
|
-
/**
|
|
233
|
-
* 密码
|
|
234
|
-
*/
|
|
235
|
-
Secret?: string
|
|
236
|
-
/**
|
|
237
|
-
* 公钥
|
|
238
|
-
*/
|
|
239
|
-
PublicKey?: string
|
|
240
|
-
/**
|
|
241
|
-
* JSKS文本
|
|
242
|
-
*/
|
|
243
|
-
Text?: string
|
|
244
|
-
/**
|
|
245
|
-
* 说明
|
|
246
|
-
*/
|
|
247
|
-
Remark?: string
|
|
248
|
-
}
|
|
249
|
-
|
|
250
|
-
/**
|
|
251
|
-
* 策略规则优先级
|
|
252
|
-
*/
|
|
253
|
-
export interface AuthorizationPolicyPriority {
|
|
254
|
-
/**
|
|
255
|
-
* 策略id
|
|
256
|
-
*/
|
|
257
|
-
Id: number
|
|
258
|
-
/**
|
|
259
|
-
* 优先级
|
|
260
|
-
*/
|
|
261
|
-
Priority: number
|
|
262
|
-
}
|
|
263
|
-
|
|
264
|
-
/**
|
|
265
|
-
* DescribeInsPublicEndpoints返回参数结构体
|
|
266
|
-
*/
|
|
267
|
-
export interface DescribeInsPublicEndpointsResponse {
|
|
268
|
-
/**
|
|
269
|
-
* 接入点
|
|
270
|
-
*/
|
|
271
|
-
Endpoints?: Array<MQTTEndpointItem>
|
|
272
|
-
/**
|
|
273
|
-
* 实例id
|
|
274
|
-
*/
|
|
275
|
-
InstanceId?: string
|
|
276
|
-
/**
|
|
277
|
-
* 带宽
|
|
278
|
-
*/
|
|
279
|
-
Bandwidth?: number
|
|
280
|
-
/**
|
|
281
|
-
* 公网访问规则
|
|
282
|
-
*/
|
|
283
|
-
Rules?: Array<PublicAccessRule>
|
|
284
|
-
/**
|
|
285
|
-
* 公网状态:
|
|
286
|
-
NORMAL-正常
|
|
287
|
-
CLOSING-关闭中
|
|
288
|
-
MODIFYING-修改中
|
|
289
|
-
CREATING-开启中
|
|
290
|
-
CLOSE-关闭
|
|
291
|
-
*/
|
|
292
|
-
Status?: string
|
|
293
|
-
/**
|
|
294
|
-
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
295
|
-
*/
|
|
296
|
-
RequestId?: string
|
|
297
|
-
}
|
|
298
|
-
|
|
299
|
-
/**
|
|
300
|
-
* DescribeSharedSubscriptionLag返回参数结构体
|
|
301
|
-
*/
|
|
302
|
-
export interface DescribeSharedSubscriptionLagResponse {
|
|
303
|
-
/**
|
|
304
|
-
* 堆积值
|
|
305
|
-
*/
|
|
306
|
-
Lag?: number
|
|
307
|
-
/**
|
|
308
|
-
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
309
|
-
*/
|
|
310
|
-
RequestId?: string
|
|
311
|
-
}
|
|
312
|
-
|
|
313
|
-
/**
|
|
314
|
-
* DeleteTopic请求参数结构体
|
|
315
|
-
*/
|
|
316
|
-
export interface DeleteTopicRequest {
|
|
317
|
-
/**
|
|
318
|
-
* 实例ID
|
|
319
|
-
*/
|
|
320
|
-
InstanceId: string
|
|
321
|
-
/**
|
|
322
|
-
* 主题
|
|
323
|
-
*/
|
|
324
|
-
Topic: string
|
|
325
|
-
}
|
|
326
|
-
|
|
327
|
-
/**
|
|
328
|
-
* ModifyUser返回参数结构体
|
|
329
|
-
*/
|
|
330
|
-
export interface ModifyUserResponse {
|
|
331
|
-
/**
|
|
332
|
-
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
333
|
-
*/
|
|
334
|
-
RequestId?: string
|
|
335
|
-
}
|
|
336
|
-
|
|
337
|
-
/**
|
|
338
|
-
* DescribeCaCertificate返回参数结构体
|
|
339
|
-
*/
|
|
340
|
-
export interface DescribeCaCertificateResponse {
|
|
341
|
-
/**
|
|
342
|
-
* 创建时间
|
|
343
|
-
*/
|
|
344
|
-
CreatedTime?: number
|
|
345
|
-
/**
|
|
346
|
-
* 上次更新时间
|
|
347
|
-
*/
|
|
348
|
-
UpdateTime?: number
|
|
349
|
-
/**
|
|
350
|
-
* 失效日期
|
|
351
|
-
*/
|
|
352
|
-
NotAfterTime?: number
|
|
353
|
-
/**
|
|
354
|
-
* 上次激活时间
|
|
355
|
-
*/
|
|
356
|
-
LastActivationTime?: number
|
|
357
|
-
/**
|
|
358
|
-
* 上次吊销时间
|
|
359
|
-
*/
|
|
360
|
-
LastInactivationTime?: number
|
|
361
|
-
/**
|
|
362
|
-
* 证书状态
|
|
363
|
-
*/
|
|
364
|
-
Status?: string
|
|
365
|
-
/**
|
|
366
|
-
* 证书序列号
|
|
367
|
-
*/
|
|
368
|
-
CaSn?: string
|
|
369
|
-
/**
|
|
370
|
-
* common name
|
|
371
|
-
*/
|
|
372
|
-
CaCn?: string
|
|
373
|
-
/**
|
|
374
|
-
* 证书内容
|
|
375
|
-
*/
|
|
376
|
-
CaCertificate?: string
|
|
377
|
-
/**
|
|
378
|
-
* 证书格式
|
|
379
|
-
*/
|
|
380
|
-
Format?: string
|
|
381
|
-
/**
|
|
382
|
-
* Ca证书颁发者CN
|
|
383
|
-
*/
|
|
384
|
-
CaIssuerCn?: string
|
|
385
|
-
/**
|
|
386
|
-
* 生效开始时间
|
|
387
|
-
*/
|
|
388
|
-
NotBeforeTime?: number
|
|
389
|
-
/**
|
|
390
|
-
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
391
|
-
*/
|
|
392
|
-
RequestId?: string
|
|
393
|
-
}
|
|
394
|
-
|
|
395
|
-
/**
|
|
396
|
-
* DescribeDeviceCertificates请求参数结构体
|
|
397
|
-
*/
|
|
398
|
-
export interface DescribeDeviceCertificatesRequest {
|
|
399
|
-
/**
|
|
400
|
-
* 集群ID
|
|
401
|
-
*/
|
|
402
|
-
InstanceId: string
|
|
403
|
-
/**
|
|
404
|
-
* 过滤器支持ClientId、CaSn、DeviceCertificateSn、Status搜索
|
|
405
|
-
*/
|
|
406
|
-
Filters?: Array<Filter>
|
|
407
|
-
/**
|
|
408
|
-
* 分页limit
|
|
409
|
-
*/
|
|
410
|
-
Limit?: number
|
|
411
|
-
/**
|
|
412
|
-
* 分页偏移量
|
|
413
|
-
*/
|
|
414
|
-
Offset?: number
|
|
415
|
-
/**
|
|
416
|
-
* CREATE_TIME_DESC, 创建时间降序
|
|
417
|
-
CREATE_TIME_ASC,创建时间升序
|
|
418
|
-
UPDATE_TIME_DESC,更新时间降序
|
|
419
|
-
UPDATE_TIME_ASC,更新时间升序
|
|
420
|
-
*/
|
|
421
|
-
OrderBy?: string
|
|
422
|
-
}
|
|
423
|
-
|
|
424
|
-
/**
|
|
425
|
-
* DeleteAuthenticator请求参数结构体
|
|
426
|
-
*/
|
|
427
|
-
export interface DeleteAuthenticatorRequest {
|
|
428
|
-
/**
|
|
429
|
-
* 实例ID
|
|
430
|
-
*/
|
|
431
|
-
InstanceId: string
|
|
432
|
-
/**
|
|
433
|
-
* 认证器类型:
|
|
434
|
-
JWT:JWT认证器
|
|
435
|
-
JWKS:JWKS认证器
|
|
436
|
-
BYOC:一端一证认证器
|
|
437
|
-
*/
|
|
438
|
-
Type: string
|
|
439
|
-
}
|
|
440
|
-
|
|
441
|
-
/**
|
|
442
|
-
* 公网访问安全规则
|
|
443
|
-
*/
|
|
444
|
-
export interface PublicAccessRule {
|
|
445
|
-
/**
|
|
446
|
-
* ip网段信息
|
|
447
|
-
*/
|
|
448
|
-
IpRule: string
|
|
449
|
-
/**
|
|
450
|
-
* 允许或者拒绝
|
|
451
|
-
*/
|
|
452
|
-
Allow: boolean
|
|
453
|
-
/**
|
|
454
|
-
* 备注信息
|
|
455
|
-
*/
|
|
456
|
-
Remark?: string
|
|
457
|
-
}
|
|
458
|
-
|
|
459
|
-
/**
|
|
460
|
-
* VPC信息
|
|
461
|
-
*/
|
|
462
|
-
export interface VpcInfo {
|
|
463
|
-
/**
|
|
464
|
-
* VPC ID
|
|
465
|
-
*/
|
|
466
|
-
VpcId: string
|
|
467
|
-
/**
|
|
468
|
-
* 子网ID
|
|
469
|
-
*/
|
|
470
|
-
SubnetId: string
|
|
471
|
-
}
|
|
472
|
-
|
|
473
|
-
/**
|
|
474
|
-
* DeleteAuthorizationPolicy返回参数结构体
|
|
475
|
-
*/
|
|
476
|
-
export interface DeleteAuthorizationPolicyResponse {
|
|
477
|
-
/**
|
|
478
|
-
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
479
|
-
*/
|
|
480
|
-
RequestId?: string
|
|
481
|
-
}
|
|
482
|
-
|
|
483
|
-
/**
|
|
484
|
-
* MQTT ProductSkuItem
|
|
485
|
-
*/
|
|
486
|
-
export interface ProductSkuItem {
|
|
487
|
-
/**
|
|
488
|
-
* 规格类型
|
|
489
|
-
BASIC:基础版
|
|
490
|
-
PRO :专业版
|
|
491
|
-
*/
|
|
492
|
-
InstanceType?: string
|
|
493
|
-
/**
|
|
494
|
-
* 规格代码
|
|
495
|
-
*/
|
|
496
|
-
SkuCode?: string
|
|
497
|
-
/**
|
|
498
|
-
* 是否售卖
|
|
499
|
-
*/
|
|
500
|
-
OnSale?: boolean
|
|
501
|
-
/**
|
|
502
|
-
* topic num限制
|
|
503
|
-
*/
|
|
504
|
-
TopicNumLimit?: number
|
|
505
|
-
/**
|
|
506
|
-
* tps
|
|
507
|
-
*/
|
|
508
|
-
TpsLimit?: number
|
|
509
|
-
/**
|
|
510
|
-
* 客户端连接数
|
|
511
|
-
*/
|
|
512
|
-
ClientNumLimit?: number
|
|
513
|
-
/**
|
|
514
|
-
* 单客户端最大订阅数
|
|
515
|
-
*/
|
|
516
|
-
MaxSubscriptionPerClient?: number
|
|
517
|
-
/**
|
|
518
|
-
* 授权规则条数
|
|
519
|
-
*/
|
|
520
|
-
AuthorizationPolicyLimit?: number
|
|
521
|
-
/**
|
|
522
|
-
* 计费项信息
|
|
523
|
-
*/
|
|
524
|
-
PriceTags?: Array<PriceTag>
|
|
525
|
-
}
|
|
526
|
-
|
|
527
|
-
/**
|
|
528
|
-
* ModifyJWKSAuthenticator请求参数结构体
|
|
529
|
-
*/
|
|
530
|
-
export interface ModifyJWKSAuthenticatorRequest {
|
|
531
|
-
/**
|
|
532
|
-
* 实例ID
|
|
533
|
-
*/
|
|
534
|
-
InstanceId: string
|
|
535
|
-
/**
|
|
536
|
-
* 端点
|
|
537
|
-
*/
|
|
538
|
-
Endpoint?: string
|
|
539
|
-
/**
|
|
540
|
-
* 认证器状态:open-启用;close-关闭
|
|
541
|
-
*/
|
|
542
|
-
Status?: string
|
|
543
|
-
/**
|
|
544
|
-
* 刷新时间
|
|
545
|
-
*/
|
|
546
|
-
RefreshInterval?: number
|
|
547
|
-
/**
|
|
548
|
-
* JSKS文本
|
|
549
|
-
*/
|
|
550
|
-
Text?: string
|
|
551
|
-
/**
|
|
552
|
-
* 设备连接时传递jwt的key;username-使用用户名字段传递;password-使用密码字段传递
|
|
553
|
-
*/
|
|
554
|
-
From?: string
|
|
555
|
-
/**
|
|
556
|
-
* 说明
|
|
557
|
-
*/
|
|
558
|
-
Remark?: string
|
|
559
|
-
}
|
|
560
|
-
|
|
561
|
-
/**
|
|
562
|
-
* RegisterCaCertificate返回参数结构体
|
|
563
|
-
*/
|
|
564
|
-
export interface RegisterCaCertificateResponse {
|
|
565
|
-
/**
|
|
566
|
-
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
567
|
-
*/
|
|
568
|
-
RequestId?: string
|
|
569
|
-
}
|
|
570
|
-
|
|
571
|
-
/**
|
|
572
|
-
* DeleteInstance请求参数结构体
|
|
573
|
-
*/
|
|
574
|
-
export interface DeleteInstanceRequest {
|
|
575
|
-
/**
|
|
576
|
-
* 实例ID
|
|
577
|
-
*/
|
|
578
|
-
InstanceId: string
|
|
579
|
-
}
|
|
580
|
-
|
|
581
|
-
/**
|
|
582
|
-
* ModifyInstance请求参数结构体
|
|
583
|
-
*/
|
|
584
|
-
export interface ModifyInstanceRequest {
|
|
585
|
-
/**
|
|
586
|
-
* 实例ID
|
|
587
|
-
*/
|
|
588
|
-
InstanceId: string
|
|
589
|
-
/**
|
|
590
|
-
* 要修改实例名称
|
|
591
|
-
*/
|
|
592
|
-
Name?: string
|
|
593
|
-
/**
|
|
594
|
-
* 要修改的备注信息
|
|
595
|
-
*/
|
|
596
|
-
Remark?: string
|
|
597
|
-
/**
|
|
598
|
-
* 要变更的配置规格
|
|
599
|
-
*/
|
|
600
|
-
SkuCode?: string
|
|
601
|
-
/**
|
|
602
|
-
* 客户端证书注册方式:
|
|
603
|
-
JITP:自动注册
|
|
604
|
-
API:手动通过API注册
|
|
605
|
-
*/
|
|
606
|
-
DeviceCertificateProvisionType?: string
|
|
607
|
-
/**
|
|
608
|
-
* 自动注册证书是否自动激活
|
|
609
|
-
*/
|
|
610
|
-
AutomaticActivation?: boolean
|
|
611
|
-
}
|
|
612
|
-
|
|
613
|
-
/**
|
|
614
|
-
* RegisterDeviceCertificate返回参数结构体
|
|
615
|
-
*/
|
|
616
|
-
export interface RegisterDeviceCertificateResponse {
|
|
617
|
-
/**
|
|
618
|
-
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
619
|
-
*/
|
|
620
|
-
RequestId?: string
|
|
621
|
-
}
|
|
622
|
-
|
|
623
|
-
/**
|
|
624
|
-
* MQTT认证器信息
|
|
625
|
-
*/
|
|
626
|
-
export interface MQTTAuthenticatorItem {
|
|
627
|
-
/**
|
|
628
|
-
* 认证器类型: JWT:JWT认证器 JWKS:JWKS认证器 BYOC:一端一证认证器
|
|
629
|
-
*/
|
|
630
|
-
Type?: string
|
|
631
|
-
/**
|
|
632
|
-
* 认证器配置
|
|
633
|
-
*/
|
|
634
|
-
Config?: string
|
|
635
|
-
/**
|
|
636
|
-
* 认证器状态
|
|
637
|
-
*/
|
|
638
|
-
Status?: string
|
|
639
|
-
/**
|
|
640
|
-
* 创建时间
|
|
641
|
-
*/
|
|
642
|
-
CreateTime?: number
|
|
643
|
-
/**
|
|
644
|
-
* 说明
|
|
645
|
-
*/
|
|
646
|
-
Remark?: string
|
|
647
|
-
}
|
|
648
|
-
|
|
649
|
-
/**
|
|
650
|
-
* DescribeClientList返回参数结构体
|
|
651
|
-
*/
|
|
652
|
-
export interface DescribeClientListResponse {
|
|
653
|
-
/**
|
|
654
|
-
* 客户端列表
|
|
655
|
-
*/
|
|
656
|
-
Clients?: Array<MQTTClientInfo>
|
|
657
|
-
/**
|
|
658
|
-
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
659
|
-
*/
|
|
660
|
-
RequestId?: string
|
|
661
|
-
}
|
|
662
|
-
|
|
663
|
-
/**
|
|
664
|
-
* 标签数据
|
|
665
|
-
*/
|
|
666
|
-
export interface Tag {
|
|
667
|
-
/**
|
|
668
|
-
* 标签名称
|
|
669
|
-
*/
|
|
670
|
-
TagKey: string
|
|
671
|
-
/**
|
|
672
|
-
* 标签值
|
|
673
|
-
*/
|
|
674
|
-
TagValue: string
|
|
675
|
-
}
|
|
676
|
-
|
|
677
|
-
/**
|
|
678
|
-
* DescribeMessageList返回参数结构体
|
|
679
|
-
*/
|
|
680
|
-
export interface DescribeMessageListResponse {
|
|
681
|
-
/**
|
|
682
|
-
* 查询总数
|
|
683
|
-
*/
|
|
684
|
-
TotalCount?: number
|
|
685
|
-
/**
|
|
686
|
-
* 消息记录列表
|
|
687
|
-
*/
|
|
688
|
-
Data?: Array<MQTTMessageItem>
|
|
689
|
-
/**
|
|
690
|
-
* 请求任务id
|
|
691
|
-
*/
|
|
692
|
-
TaskRequestId?: string
|
|
693
|
-
/**
|
|
694
|
-
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
695
|
-
*/
|
|
696
|
-
RequestId?: string
|
|
697
|
-
}
|
|
698
|
-
|
|
699
|
-
/**
|
|
700
|
-
* HTTP 认证器header
|
|
701
|
-
*/
|
|
702
|
-
export interface HeaderItem {
|
|
703
|
-
/**
|
|
704
|
-
* header key
|
|
705
|
-
*/
|
|
706
|
-
Key: string
|
|
707
|
-
/**
|
|
708
|
-
* header value
|
|
709
|
-
*/
|
|
710
|
-
Value: string
|
|
711
|
-
}
|
|
712
|
-
|
|
713
|
-
/**
|
|
714
|
-
* MQTT 实例信息
|
|
715
|
-
*/
|
|
716
|
-
export interface MQTTInstanceItem {
|
|
717
|
-
/**
|
|
718
|
-
* 实例ID
|
|
719
|
-
*/
|
|
720
|
-
InstanceId?: string
|
|
721
|
-
/**
|
|
722
|
-
* 实例名称
|
|
723
|
-
*/
|
|
724
|
-
InstanceName?: string
|
|
725
|
-
/**
|
|
726
|
-
* 实例版本
|
|
727
|
-
*/
|
|
728
|
-
Version?: string
|
|
729
|
-
/**
|
|
730
|
-
* 实例类型,
|
|
731
|
-
EXPERIMENT,体验版
|
|
732
|
-
BASIC,基础版
|
|
733
|
-
PRO,专业版
|
|
734
|
-
PLATINUM,铂金版
|
|
735
|
-
*/
|
|
736
|
-
InstanceType?: string
|
|
737
|
-
/**
|
|
738
|
-
* 实例状态,
|
|
739
|
-
RUNNING, 运行中
|
|
740
|
-
MAINTAINING,维护中
|
|
741
|
-
ABNORMAL,异常
|
|
742
|
-
OVERDUE,欠费
|
|
743
|
-
DESTROYED,已删除
|
|
744
|
-
CREATING,创建中
|
|
745
|
-
MODIFYING,变配中
|
|
746
|
-
CREATE_FAILURE,创建失败
|
|
747
|
-
MODIFY_FAILURE,变配失败
|
|
748
|
-
DELETING,删除中
|
|
749
|
-
*/
|
|
750
|
-
InstanceStatus?: string
|
|
751
|
-
/**
|
|
752
|
-
* 实例主题数上限
|
|
753
|
-
*/
|
|
754
|
-
TopicNumLimit?: number
|
|
755
|
-
/**
|
|
756
|
-
* 备注信息
|
|
757
|
-
*/
|
|
758
|
-
Remark?: string
|
|
759
|
-
/**
|
|
760
|
-
* 主题数量
|
|
761
|
-
*/
|
|
762
|
-
TopicNum?: number
|
|
763
|
-
/**
|
|
764
|
-
* 商品规格
|
|
765
|
-
*/
|
|
766
|
-
SkuCode?: string
|
|
767
|
-
/**
|
|
768
|
-
* 弹性TPS限流值
|
|
769
|
-
*/
|
|
770
|
-
TpsLimit?: number
|
|
771
|
-
/**
|
|
772
|
-
* 创建时间
|
|
773
|
-
*/
|
|
774
|
-
CreateTime?: number
|
|
775
|
-
/**
|
|
776
|
-
* 单客户端最大订阅数量
|
|
777
|
-
*/
|
|
778
|
-
MaxSubscriptionPerClient?: number
|
|
779
|
-
/**
|
|
780
|
-
* 客户端连接数上线
|
|
781
|
-
*/
|
|
782
|
-
ClientNumLimit?: number
|
|
783
|
-
/**
|
|
784
|
-
* 是否自动续费
|
|
785
|
-
*/
|
|
786
|
-
RenewFlag?: number
|
|
787
|
-
/**
|
|
788
|
-
* 计费模式, POSTPAID,按量计费 PREPAID,包年包月
|
|
789
|
-
*/
|
|
790
|
-
PayMode?: string
|
|
791
|
-
/**
|
|
792
|
-
* 到期时间,秒为单位
|
|
793
|
-
*/
|
|
794
|
-
ExpiryTime?: number
|
|
795
|
-
/**
|
|
796
|
-
* 预销毁时间
|
|
797
|
-
*/
|
|
798
|
-
DestroyTime?: number
|
|
799
|
-
/**
|
|
800
|
-
* 授权规则条数限制
|
|
801
|
-
*/
|
|
802
|
-
AuthorizationPolicyLimit?: number
|
|
803
|
-
/**
|
|
804
|
-
* 最大ca配额
|
|
805
|
-
*/
|
|
806
|
-
MaxCaNum?: number
|
|
807
|
-
/**
|
|
808
|
-
* 最大订阅数
|
|
809
|
-
*/
|
|
810
|
-
MaxSubscription?: number
|
|
811
|
-
}
|
|
812
|
-
|
|
813
|
-
/**
|
|
814
|
-
* DescribeInstanceList返回参数结构体
|
|
815
|
-
*/
|
|
816
|
-
export interface DescribeInstanceListResponse {
|
|
817
|
-
/**
|
|
818
|
-
* 查询总数
|
|
819
|
-
*/
|
|
820
|
-
TotalCount?: number
|
|
821
|
-
/**
|
|
822
|
-
* 实例列表
|
|
823
|
-
*/
|
|
824
|
-
Data?: Array<MQTTInstanceItem>
|
|
825
|
-
/**
|
|
826
|
-
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
827
|
-
*/
|
|
828
|
-
RequestId?: string
|
|
829
|
-
}
|
|
830
|
-
|
|
831
|
-
/**
|
|
832
|
-
* ApplyRegistrationCode返回参数结构体
|
|
833
|
-
*/
|
|
834
|
-
export interface ApplyRegistrationCodeResponse {
|
|
835
|
-
/**
|
|
836
|
-
* 集群ID
|
|
837
|
-
*/
|
|
838
|
-
InstanceId?: string
|
|
839
|
-
/**
|
|
840
|
-
* 注册码
|
|
841
|
-
*/
|
|
842
|
-
RegistrationCode?: string
|
|
843
|
-
/**
|
|
844
|
-
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
845
|
-
*/
|
|
846
|
-
RequestId?: string
|
|
847
|
-
}
|
|
848
|
-
|
|
849
|
-
/**
|
|
850
|
-
* ModifyInstance返回参数结构体
|
|
851
|
-
*/
|
|
852
|
-
export interface ModifyInstanceResponse {
|
|
853
|
-
/**
|
|
854
|
-
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
855
|
-
*/
|
|
856
|
-
RequestId?: string
|
|
857
|
-
}
|
|
858
|
-
|
|
859
|
-
/**
|
|
860
|
-
* CreateHttpAuthenticator返回参数结构体
|
|
861
|
-
*/
|
|
862
|
-
export interface CreateHttpAuthenticatorResponse {
|
|
863
|
-
/**
|
|
864
|
-
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
865
|
-
*/
|
|
866
|
-
RequestId?: string
|
|
867
|
-
}
|
|
868
|
-
|
|
869
|
-
/**
|
|
870
|
-
* ModifyInsPublicEndpoint返回参数结构体
|
|
871
|
-
*/
|
|
872
|
-
export interface ModifyInsPublicEndpointResponse {
|
|
873
|
-
/**
|
|
874
|
-
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
875
|
-
*/
|
|
876
|
-
RequestId?: string
|
|
877
|
-
}
|
|
878
|
-
|
|
879
|
-
/**
|
|
880
|
-
* 消息记录
|
|
881
|
-
*/
|
|
882
|
-
export interface MQTTMessageItem {
|
|
883
|
-
/**
|
|
884
|
-
* 消息ID
|
|
885
|
-
*/
|
|
886
|
-
MsgId?: string
|
|
887
|
-
/**
|
|
888
|
-
* 消息tag
|
|
889
|
-
*/
|
|
890
|
-
Tags?: string
|
|
891
|
-
/**
|
|
892
|
-
* 消息key
|
|
893
|
-
*/
|
|
894
|
-
Keys?: string
|
|
895
|
-
/**
|
|
896
|
-
* 客户端地址
|
|
897
|
-
*/
|
|
898
|
-
ProducerAddr?: string
|
|
899
|
-
/**
|
|
900
|
-
* 消息发送时间
|
|
901
|
-
*/
|
|
902
|
-
ProduceTime?: string
|
|
903
|
-
/**
|
|
904
|
-
* 死信重发次数
|
|
905
|
-
*/
|
|
906
|
-
DeadLetterResendTimes?: number
|
|
907
|
-
/**
|
|
908
|
-
* 死信重发成功次数
|
|
909
|
-
*/
|
|
910
|
-
DeadLetterResendSuccessTimes?: number
|
|
911
|
-
/**
|
|
912
|
-
* 子topic
|
|
913
|
-
*/
|
|
914
|
-
SubTopic?: string
|
|
915
|
-
/**
|
|
916
|
-
* 消息质量等级
|
|
917
|
-
*/
|
|
918
|
-
Qos?: string
|
|
919
|
-
}
|
|
920
|
-
|
|
921
|
-
/**
|
|
922
|
-
* ModifyJWKSAuthenticator返回参数结构体
|
|
923
|
-
*/
|
|
924
|
-
export interface ModifyJWKSAuthenticatorResponse {
|
|
925
|
-
/**
|
|
926
|
-
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
927
|
-
*/
|
|
928
|
-
RequestId?: string
|
|
929
|
-
}
|
|
930
|
-
|
|
931
|
-
/**
|
|
932
|
-
* CreateInsPublicEndpoint返回参数结构体
|
|
933
|
-
*/
|
|
934
|
-
export interface CreateInsPublicEndpointResponse {
|
|
935
|
-
/**
|
|
936
|
-
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
937
|
-
*/
|
|
938
|
-
RequestId?: string
|
|
939
|
-
}
|
|
940
|
-
|
|
941
|
-
/**
|
|
942
|
-
* CreateUser返回参数结构体
|
|
943
|
-
*/
|
|
944
|
-
export interface CreateUserResponse {
|
|
945
|
-
/**
|
|
946
|
-
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
947
|
-
*/
|
|
948
|
-
RequestId?: string
|
|
949
|
-
}
|
|
950
|
-
|
|
951
|
-
/**
|
|
952
|
-
* CreateAuthorizationPolicy请求参数结构体
|
|
953
|
-
*/
|
|
954
|
-
export interface CreateAuthorizationPolicyRequest {
|
|
955
|
-
/**
|
|
956
|
-
* 实例ID
|
|
957
|
-
*/
|
|
958
|
-
InstanceId: string
|
|
959
|
-
/**
|
|
960
|
-
* 策略名称
|
|
961
|
-
*/
|
|
962
|
-
PolicyName: string
|
|
963
|
-
/**
|
|
964
|
-
* 策略版本
|
|
965
|
-
*/
|
|
966
|
-
PolicyVersion: number
|
|
967
|
-
/**
|
|
968
|
-
* 策略优先级,越小越优先
|
|
969
|
-
*/
|
|
970
|
-
Priority: number
|
|
971
|
-
/**
|
|
972
|
-
* allow、deny
|
|
973
|
-
*/
|
|
974
|
-
Effect: string
|
|
975
|
-
/**
|
|
976
|
-
* connect、pub、sub
|
|
977
|
-
*/
|
|
978
|
-
Actions: string
|
|
979
|
-
/**
|
|
980
|
-
* 1,匹配保留消息;2,匹配非保留消息,3.匹配所有消息
|
|
981
|
-
*/
|
|
982
|
-
Retain: number
|
|
983
|
-
/**
|
|
984
|
-
* 0、1、2
|
|
985
|
-
*/
|
|
986
|
-
Qos: string
|
|
987
|
-
/**
|
|
988
|
-
* 资源
|
|
989
|
-
*/
|
|
990
|
-
Resources?: string
|
|
991
|
-
/**
|
|
992
|
-
* 用户名
|
|
993
|
-
*/
|
|
994
|
-
Username?: string
|
|
995
|
-
/**
|
|
996
|
-
* 客户端
|
|
997
|
-
*/
|
|
998
|
-
ClientId?: string
|
|
999
|
-
/**
|
|
1000
|
-
* IP地址
|
|
1001
|
-
*/
|
|
1002
|
-
Ip?: string
|
|
1003
|
-
/**
|
|
1004
|
-
* 备注信息
|
|
1005
|
-
*/
|
|
1006
|
-
Remark?: string
|
|
1007
|
-
}
|
|
1008
|
-
|
|
1009
|
-
/**
|
|
1010
|
-
* PublishMessage返回参数结构体
|
|
1011
|
-
*/
|
|
1012
|
-
export interface PublishMessageResponse {
|
|
1013
|
-
/**
|
|
1014
|
-
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1015
|
-
*/
|
|
1016
|
-
RequestId?: string
|
|
1017
|
-
}
|
|
1018
|
-
|
|
1019
|
-
/**
|
|
1020
|
-
* DescribeAuthenticator返回参数结构体
|
|
1021
|
-
*/
|
|
1022
|
-
export interface DescribeAuthenticatorResponse {
|
|
1023
|
-
/**
|
|
1024
|
-
* 集群认证器列表
|
|
1025
|
-
*/
|
|
1026
|
-
Authenticators?: Array<MQTTAuthenticatorItem>
|
|
1027
|
-
/**
|
|
1028
|
-
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1029
|
-
*/
|
|
1030
|
-
RequestId?: string
|
|
1031
|
-
}
|
|
1032
|
-
|
|
1033
|
-
/**
|
|
1034
|
-
* DeactivateCaCertificate返回参数结构体
|
|
1035
|
-
*/
|
|
1036
|
-
export interface DeactivateCaCertificateResponse {
|
|
1037
|
-
/**
|
|
1038
|
-
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1039
|
-
*/
|
|
1040
|
-
RequestId?: string
|
|
1041
|
-
}
|
|
1042
|
-
|
|
1043
|
-
/**
|
|
1044
|
-
* DeleteCaCertificate请求参数结构体
|
|
1045
|
-
*/
|
|
1046
|
-
export interface DeleteCaCertificateRequest {
|
|
1047
|
-
/**
|
|
1048
|
-
* 集群id
|
|
1049
|
-
*/
|
|
1050
|
-
InstanceId: string
|
|
1051
|
-
/**
|
|
1052
|
-
* 证书序列号
|
|
1053
|
-
*/
|
|
1054
|
-
CaSn: string
|
|
1055
|
-
}
|
|
1056
|
-
|
|
1057
|
-
/**
|
|
1058
|
-
* DeleteDeviceCertificate请求参数结构体
|
|
1059
|
-
*/
|
|
1060
|
-
export interface DeleteDeviceCertificateRequest {
|
|
1061
|
-
/**
|
|
1062
|
-
* 集群id
|
|
1063
|
-
*/
|
|
1064
|
-
InstanceId: string
|
|
1065
|
-
/**
|
|
1066
|
-
* 设备证书序列号
|
|
1067
|
-
*/
|
|
1068
|
-
DeviceCertificateSn: string
|
|
1069
|
-
}
|
|
1070
|
-
|
|
1071
|
-
/**
|
|
1072
|
-
* DescribeInsPublicEndpoints请求参数结构体
|
|
1073
|
-
*/
|
|
1074
|
-
export interface DescribeInsPublicEndpointsRequest {
|
|
1075
|
-
/**
|
|
1076
|
-
* 实例ID
|
|
1077
|
-
*/
|
|
1078
|
-
InstanceId: string
|
|
1079
|
-
}
|
|
1080
|
-
|
|
1081
|
-
/**
|
|
1082
|
-
* DeleteUser返回参数结构体
|
|
1083
|
-
*/
|
|
1084
|
-
export interface DeleteUserResponse {
|
|
1085
|
-
/**
|
|
1086
|
-
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1087
|
-
*/
|
|
1088
|
-
RequestId?: string
|
|
1089
|
-
}
|
|
1090
|
-
|
|
1091
|
-
/**
|
|
1092
|
-
* ActivateCaCertificate返回参数结构体
|
|
1093
|
-
*/
|
|
1094
|
-
export interface ActivateCaCertificateResponse {
|
|
1095
|
-
/**
|
|
1096
|
-
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1097
|
-
*/
|
|
1098
|
-
RequestId?: string
|
|
1099
|
-
}
|
|
1100
|
-
|
|
1101
|
-
/**
|
|
1102
|
-
* DeleteDeviceCertificate返回参数结构体
|
|
1103
|
-
*/
|
|
1104
|
-
export interface DeleteDeviceCertificateResponse {
|
|
1105
|
-
/**
|
|
1106
|
-
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1107
|
-
*/
|
|
1108
|
-
RequestId?: string
|
|
1109
|
-
}
|
|
1110
|
-
|
|
1111
|
-
/**
|
|
1112
|
-
* DeleteInstance返回参数结构体
|
|
1113
|
-
*/
|
|
1114
|
-
export interface DeleteInstanceResponse {
|
|
1115
|
-
/**
|
|
1116
|
-
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1117
|
-
*/
|
|
1118
|
-
RequestId?: string
|
|
1119
|
-
}
|
|
1120
|
-
|
|
1121
|
-
/**
|
|
1122
|
-
* DescribeProductSKUList返回参数结构体
|
|
1123
|
-
*/
|
|
1124
|
-
export interface DescribeProductSKUListResponse {
|
|
1125
|
-
/**
|
|
1126
|
-
* 查询总数
|
|
1127
|
-
*/
|
|
1128
|
-
TotalCount?: number
|
|
1129
|
-
/**
|
|
1130
|
-
* mqtt商品配置信息
|
|
1131
|
-
*/
|
|
1132
|
-
MQTTProductSkuList?: Array<ProductSkuItem>
|
|
1133
|
-
/**
|
|
1134
|
-
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1135
|
-
*/
|
|
1136
|
-
RequestId?: string
|
|
1137
|
-
}
|
|
1138
|
-
|
|
1139
|
-
/**
|
|
1140
|
-
* CreateJWKSAuthenticator请求参数结构体
|
|
1141
|
-
*/
|
|
1142
|
-
export interface CreateJWKSAuthenticatorRequest {
|
|
1143
|
-
/**
|
|
1144
|
-
* 实例ID
|
|
1145
|
-
*/
|
|
1146
|
-
InstanceId: string
|
|
1147
|
-
/**
|
|
1148
|
-
* jwks端点
|
|
1149
|
-
*/
|
|
1150
|
-
Endpoint?: string
|
|
1151
|
-
/**
|
|
1152
|
-
* jwks刷新间隔,单位:秒
|
|
1153
|
-
*/
|
|
1154
|
-
RefreshInterval?: number
|
|
1155
|
-
/**
|
|
1156
|
-
* jwks文本
|
|
1157
|
-
*/
|
|
1158
|
-
Text?: string
|
|
1159
|
-
/**
|
|
1160
|
-
* 认证器是否开启:open-启用;close-关闭
|
|
1161
|
-
*/
|
|
1162
|
-
Status?: string
|
|
1163
|
-
/**
|
|
1164
|
-
* 说明
|
|
1165
|
-
*/
|
|
1166
|
-
Remark?: string
|
|
1167
|
-
/**
|
|
1168
|
-
* 设备连接时传递jwt的key;
|
|
1169
|
-
username-使用用户名字段传递;
|
|
1170
|
-
password-使用密码字段传递
|
|
1171
|
-
*/
|
|
1172
|
-
From?: string
|
|
1173
|
-
}
|
|
1174
|
-
|
|
1175
|
-
/**
|
|
1176
|
-
* DescribeTopic返回参数结构体
|
|
1177
|
-
*/
|
|
1178
|
-
export interface DescribeTopicResponse {
|
|
1179
|
-
/**
|
|
1180
|
-
* 实例ID
|
|
1181
|
-
*/
|
|
1182
|
-
InstanceId?: string
|
|
1183
|
-
/**
|
|
1184
|
-
* 主题名称
|
|
1185
|
-
*/
|
|
1186
|
-
Topic?: string
|
|
1187
|
-
/**
|
|
1188
|
-
* 备注
|
|
1189
|
-
*/
|
|
1190
|
-
Remark?: string
|
|
1191
|
-
/**
|
|
1192
|
-
* 创建时间,秒为单位
|
|
1193
|
-
*/
|
|
1194
|
-
CreatedTime?: number
|
|
1195
|
-
/**
|
|
1196
|
-
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1197
|
-
*/
|
|
1198
|
-
RequestId?: string
|
|
1199
|
-
}
|
|
1200
|
-
|
|
1201
|
-
/**
|
|
1202
|
-
* CreateJWKSAuthenticator返回参数结构体
|
|
1203
|
-
*/
|
|
1204
|
-
export interface CreateJWKSAuthenticatorResponse {
|
|
1205
|
-
/**
|
|
1206
|
-
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1207
|
-
*/
|
|
1208
|
-
RequestId?: string
|
|
1209
|
-
}
|
|
1210
|
-
|
|
1211
|
-
/**
|
|
1212
|
-
* ModifyHttpAuthenticator返回参数结构体
|
|
1213
|
-
*/
|
|
1214
|
-
export interface ModifyHttpAuthenticatorResponse {
|
|
1215
|
-
/**
|
|
1216
|
-
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1217
|
-
*/
|
|
1218
|
-
RequestId?: string
|
|
1219
|
-
}
|
|
1220
|
-
|
|
1221
|
-
/**
|
|
1222
|
-
* DescribeAuthorizationPolicies返回参数结构体
|
|
1223
|
-
*/
|
|
1224
|
-
export interface DescribeAuthorizationPoliciesResponse {
|
|
1225
|
-
/**
|
|
1226
|
-
* 规则
|
|
1227
|
-
*/
|
|
1228
|
-
Data?: Array<AuthorizationPolicyItem>
|
|
1229
|
-
/**
|
|
1230
|
-
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1231
|
-
*/
|
|
1232
|
-
RequestId?: string
|
|
1233
|
-
}
|
|
1234
|
-
|
|
1235
|
-
/**
|
|
1236
|
-
* CreateTopic请求参数结构体
|
|
1237
|
-
*/
|
|
1238
|
-
export interface CreateTopicRequest {
|
|
1239
|
-
/**
|
|
1240
|
-
* 实例ID
|
|
1241
|
-
*/
|
|
1242
|
-
InstanceId: string
|
|
1243
|
-
/**
|
|
1244
|
-
* 主题
|
|
1245
|
-
*/
|
|
1246
|
-
Topic: string
|
|
1247
|
-
/**
|
|
1248
|
-
* 备注
|
|
1249
|
-
*/
|
|
1250
|
-
Remark?: string
|
|
1251
|
-
}
|
|
1252
|
-
|
|
1253
|
-
/**
|
|
1254
|
-
* DeleteCaCertificate返回参数结构体
|
|
1255
|
-
*/
|
|
1256
|
-
export interface DeleteCaCertificateResponse {
|
|
1257
|
-
/**
|
|
1258
|
-
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1259
|
-
*/
|
|
1260
|
-
RequestId?: string
|
|
1261
|
-
}
|
|
1262
|
-
|
|
1263
|
-
/**
|
|
1264
|
-
* 标签过滤器
|
|
1265
|
-
*/
|
|
1266
|
-
export interface TagFilter {
|
|
1267
|
-
/**
|
|
1268
|
-
* 标签键名称
|
|
1269
|
-
*/
|
|
1270
|
-
TagKey?: string
|
|
1271
|
-
/**
|
|
1272
|
-
* 标签键名称
|
|
1273
|
-
*/
|
|
1274
|
-
TagValues?: Array<string>
|
|
1275
|
-
}
|
|
1276
|
-
|
|
1277
|
-
/**
|
|
1278
|
-
* DescribeUserList返回参数结构体
|
|
1279
|
-
*/
|
|
1280
|
-
export interface DescribeUserListResponse {
|
|
1281
|
-
/**
|
|
1282
|
-
* 查询总数
|
|
1283
|
-
*/
|
|
1284
|
-
TotalCount?: number
|
|
1285
|
-
/**
|
|
1286
|
-
* 角色信息列表
|
|
1287
|
-
*/
|
|
1288
|
-
Data?: Array<MQTTUserItem>
|
|
1289
|
-
/**
|
|
1290
|
-
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1291
|
-
*/
|
|
1292
|
-
RequestId?: string
|
|
1293
|
-
}
|
|
1294
|
-
|
|
1295
|
-
/**
|
|
1296
|
-
* ModifyTopic返回参数结构体
|
|
1297
|
-
*/
|
|
1298
|
-
export interface ModifyTopicResponse {
|
|
1299
|
-
/**
|
|
1300
|
-
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1301
|
-
*/
|
|
1302
|
-
RequestId?: string
|
|
1303
|
-
}
|
|
1304
|
-
|
|
1305
|
-
/**
|
|
1306
|
-
* DeactivateDeviceCertificate返回参数结构体
|
|
1307
|
-
*/
|
|
1308
|
-
export interface DeactivateDeviceCertificateResponse {
|
|
1309
|
-
/**
|
|
1310
|
-
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1311
|
-
*/
|
|
1312
|
-
RequestId?: string
|
|
1313
|
-
}
|
|
1314
|
-
|
|
1315
|
-
/**
|
|
1316
|
-
* MQTT集群用户信息
|
|
1317
|
-
*/
|
|
1318
|
-
export interface MQTTUserItem {
|
|
1319
|
-
/**
|
|
1320
|
-
* 用户名
|
|
1321
|
-
*/
|
|
1322
|
-
Username?: string
|
|
1323
|
-
/**
|
|
1324
|
-
* 密码
|
|
1325
|
-
*/
|
|
1326
|
-
Password?: string
|
|
1327
|
-
/**
|
|
1328
|
-
* 备注信息
|
|
1329
|
-
*/
|
|
1330
|
-
Remark?: string
|
|
1331
|
-
/**
|
|
1332
|
-
* 创建时间,秒为单位
|
|
1333
|
-
*/
|
|
1334
|
-
CreatedTime?: number
|
|
1335
|
-
/**
|
|
1336
|
-
* 修改时间,秒为单位
|
|
1337
|
-
*/
|
|
1338
|
-
ModifiedTime?: number
|
|
1339
|
-
}
|
|
1340
|
-
|
|
1341
|
-
/**
|
|
1342
|
-
* ActivateCaCertificate请求参数结构体
|
|
1343
|
-
*/
|
|
1344
|
-
export interface ActivateCaCertificateRequest {
|
|
1345
|
-
/**
|
|
1346
|
-
* 集群id
|
|
1347
|
-
*/
|
|
1348
|
-
InstanceId: string
|
|
1349
|
-
/**
|
|
1350
|
-
* 证书序列号
|
|
1351
|
-
*/
|
|
1352
|
-
CaSn: string
|
|
1353
|
-
}
|
|
1354
|
-
|
|
1355
|
-
/**
|
|
1356
|
-
* HTTP 认证器body
|
|
1357
|
-
*/
|
|
1358
|
-
export interface BodyItem {
|
|
1359
|
-
/**
|
|
1360
|
-
* body key
|
|
1361
|
-
*/
|
|
1362
|
-
Key: string
|
|
1363
|
-
/**
|
|
1364
|
-
* body key
|
|
1365
|
-
*/
|
|
1366
|
-
Value: string
|
|
1367
|
-
}
|
|
1368
|
-
|
|
1369
|
-
/**
|
|
1370
|
-
* ActivateDeviceCertificate返回参数结构体
|
|
1371
|
-
*/
|
|
1372
|
-
export interface ActivateDeviceCertificateResponse {
|
|
1373
|
-
/**
|
|
1374
|
-
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1375
|
-
*/
|
|
1376
|
-
RequestId?: string
|
|
1377
|
-
}
|
|
1378
|
-
|
|
1379
|
-
/**
|
|
1380
|
-
* DescribeTopic请求参数结构体
|
|
1381
|
-
*/
|
|
1382
|
-
export interface DescribeTopicRequest {
|
|
1383
|
-
/**
|
|
1384
|
-
* 实例ID
|
|
1385
|
-
*/
|
|
1386
|
-
InstanceId: string
|
|
1387
|
-
/**
|
|
1388
|
-
* 主题
|
|
1389
|
-
*/
|
|
1390
|
-
Topic: string
|
|
1391
|
-
}
|
|
1392
|
-
|
|
1393
|
-
/**
|
|
1394
|
-
* PublishMessage请求参数结构体
|
|
1395
|
-
*/
|
|
1396
|
-
export interface PublishMessageRequest {
|
|
1397
|
-
/**
|
|
1398
|
-
* 实例ID
|
|
1399
|
-
*/
|
|
1400
|
-
InstanceId: string
|
|
1401
|
-
/**
|
|
1402
|
-
* 消息 payload,需要按 encoding 指定的编码方式进行编码
|
|
1403
|
-
*/
|
|
1404
|
-
Payload: string
|
|
1405
|
-
/**
|
|
1406
|
-
* 消息目的主题,该参数与 TargetClientId 二选一
|
|
1407
|
-
*/
|
|
1408
|
-
TargetTopic?: string
|
|
1409
|
-
/**
|
|
1410
|
-
* 消息目的客户端 ID,该参数与 TargetTopic 二选一
|
|
1411
|
-
*/
|
|
1412
|
-
TargetClientId?: string
|
|
1413
|
-
/**
|
|
1414
|
-
* 消息 payload 编码,可选 plain 或 base64,默认为 plain(即不编码)
|
|
1415
|
-
*/
|
|
1416
|
-
Encoding?: string
|
|
1417
|
-
/**
|
|
1418
|
-
* 消息的服务质量等级,默认为 1
|
|
1419
|
-
*/
|
|
1420
|
-
Qos?: number
|
|
1421
|
-
/**
|
|
1422
|
-
* 是否为保留消息,默认为 false,且仅支持发布到主题的消息设置为 true
|
|
1423
|
-
*/
|
|
1424
|
-
Retain?: boolean
|
|
1425
|
-
}
|
|
1426
|
-
|
|
1427
|
-
/**
|
|
1428
|
-
* AuthorizationPolicyItem
|
|
1429
|
-
*/
|
|
1430
|
-
export interface AuthorizationPolicyItem {
|
|
1431
|
-
/**
|
|
1432
|
-
* 规则ID
|
|
1433
|
-
*/
|
|
1434
|
-
Id?: number
|
|
1435
|
-
/**
|
|
1436
|
-
* 集群ID
|
|
1437
|
-
*/
|
|
1438
|
-
InstanceId?: string
|
|
1439
|
-
/**
|
|
1440
|
-
* 规则名
|
|
1441
|
-
*/
|
|
1442
|
-
PolicyName?: string
|
|
1443
|
-
/**
|
|
1444
|
-
* 规则语法版本
|
|
1445
|
-
*/
|
|
1446
|
-
Version?: number
|
|
1447
|
-
/**
|
|
1448
|
-
* 越小越优先
|
|
1449
|
-
*/
|
|
1450
|
-
Priority?: number
|
|
1451
|
-
/**
|
|
1452
|
-
* allow/deny
|
|
1453
|
-
*/
|
|
1454
|
-
Effect?: string
|
|
1455
|
-
/**
|
|
1456
|
-
* connect、pub、sub
|
|
1457
|
-
*/
|
|
1458
|
-
Actions?: string
|
|
1459
|
-
/**
|
|
1460
|
-
* 资源
|
|
1461
|
-
*/
|
|
1462
|
-
Resources?: string
|
|
1463
|
-
/**
|
|
1464
|
-
* client
|
|
1465
|
-
*/
|
|
1466
|
-
ClientId?: string
|
|
1467
|
-
/**
|
|
1468
|
-
* 用户
|
|
1469
|
-
*/
|
|
1470
|
-
Username?: string
|
|
1471
|
-
/**
|
|
1472
|
-
* IP地址
|
|
1473
|
-
*/
|
|
1474
|
-
Ip?: string
|
|
1475
|
-
/**
|
|
1476
|
-
* 0,1,2
|
|
1477
|
-
*/
|
|
1478
|
-
Qos?: string
|
|
1479
|
-
/**
|
|
1480
|
-
* 1:表示匹配retain消息
|
|
1481
|
-
2:表示匹配非retain消息
|
|
1482
|
-
3:表示匹配retain和非retain消息
|
|
1483
|
-
*/
|
|
1484
|
-
Retain?: number
|
|
1485
|
-
/**
|
|
1486
|
-
* 描述
|
|
1487
|
-
*/
|
|
1488
|
-
Remark?: string
|
|
1489
|
-
/**
|
|
1490
|
-
* 1713164969433
|
|
1491
|
-
*/
|
|
1492
|
-
CreatedTime?: number
|
|
1493
|
-
/**
|
|
1494
|
-
* 1713164969433
|
|
1495
|
-
*/
|
|
1496
|
-
UpdateTime?: number
|
|
1497
|
-
}
|
|
1498
|
-
|
|
1499
|
-
/**
|
|
1500
|
-
* DescribeClientList请求参数结构体
|
|
1501
|
-
*/
|
|
1502
|
-
export interface DescribeClientListRequest {
|
|
1503
|
-
/**
|
|
1504
|
-
* 实例ID
|
|
1505
|
-
*/
|
|
1506
|
-
InstanceId: string
|
|
1507
|
-
/**
|
|
1508
|
-
* 客户端名
|
|
1509
|
-
*/
|
|
1510
|
-
ClientId?: string
|
|
1511
|
-
/**
|
|
1512
|
-
* 客户端数量限制,最大1024,默认1024
|
|
1513
|
-
*/
|
|
1514
|
-
Number?: string
|
|
1515
|
-
}
|
|
1516
|
-
|
|
1517
|
-
/**
|
|
1518
|
-
* DeleteInsPublicEndpoint返回参数结构体
|
|
1519
|
-
*/
|
|
1520
|
-
export interface DeleteInsPublicEndpointResponse {
|
|
1521
|
-
/**
|
|
1522
|
-
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1523
|
-
*/
|
|
1524
|
-
RequestId?: string
|
|
1525
|
-
}
|
|
1526
|
-
|
|
1527
|
-
/**
|
|
1528
|
-
* MQTTEndpoint
|
|
1529
|
-
*/
|
|
1530
|
-
export interface MQTTEndpointItem {
|
|
1531
|
-
/**
|
|
1532
|
-
* 类型
|
|
1533
|
-
*/
|
|
1534
|
-
Type?: string
|
|
1535
|
-
/**
|
|
1536
|
-
* 接入点
|
|
1537
|
-
*/
|
|
1538
|
-
Url?: string
|
|
1539
|
-
/**
|
|
1540
|
-
* vpc信息
|
|
1541
|
-
*/
|
|
1542
|
-
VpcId?: string
|
|
1543
|
-
/**
|
|
1544
|
-
* 子网信息
|
|
1545
|
-
*/
|
|
1546
|
-
SubnetId?: string
|
|
1547
|
-
/**
|
|
1548
|
-
* 主机
|
|
1549
|
-
*/
|
|
1550
|
-
Host?: string
|
|
1551
|
-
/**
|
|
1552
|
-
* 端口
|
|
1553
|
-
*/
|
|
1554
|
-
Port?: number
|
|
1555
|
-
/**
|
|
1556
|
-
* 接入点ip
|
|
1557
|
-
*/
|
|
1558
|
-
Ip?: string
|
|
1559
|
-
}
|
|
1560
|
-
|
|
1561
|
-
/**
|
|
1562
|
-
* DescribeInsVPCEndpoints请求参数结构体
|
|
1563
|
-
*/
|
|
1564
|
-
export interface DescribeInsVPCEndpointsRequest {
|
|
1565
|
-
/**
|
|
1566
|
-
* 实例ID
|
|
1567
|
-
*/
|
|
1568
|
-
InstanceId: string
|
|
1569
|
-
}
|
|
1570
|
-
|
|
1571
|
-
/**
|
|
1572
|
-
* DescribeTopicList请求参数结构体
|
|
1573
|
-
*/
|
|
1574
|
-
export interface DescribeTopicListRequest {
|
|
1575
|
-
/**
|
|
1576
|
-
* 实例ID
|
|
1577
|
-
*/
|
|
1578
|
-
InstanceId: string
|
|
1579
|
-
/**
|
|
1580
|
-
* 查询条件列表:
|
|
1581
|
-
支持TopicName模糊查询
|
|
1582
|
-
*/
|
|
1583
|
-
Filters?: Array<Filter>
|
|
1584
|
-
/**
|
|
1585
|
-
* 查询起始位置
|
|
1586
|
-
*/
|
|
1587
|
-
Offset?: number
|
|
1588
|
-
/**
|
|
1589
|
-
* 查询结果限制数量
|
|
1590
|
-
*/
|
|
1591
|
-
Limit?: number
|
|
1592
|
-
}
|
|
1593
|
-
|
|
1594
|
-
/**
|
|
1595
|
-
* CreateTopic返回参数结构体
|
|
1596
|
-
*/
|
|
1597
|
-
export interface CreateTopicResponse {
|
|
1598
|
-
/**
|
|
1599
|
-
* 实例ID
|
|
1600
|
-
*/
|
|
1601
|
-
InstanceId?: string
|
|
1602
|
-
/**
|
|
1603
|
-
* 主题
|
|
1604
|
-
*/
|
|
1605
|
-
Topic?: string
|
|
1606
|
-
/**
|
|
1607
|
-
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1608
|
-
*/
|
|
1609
|
-
RequestId?: string
|
|
1610
|
-
}
|
|
1611
|
-
|
|
1612
|
-
/**
|
|
1613
|
-
* RevokedDeviceCertificate请求参数结构体
|
|
1614
|
-
*/
|
|
1615
|
-
export interface RevokedDeviceCertificateRequest {
|
|
1616
|
-
/**
|
|
1617
|
-
* 集群id
|
|
1618
|
-
*/
|
|
1619
|
-
InstanceId: string
|
|
1620
|
-
/**
|
|
1621
|
-
* 设备证书序列号
|
|
1622
|
-
*/
|
|
1623
|
-
DeviceCertificateSn: string
|
|
1624
|
-
}
|
|
1625
|
-
|
|
1626
|
-
/**
|
|
1627
|
-
* CreateAuthorizationPolicy返回参数结构体
|
|
1628
|
-
*/
|
|
1629
|
-
export interface CreateAuthorizationPolicyResponse {
|
|
1630
|
-
/**
|
|
1631
|
-
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1632
|
-
*/
|
|
1633
|
-
RequestId?: string
|
|
1634
|
-
}
|
|
1635
|
-
|
|
1636
|
-
/**
|
|
1637
|
-
* DescribeAuthenticator请求参数结构体
|
|
1638
|
-
*/
|
|
1639
|
-
export interface DescribeAuthenticatorRequest {
|
|
1640
|
-
/**
|
|
1641
|
-
* 实例ID
|
|
1642
|
-
*/
|
|
1643
|
-
InstanceId: string
|
|
1644
|
-
/**
|
|
1645
|
-
* 认证器类型: JWT:JWT认证器 JWKS:JWKS认证器 HTTP:HTTP认证器
|
|
1646
|
-
*/
|
|
1647
|
-
Type?: string
|
|
1648
|
-
}
|
|
1649
|
-
|
|
1650
|
-
/**
|
|
1651
|
-
* RegisterCaCertificate请求参数结构体
|
|
1652
|
-
*/
|
|
1653
|
-
export interface RegisterCaCertificateRequest {
|
|
1654
|
-
/**
|
|
1655
|
-
* 集群id
|
|
1656
|
-
*/
|
|
1657
|
-
InstanceId: string
|
|
1658
|
-
/**
|
|
1659
|
-
* CA证书
|
|
1660
|
-
*/
|
|
1661
|
-
CaCertificate: string
|
|
1662
|
-
/**
|
|
1663
|
-
* 验证证书
|
|
1664
|
-
*/
|
|
1665
|
-
VerificationCertificate: string
|
|
1666
|
-
/**
|
|
1667
|
-
* 证书格式,不传默认PEM格式
|
|
1668
|
-
*/
|
|
1669
|
-
Format?: string
|
|
1670
|
-
/**
|
|
1671
|
-
* 证书状态,不传默认ACTIVE状态
|
|
1672
|
-
ACTIVE,//激活
|
|
1673
|
-
INACTIVE,//未激活
|
|
1674
|
-
REVOKED,//吊销
|
|
1675
|
-
PENDING_ACTIVATION,//注册待激活
|
|
1676
|
-
*/
|
|
1677
|
-
Status?: string
|
|
1678
|
-
}
|
|
1679
|
-
|
|
1680
|
-
/**
|
|
1681
|
-
* CreateInstance请求参数结构体
|
|
1682
|
-
*/
|
|
1683
|
-
export interface CreateInstanceRequest {
|
|
1684
|
-
/**
|
|
1685
|
-
* 实例类型,
|
|
1686
|
-
BASIC 基础版
|
|
1687
|
-
PRO 专业版
|
|
1688
|
-
*/
|
|
1689
|
-
InstanceType: string
|
|
1690
|
-
/**
|
|
1691
|
-
* 实例名称
|
|
1692
|
-
*/
|
|
1693
|
-
Name: string
|
|
1694
|
-
/**
|
|
1695
|
-
* 商品规格,可用规格可通过接口DescribeProductSKUList查询
|
|
1696
|
-
*/
|
|
1697
|
-
SkuCode: string
|
|
1698
|
-
/**
|
|
1699
|
-
* 备注信息
|
|
1700
|
-
*/
|
|
1701
|
-
Remark?: string
|
|
1702
|
-
/**
|
|
1703
|
-
* 标签列表
|
|
1704
|
-
*/
|
|
1705
|
-
TagList?: Array<Tag>
|
|
1706
|
-
/**
|
|
1707
|
-
* 实例绑定的VPC信息
|
|
1708
|
-
*/
|
|
1709
|
-
VpcList?: Array<VpcInfo>
|
|
1710
|
-
/**
|
|
1711
|
-
* 是否开启公网
|
|
1712
|
-
*/
|
|
1713
|
-
EnablePublic?: boolean
|
|
1714
|
-
/**
|
|
1715
|
-
* 公网带宽(单位:兆)
|
|
1716
|
-
*/
|
|
1717
|
-
Bandwidth?: number
|
|
1718
|
-
/**
|
|
1719
|
-
* 公网访问白名单
|
|
1720
|
-
*/
|
|
1721
|
-
IpRules?: Array<IpRule>
|
|
1722
|
-
/**
|
|
1723
|
-
* 是否自动续费(0: 不自动续费;1: 自动续费)
|
|
1724
|
-
*/
|
|
1725
|
-
RenewFlag?: number
|
|
1726
|
-
/**
|
|
1727
|
-
* 购买时长(单位:月)
|
|
1728
|
-
*/
|
|
1729
|
-
TimeSpan?: number
|
|
1730
|
-
/**
|
|
1731
|
-
* 付费模式(0: 后付费;1: 预付费)
|
|
1732
|
-
*/
|
|
1733
|
-
PayMode?: number
|
|
1734
|
-
}
|
|
1735
|
-
|
|
1736
|
-
/**
|
|
1737
|
-
* CreateInsPublicEndpoint请求参数结构体
|
|
1738
|
-
*/
|
|
1739
|
-
export interface CreateInsPublicEndpointRequest {
|
|
1740
|
-
/**
|
|
1741
|
-
* 实例ID
|
|
1742
|
-
*/
|
|
1743
|
-
InstanceId: string
|
|
1744
|
-
/**
|
|
1745
|
-
* 带宽,单位Mbps
|
|
1746
|
-
*/
|
|
1747
|
-
Bandwidth: number
|
|
1748
|
-
/**
|
|
1749
|
-
* 公网访问规则
|
|
1750
|
-
*/
|
|
1751
|
-
Rules?: Array<PublicAccessRule>
|
|
1752
|
-
}
|
|
1753
|
-
|
|
1754
|
-
/**
|
|
1755
|
-
* RegisterDeviceCertificate请求参数结构体
|
|
1756
|
-
*/
|
|
1757
|
-
export interface RegisterDeviceCertificateRequest {
|
|
1758
|
-
/**
|
|
1759
|
-
* 集群id
|
|
1760
|
-
*/
|
|
1761
|
-
InstanceId: string
|
|
1762
|
-
/**
|
|
1763
|
-
* 设备证书
|
|
1764
|
-
*/
|
|
1765
|
-
DeviceCertificate: string
|
|
1766
|
-
/**
|
|
1767
|
-
* 关联的CA证书SN
|
|
1768
|
-
*/
|
|
1769
|
-
CaSn: string
|
|
1770
|
-
/**
|
|
1771
|
-
* 客户端ID
|
|
1772
|
-
*/
|
|
1773
|
-
ClientId?: string
|
|
1774
|
-
/**
|
|
1775
|
-
* 证书格式
|
|
1776
|
-
*/
|
|
1777
|
-
Format?: string
|
|
1778
|
-
/**
|
|
1779
|
-
* ACTIVE,//激活 INACTIVE,//未激活 REVOKED,//吊销 PENDING_ACTIVATION,//注册待激活
|
|
1780
|
-
*/
|
|
1781
|
-
Status?: string
|
|
1782
|
-
}
|
|
1783
|
-
|
|
1784
|
-
/**
|
|
1785
|
-
* 查询过滤器
|
|
1786
|
-
*/
|
|
1787
|
-
export interface Filter {
|
|
1788
|
-
/**
|
|
1789
|
-
* 过滤条件名
|
|
1790
|
-
*/
|
|
1791
|
-
Name: string
|
|
1792
|
-
/**
|
|
1793
|
-
* 过滤条件的值
|
|
1794
|
-
*/
|
|
1795
|
-
Values: Array<string>
|
|
1796
|
-
}
|
|
1797
|
-
|
|
1798
|
-
/**
|
|
1799
|
-
* DeactivateDeviceCertificate请求参数结构体
|
|
1800
|
-
*/
|
|
1801
|
-
export interface DeactivateDeviceCertificateRequest {
|
|
1802
|
-
/**
|
|
1803
|
-
* 集群id
|
|
1804
|
-
*/
|
|
1805
|
-
InstanceId: string
|
|
1806
|
-
/**
|
|
1807
|
-
* 设备证书序列号
|
|
1808
|
-
*/
|
|
1809
|
-
DeviceCertificateSn: string
|
|
1810
|
-
}
|
|
1811
|
-
|
|
1812
|
-
/**
|
|
1813
|
-
* DescribeDeviceCertificates返回参数结构体
|
|
1814
|
-
*/
|
|
1815
|
-
export interface DescribeDeviceCertificatesResponse {
|
|
1816
|
-
/**
|
|
1817
|
-
* 总数
|
|
1818
|
-
*/
|
|
1819
|
-
TotalCount?: number
|
|
1820
|
-
/**
|
|
1821
|
-
* 设备证书
|
|
1822
|
-
*/
|
|
1823
|
-
Data?: Array<DeviceCertificateItem>
|
|
1824
|
-
/**
|
|
1825
|
-
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1826
|
-
*/
|
|
1827
|
-
RequestId?: string
|
|
1828
|
-
}
|
|
1829
|
-
|
|
1830
|
-
/**
|
|
1831
|
-
* ModifyTopic请求参数结构体
|
|
1832
|
-
*/
|
|
1833
|
-
export interface ModifyTopicRequest {
|
|
1834
|
-
/**
|
|
1835
|
-
* 实例ID
|
|
1836
|
-
*/
|
|
1837
|
-
InstanceId: string
|
|
1838
|
-
/**
|
|
1839
|
-
* 主题
|
|
1840
|
-
*/
|
|
1841
|
-
Topic: string
|
|
1842
|
-
/**
|
|
1843
|
-
* 备注信息
|
|
1844
|
-
*/
|
|
1845
|
-
Remark?: string
|
|
1846
|
-
}
|
|
1847
|
-
|
|
1848
|
-
/**
|
|
1849
|
-
* CreateUser请求参数结构体
|
|
1850
|
-
*/
|
|
1851
|
-
export interface CreateUserRequest {
|
|
1852
|
-
/**
|
|
1853
|
-
* 实例ID
|
|
1854
|
-
*/
|
|
1855
|
-
InstanceId: string
|
|
1856
|
-
/**
|
|
1857
|
-
* 用户名
|
|
1858
|
-
*/
|
|
1859
|
-
Username: string
|
|
1860
|
-
/**
|
|
1861
|
-
* 密码,该字段为空时候则后端会默认生成
|
|
1862
|
-
*/
|
|
1863
|
-
Password?: string
|
|
1864
|
-
/**
|
|
1865
|
-
* 备注
|
|
1866
|
-
*/
|
|
1867
|
-
Remark?: string
|
|
1868
|
-
}
|
|
1869
|
-
|
|
1870
|
-
/**
|
|
1871
|
-
* DescribeInstance返回参数结构体
|
|
1872
|
-
*/
|
|
1873
|
-
export interface DescribeInstanceResponse {
|
|
1874
|
-
/**
|
|
1875
|
-
* 实例类型
|
|
1876
|
-
BASIC 基础版
|
|
1877
|
-
PRO 专业版
|
|
1878
|
-
*/
|
|
1879
|
-
InstanceType?: string
|
|
1880
|
-
/**
|
|
1881
|
-
* 实例ID
|
|
1882
|
-
*/
|
|
1883
|
-
InstanceId?: string
|
|
1884
|
-
/**
|
|
1885
|
-
* 实例名称
|
|
1886
|
-
*/
|
|
1887
|
-
InstanceName?: string
|
|
1888
|
-
/**
|
|
1889
|
-
* 主题数量
|
|
1890
|
-
*/
|
|
1891
|
-
TopicNum?: number
|
|
1892
|
-
/**
|
|
1893
|
-
* 实例最大主题数量
|
|
1894
|
-
*/
|
|
1895
|
-
TopicNumLimit?: number
|
|
1896
|
-
/**
|
|
1897
|
-
* TPS限流值
|
|
1898
|
-
*/
|
|
1899
|
-
TpsLimit?: number
|
|
1900
|
-
/**
|
|
1901
|
-
* 创建时间,秒为单位
|
|
1902
|
-
*/
|
|
1903
|
-
CreatedTime?: number
|
|
1904
|
-
/**
|
|
1905
|
-
* 备注信息
|
|
1906
|
-
*/
|
|
1907
|
-
Remark?: string
|
|
1908
|
-
/**
|
|
1909
|
-
* 实例状态
|
|
1910
|
-
*/
|
|
1911
|
-
InstanceStatus?: string
|
|
1912
|
-
/**
|
|
1913
|
-
* 实例规格
|
|
1914
|
-
*/
|
|
1915
|
-
SkuCode?: string
|
|
1916
|
-
/**
|
|
1917
|
-
* 单客户端最大订阅数
|
|
1918
|
-
*/
|
|
1919
|
-
MaxSubscriptionPerClient?: number
|
|
1920
|
-
/**
|
|
1921
|
-
* 授权规则条数
|
|
1922
|
-
*/
|
|
1923
|
-
AuthorizationPolicyLimit?: number
|
|
1924
|
-
/**
|
|
1925
|
-
* 客户端数量上限
|
|
1926
|
-
*/
|
|
1927
|
-
ClientNumLimit?: number
|
|
1928
|
-
/**
|
|
1929
|
-
* 客户端证书注册方式:
|
|
1930
|
-
JITP:自动注册
|
|
1931
|
-
API:通过API手动注册
|
|
1932
|
-
*/
|
|
1933
|
-
DeviceCertificateProvisionType?: string
|
|
1934
|
-
/**
|
|
1935
|
-
* 自动注册设备证书时是否自动激活
|
|
1936
|
-
*/
|
|
1937
|
-
AutomaticActivation?: boolean
|
|
1938
|
-
/**
|
|
1939
|
-
* 是否自动续费
|
|
1940
|
-
*/
|
|
1941
|
-
RenewFlag?: number
|
|
1942
|
-
/**
|
|
1943
|
-
* 计费模式, POSTPAID,按量计费 PREPAID,包年包月
|
|
1944
|
-
*/
|
|
1945
|
-
PayMode?: string
|
|
1946
|
-
/**
|
|
1947
|
-
* 到期时间,秒为单位
|
|
1948
|
-
*/
|
|
1949
|
-
ExpiryTime?: number
|
|
1950
|
-
/**
|
|
1951
|
-
* 预销毁时间
|
|
1952
|
-
*/
|
|
1953
|
-
DestroyTime?: number
|
|
1954
|
-
/**
|
|
1955
|
-
* TLS,单向认证 mTLS,双向认证 BYOC;一机一证
|
|
1956
|
-
*/
|
|
1957
|
-
X509Mode?: string
|
|
1958
|
-
/**
|
|
1959
|
-
* 最大Ca配额
|
|
1960
|
-
*/
|
|
1961
|
-
MaxCaNum?: number
|
|
1962
|
-
/**
|
|
1963
|
-
* 证书注册码
|
|
1964
|
-
*/
|
|
1965
|
-
RegistrationCode?: string
|
|
1966
|
-
/**
|
|
1967
|
-
* 集群最大订阅数
|
|
1968
|
-
*/
|
|
1969
|
-
MaxSubscription?: number
|
|
1970
|
-
/**
|
|
1971
|
-
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1972
|
-
*/
|
|
1973
|
-
RequestId?: string
|
|
1974
|
-
}
|
|
1975
|
-
|
|
1976
|
-
/**
|
|
1977
|
-
* ModifyInstanceCertBinding返回参数结构体
|
|
1978
|
-
*/
|
|
1979
|
-
export interface ModifyInstanceCertBindingResponse {
|
|
1980
|
-
/**
|
|
1981
|
-
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1982
|
-
*/
|
|
1983
|
-
RequestId?: string
|
|
1984
|
-
}
|
|
1985
|
-
|
|
1986
|
-
/**
|
|
1987
|
-
* DescribeInsVPCEndpoints返回参数结构体
|
|
1988
|
-
*/
|
|
1989
|
-
export interface DescribeInsVPCEndpointsResponse {
|
|
1990
|
-
/**
|
|
1991
|
-
* 接入点
|
|
1992
|
-
*/
|
|
1993
|
-
Endpoints?: Array<MQTTEndpointItem>
|
|
1994
|
-
/**
|
|
1995
|
-
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1996
|
-
*/
|
|
1997
|
-
RequestId?: string
|
|
1998
|
-
}
|
|
1999
|
-
|
|
2000
|
-
/**
|
|
2001
|
-
* DescribeDeviceCertificate请求参数结构体
|
|
2002
|
-
*/
|
|
2003
|
-
export interface DescribeDeviceCertificateRequest {
|
|
2004
|
-
/**
|
|
2005
|
-
* 设备证书sn
|
|
2006
|
-
*/
|
|
2007
|
-
DeviceCertificateSn: string
|
|
2008
|
-
/**
|
|
2009
|
-
* 集群id
|
|
2010
|
-
*/
|
|
2011
|
-
InstanceId: string
|
|
2012
|
-
}
|
|
2013
|
-
|
|
2014
|
-
/**
|
|
2015
|
-
* ModifyInsPublicEndpoint请求参数结构体
|
|
2016
|
-
*/
|
|
2017
|
-
export interface ModifyInsPublicEndpointRequest {
|
|
2018
|
-
/**
|
|
2019
|
-
* 实例ID
|
|
2020
|
-
*/
|
|
2021
|
-
InstanceId: string
|
|
2022
|
-
/**
|
|
2023
|
-
* 带宽,单位:Mbps
|
|
2024
|
-
*/
|
|
2025
|
-
Bandwidth: number
|
|
2026
|
-
/**
|
|
2027
|
-
* 公网访问规则
|
|
2028
|
-
*/
|
|
2029
|
-
Rules: Array<PublicAccessRule>
|
|
2030
|
-
}
|
|
2031
|
-
|
|
2032
|
-
/**
|
|
2033
|
-
* DeleteInsPublicEndpoint请求参数结构体
|
|
2034
|
-
*/
|
|
2035
|
-
export interface DeleteInsPublicEndpointRequest {
|
|
2036
|
-
/**
|
|
2037
|
-
* 实例ID
|
|
2038
|
-
*/
|
|
2039
|
-
InstanceId: string
|
|
2040
|
-
}
|
|
2041
|
-
|
|
2042
|
-
/**
|
|
2043
|
-
* DescribeUserList请求参数结构体
|
|
2044
|
-
*/
|
|
2045
|
-
export interface DescribeUserListRequest {
|
|
2046
|
-
/**
|
|
2047
|
-
* 实例ID
|
|
2048
|
-
*/
|
|
2049
|
-
InstanceId: string
|
|
2050
|
-
/**
|
|
2051
|
-
* 查询条件列表支持字段
|
|
2052
|
-
Username:Username模糊查询
|
|
2053
|
-
*/
|
|
2054
|
-
Filters?: Array<Filter>
|
|
2055
|
-
/**
|
|
2056
|
-
* 查询起始位置
|
|
2057
|
-
*/
|
|
2058
|
-
Offset?: number
|
|
2059
|
-
/**
|
|
2060
|
-
* 查询结果限制数量
|
|
2061
|
-
*/
|
|
2062
|
-
Limit?: number
|
|
2063
|
-
}
|
|
2064
|
-
|
|
2065
|
-
/**
|
|
2066
|
-
* DescribeCaCertificate请求参数结构体
|
|
2067
|
-
*/
|
|
2068
|
-
export interface DescribeCaCertificateRequest {
|
|
2069
|
-
/**
|
|
2070
|
-
* ca证书sn
|
|
2071
|
-
*/
|
|
2072
|
-
CaSn: string
|
|
2073
|
-
/**
|
|
2074
|
-
* 集群id
|
|
2075
|
-
*/
|
|
2076
|
-
InstanceId: string
|
|
2077
|
-
}
|
|
2078
|
-
|
|
2079
|
-
/**
|
|
2080
|
-
* UpdateAuthorizationPolicyPriority请求参数结构体
|
|
2081
|
-
*/
|
|
2082
|
-
export interface UpdateAuthorizationPolicyPriorityRequest {
|
|
2083
|
-
/**
|
|
2084
|
-
* 实例ID
|
|
2085
|
-
*/
|
|
2086
|
-
InstanceId: string
|
|
2087
|
-
/**
|
|
2088
|
-
* 策略ID和优先级
|
|
2089
|
-
*/
|
|
2090
|
-
Priorities?: Array<AuthorizationPolicyPriority>
|
|
2091
|
-
}
|
|
2092
|
-
|
|
2093
|
-
/**
|
|
2094
|
-
* CreateJWTAuthenticator返回参数结构体
|
|
2095
|
-
*/
|
|
2096
|
-
export interface CreateJWTAuthenticatorResponse {
|
|
2097
|
-
/**
|
|
2098
|
-
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
2099
|
-
*/
|
|
2100
|
-
RequestId?: string
|
|
2101
|
-
}
|
|
2102
|
-
|
|
2103
|
-
/**
|
|
2104
|
-
* DeleteAuthorizationPolicy请求参数结构体
|
|
2105
|
-
*/
|
|
2106
|
-
export interface DeleteAuthorizationPolicyRequest {
|
|
2107
|
-
/**
|
|
2108
|
-
* 实例ID
|
|
2109
|
-
*/
|
|
2110
|
-
InstanceId: string
|
|
2111
|
-
/**
|
|
2112
|
-
* 策略规则id
|
|
2113
|
-
*/
|
|
2114
|
-
Id: number
|
|
2115
|
-
}
|
|
2116
|
-
|
|
2117
|
-
/**
|
|
2118
|
-
* DescribeAuthorizationPolicies请求参数结构体
|
|
2119
|
-
*/
|
|
2120
|
-
export interface DescribeAuthorizationPoliciesRequest {
|
|
2121
|
-
/**
|
|
2122
|
-
* 集群ID
|
|
2123
|
-
*/
|
|
2124
|
-
InstanceId?: string
|
|
2125
|
-
}
|
|
2126
|
-
|
|
2127
|
-
/**
|
|
2128
|
-
* RevokedDeviceCertificate返回参数结构体
|
|
2129
|
-
*/
|
|
2130
|
-
export interface RevokedDeviceCertificateResponse {
|
|
2131
|
-
/**
|
|
2132
|
-
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
2133
|
-
*/
|
|
2134
|
-
RequestId?: string
|
|
2135
|
-
}
|
|
2136
|
-
|
|
2137
|
-
/**
|
|
2138
|
-
* CreateHttpAuthenticator请求参数结构体
|
|
2139
|
-
*/
|
|
2140
|
-
export interface CreateHttpAuthenticatorRequest {
|
|
2141
|
-
/**
|
|
2142
|
-
* 实例ID
|
|
2143
|
-
*/
|
|
2144
|
-
InstanceId: string
|
|
2145
|
-
/**
|
|
2146
|
-
* jwks端点
|
|
2147
|
-
*/
|
|
2148
|
-
Endpoint: string
|
|
2149
|
-
/**
|
|
2150
|
-
* 最大并发连接数,默认8,范围:1-20
|
|
2151
|
-
*/
|
|
2152
|
-
Concurrency?: number
|
|
2153
|
-
/**
|
|
2154
|
-
* 网络请求方法 Get 或 Post,默认post
|
|
2155
|
-
*/
|
|
2156
|
-
Method?: string
|
|
2157
|
-
/**
|
|
2158
|
-
* 认证器是否开启:open-启用;close-关闭
|
|
2159
|
-
*/
|
|
2160
|
-
Status?: string
|
|
2161
|
-
/**
|
|
2162
|
-
* 说明
|
|
2163
|
-
*/
|
|
2164
|
-
Remark?: string
|
|
2165
|
-
/**
|
|
2166
|
-
* 连接超时时间,单位:秒,范围:1-30
|
|
2167
|
-
*/
|
|
2168
|
-
ConnectTimeout?: number
|
|
2169
|
-
/**
|
|
2170
|
-
* 请求超时时间,单位:秒,范围:1-30
|
|
2171
|
-
*/
|
|
2172
|
-
ReadTimeout?: number
|
|
2173
|
-
/**
|
|
2174
|
-
* 转发请求header
|
|
2175
|
-
*/
|
|
2176
|
-
Header?: Array<HeaderItem>
|
|
2177
|
-
/**
|
|
2178
|
-
* 转发请求body
|
|
2179
|
-
*/
|
|
2180
|
-
Body?: Array<BodyItem>
|
|
2181
|
-
}
|
|
2182
|
-
|
|
2183
|
-
/**
|
|
2184
|
-
* DescribeProductSKUList请求参数结构体
|
|
2185
|
-
*/
|
|
2186
|
-
export type DescribeProductSKUListRequest = null
|
|
2187
|
-
|
|
2188
|
-
/**
|
|
2189
|
-
* DescribeTopicList返回参数结构体
|
|
2190
|
-
*/
|
|
2191
|
-
export interface DescribeTopicListResponse {
|
|
2192
|
-
/**
|
|
2193
|
-
* 查询总数
|
|
2194
|
-
*/
|
|
2195
|
-
TotalCount?: number
|
|
2196
|
-
/**
|
|
2197
|
-
* 主题列表
|
|
2198
|
-
*/
|
|
2199
|
-
Data?: Array<MQTTTopicItem>
|
|
2200
|
-
/**
|
|
2201
|
-
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
2202
|
-
*/
|
|
2203
|
-
RequestId?: string
|
|
2204
|
-
}
|
|
2205
|
-
|
|
2206
|
-
/**
|
|
2207
|
-
* DescribeDeviceCertificate返回参数结构体
|
|
2208
|
-
*/
|
|
2209
|
-
export interface DescribeDeviceCertificateResponse {
|
|
2210
|
-
/**
|
|
2211
|
-
* 创建时间
|
|
2212
|
-
*/
|
|
2213
|
-
CreatedTime?: number
|
|
2214
|
-
/**
|
|
2215
|
-
* 上次更新时间
|
|
2216
|
-
*/
|
|
2217
|
-
UpdateTime?: number
|
|
2218
|
-
/**
|
|
2219
|
-
* 证书失效日期
|
|
2220
|
-
*/
|
|
2221
|
-
NotAfterTime?: number
|
|
2222
|
-
/**
|
|
2223
|
-
* 上次激活时间
|
|
2224
|
-
*/
|
|
2225
|
-
LastActivationTime?: number
|
|
2226
|
-
/**
|
|
2227
|
-
* 上次取消激活时间
|
|
2228
|
-
*/
|
|
2229
|
-
LastInactivationTime?: number
|
|
2230
|
-
/**
|
|
2231
|
-
* 证书状态
|
|
2232
|
-
*/
|
|
2233
|
-
Status?: string
|
|
2234
|
-
/**
|
|
2235
|
-
* Ca证书序列号
|
|
2236
|
-
*/
|
|
2237
|
-
CaSn?: string
|
|
2238
|
-
/**
|
|
2239
|
-
* 设备证书序列号
|
|
2240
|
-
*/
|
|
2241
|
-
DeviceCertificateSn?: string
|
|
2242
|
-
/**
|
|
2243
|
-
* 设备证书内容
|
|
2244
|
-
*/
|
|
2245
|
-
DeviceCertificate?: string
|
|
2246
|
-
/**
|
|
2247
|
-
* 设备证书common name
|
|
2248
|
-
*/
|
|
2249
|
-
DeviceCertificateCn?: string
|
|
2250
|
-
/**
|
|
2251
|
-
* 证书格式
|
|
2252
|
-
*/
|
|
2253
|
-
Format?: string
|
|
2254
|
-
/**
|
|
2255
|
-
* 客户端id
|
|
2256
|
-
*/
|
|
2257
|
-
ClientId?: string
|
|
2258
|
-
/**
|
|
2259
|
-
* API, 手动注册
|
|
2260
|
-
JITP 自动注册
|
|
2261
|
-
*/
|
|
2262
|
-
CertificateSource?: string
|
|
2263
|
-
/**
|
|
2264
|
-
* 证书生效开始时间
|
|
2265
|
-
*/
|
|
2266
|
-
NotBeforeTime?: number
|
|
2267
|
-
/**
|
|
2268
|
-
* 组织单位
|
|
2269
|
-
*/
|
|
2270
|
-
OrganizationalUnit?: string
|
|
2271
|
-
/**
|
|
2272
|
-
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
2273
|
-
*/
|
|
2274
|
-
RequestId?: string
|
|
2275
|
-
}
|
|
2276
|
-
|
|
2277
|
-
/**
|
|
2278
|
-
* DescribeInstanceList请求参数结构体
|
|
2279
|
-
*/
|
|
2280
|
-
export interface DescribeInstanceListRequest {
|
|
2281
|
-
/**
|
|
2282
|
-
* 查询条件列表,支持以下子弹
|
|
2283
|
-
InstanceName:集群名模糊搜索
|
|
2284
|
-
InstanceId:集群id精确搜索
|
|
2285
|
-
InstanceStatus:集群状态搜索
|
|
2286
|
-
*/
|
|
2287
|
-
Filters?: Array<Filter>
|
|
2288
|
-
/**
|
|
2289
|
-
* 查询起始位置
|
|
2290
|
-
*/
|
|
2291
|
-
Offset?: number
|
|
2292
|
-
/**
|
|
2293
|
-
* 查询结果限制数量
|
|
2294
|
-
*/
|
|
2295
|
-
Limit?: number
|
|
2296
|
-
/**
|
|
2297
|
-
* 标签过滤器
|
|
2298
|
-
*/
|
|
2299
|
-
TagFilters?: Array<TagFilter>
|
|
2300
|
-
}
|
|
2301
|
-
|
|
2302
|
-
/**
|
|
2303
|
-
* DeactivateCaCertificate请求参数结构体
|
|
2304
|
-
*/
|
|
2305
|
-
export interface DeactivateCaCertificateRequest {
|
|
2306
|
-
/**
|
|
2307
|
-
* 集群id
|
|
2308
|
-
*/
|
|
2309
|
-
InstanceId: string
|
|
2310
|
-
/**
|
|
2311
|
-
* 证书序列号
|
|
2312
|
-
*/
|
|
2313
|
-
CaSn: string
|
|
2314
|
-
}
|
|
2315
|
-
|
|
2316
|
-
/**
|
|
2317
|
-
* CreateJWTAuthenticator请求参数结构体
|
|
2318
|
-
*/
|
|
2319
|
-
export interface CreateJWTAuthenticatorRequest {
|
|
2320
|
-
/**
|
|
2321
|
-
* 实例ID
|
|
2322
|
-
*/
|
|
2323
|
-
InstanceId: string
|
|
2324
|
-
/**
|
|
2325
|
-
* 算法:hmac-based,public-key
|
|
2326
|
-
*/
|
|
2327
|
-
Algorithm: string
|
|
2328
|
-
/**
|
|
2329
|
-
* 设备连接时传递jwt的key;username-使用用户名字段传递;password-使用密码字段传递
|
|
2330
|
-
*/
|
|
2331
|
-
From: string
|
|
2332
|
-
/**
|
|
2333
|
-
* 密码
|
|
2334
|
-
*/
|
|
2335
|
-
Secret?: string
|
|
2336
|
-
/**
|
|
2337
|
-
* 公钥
|
|
2338
|
-
*/
|
|
2339
|
-
PublicKey?: string
|
|
2340
|
-
/**
|
|
2341
|
-
* 认证器是否开启:open-启用;close-关闭
|
|
2342
|
-
*/
|
|
2343
|
-
Status?: string
|
|
2344
|
-
/**
|
|
2345
|
-
* 说明
|
|
2346
|
-
*/
|
|
2347
|
-
Remark?: string
|
|
2348
|
-
}
|
|
2349
|
-
|
|
2350
|
-
/**
|
|
2351
|
-
* DescribeCaCertificates请求参数结构体
|
|
2352
|
-
*/
|
|
2353
|
-
export interface DescribeCaCertificatesRequest {
|
|
2354
|
-
/**
|
|
2355
|
-
* 集群ID
|
|
2356
|
-
*/
|
|
2357
|
-
InstanceId: string
|
|
2358
|
-
}
|
|
2359
|
-
|
|
2360
|
-
/**
|
|
2361
|
-
* 设备证书信息
|
|
2362
|
-
*/
|
|
2363
|
-
export interface DeviceCertificateItem {
|
|
2364
|
-
/**
|
|
2365
|
-
* 客户端id
|
|
2366
|
-
*/
|
|
2367
|
-
ClientId?: string
|
|
2368
|
-
/**
|
|
2369
|
-
* 设备证书
|
|
2370
|
-
*/
|
|
2371
|
-
DeviceCertificate?: string
|
|
2372
|
-
/**
|
|
2373
|
-
* 设备证书Sn
|
|
2374
|
-
*/
|
|
2375
|
-
DeviceCertificateSn?: string
|
|
2376
|
-
/**
|
|
2377
|
-
* 设备证书Cn
|
|
2378
|
-
*/
|
|
2379
|
-
DeviceCertificateCn?: string
|
|
2380
|
-
/**
|
|
2381
|
-
* 签发ca的序列号
|
|
2382
|
-
*/
|
|
2383
|
-
CaSn?: string
|
|
2384
|
-
/**
|
|
2385
|
-
* 证书格式
|
|
2386
|
-
*/
|
|
2387
|
-
Format?: string
|
|
2388
|
-
/**
|
|
2389
|
-
* 证书状态
|
|
2390
|
-
ACTIVE,//激活
|
|
2391
|
-
INACTIVE,//未激活
|
|
2392
|
-
REVOKED,//吊销
|
|
2393
|
-
PENDING_ACTIVATION,//注册待激活
|
|
2394
|
-
*/
|
|
2395
|
-
Status?: string
|
|
2396
|
-
/**
|
|
2397
|
-
* 组织单位
|
|
2398
|
-
*/
|
|
2399
|
-
OrganizationalUnit?: string
|
|
2400
|
-
/**
|
|
2401
|
-
* 上次激活时间
|
|
2402
|
-
*/
|
|
2403
|
-
LastActivationTime?: number
|
|
2404
|
-
/**
|
|
2405
|
-
* 上次取消激活时间
|
|
2406
|
-
*/
|
|
2407
|
-
LastInactivationTime?: number
|
|
2408
|
-
/**
|
|
2409
|
-
* 创建时间
|
|
2410
|
-
*/
|
|
2411
|
-
CreatedTime?: number
|
|
2412
|
-
/**
|
|
2413
|
-
* 预销毁时间
|
|
2414
|
-
*/
|
|
2415
|
-
UpdateTime?: number
|
|
2416
|
-
/**
|
|
2417
|
-
* 证书来源:
|
|
2418
|
-
API, 手动注册
|
|
2419
|
-
JITP 自动注册
|
|
2420
|
-
*/
|
|
2421
|
-
CertificateSource?: string
|
|
2422
|
-
/**
|
|
2423
|
-
* 证书失效日期
|
|
2424
|
-
*/
|
|
2425
|
-
NotAfterTime?: number
|
|
2426
|
-
/**
|
|
2427
|
-
* 证书生效开始日期
|
|
2428
|
-
*/
|
|
2429
|
-
NotBeforeTime?: number
|
|
2430
|
-
}
|
|
2431
|
-
|
|
2432
|
-
/**
|
|
2433
|
-
* MQTT客户端信息
|
|
2434
|
-
*/
|
|
2435
|
-
export interface MQTTClientInfo {
|
|
2436
|
-
/**
|
|
2437
|
-
* 客户端唯一标识
|
|
2438
|
-
*/
|
|
2439
|
-
ClientId?: string
|
|
2440
|
-
/**
|
|
2441
|
-
* 客户端网络地址
|
|
2442
|
-
*/
|
|
2443
|
-
ClientAddress?: string
|
|
2444
|
-
/**
|
|
2445
|
-
* MQTT 协议版本,4 表示 MQTT 3.1.1
|
|
2446
|
-
*/
|
|
2447
|
-
ProtocolVersion?: number
|
|
2448
|
-
/**
|
|
2449
|
-
* 保持连接时间,单位:秒
|
|
2450
|
-
*/
|
|
2451
|
-
Keepalive?: number
|
|
2452
|
-
/**
|
|
2453
|
-
* 连接状态,CONNECTED 已连接,DISCONNECTED 未连接
|
|
2454
|
-
*/
|
|
2455
|
-
ConnectionStatus?: string
|
|
2456
|
-
/**
|
|
2457
|
-
* 客户端创建时间
|
|
2458
|
-
*/
|
|
2459
|
-
CreateTime?: number
|
|
2460
|
-
/**
|
|
2461
|
-
* 上次建立连接时间
|
|
2462
|
-
*/
|
|
2463
|
-
ConnectTime?: number
|
|
2464
|
-
/**
|
|
2465
|
-
* 上次断开连接时间,仅对持久会话(cleanSession=false)并且客户端当前未连接时有意义
|
|
2466
|
-
*/
|
|
2467
|
-
DisconnectTime?: number
|
|
2468
|
-
/**
|
|
2469
|
-
* 客户端的订阅列表
|
|
2470
|
-
*/
|
|
2471
|
-
MQTTClientSubscriptions?: Array<MQTTClientSubscription>
|
|
2472
|
-
}
|
|
2473
|
-
|
|
2474
|
-
/**
|
|
2475
|
-
* MQTT 主题详情
|
|
2476
|
-
*/
|
|
2477
|
-
export interface MQTTTopicItem {
|
|
2478
|
-
/**
|
|
2479
|
-
* 实例 ID
|
|
2480
|
-
*/
|
|
2481
|
-
InstanceId?: string
|
|
2482
|
-
/**
|
|
2483
|
-
* 主题名称
|
|
2484
|
-
*/
|
|
2485
|
-
Topic?: string
|
|
2486
|
-
/**
|
|
2487
|
-
* 主题描述
|
|
2488
|
-
*/
|
|
2489
|
-
Remark?: string
|
|
2490
|
-
}
|
|
2491
|
-
|
|
2492
|
-
/**
|
|
2493
|
-
* 价格标签信息
|
|
2494
|
-
*/
|
|
2495
|
-
export interface PriceTag {
|
|
2496
|
-
/**
|
|
2497
|
-
* 计价名称
|
|
2498
|
-
*/
|
|
2499
|
-
Name?: string
|
|
2500
|
-
/**
|
|
2501
|
-
* 计价类别
|
|
2502
|
-
*/
|
|
2503
|
-
Category?: string
|
|
2504
|
-
/**
|
|
2505
|
-
* 计费项标签
|
|
2506
|
-
*/
|
|
2507
|
-
Code?: string
|
|
2508
|
-
/**
|
|
2509
|
-
* 步长
|
|
2510
|
-
*/
|
|
2511
|
-
Step?: number
|
|
2512
|
-
}
|
|
2513
|
-
|
|
2514
|
-
/**
|
|
2515
|
-
* ModifyAuthorizationPolicy请求参数结构体
|
|
2516
|
-
*/
|
|
2517
|
-
export interface ModifyAuthorizationPolicyRequest {
|
|
2518
|
-
/**
|
|
2519
|
-
* 策略
|
|
2520
|
-
*/
|
|
2521
|
-
Id: number
|
|
2522
|
-
/**
|
|
2523
|
-
* 实例ID
|
|
2524
|
-
*/
|
|
2525
|
-
InstanceId: string
|
|
2526
|
-
/**
|
|
2527
|
-
* 策略名称
|
|
2528
|
-
*/
|
|
2529
|
-
PolicyName?: string
|
|
2530
|
-
/**
|
|
2531
|
-
* 策略版本
|
|
2532
|
-
*/
|
|
2533
|
-
PolicyVersion?: number
|
|
2534
|
-
/**
|
|
2535
|
-
* 策略优先级,越小越优先
|
|
2536
|
-
*/
|
|
2537
|
-
Priority?: number
|
|
2538
|
-
/**
|
|
2539
|
-
* allow、deny
|
|
2540
|
-
*/
|
|
2541
|
-
Effect?: string
|
|
2542
|
-
/**
|
|
2543
|
-
* connect、pub、sub
|
|
2544
|
-
*/
|
|
2545
|
-
Actions?: string
|
|
2546
|
-
/**
|
|
2547
|
-
* 资源
|
|
2548
|
-
*/
|
|
2549
|
-
Resources?: string
|
|
2550
|
-
/**
|
|
2551
|
-
* 用户名
|
|
2552
|
-
*/
|
|
2553
|
-
Username?: string
|
|
2554
|
-
/**
|
|
2555
|
-
* 1.匹配保留消息;2.匹配非保留消息;3.匹配所有消息
|
|
2556
|
-
*/
|
|
2557
|
-
Retain?: number
|
|
2558
|
-
/**
|
|
2559
|
-
* 客户端
|
|
2560
|
-
*/
|
|
2561
|
-
ClientId?: string
|
|
2562
|
-
/**
|
|
2563
|
-
* IP
|
|
2564
|
-
*/
|
|
2565
|
-
Ip?: string
|
|
2566
|
-
/**
|
|
2567
|
-
* 0、1、2
|
|
2568
|
-
*/
|
|
2569
|
-
Qos?: string
|
|
2570
|
-
/**
|
|
2571
|
-
* 备注信息
|
|
2572
|
-
*/
|
|
2573
|
-
Remark?: string
|
|
2574
|
-
}
|
|
2575
|
-
|
|
2576
|
-
/**
|
|
2577
|
-
* DescribeSharedSubscriptionLag请求参数结构体
|
|
2578
|
-
*/
|
|
2579
|
-
export interface DescribeSharedSubscriptionLagRequest {
|
|
2580
|
-
/**
|
|
2581
|
-
* 集群id
|
|
2582
|
-
*/
|
|
2583
|
-
InstanceId: string
|
|
2584
|
-
/**
|
|
2585
|
-
* 共享订阅表达式
|
|
2586
|
-
*/
|
|
2587
|
-
SharedSubscription: string
|
|
2588
|
-
}
|
|
2589
|
-
|
|
2590
|
-
/**
|
|
2591
|
-
* DeleteTopic返回参数结构体
|
|
2592
|
-
*/
|
|
2593
|
-
export interface DeleteTopicResponse {
|
|
2594
|
-
/**
|
|
2595
|
-
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
2596
|
-
*/
|
|
2597
|
-
RequestId?: string
|
|
2598
|
-
}
|
|
2599
|
-
|
|
2600
|
-
/**
|
|
2601
|
-
* ModifyInstanceCertBinding请求参数结构体
|
|
2602
|
-
*/
|
|
2603
|
-
export interface ModifyInstanceCertBindingRequest {
|
|
2604
|
-
/**
|
|
2605
|
-
* 实例ID
|
|
2606
|
-
*/
|
|
2607
|
-
InstanceId: string
|
|
2608
|
-
/**
|
|
2609
|
-
* 服务端证书id
|
|
2610
|
-
*/
|
|
2611
|
-
SSLServerCertId: string
|
|
2612
|
-
/**
|
|
2613
|
-
* CA证书id
|
|
2614
|
-
*/
|
|
2615
|
-
SSLCaCertId: string
|
|
2616
|
-
/**
|
|
2617
|
-
* 加密通信方式
|
|
2618
|
-
TLS:单向证书认证
|
|
2619
|
-
mTLS:双向证书认证
|
|
2620
|
-
BYOC:一设备一证书认证
|
|
2621
|
-
*/
|
|
2622
|
-
X509Mode: string
|
|
2623
|
-
/**
|
|
2624
|
-
* 设备证书注册类型:
|
|
2625
|
-
JITP,自动注册;
|
|
2626
|
-
MANUAL 手动注册
|
|
2627
|
-
*/
|
|
2628
|
-
DeviceCertificateProvisionType?: string
|
|
2629
|
-
/**
|
|
2630
|
-
* 是否自动激活,默认为false
|
|
2631
|
-
*/
|
|
2632
|
-
AutomaticActivation?: boolean
|
|
2633
|
-
}
|
|
2634
|
-
|
|
2635
|
-
/**
|
|
2636
|
-
* ModifyHttpAuthenticator请求参数结构体
|
|
2637
|
-
*/
|
|
2638
|
-
export interface ModifyHttpAuthenticatorRequest {
|
|
2639
|
-
/**
|
|
2640
|
-
* 实例ID
|
|
2641
|
-
*/
|
|
2642
|
-
InstanceId: string
|
|
2643
|
-
/**
|
|
2644
|
-
* 端点
|
|
2645
|
-
*/
|
|
2646
|
-
Endpoint?: string
|
|
2647
|
-
/**
|
|
2648
|
-
* 认证器状态:open-启用;close-关闭
|
|
2649
|
-
*/
|
|
2650
|
-
Status?: string
|
|
2651
|
-
/**
|
|
2652
|
-
* 最大并发连接数,默认8,范围:1-20
|
|
2653
|
-
*/
|
|
2654
|
-
Concurrency?: number
|
|
2655
|
-
/**
|
|
2656
|
-
* 连接超时时间,单位:秒,范围:1-30
|
|
2657
|
-
*/
|
|
2658
|
-
ConnectTimeout?: number
|
|
2659
|
-
/**
|
|
2660
|
-
* 请求超时时间,单位:秒,范围:1-30
|
|
2661
|
-
*/
|
|
2662
|
-
ReadTimeout?: number
|
|
2663
|
-
/**
|
|
2664
|
-
* 说明
|
|
2665
|
-
*/
|
|
2666
|
-
Remark?: string
|
|
2667
|
-
/**
|
|
2668
|
-
* 请求方法,GET 或者 POST
|
|
2669
|
-
*/
|
|
2670
|
-
Method?: string
|
|
2671
|
-
/**
|
|
2672
|
-
* 请求header
|
|
2673
|
-
*/
|
|
2674
|
-
Header?: Array<HeaderItem>
|
|
2675
|
-
/**
|
|
2676
|
-
* 请求body
|
|
2677
|
-
*/
|
|
2678
|
-
Body?: Array<BodyItem>
|
|
2679
|
-
}
|
|
2680
|
-
|
|
2681
|
-
/**
|
|
2682
|
-
* DescribeInstance请求参数结构体
|
|
2683
|
-
*/
|
|
2684
|
-
export interface DescribeInstanceRequest {
|
|
2685
|
-
/**
|
|
2686
|
-
* 实例ID
|
|
2687
|
-
*/
|
|
2688
|
-
InstanceId: string
|
|
2689
|
-
}
|
|
2690
|
-
|
|
2691
|
-
/**
|
|
2692
|
-
* DescribeCaCertificates返回参数结构体
|
|
2693
|
-
*/
|
|
2694
|
-
export interface DescribeCaCertificatesResponse {
|
|
2695
|
-
/**
|
|
2696
|
-
* ca证书列表
|
|
2697
|
-
*/
|
|
2698
|
-
Data?: Array<CaCertificateItem>
|
|
2699
|
-
/**
|
|
2700
|
-
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
2701
|
-
*/
|
|
2702
|
-
RequestId?: string
|
|
2703
|
-
}
|
|
2704
|
-
|
|
2705
|
-
/**
|
|
2706
|
-
* ModifyUser请求参数结构体
|
|
2707
|
-
*/
|
|
2708
|
-
export interface ModifyUserRequest {
|
|
2709
|
-
/**
|
|
2710
|
-
* 实例ID
|
|
2711
|
-
*/
|
|
2712
|
-
InstanceId: string
|
|
2713
|
-
/**
|
|
2714
|
-
* 用户名
|
|
2715
|
-
*/
|
|
2716
|
-
Username: string
|
|
2717
|
-
/**
|
|
2718
|
-
* 备注
|
|
2719
|
-
*/
|
|
2720
|
-
Remark?: string
|
|
2721
|
-
}
|
|
2722
|
-
|
|
2723
|
-
/**
|
|
2724
|
-
* DeleteAuthenticator返回参数结构体
|
|
2725
|
-
*/
|
|
2726
|
-
export interface DeleteAuthenticatorResponse {
|
|
2727
|
-
/**
|
|
2728
|
-
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
2729
|
-
*/
|
|
2730
|
-
RequestId?: string
|
|
2731
|
-
}
|
|
2732
|
-
|
|
2733
|
-
/**
|
|
2734
|
-
* IP规则
|
|
2735
|
-
*/
|
|
2736
|
-
export interface IpRule {
|
|
2737
|
-
/**
|
|
2738
|
-
* IP地址
|
|
2739
|
-
*/
|
|
2740
|
-
Ip: string
|
|
2741
|
-
/**
|
|
2742
|
-
* 是否允许放行
|
|
2743
|
-
*/
|
|
2744
|
-
Allow: boolean
|
|
2745
|
-
/**
|
|
2746
|
-
* 备注信息
|
|
2747
|
-
*/
|
|
2748
|
-
Remark: string
|
|
2749
|
-
}
|