tencentcloud-sdk-nodejs 4.0.827 → 4.0.829

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.
Files changed (38) hide show
  1. package/CHANGELOG.md +152 -0
  2. package/SERVICE_CHANGELOG.md +131 -224
  3. package/package.json +1 -1
  4. package/products.md +13 -13
  5. package/src/common/sdk_version.ts +1 -1
  6. package/src/services/domain/v20180808/domain_client.ts +12 -0
  7. package/src/services/domain/v20180808/domain_models.ts +19 -0
  8. package/src/services/ess/v20201111/ess_models.ts +2 -1
  9. package/src/services/essbasic/v20210526/essbasic_models.ts +11 -1
  10. package/src/services/ioa/v20220601/ioa_models.ts +1 -1
  11. package/src/services/live/v20180801/live_models.ts +4 -0
  12. package/src/services/mrs/v20200910/mrs_client.ts +4 -2
  13. package/src/services/ocr/v20181119/ocr_models.ts +5 -0
  14. package/src/services/omics/v20221128/omics_models.ts +14 -4
  15. package/src/services/trocket/v20230308/trocket_models.ts +4 -0
  16. package/src/services/trtc/v20190722/trtc_models.ts +1 -1
  17. package/src/services/weilingwith/v20230427/weilingwith_client.ts +103 -13
  18. package/src/services/weilingwith/v20230427/weilingwith_models.ts +403 -75
  19. package/tencentcloud/common/sdk_version.d.ts +1 -1
  20. package/tencentcloud/common/sdk_version.js +1 -1
  21. package/tencentcloud/services/domain/v20180808/domain_client.d.ts +5 -1
  22. package/tencentcloud/services/domain/v20180808/domain_client.js +6 -0
  23. package/tencentcloud/services/domain/v20180808/domain_models.d.ts +17 -0
  24. package/tencentcloud/services/ess/v20201111/ess_models.d.ts +2 -1
  25. package/tencentcloud/services/essbasic/v20210526/essbasic_models.d.ts +11 -1
  26. package/tencentcloud/services/ioa/v20220601/ioa_models.d.ts +1 -1
  27. package/tencentcloud/services/live/v20180801/live_models.d.ts +4 -0
  28. package/tencentcloud/services/mrs/v20200910/mrs_client.d.ts +2 -0
  29. package/tencentcloud/services/mrs/v20200910/mrs_client.js +2 -0
  30. package/tencentcloud/services/ocr/v20181119/ocr_models.d.ts +5 -0
  31. package/tencentcloud/services/omics/v20221128/omics_models.d.ts +14 -4
  32. package/tencentcloud/services/trocket/v20230308/trocket_models.d.ts +4 -0
  33. package/tencentcloud/services/trtc/v20190722/trtc_models.d.ts +1 -1
  34. package/tencentcloud/services/weilingwith/v20230427/weilingwith_client.d.ts +31 -3
  35. package/tencentcloud/services/weilingwith/v20230427/weilingwith_client.js +45 -3
  36. package/tencentcloud/services/weilingwith/v20230427/weilingwith_models.d.ts +383 -75
  37. package/test/domain.v20180808.test.js +10 -0
  38. package/test/weilingwith.v20230427.test.js +72 -2
@@ -46,49 +46,57 @@ export interface ApplicationList {
46
46
  }
47
47
 
48
48
  /**
49
- * 模型基础信息
49
+ * SaveDeviceGroup请求参数结构体
50
50
  */
