tencentcloud-sdk-nodejs-iotexplorer 4.1.196 → 4.1.199
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
|
@@ -1350,6 +1350,10 @@ export interface ModifyTWeSeeConfigRequest {
|
|
|
1350
1350
|
* 视频摘要配置参数,不传则不修改
|
|
1351
1351
|
*/
|
|
1352
1352
|
SummaryConfig?: VisionSummaryConfig;
|
|
1353
|
+
/**
|
|
1354
|
+
* 云存事件 ID 过滤规则配置,不传则不修改
|
|
1355
|
+
*/
|
|
1356
|
+
EventIdFilterConfig?: SeeEventIdFilterConfig;
|
|
1353
1357
|
}
|
|
1354
1358
|
/**
|
|
1355
1359
|
* DescribeGatewaySubDeviceList请求参数结构体
|
|
@@ -3889,6 +3893,19 @@ export interface DescribeProjectRequest {
|
|
|
3889
3893
|
*/
|
|
3890
3894
|
ProjectId: string;
|
|
3891
3895
|
}
|
|
3896
|
+
/**
|
|
3897
|
+
* TWeSee 处理云存事件 EventId 的过滤规则配置
|
|
3898
|
+
*/
|
|
3899
|
+
export interface SeeEventIdFilterConfig {
|
|
3900
|
+
/**
|
|
3901
|
+
* 包含的云存事件 ID 集合
|
|
3902
|
+
*/
|
|
3903
|
+
IncludeOnly?: Array<string>;
|
|
3904
|
+
/**
|
|
3905
|
+
* 排除的云存事件 ID 集合
|
|
3906
|
+
*/
|
|
3907
|
+
Exclude?: Array<string>;
|
|
3908
|
+
}
|
|
3892
3909
|
/**
|
|
3893
3910
|
* DescribeSubscribedTopicPolicy请求参数结构体
|
|
3894
3911
|
*/
|
|
@@ -6237,6 +6254,14 @@ export interface DescribeTWeSeeConfigResponse {
|
|
|
6237
6254
|
* 配置参数
|
|
6238
6255
|
*/
|
|
6239
6256
|
Config?: string;
|
|
6257
|
+
/**
|
|
6258
|
+
* 摘要配置参数
|
|
6259
|
+
*/
|
|
6260
|
+
SummaryConfig?: VisionSummaryConfig;
|
|
6261
|
+
/**
|
|
6262
|
+
* 云存事件 ID 过滤规则配置项
|
|
6263
|
+
*/
|
|
6264
|
+
EventIdFilterConfig?: SeeEventIdFilterConfig;
|
|
6240
6265
|
/**
|
|
6241
6266
|
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
6242
6267
|
*/
|