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
@@ -27,49 +27,56 @@ export interface ApplicationList {
27
27
  TotalCount?: string;
28
28
  }
29
29
  /**
30
- * 模型基础信息
30
+ * SaveDeviceGroup请求参数结构体
31
31
  */
32
- export interface ModelInfo {
32
+ export interface SaveDeviceGroupRequest {
33
33
  /**
34
- * 工作空间id
35
- 注意:此字段可能返回 null,表示取不到有效值。
34
+ * 分组名称
36
35
  */
37
- WorkspaceId?: number;
36
+ Name: string;
38
37
  /**
39
- * 模型名称
40
- 注意:此字段可能返回 null,表示取不到有效值。
38
+ * 分组描述
41
39
  */
42
- ModelName?: string;
40
+ Description: string;
43
41
  /**
44
- * 物模型id
45
- 注意:此字段可能返回 null,表示取不到有效值。
42
+ * 空间id
46
43
  */
47
- ModelId?: string;
44
+ WorkspaceId: number;
48
45
  /**
49
- * 关联产品信息
50
- 注意:此字段可能返回 null,表示取不到有效值。
46
+ * 应用token
51
47
  */
52
- RelatedProduct?: Array<RelatedProduct>;
48
+ ApplicationToken: string;
53
49
  /**
54
- * 设备类型名
55
- 注意:此字段可能返回 null,表示取不到有效值。
50
+ * 分组id, 携带则为修改, 不携带则为新增
56
51
  */
57
- DeviceTypeName?: string;
52
+ Id?: number;
58
53
  /**
59
- * 设备类型id
60
- 注意:此字段可能返回 null,表示取不到有效值。
54
+ * 分组父级id
61
55
  */
62
- DeviceType?: string;
56
+ ParentId?: number;
57
+ }
58
+ /**
59
+ * 分组信息实体类
60
+ */
61
+ export interface DescribeGroupInfo {
63
62
  /**
64
- * 物模型类型,产品模型/标准模型
63
+ * 分组
64
+ */
65
+ Id?: number;
66
+ /**
67
+ * 设备分组名称
68
+ */
69
+ Name?: string;
70
+ /**
71
+ * 分组描述
65
72
  注意:此字段可能返回 null,表示取不到有效值。
66
73
  */
67
- ModelType?: number;
74
+ Description?: string;
68
75
  /**
69
- * 模型参数内容,有效字段为"x-json:"后的字段
76
+ * 分组父级ID
70
77
  注意:此字段可能返回 null,表示取不到有效值。
71
78
  */
72
- ModelParams?: string;
79
+ ParentId?: number;
73
80
  }
74
81
  /**
75
82
  * 告警信息
@@ -463,6 +470,19 @@ export interface MessageProfile {
463
470
  */
464
471
  PoiCode?: string;
465
472
  }
473
+ /**
474
+ * 设备标签修改信息入参
475
+ */
476
+ export interface ModifyDeviceTagInfo {
477
+ /**
478
+ * 设备id
479
+ */
480
+ WID: string;
481
+ /**
482
+ * 设备标签名称集合
483
+ */
484
+ NameSet: Array<string>;
485
+ }
466
486
  /**
467
487
  * ModifyDeviceName返回参数结构体
468
488
  */
@@ -668,6 +688,16 @@ export interface DescribeWorkspaceListResponse {
668
688
  */
669
689
  RequestId?: string;
670
690
  }
691
+ /**
692
+ * 设备-空间绑定关系响应体
693
+ */
694
+ export interface SpaceDeviceRelationRes {
695
+ /**
696
+ * 设备空间绑定关系列表
697
+ 注意:此字段可能返回 null,表示取不到有效值。
698
+ */
699
+ SpaceDeviceRelationList?: Array<SpaceDeviceRelation>;
700
+ }
671
701
  /**
672
702
  * 产品信息
673
703
  */
@@ -999,13 +1029,13 @@ export interface DescribeTenantUserListRequest {
999
1029
  NoRecursive?: string;
1000
1030
  }
