tencentcloud-sdk-nodejs-mqtt 4.1.8 → 4.1.9
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
|
@@ -541,6 +541,14 @@ export interface ModifyJWKSAuthenticatorRequest {
|
|
|
541
541
|
* RegisterCaCertificate返回参数结构体
|
|
542
542
|
*/
|
|
543
543
|
export interface RegisterCaCertificateResponse {
|
|
544
|
+
/**
|
|
545
|
+
* mqtt实例ID
|
|
546
|
+
*/
|
|
547
|
+
InstanceId?: string;
|
|
548
|
+
/**
|
|
549
|
+
* ca 证书的序列号
|
|
550
|
+
*/
|
|
551
|
+
CaSn?: string;
|
|
544
552
|
/**
|
|
545
553
|
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
546
554
|
*/
|
|
@@ -573,7 +581,7 @@ export interface ModifyInstanceRequest {
|
|
|
573
581
|
Remark?: string;
|
|
574
582
|
/**
|
|
575
583
|
* 需要变更的配置规格
|
|
576
|
-
|
|
584
|
+
基础版和专业版集群不能升配到铂金版规格,铂金版集群不能降配至基础版和增强版规格。
|
|
577
585
|
*/
|
|
578
586
|
SkuCode?: string;
|
|
579
587
|
/**
|
|
@@ -595,6 +603,18 @@ export interface ModifyInstanceRequest {
|
|
|
595
603
|
* RegisterDeviceCertificate返回参数结构体
|
|
596
604
|
*/
|
|
597
605
|
export interface RegisterDeviceCertificateResponse {
|
|
606
|
+
/**
|
|
607
|
+
* 腾讯云MQTT实例ID,从 [DescribeInstanceList](https://cloud.tencent.com/document/api/1778/111029)接口或控制台获得。
|
|
608
|
+
*/
|
|
609
|
+
InstanceId?: string;
|
|
610
|
+
/**
|
|
611
|
+
* 关联的CA证书SN
|
|
612
|
+
*/
|
|
613
|
+
CaSn?: string;
|
|
614
|
+
/**
|
|
615
|
+
* 设备证书的SN
|
|
616
|
+
*/
|
|
617
|
+
DeviceCertificateSn?: string;
|
|
598
618
|
/**
|
|
599
619
|
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
600
620
|
*/
|
|
@@ -2473,19 +2493,20 @@ export interface MQTTTopicItem {
|
|
|
2473
2493
|
*/
|
|
2474
2494
|
export interface PriceTag {
|
|
2475
2495
|
/**
|
|
2476
|
-
*
|
|
2496
|
+
* 计价名称,表示规格的计费项项目分类,具体规格的计价名称可参考 [获取MQTT产品售卖规格](https://cloud.tencent.com/document/product/1778/116232) 接口的返回结果。
|
|
2477
2497
|
*/
|
|
2478
2498
|
Name?: string;
|
|
2479
2499
|
/**
|
|
2480
|
-
*
|
|
2500
|
+
* 计价类别,计价名称子类,具体规格的计价类别可参考 [获取MQTT产品售卖规格](https://cloud.tencent.com/document/product/1778/116232) 的返回结果。
|
|
2481
2501
|
*/
|
|
2482
2502
|
Category?: string;
|
|
2483
2503
|
/**
|
|
2484
|
-
*
|
|
2504
|
+
* 计费项标签,为计价名称(Name)下计价类别(Category)的子项目,表示一个具体的收费项。规格的计费项标签可参考
|
|
2505
|
+
[获取MQTT产品售卖规格](https://cloud.tencent.com/document/product/1778/116232) 接口的返回结果。
|
|
2485
2506
|
*/
|
|
2486
2507
|
Code?: string;
|
|
2487
2508
|
/**
|
|
2488
|
-
*
|
|
2509
|
+
* 计费步长,表示该规格在 计价名称(Name)下的计价类别(Category)的计费项标签(Code)计费数量。具体规格该字段取值参考 [获取MQTT产品售卖规格](https://cloud.tencent.com/document/product/1778/116232)
|
|
2489
2510
|
*/
|
|
2490
2511
|
Step?: number;
|
|
2491
2512
|
}
|
|
@@ -2656,7 +2677,7 @@ export interface ModifyHttpAuthenticatorRequest {
|
|
|
2656
2677
|
*/
|
|
2657
2678
|
export interface DescribeInstanceRequest {
|
|
2658
2679
|
/**
|
|
2659
|
-
* 实例ID [DescribeInstanceList](https://cloud.tencent.com/document/api/1778/111029)
|
|
2680
|
+
* 腾讯云MQTT实例ID,从 [DescribeInstanceList](https://cloud.tencent.com/document/api/1778/111029)接口或控制台获得。
|
|
2660
2681
|
*/
|
|
2661
2682
|
InstanceId: string;
|
|
2662
2683
|
}
|