tencentcloud-sdk-nodejs-mqtt 4.1.51 → 4.1.64
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
|
@@ -849,6 +849,22 @@ export interface MQTTInstanceItem {
|
|
|
849
849
|
* 最大订阅数
|
|
850
850
|
*/
|
|
851
851
|
MaxSubscription?: number;
|
|
852
|
+
/**
|
|
853
|
+
* 共享订阅组数最大限制
|
|
854
|
+
*/
|
|
855
|
+
SharedSubscriptionGroupLimit?: number;
|
|
856
|
+
/**
|
|
857
|
+
* 单个共享订阅组TopicFilter数限制
|
|
858
|
+
*/
|
|
859
|
+
MaxTopicFilterPerSharedSubscriptionGroup?: number;
|
|
860
|
+
/**
|
|
861
|
+
* 自动订阅规则条数限制
|
|
862
|
+
*/
|
|
863
|
+
AutoSubscriptionPolicyLimit?: number;
|
|
864
|
+
/**
|
|
865
|
+
* 单条自动订阅规则TopicFilter数限制
|
|
866
|
+
*/
|
|
867
|
+
MaxTopicFilterPerAutoSubscriptionPolicy?: number;
|
|
852
868
|
}
|
|
853
869
|
/**
|
|
854
870
|
* DescribeInstanceList返回参数结构体
|
|
@@ -2060,6 +2076,22 @@ export interface DescribeInstanceResponse {
|
|
|
2060
2076
|
* 授权策略开关
|
|
2061
2077
|
*/
|
|
2062
2078
|
AuthorizationPolicy?: boolean;
|
|
2079
|
+
/**
|
|
2080
|
+
* 共享订阅组数最大限制
|
|
2081
|
+
*/
|
|
2082
|
+
SharedSubscriptionGroupLimit?: number;
|
|
2083
|
+
/**
|
|
2084
|
+
* 单个共享订阅组TopicFilter数限制
|
|
2085
|
+
*/
|
|
2086
|
+
MaxTopicFilterPerSharedSubscriptionGroup?: number;
|
|
2087
|
+
/**
|
|
2088
|
+
* 自动订阅规则条数限制
|
|
2089
|
+
*/
|
|
2090
|
+
AutoSubscriptionPolicyLimit?: number;
|
|
2091
|
+
/**
|
|
2092
|
+
* 单条自动订阅规则TopicFilter数限制
|
|
2093
|
+
*/
|
|
2094
|
+
MaxTopicFilterPerAutoSubscriptionPolicy?: number;
|
|
2063
2095
|
/**
|
|
2064
2096
|
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
2065
2097
|
*/
|