1001
1031
  /**
1002
- * StopVideoStreaming返回参数结构体
1032
+ * BatchReportAppMessage返回参数结构体
1003
1033
  */
1004
- export interface StopVideoStreamingResponse {
1034
+ export interface BatchReportAppMessageResponse {
1005
1035
  /**
1006
- * 停流接口返回结果
1036
+ * 批量消息上报结果
1007
1037
  */
1008
- Result?: EmptyRes;
1038
+ Result?: BatchReportAppMessageRes;
1009
1039
  /**
1010
1040
  * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
1011
1041
  */
@@ -1041,6 +1071,19 @@ export interface ModifyDeviceNameRequest {
1041
1071
  */
1042
1072
  ApplicationToken: string;
1043
1073
  }
1074
+ /**
1075
+ * DeleteDeviceGroup返回参数结构体
1076
+ */
1077
+ export interface DeleteDeviceGroupResponse {
1078
+ /**
1079
+ * 无返回信息
1080
+ */
1081
+ Result?: EmptyRes;
1082
+ /**
1083
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
1084
+ */
1085
+ RequestId?: string;
1086
+ }
1044
1087
  /**
1045
1088
  * DescribeAlarmStatusList请求参数结构体
1046
1089
  */
@@ -1097,6 +1140,16 @@ export interface ReportMsgRes {
1097
1140
  */
1098
1141
  ReportStatus?: number;
1099
1142
  }
1143
+ /**
1144
+ * 设备分组信息
1145
+ */
1146
+ export interface DescribeDeviceGroupListRes {
1147
+ /**
1148
+ * 设备分组list
1149
+ 注意:此字段可能返回 null,表示取不到有效值。
1150
+ */
1151
+ List?: Array<DescribeGroupInfo>;
1152
+ }
1100
1153
  /**
1101
1154
  * DescribeSpaceInfoByDeviceId返回参数结构体
1102
1155
  */
@@ -1338,13 +1391,13 @@ export interface DescribeBuildingModelResponse {
1338
1391
  RequestId?: string;
1339
1392
  }
1340
1393
  /**
1341
- * BatchReportAppMessage返回参数结构体
1394
+ * DescribeDeviceGroupList返回参数结构体
1342
1395
  */
1343
- export interface BatchReportAppMessageResponse {
1396
+ export interface DescribeDeviceGroupListResponse {
1344
1397
  /**
1345
- * 批量消息上报结果
1398
+ * 分组信息
1346
1399
  */
1347
- Result?: BatchReportAppMessageRes;
1400
+ Result?: DescribeDeviceGroupListRes;
1348
1401
  /**
1349
1402
  * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
1350
1403
  */
@@ -1904,6 +1957,19 @@ export interface DescribeBuildingListResponse {
1904
1957
  */
1905
1958
  RequestId?: string;
1906
1959
  }
1960
+ /**
1961
+ * BatchDeleteDevice返回参数结构体
1962
+ */
1963
+ export interface BatchDeleteDeviceResponse {
1964
+ /**
1965
+ * 返回请求结果
1966
+ */
1967
+ Result?: EmptyRes;
1968
+ /**
1969
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
1970
+ */
1971
+ RequestId?: string;
1972
+ }
1907
1973
  /**
1908
1974
  * 空间层级关系响应体
1909
1975
  */
@@ -2143,39 +2209,42 @@ export interface DescribeWorkspaceListRequest {
2143
2209
  WorkspaceId?: number;
2144
2210
  }
2145
2211
  /**
2146
- * 建筑概要信息
2212
+ * ModifyDeviceField返回参数结构体
2147
2213
  */
2148
- export interface BuildingProfile {
2214
+ export interface ModifyDeviceFieldResponse {
2149
2215
  /**
2150
- * 建筑id
2151
- 注意:此字段可能返回 null,表示取不到有效值。
2216
+ * 返回请求结果
2152
2217
  */
2153
- BuildingId?: string;
2218
+ Result?: EmptyRes;
2154
2219
  /**
2155
- * 建筑名称
2156
- 注意:此字段可能返回 null,表示取不到有效值。
2220
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
2157
2221
  */
2158
- BuildingName?: string;
2222
+ RequestId?: string;
2223
+ }
2224
+ /**
2225
+ * ControlDevice请求参数结构体
2226
+ */
2227
+ export interface ControlDeviceRequest {
2159
2228
  /**
2160
- * 空间编码
2161
- 注意:此字段可能返回 null,表示取不到有效值。
2229
+ * 工作空间id
2162
2230
  */
2163
- SpaceCode?: string;
2231
+ WorkspaceId: number;
2164
2232
  /**
2165
- * 经度
2166
- 注意:此字段可能返回 null,表示取不到有效值。
2233
+ * 设备wid,最大100个
2167
2234
  */
2168
- Longitude?: number;
2235
+ WIDSet: Array<string>;
2169
2236
  /**
2170
- * 纬度
2171
- 注意:此字段可能返回 null,表示取不到有效值。
2237
+ * 控制内容
2172
2238
  */
2173
- Latitude?: number;
2239
+ ControlData: string;
2174
2240
  /**
2175
- * 地址
2176
- 注意:此字段可能返回 null,表示取不到有效值。
2241
+ * 应用token
2177
2242
  */
2178
- Address?: string;
2243
+ ApplicationToken: string;
2244
+ /**
2245
+ * 是否同步返回设备下控ack结果
2246
+ */
2247
+ IsSynchronized?: boolean;
2179
2248
  }
2180
2249
  /**
2181
2250
  * DescribeDeviceTypeList返回参数结构体
@@ -2662,6 +2731,23 @@ export interface DescribeElementProfileTreeResponse {
2662
2731
  */
2663
2732
  RequestId?: string;
2664
2733
  }
2734
+ /**
2735
+ * 设备自定义值修改信息入参
2736
+ */
2737
+ export interface ModifyDeviceFieldInfo {
2738
+ /**
2739
+ * 设备id
2740
+ */
2741
+ WID: string;
2742
+ /**
2743
+ * 自定义字段key
2744
+ */
2745
+ Key: string;
2746
+ /**
2747
+ * 自定义字段值
2748
+ */
2749
+ Val: string;
2750
+ }
2665
2751
  /**
2666
2752
  * DescribeTenantDepartmentList请求参数结构体
2667
2753
  */
@@ -2695,6 +2781,19 @@ export interface DescribeTenantDepartmentListRequest {
2695
2781
  */
2696
2782
  Cursor?: string;
2697
2783
  }
2784
+ /**
2785
+ * StopVideoStreaming返回参数结构体
2786
+ */
2787
+ export interface StopVideoStreamingResponse {
2788
+ /**
2789
+ * 停流接口返回结果
2790
+ */
2791
+ Result?: EmptyRes;
2792
+ /**
2793
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
2794
+ */
2795
+ RequestId?: string;
2796
+ }
2698
2797
  /**
2699
2798
  * 批量消息上报结果
2700
2799
  */
@@ -2803,14 +2902,17 @@ export interface DescribeBuildingListRequest {
2803
2902
  SpaceCodes?: Array<string>;
2804
2903
  }
2805
2904
  /**
2806
- * 设备-空间绑定关系响应体
2905
+ * 设备组修改信息入参
2807
2906
  */
2808
- export interface SpaceDeviceRelationRes {
2907
+ export interface ModifyDeviceGroupInfo {
2809
2908
  /**
2810
- * 设备空间绑定关系列表
2811
- 注意:此字段可能返回 null,表示取不到有效值。
2909
+ * 设备id
2812
2910
  */
2813
- SpaceDeviceRelationList?: Array<SpaceDeviceRelation>;
2911
+ WID: string;
2912
+ /**
2913
+ * 设备分组id
2914
+ */
2915
+ GroupId: number;
2814
2916
  }
2815
2917
  /**
2816
2918
  * 层级统计
@@ -2914,6 +3016,16 @@ export interface DescribeVideoCloudRecordResponse {
2914
3016
  */
2915
3017
  RequestId?: string;
2916
3018
  }
3019
+ /**
3020
+ * 保存or修改设备分组回包
3021
+ */
3022
+ export interface SaveDeviceGroupRes {
3023
+ /**
3024
+ * 保存or修改设备分组回包信息
3025
+ 注意:此字段可能返回 null,表示取不到有效值。
3026
+ */
3027
+ Id?: number;
3028
+ }
2917
3029
  /**
2918
3030
  * 设备列表查询结果
2919
3031
  */
@@ -2978,6 +3090,36 @@ export interface UpdateWorkspaceParkAttributesRequest {
2978
3090
  */
2979
3091
  ParkNum?: string;
2980
3092
  }
3093
+ /**
3094
+ * ModifyDeviceTag请求参数结构体
3095
+ */
3096
+ export interface ModifyDeviceTagRequest {
3097
+ /**
3098
+ * 工作空间id
3099
+ */
3100
+ WorkspaceId: number;
3101
+ /**
3102
+ * 设备标签修改信息集合
3103
+ */
3104
+ Set: Array<ModifyDeviceTagInfo>;
3105
+ /**
3106
+ * 应用token
3107
+ */
3108
+ ApplicationToken: string;
3109
+ }
3110
+ /**
3111
+ * ModifyDeviceGroup返回参数结构体
3112
+ */
3113
+ export interface ModifyDeviceGroupResponse {
3114
+ /**
3115
+ * 返回请求结果
3116
+ */
3117
+ Result?: EmptyRes;
3118
+ /**
3119
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
3120
+ */
3121
+ RequestId?: string;
3122
+ }
2981
3123
  /**
2982
3124
  * DescribeLinkRuleList返回参数结构体
2983
3125
  */
@@ -3005,29 +3147,39 @@ export interface DescribeSpaceTypeListResponse {
3005
3147
  RequestId?: string;
3006
3148
  }
3007
3149
  /**
3008
- * ControlDevice请求参数结构体
3150
+ * 建筑概要信息
3009
3151
  */
3010
- export interface ControlDeviceRequest {
3152
+ export interface BuildingProfile {
3011
3153
  /**
3012
- * 工作空间id
3154
+ * 建筑id
3155
+ 注意:此字段可能返回 null,表示取不到有效值。
3013
3156
  */
3014
- WorkspaceId: number;
3157
+ BuildingId?: string;
3015
3158
  /**
3016
- * 设备wid,最大100个
3159
+ * 建筑名称
3160
+ 注意:此字段可能返回 null,表示取不到有效值。
3017
3161
  */
3018
- WIDSet: Array<string>;
3162
+ BuildingName?: string;
3019
3163
  /**
3020
- * 控制内容
3164
+ * 空间编码
3165
+ 注意:此字段可能返回 null,表示取不到有效值。
3021
3166
  */
3022
- ControlData: string;
3167
+ SpaceCode?: string;
3023
3168
  /**
3024
- * 应用token
3169
+ * 经度
3170
+ 注意:此字段可能返回 null,表示取不到有效值。
3025
3171
  */
3026
- ApplicationToken: string;
3172
+ Longitude?: number;
3027
3173
  /**
3028
- * 是否同步返回设备下控ack结果
3174
+ * 纬度
3175
+ 注意:此字段可能返回 null,表示取不到有效值。
3029
3176
  */
3030
- IsSynchronized?: boolean;
3177
+ Latitude?: number;
3178
+ /**
3179
+ * 地址
3180
+ 注意:此字段可能返回 null,表示取不到有效值。
3181
+ */
3182
+ Address?: string;
3031
3183
  }
3032
3184
  /**
3033
3185
  * 应用Token令牌信息
@@ -3170,6 +3322,40 @@ export interface DeviceTagRes {
3170
3322
  */
3171
3323
  Set?: Array<DeviceTagInfo>;
3172
3324
  }
3325
+ /**
3326
+ * BatchDeleteDevice请求参数结构体
3327
+ */
3328
+ export interface BatchDeleteDeviceRequest {
3329
+ /**
3330
+ * 工作空间id
3331
+ */
3332
+ WorkspaceId: number;
3333
+ /**
3334
+ * 设备wid数组列表
3335
+ */
3336
+ WIDSet: Array<string>;
3337
+ /**
3338
+ * 应用token
3339
+ */
3340
+ ApplicationToken: string;
3341
+ }
3342
+ /**
3343
+ * DescribeDeviceGroupList请求参数结构体
3344
+ */
3345
+ export interface DescribeDeviceGroupListRequest {
3346
+ /**
3347
+ * 应用token
3348
+ */
3349
+ ApplicationToken: string;
3350
+ /**
3351
+ * 工作空间ID
3352
+ */
3353
+ WorkspaceId: number;
3354
+ /**
3355
+ * 分组id, 不传默认全部
3356
+ */
3357
+ GroupId?: number;
3358
+ }
3173
3359
  /**
3174
3360
  * 详细动作信息
3175
3361
  */
@@ -3262,17 +3448,21 @@ export interface UpdateWorkspaceParkAttributesResponse {
3262
3448
  RequestId?: string;
3263
3449
  }
3264
3450
  /**
3265
- * DescribeDeviceTagList返回参数结构体
3451
+ * DeleteDeviceGroup请求参数结构体
3266
3452
  */
3267
- export interface DescribeDeviceTagListResponse {
3453
+ export interface DeleteDeviceGroupRequest {
3268
3454
  /**
3269
- * 设备标签查询结果
3455
+ * 设备分组的id
3270
3456
  */
3271
- Result?: DeviceTagRes;
3457
+ Id: number;
3272
3458
  /**
3273
- * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
3459
+ * 工作空间的id
3274
3460
  */
3275
- RequestId?: string;
3461
+ WorkspaceId: number;
3462
+ /**
3463
+ * 应用token
3464
+ */
3465
+ ApplicationToken: string;
3276
3466
  }
3277
3467
  /**
3278
3468
  * DescribeCityWorkspaceList返回参数结构体
@@ -3476,6 +3666,23 @@ export interface StatDeviceType {
3476
3666
  */
3477
3667
  DeviceType?: string;
3478
3668
  }
3669
+ /**
3670
+ * ModifyDeviceGroup请求参数结构体
3671
+ */
3672
+ export interface ModifyDeviceGroupRequest {
3673
+ /**
3674
+ * 工作空间id
3675
+ */
3676
+ WorkspaceId: number;
3677
+ /**
3678
+ * 设备组修改信息集合
3679
+ */
3680
+ Set: Array<ModifyDeviceGroupInfo>;
3681
+ /**
3682
+ * 应用token
3683
+ */
3684
+ ApplicationToken: string;
3685
+ }
3479
3686
  /**
3480
3687
  * DescribeElementProfileTree请求参数结构体
3481
3688
  */
@@ -3878,6 +4085,19 @@ export interface DescribeDeviceStatusListRequest {
3878
4085
  */
3879
4086
  IsAlive?: Array<boolean>;
3880
4087
  }
4088
+ /**
4089
+ * DescribeDeviceTagList返回参数结构体
4090
+ */
4091
+ export interface DescribeDeviceTagListResponse {
4092
+ /**
4093
+ * 设备标签查询结果
4094
+ */
4095
+ Result?: DeviceTagRes;
4096
+ /**
4097
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
4098
+ */
4099
+ RequestId?: string;
4100
+ }
3881
4101
  /**
3882
4102
  * DescribeVideoCloudRecord请求参数结构体
3883
4103
  */
@@ -4394,6 +4614,19 @@ export interface DescribeFileUploadURLResponse {
4394
4614
  */
4395
4615
  RequestId?: string;
4396
4616
  }
4617
+ /**
4618
+ * SaveDeviceGroup返回参数结构体
4619
+ */
4620
+ export interface SaveDeviceGroupResponse {
4621
+ /**
4622
+ * 新增/修改的设备分组记录的id
4623
+ */
4624
+ Result?: SaveDeviceGroupRes;
4625
+ /**
4626
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
4627
+ */
4628
+ RequestId?: string;
4629
+ }
4397
4630
  /**
4398
4631
  * 构件概要信息
4399
4632
  */
@@ -4747,6 +4980,51 @@ export interface ActionObj {
4747
4980
  */
4748
4981
  ApplyDevice?: string;
4749
4982
  }
4983
+ /**
4984
+ * 模型基础信息
4985
+ */
4986
+ export interface ModelInfo {
4987
+ /**
4988
+ * 工作空间id
4989
+ 注意:此字段可能返回 null,表示取不到有效值。
4990
+ */
4991
+ WorkspaceId?: number;
4992
+ /**
4993
+ * 模型名称
4994
+ 注意:此字段可能返回 null,表示取不到有效值。
4995
+ */
4996
+ ModelName?: string;
4997
+ /**
4998
+ * 物模型id
4999
+ 注意:此字段可能返回 null,表示取不到有效值。
5000
+ */
5001
+ ModelId?: string;
5002
+ /**
5003
+ * 关联产品信息
5004
+ 注意:此字段可能返回 null,表示取不到有效值。
5005
+ */
5006
+ RelatedProduct?: Array<RelatedProduct>;
5007
+ /**
5008
+ * 设备类型名
5009
+ 注意:此字段可能返回 null,表示取不到有效值。
5010
+ */
5011
+ DeviceTypeName?: string;
5012
+ /**
5013
+ * 设备类型id
5014
+ 注意:此字段可能返回 null,表示取不到有效值。
5015
+ */
5016
+ DeviceType?: string;
5017
+ /**
5018
+ * 物模型类型,产品模型/标准模型
5019
+ 注意:此字段可能返回 null,表示取不到有效值。
5020
+ */
5021
+ ModelType?: number;
5022
+ /**
5023
+ * 模型参数内容,有效字段为"x-json:"后的字段
5024
+ 注意:此字段可能返回 null,表示取不到有效值。
5025
+ */
5026
+ ModelParams?: string;
5027
+ }
4750
5028
  /**
4751
5029
  * 设备状态信息
4752
5030
  */
@@ -5085,6 +5363,19 @@ export interface DescribeAlarmStatusListRes {
5085
5363
  */
5086
5364
  List?: Array<AlarmStatusData>;
5087
5365
  }
5366
+ /**
5367
+ * ModifyDeviceTag返回参数结构体
5368
+ */
5369
+ export interface ModifyDeviceTagResponse {
5370
+ /**
5371
+ * 返回请求结果
5372
+ */
5373
+ Result?: EmptyRes;
5374
+ /**
5375
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
5376
+ */
5377
+ RequestId?: string;
5378
+ }
5088
5379
  /**
5089
5380
  * DescribeVideoLiveStream请求参数结构体
5090
5381
  */
@@ -5415,6 +5706,23 @@ export interface RelatedProduct {
5415
5706
  */
5416
5707
  Name?: string;
5417
5708
  }
5709
+ /**
5710
+ * ModifyDeviceField请求参数结构体
5711
+ */
5712
+ export interface ModifyDeviceFieldRequest {
5713
+ /**
5714
+ * 工作空间id
5715
+ */
5716
+ WorkspaceId: number;
5717
+ /**
5718
+ * 设备自定义字段修改信息集合
5719
+ */
5720
+ Set: Array<ModifyDeviceFieldInfo>;
5721
+ /**
5722
+ * 应用token
5723
+ */
5724
+ ApplicationToken: string;
5725
+ }
5418
5726
  /**
5419
5727
  * DescribeActionList请求参数结构体
5420
5728
  */
@@ -148,6 +148,16 @@ it("domain.v20180808.DeleteTemplate", async function () {
148
148
  }
149
149
  })
150
150
 
151
+ it("domain.v20180808.DescribeTldList", async function () {
152
+ try {
153
+ const data = await client.DescribeTldList({})
154
+ expect(data).to.be.ok
155
+ } catch(error) {
156
+ expect(error.requestId).to.be.ok
157
+ expect(error.code).to.be.ok
158
+ }
159
+ })
160
+
151
161
  it("domain.v20180808.CheckDomain", async function () {
152
162
  try {
153
163
  const data = await client.CheckDomain({})