51
- export interface ModelInfo {
51
+ export interface SaveDeviceGroupRequest {
52
52
  /**
53
- * 工作空间id
54
- 注意:此字段可能返回 null,表示取不到有效值。
53
+ * 分组名称
55
54
  */
56
- WorkspaceId?: number
55
+ Name: string
57
56
  /**
58
- * 模型名称
59
- 注意:此字段可能返回 null,表示取不到有效值。
57
+ * 分组描述
60
58
  */
61
- ModelName?: string
59
+ Description: string
62
60
  /**
63
- * 物模型id
64
- 注意:此字段可能返回 null,表示取不到有效值。
61
+ * 空间id
65
62
  */
66
- ModelId?: string
63
+ WorkspaceId: number
67
64
  /**
68
- * 关联产品信息
69
- 注意:此字段可能返回 null,表示取不到有效值。
65
+ * 应用token
70
66
  */
71
- RelatedProduct?: Array<RelatedProduct>
67
+ ApplicationToken: string
72
68
  /**
73
- * 设备类型名
74
- 注意:此字段可能返回 null,表示取不到有效值。
69
+ * 分组id, 携带则为修改, 不携带则为新增
75
70
  */
76
- DeviceTypeName?: string
71
+ Id?: number
77
72
  /**
78
- * 设备类型id
79
- 注意:此字段可能返回 null,表示取不到有效值。
73
+ * 分组父级id
80
74
  */
81
- DeviceType?: string
75
+ ParentId?: number
76
+ }
77
+
78
+ /**
79
+ * 分组信息实体类
80
+ */
81
+ export interface DescribeGroupInfo {
82
82
  /**
83
- * 物模型类型,产品模型/标准模型
83
+ * 分组
84
+ */
85
+ Id?: number
86
+ /**
87
+ * 设备分组名称
88
+ */
89
+ Name?: string
90
+ /**
91
+ * 分组描述
84
92
  注意:此字段可能返回 null,表示取不到有效值。
85
93
  */
86
- ModelType?: number
94
+ Description?: string
87
95
  /**
88
- * 模型参数内容,有效字段为"x-json:"后的字段
96
+ * 分组父级ID
89
97
  注意:此字段可能返回 null,表示取不到有效值。
90
98
  */
91
- ModelParams?: string
99
+ ParentId?: number
92
100
  }
93
101
 
94
102
  /**
@@ -494,6 +502,20 @@ export interface MessageProfile {
494
502
  PoiCode?: string
495
503
  }
496
504
 
505
+ /**
506
+ * 设备标签修改信息入参
507
+ */
508
+ export interface ModifyDeviceTagInfo {
509
+ /**
510
+ * 设备id
511
+ */
512
+ WID: string
513
+ /**
514
+ * 设备标签名称集合
515
+ */
516
+ NameSet: Array<string>
517
+ }
518
+
497
519
  /**
498
520
  * ModifyDeviceName返回参数结构体
499
521
  */
@@ -708,6 +730,17 @@ export interface DescribeWorkspaceListResponse {
708
730
  RequestId?: string
709
731
  }
710
732
 
733
+ /**
734
+ * 设备-空间绑定关系响应体
735
+ */
736
+ export interface SpaceDeviceRelationRes {
737
+ /**
738
+ * 设备空间绑定关系列表
739
+ 注意:此字段可能返回 null,表示取不到有效值。
740
+ */
741
+ SpaceDeviceRelationList?: Array<SpaceDeviceRelation>
742
+ }
743
+
711
744
  /**
712
745
  * 产品信息
713
746
  */
@@ -1047,13 +1080,13 @@ export interface DescribeTenantUserListRequest {
1047
1080
  }
1048
1081
 
1049
1082
  /**
1050
- * StopVideoStreaming返回参数结构体
1083
+ * BatchReportAppMessage返回参数结构体
1051
1084
  */
1052
- export interface StopVideoStreamingResponse {
1085
+ export interface BatchReportAppMessageResponse {
1053
1086
  /**
1054
- * 停流接口返回结果
1087
+ * 批量消息上报结果
1055
1088
  */
1056
- Result?: EmptyRes
1089
+ Result?: BatchReportAppMessageRes
1057
1090
  /**
1058
1091
  * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
1059
1092
  */
@@ -1092,6 +1125,20 @@ export interface ModifyDeviceNameRequest {
1092
1125
  ApplicationToken: string
1093
1126
  }
1094
1127
 
1128
+ /**
1129
+ * DeleteDeviceGroup返回参数结构体
1130
+ */
1131
+ export interface DeleteDeviceGroupResponse {
1132
+ /**
1133
+ * 无返回信息
1134
+ */
1135
+ Result?: EmptyRes
1136
+ /**
1137
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
1138
+ */
1139
+ RequestId?: string
1140
+ }
1141
+
1095
1142
  /**
1096
1143
  * DescribeAlarmStatusList请求参数结构体
1097
1144
  */
@@ -1152,6 +1199,17 @@ export interface ReportMsgRes {
1152
1199
  ReportStatus?: number
1153
1200
  }
1154
1201
 
1202
+ /**
1203
+ * 设备分组信息
1204
+ */
1205
+ export interface DescribeDeviceGroupListRes {
1206
+ /**
1207
+ * 设备分组list
1208
+ 注意:此字段可能返回 null,表示取不到有效值。
1209
+ */
1210
+ List?: Array<DescribeGroupInfo>
1211
+ }
1212
+
1155
1213
  /**
1156
1214
  * DescribeSpaceInfoByDeviceId返回参数结构体
1157
1215
  */
@@ -1403,13 +1461,13 @@ export interface DescribeBuildingModelResponse {
1403
1461
  }
1404
1462
 
1405
1463
  /**
1406
- * BatchReportAppMessage返回参数结构体
1464
+ * DescribeDeviceGroupList返回参数结构体
1407
1465
  */
1408
- export interface BatchReportAppMessageResponse {
1466
+ export interface DescribeDeviceGroupListResponse {
1409
1467
  /**
1410
- * 批量消息上报结果
1468
+ * 分组信息
1411
1469
  */
1412
- Result?: BatchReportAppMessageRes
1470
+ Result?: DescribeDeviceGroupListRes
1413
1471
  /**
1414
1472
  * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
1415
1473
  */
@@ -1994,6 +2052,20 @@ export interface DescribeBuildingListResponse {
1994
2052
  RequestId?: string
1995
2053
  }
1996
2054
 
2055
+ /**
2056
+ * BatchDeleteDevice返回参数结构体
2057
+ */
2058
+ export interface BatchDeleteDeviceResponse {
2059
+ /**
2060
+ * 返回请求结果
2061
+ */
2062
+ Result?: EmptyRes
2063
+ /**
2064
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
2065
+ */
2066
+ RequestId?: string
2067
+ }
2068
+
1997
2069
  /**
1998
2070
  * 空间层级关系响应体
1999
2071
  */
@@ -2245,39 +2317,43 @@ export interface DescribeWorkspaceListRequest {
2245
2317
  }
2246
2318
 
2247
2319
  /**
2248
- * 建筑概要信息
2320
+ * ModifyDeviceField返回参数结构体
2249
2321
  */
2250
- export interface BuildingProfile {
2322
+ export interface ModifyDeviceFieldResponse {
2251
2323
  /**
2252
- * 建筑id
2253
- 注意:此字段可能返回 null,表示取不到有效值。
2324
+ * 返回请求结果
2254
2325
  */
2255
- BuildingId?: string
2326
+ Result?: EmptyRes
2256
2327
  /**
2257
- * 建筑名称
2258
- 注意:此字段可能返回 null,表示取不到有效值。
2328
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
2259
2329
  */
2260
- BuildingName?: string
2330
+ RequestId?: string
2331
+ }
2332
+
2333
+ /**
2334
+ * ControlDevice请求参数结构体
2335
+ */
2336
+ export interface ControlDeviceRequest {
2261
2337
  /**
2262
- * 空间编码
2263
- 注意:此字段可能返回 null,表示取不到有效值。
2338
+ * 工作空间id
2264
2339
  */
2265
- SpaceCode?: string
2340
+ WorkspaceId: number
2266
2341
  /**
2267
- * 经度
2268
- 注意:此字段可能返回 null,表示取不到有效值。
2342
+ * 设备wid,最大100个
2269
2343
  */
2270
- Longitude?: number
2344
+ WIDSet: Array<string>
2271
2345
  /**
2272
- * 纬度
2273
- 注意:此字段可能返回 null,表示取不到有效值。
2346
+ * 控制内容
2274
2347
  */
2275
- Latitude?: number
2348
+ ControlData: string
2276
2349
  /**
2277
- * 地址
2278
- 注意:此字段可能返回 null,表示取不到有效值。
2350
+ * 应用token
2279
2351
  */
2280
- Address?: string
2352
+ ApplicationToken: string
2353
+ /**
2354
+ * 是否同步返回设备下控ack结果
2355
+ */
2356
+ IsSynchronized?: boolean
2281
2357
  }
2282
2358
 
2283
2359
  /**
@@ -2786,6 +2862,24 @@ export interface DescribeElementProfileTreeResponse {
2786
2862
  RequestId?: string
2787
2863
  }
2788
2864
 
2865
+ /**
2866
+ * 设备自定义值修改信息入参
2867
+ */
2868
+ export interface ModifyDeviceFieldInfo {
2869
+ /**
2870
+ * 设备id
2871
+ */
2872
+ WID: string
2873
+ /**
2874
+ * 自定义字段key
2875
+ */
2876
+ Key: string
2877
+ /**
2878
+ * 自定义字段值
2879
+ */
2880
+ Val: string
2881
+ }
2882
+
2789
2883
  /**
2790
2884
  * DescribeTenantDepartmentList请求参数结构体
2791
2885
  */
@@ -2820,6 +2914,20 @@ export interface DescribeTenantDepartmentListRequest {
2820
2914
  Cursor?: string
2821
2915
  }
2822
2916
 
2917
+ /**
2918
+ * StopVideoStreaming返回参数结构体
2919
+ */
2920
+ export interface StopVideoStreamingResponse {
2921
+ /**
2922
+ * 停流接口返回结果
2923
+ */
2924
+ Result?: EmptyRes
2925
+ /**
2926
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
2927
+ */
2928
+ RequestId?: string
2929
+ }
2930
+
2823
2931
  /**
2824
2932
  * 批量消息上报结果
2825
2933
  */
@@ -2935,14 +3043,17 @@ export interface DescribeBuildingListRequest {
2935
3043
  }
2936
3044
 
2937
3045
  /**
2938
- * 设备-空间绑定关系响应体
3046
+ * 设备组修改信息入参
2939
3047
  */
2940
- export interface SpaceDeviceRelationRes {
3048
+ export interface ModifyDeviceGroupInfo {
2941
3049
  /**
2942
- * 设备空间绑定关系列表
2943
- 注意:此字段可能返回 null,表示取不到有效值。
3050
+ * 设备id
2944
3051
  */
2945
- SpaceDeviceRelationList?: Array<SpaceDeviceRelation>
3052
+ WID: string
3053
+ /**
3054
+ * 设备分组id
3055
+ */
3056
+ GroupId: number
2946
3057
  }
2947
3058
 
2948
3059
  /**
@@ -3052,6 +3163,17 @@ export interface DescribeVideoCloudRecordResponse {
3052
3163
  RequestId?: string
3053
3164
  }
3054
3165
 
3166
+ /**
3167
+ * 保存or修改设备分组回包
3168
+ */
3169
+ export interface SaveDeviceGroupRes {
3170
+ /**
3171
+ * 保存or修改设备分组回包信息
3172
+ 注意:此字段可能返回 null,表示取不到有效值。
3173
+ */
3174
+ Id?: number
3175
+ }
3176
+
3055
3177
  /**
3056
3178
  * 设备列表查询结果
3057
3179
  */
@@ -3119,6 +3241,38 @@ export interface UpdateWorkspaceParkAttributesRequest {
3119
3241
  ParkNum?: string
3120
3242
  }
3121
3243
 
3244
+ /**
3245
+ * ModifyDeviceTag请求参数结构体
3246
+ */
3247
+ export interface ModifyDeviceTagRequest {
3248
+ /**
3249
+ * 工作空间id
3250
+ */
3251
+ WorkspaceId: number
3252
+ /**
3253
+ * 设备标签修改信息集合
3254
+ */
3255
+ Set: Array<ModifyDeviceTagInfo>
3256
+ /**
3257
+ * 应用token
3258
+ */
3259
+ ApplicationToken: string
3260
+ }
3261
+
3262
+ /**
3263
+ * ModifyDeviceGroup返回参数结构体
3264
+ */
3265
+ export interface ModifyDeviceGroupResponse {
3266
+ /**
3267
+ * 返回请求结果
3268
+ */
3269
+ Result?: EmptyRes
3270
+ /**
3271
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
3272
+ */
3273
+ RequestId?: string
3274
+ }
3275
+
3122
3276
  /**
3123
3277
  * DescribeLinkRuleList返回参数结构体
3124
3278
  */
@@ -3148,29 +3302,39 @@ export interface DescribeSpaceTypeListResponse {
3148
3302
  }
3149
3303
 
3150
3304
  /**
3151
- * ControlDevice请求参数结构体
3305
+ * 建筑概要信息
3152
3306
  */
3153
- export interface ControlDeviceRequest {
3307
+ export interface BuildingProfile {
3154
3308
  /**
3155
- * 工作空间id
3309
+ * 建筑id
3310
+ 注意:此字段可能返回 null,表示取不到有效值。
3156
3311
  */
3157
- WorkspaceId: number
3312
+ BuildingId?: string
3158
3313
  /**
3159
- * 设备wid,最大100个
3314
+ * 建筑名称
3315
+ 注意:此字段可能返回 null,表示取不到有效值。
3160
3316
  */
3161
- WIDSet: Array<string>
3317
+ BuildingName?: string
3162
3318
  /**
3163
- * 控制内容
3319
+ * 空间编码
3320
+ 注意:此字段可能返回 null,表示取不到有效值。
3164
3321
  */
3165
- ControlData: string
3322
+ SpaceCode?: string
3166
3323
  /**
3167
- * 应用token
3324
+ * 经度
3325
+ 注意:此字段可能返回 null,表示取不到有效值。
3168
3326
  */
3169
- ApplicationToken: string
3327
+ Longitude?: number
3170
3328
  /**
3171
- * 是否同步返回设备下控ack结果
3329
+ * 纬度
3330
+ 注意:此字段可能返回 null,表示取不到有效值。
3172
3331
  */
3173
- IsSynchronized?: boolean
3332
+ Latitude?: number
3333
+ /**
3334
+ * 地址
3335
+ 注意:此字段可能返回 null,表示取不到有效值。
3336
+ */
3337
+ Address?: string
3174
3338
  }
3175
3339
 
3176
3340
  /**
@@ -3320,6 +3484,42 @@ export interface DeviceTagRes {
3320
3484
  Set?: Array<DeviceTagInfo>
3321
3485
  }
3322
3486
 
3487
+ /**
3488
+ * BatchDeleteDevice请求参数结构体
3489
+ */
3490
+ export interface BatchDeleteDeviceRequest {
3491
+ /**
3492
+ * 工作空间id
3493
+ */
3494
+ WorkspaceId: number
3495
+ /**
3496
+ * 设备wid数组列表
3497
+ */
3498
+ WIDSet: Array<string>
3499
+ /**
3500
+ * 应用token
3501
+ */
3502
+ ApplicationToken: string
3503
+ }
3504
+
3505
+ /**
3506
+ * DescribeDeviceGroupList请求参数结构体
3507
+ */
3508
+ export interface DescribeDeviceGroupListRequest {
3509
+ /**
3510
+ * 应用token
3511
+ */
3512
+ ApplicationToken: string
3513
+ /**
3514
+ * 工作空间ID
3515
+ */
3516
+ WorkspaceId: number
3517
+ /**
3518
+ * 分组id, 不传默认全部
3519
+ */
3520
+ GroupId?: number
3521
+ }
3522
+
3323
3523
  /**
3324
3524
  * 详细动作信息
3325
3525
  */
@@ -3416,17 +3616,21 @@ export interface UpdateWorkspaceParkAttributesResponse {
3416
3616
  }
3417
3617
 
3418
3618
  /**
3419
- * DescribeDeviceTagList返回参数结构体
3619
+ * DeleteDeviceGroup请求参数结构体
3420
3620
  */
3421
- export interface DescribeDeviceTagListResponse {
3621
+ export interface DeleteDeviceGroupRequest {
3422
3622
  /**
3423
- * 设备标签查询结果
3623
+ * 设备分组的id
3424
3624
  */
3425
- Result?: DeviceTagRes
3625
+ Id: number
3426
3626
  /**
3427
- * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
3627
+ * 工作空间的id
3428
3628
  */
3429
- RequestId?: string
3629
+ WorkspaceId: number
3630
+ /**
3631
+ * 应用token
3632
+ */
3633
+ ApplicationToken: string
3430
3634
  }
3431
3635
 
3432
3636
  /**
@@ -3637,6 +3841,24 @@ export interface StatDeviceType {
3637
3841
  DeviceType?: string
3638
3842
  }
3639
3843
 
3844
+ /**
3845
+ * ModifyDeviceGroup请求参数结构体
3846
+ */
3847
+ export interface ModifyDeviceGroupRequest {
3848
+ /**
3849
+ * 工作空间id
3850
+ */
3851
+ WorkspaceId: number
3852
+ /**
3853
+ * 设备组修改信息集合
3854
+ */
3855
+ Set: Array<ModifyDeviceGroupInfo>
3856
+ /**
3857
+ * 应用token
3858
+ */
3859
+ ApplicationToken: string
3860
+ }
3861
+
3640
3862
  /**
3641
3863
  * DescribeElementProfileTree请求参数结构体
3642
3864
  */
@@ -4053,6 +4275,20 @@ export interface DescribeDeviceStatusListRequest {
4053
4275
  IsAlive?: Array<boolean>
4054
4276
  }
4055
4277
 
4278
+ /**
4279
+ * DescribeDeviceTagList返回参数结构体
4280
+ */
4281
+ export interface DescribeDeviceTagListResponse {
4282
+ /**
4283
+ * 设备标签查询结果
4284
+ */
4285
+ Result?: DeviceTagRes
4286
+ /**
4287
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
4288
+ */
4289
+ RequestId?: string
4290
+ }
4291
+
4056
4292
  /**
4057
4293
  * DescribeVideoCloudRecord请求参数结构体
4058
4294
  */
@@ -4594,6 +4830,20 @@ export interface DescribeFileUploadURLResponse {
4594
4830
  RequestId?: string
4595
4831
  }
4596
4832
 
4833
+ /**
4834
+ * SaveDeviceGroup返回参数结构体
4835
+ */
4836
+ export interface SaveDeviceGroupResponse {
4837
+ /**
4838
+ * 新增/修改的设备分组记录的id
4839
+ */
4840
+ Result?: SaveDeviceGroupRes
4841
+ /**
4842
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
4843
+ */
4844
+ RequestId?: string
4845
+ }
4846
+
4597
4847
  /**
4598
4848
  * 构件概要信息
4599
4849
  */
@@ -4960,6 +5210,52 @@ export interface ActionObj {
4960
5210
  ApplyDevice?: string
4961
5211
  }
4962
5212
 
5213
+ /**
5214
+ * 模型基础信息
5215
+ */
5216
+ export interface ModelInfo {
5217
+ /**
5218
+ * 工作空间id
5219
+ 注意:此字段可能返回 null,表示取不到有效值。
5220
+ */
5221
+ WorkspaceId?: number
5222
+ /**
5223
+ * 模型名称
5224
+ 注意:此字段可能返回 null,表示取不到有效值。
5225
+ */
5226
+ ModelName?: string
5227
+ /**
5228
+ * 物模型id
5229
+ 注意:此字段可能返回 null,表示取不到有效值。
5230
+ */
5231
+ ModelId?: string
5232
+ /**
5233
+ * 关联产品信息
5234
+ 注意:此字段可能返回 null,表示取不到有效值。
5235
+ */
5236
+ RelatedProduct?: Array<RelatedProduct>
5237
+ /**
5238
+ * 设备类型名
5239
+ 注意:此字段可能返回 null,表示取不到有效值。
5240
+ */
5241
+ DeviceTypeName?: string
5242
+ /**
5243
+ * 设备类型id
5244
+ 注意:此字段可能返回 null,表示取不到有效值。
5245
+ */
5246
+ DeviceType?: string
5247
+ /**
5248
+ * 物模型类型,产品模型/标准模型
5249
+ 注意:此字段可能返回 null,表示取不到有效值。
5250
+ */
5251
+ ModelType?: number
5252
+ /**
5253
+ * 模型参数内容,有效字段为"x-json:"后的字段
5254
+ 注意:此字段可能返回 null,表示取不到有效值。
5255
+ */
5256
+ ModelParams?: string
5257
+ }
5258
+
4963
5259
  /**
4964
5260
  * 设备状态信息
4965
5261
  */
@@ -5313,6 +5609,20 @@ export interface DescribeAlarmStatusListRes {
5313
5609
  List?: Array<AlarmStatusData>
5314
5610
  }
5315
5611
 
5612
+ /**
5613
+ * ModifyDeviceTag返回参数结构体
5614
+ */
5615
+ export interface ModifyDeviceTagResponse {
5616
+ /**
5617
+ * 返回请求结果
5618
+ */
5619
+ Result?: EmptyRes
5620
+ /**
5621
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
5622
+ */
5623
+ RequestId?: string
5624
+ }
5625
+
5316
5626
  /**
5317
5627
  * DescribeVideoLiveStream请求参数结构体
5318
5628
  */
@@ -5658,6 +5968,24 @@ export interface RelatedProduct {
5658
5968
  Name?: string
5659
5969
  }
5660
5970
 
5971
+ /**
5972
+ * ModifyDeviceField请求参数结构体
5973
+ */
5974
+ export interface ModifyDeviceFieldRequest {
5975
+ /**
5976
+ * 工作空间id
5977
+ */
5978
+ WorkspaceId: number
5979
+ /**
5980
+ * 设备自定义字段修改信息集合
5981
+ */
5982
+ Set: Array<ModifyDeviceFieldInfo>
5983
+ /**
5984
+ * 应用token
5985
+ */
5986
+ ApplicationToken: string
5987
+ }
5988
+
5661
5989
  /**
5662
5990
  * DescribeActionList请求参数结构体
5663
5991
  */
@@ -1 +1 @@
1
- export declare const sdkVersion = "4.0.827";
1
+ export declare const sdkVersion = "4.0.829";
@@ -1,4 +1,4 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.sdkVersion = void 0;
4
- exports.sdkVersion = "4.0.827";
4
+ exports.sdkVersion = "4.0.829";