tencentcloud-sdk-nodejs 4.0.484 → 4.0.485

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 (44) hide show
  1. package/CHANGELOG.md +125 -0
  2. package/SERVICE_CHANGELOG.md +142 -102
  3. package/package.json +1 -1
  4. package/products.md +10 -10
  5. package/src/common/sdk_version.ts +1 -1
  6. package/src/services/ccc/v20200210/ccc_client.ts +54 -15
  7. package/src/services/ccc/v20200210/ccc_models.ts +283 -60
  8. package/src/services/cfs/v20190719/cfs_models.ts +6 -1
  9. package/src/services/cvm/v20170312/cvm_client.ts +1 -0
  10. package/src/services/ess/v20201111/ess_client.ts +112 -0
  11. package/src/services/essbasic/v20210526/essbasic_client.ts +12 -0
  12. package/src/services/essbasic/v20210526/essbasic_models.ts +86 -2
  13. package/src/services/iai/v20180301/iai_models.ts +1 -1
  14. package/src/services/iai/v20200303/iai_models.ts +1 -1
  15. package/src/services/iotexplorer/v20190423/iotexplorer_client.ts +16 -3
  16. package/src/services/iotexplorer/v20190423/iotexplorer_models.ts +102 -26
  17. package/src/services/ssl/v20191205/ssl_models.ts +7 -1
  18. package/src/services/tke/v20180525/tke_models.ts +20 -0
  19. package/src/services/trtc/v20190722/trtc_client.ts +4 -4
  20. package/tencentcloud/common/sdk_version.d.ts +1 -1
  21. package/tencentcloud/common/sdk_version.js +1 -1
  22. package/tencentcloud/services/ccc/v20200210/ccc_client.d.ts +17 -5
  23. package/tencentcloud/services/ccc/v20200210/ccc_client.js +24 -6
  24. package/tencentcloud/services/ccc/v20200210/ccc_models.d.ts +239 -51
  25. package/tencentcloud/services/cfs/v20190719/cfs_models.d.ts +5 -1
  26. package/tencentcloud/services/cvm/v20170312/cvm_client.d.ts +1 -0
  27. package/tencentcloud/services/cvm/v20170312/cvm_client.js +1 -0
  28. package/tencentcloud/services/ess/v20201111/ess_client.d.ts +112 -0
  29. package/tencentcloud/services/ess/v20201111/ess_client.js +112 -0
  30. package/tencentcloud/services/essbasic/v20210526/essbasic_client.d.ts +5 -1
  31. package/tencentcloud/services/essbasic/v20210526/essbasic_client.js +6 -0
  32. package/tencentcloud/services/essbasic/v20210526/essbasic_models.d.ts +82 -2
  33. package/tencentcloud/services/iai/v20180301/iai_models.d.ts +1 -1
  34. package/tencentcloud/services/iai/v20200303/iai_models.d.ts +1 -1
  35. package/tencentcloud/services/iotexplorer/v20190423/iotexplorer_client.d.ts +5 -1
  36. package/tencentcloud/services/iotexplorer/v20190423/iotexplorer_client.js +6 -0
  37. package/tencentcloud/services/iotexplorer/v20190423/iotexplorer_models.d.ts +89 -25
  38. package/tencentcloud/services/ssl/v20191205/ssl_models.d.ts +6 -1
  39. package/tencentcloud/services/tke/v20180525/tke_models.d.ts +16 -0
  40. package/tencentcloud/services/trtc/v20190722/trtc_client.d.ts +4 -4
  41. package/tencentcloud/services/trtc/v20190722/trtc_client.js +4 -4
  42. package/test/ccc.v20200210.test.js +34 -4
  43. package/test/essbasic.v20210526.test.js +10 -0
  44. package/test/iotexplorer.v20190423.test.js +10 -0
@@ -94,6 +94,118 @@ class Client extends abstract_client_1.AbstractClient {
94
94
  * 创建签署流程电子文档
95
95
  适用场景:见创建签署流程接口。
96
96
  注:该接口需要给对应的流程指定一个模板id,并且填充该模板中需要补充的信息。是“发起流程”接口的前置接口。
97
+
98
+ 【动态表格传参说明】
99
+ 当模板的 ComponentType='DYNAMIC_TABLE'时(渠道版或集成版),FormField.ComponentValue需要传递json格式的字符串参数,用于确定表头&填充动态表格(支持内容的单元格合并)
100
+ 输入示例1:
101
+
102
+ ```
103
+ {
104
+ "headers":[
105
+ {
106
+ "content":"head1"
107
+ },
108
+ {
109
+ "content":"head2"
110
+ },
111
+ {
112
+ "content":"head3"
113
+ }
114
+ ],
115
+ "rowCount":3,
116
+ "body":{
117
+ "cells":[
118
+ {
119
+ "rowStart":1,
120
+ "rowEnd":1,
121
+ "columnStart":1,
122
+ "columnEnd":1,
123
+ "content":"123"
124
+ },
125
+ {
126
+ "rowStart":2,
127
+ "rowEnd":3,
128
+ "columnStart":1,
129
+ "columnEnd":2,
130
+ "content":"456"
131
+ },
132
+ {
133
+ "rowStart":3,
134
+ "rowEnd":3,
135
+ "columnStart":3,
136
+ "columnEnd":3,
137
+ "content":"789"
138
+ }
139
+ ]
140
+ }
141
+ }
142
+
143
+ ```
144
+
145
+ 输入示例2(表格表头宽度比例配置):
146
+
147
+ ```
148
+ {
149
+ "headers":[
150
+ {
151
+ "content":"head1",
152
+ "widthPercent": 30
153
+ },
154
+ {
155
+ "content":"head2",
156
+ "widthPercent": 30
157
+ },
158
+ {
159
+ "content":"head3",
160
+ "widthPercent": 40
161
+ }
162
+ ],
163
+ "rowCount":3,
164
+ "body":{
165
+ "cells":[
166
+ {
167
+ "rowStart":1,
168
+ "rowEnd":1,
169
+ "columnStart":1,
170
+ "columnEnd":1,
171
+ "content":"123"
172
+ },
173
+ {
174
+ "rowStart":2,
175
+ "rowEnd":3,
176
+ "columnStart":1,
177
+ "columnEnd":2,
178
+ "content":"456"
179
+ },
180
+ {
181
+ "rowStart":3,
182
+ "rowEnd":3,
183
+ "columnStart":3,
184
+ "columnEnd":3,
185
+ "content":"789"
186
+ }
187
+ ]
188
+ }
189
+ }
190
+
191
+ ```
192
+ 表格参数说明
193
+
194
+ | 名称 | 类型 | 描述 |
195
+ | ------------------- | ------- | ------------------------------------------------- |
196
+ | headers | Array | 表头:不超过10列,不支持单元格合并,字数不超过100 |
197
+ | rowCount | Integer | 表格内容最大行数 |
198
+ | cells.N.rowStart | Integer | 单元格坐标:行起始index |
199
+ | cells.N.rowEnd | Integer | 单元格坐标:行结束index |
200
+ | cells.N.columnStart | Integer | 单元格坐标:列起始index |
201
+ | cells.N.columnEnd | Integer | 单元格坐标:列结束index |
202
+ | cells.N.content | String | 单元格内容,字数不超过100 |
203
+
204
+ 表格参数headers说明
205
+ | 名称 | 类型 | 描述 |
206
+ | ------------------- | ------- | ------------------------------------------------- |
207
+ | widthPercent | Integer | 表头单元格列占总表头的比例,例如1:30表示 此列占表头的30%,不填写时列宽度平均拆分;例如2:总2列,某一列填写40,剩余列可以为空,按照60计算。;例如3:总3列,某一列填写30,剩余2列可以为空,分别为(100-30)/2=35 |
208
+ | content | String | 表头单元格内容,字数不超过100 |
97
209
  */
98
210
  async CreateDocument(req, cb) {
99
211
  return this.request("CreateDocument", req, cb);
@@ -1,6 +1,6 @@
1
1
  import { AbstractClient } from "../../../common/abstract_client";
2
2
  import { ClientConfig } from "../../../common/interface";
3
- import { SyncProxyOrganizationResponse, ChannelCreateConvertTaskApiResponse, ChannelBatchCancelFlowsResponse, ChannelCreateFlowSignReviewRequest, DescribeFlowDetailInfoRequest, UploadFilesRequest, DescribeResourceUrlsByFlowsRequest, CreateSealByImageResponse, OperateChannelTemplateResponse, CreateConsoleLoginUrlResponse, SyncProxyOrganizationRequest, CreateSealByImageRequest, PrepareFlowsRequest, ChannelCancelFlowResponse, ChannelCreateConvertTaskApiRequest, ChannelCreateFlowByFilesRequest, ChannelCreateFlowGroupByFilesRequest, PrepareFlowsResponse, GetDownloadFlowUrlResponse, DescribeTemplatesResponse, ChannelVerifyPdfRequest, ChannelVerifyPdfResponse, CreateConsoleLoginUrlRequest, ChannelCancelMultiFlowSignQRCodeRequest, ChannelDescribeOrganizationSealsRequest, DescribeUsageRequest, DescribeFlowDetailInfoResponse, DescribeUsageResponse, ChannelDescribeEmployeesRequest, DescribeResourceUrlsByFlowsResponse, SyncProxyOrganizationOperatorsRequest, CreateSignUrlsRequest, ChannelCreateMultiFlowSignQRCodeRequest, ChannelGetTaskResultApiRequest, CreateFlowsByTemplatesResponse, SyncProxyOrganizationOperatorsResponse, CreateSignUrlsResponse, UploadFilesResponse, ChannelCreateBatchCancelFlowUrlRequest, ChannelCreateFlowByFilesResponse, ChannelCreateFlowSignReviewResponse, ChannelDescribeOrganizationSealsResponse, ChannelCancelMultiFlowSignQRCodeResponse, ChannelCreateFlowGroupByFilesResponse, ChannelCreateMultiFlowSignQRCodeResponse, ChannelGetTaskResultApiResponse, GetDownloadFlowUrlRequest, ChannelBatchCancelFlowsRequest, ChannelCancelFlowRequest, DescribeTemplatesRequest, CreateFlowsByTemplatesRequest, ChannelCreateBatchCancelFlowUrlResponse, OperateChannelTemplateRequest, ChannelDescribeEmployeesResponse } from "./essbasic_models";
3
+ import { SyncProxyOrganizationResponse, ChannelCreateConvertTaskApiResponse, ChannelBatchCancelFlowsResponse, ChannelCreateFlowSignReviewRequest, DescribeFlowDetailInfoRequest, UploadFilesRequest, DescribeResourceUrlsByFlowsRequest, CreateSealByImageResponse, OperateChannelTemplateResponse, CreateConsoleLoginUrlResponse, SyncProxyOrganizationRequest, CreateSealByImageRequest, PrepareFlowsRequest, ChannelCancelFlowResponse, ChannelCreateConvertTaskApiRequest, ChannelCreateFlowByFilesRequest, ChannelCreateFlowGroupByFilesRequest, PrepareFlowsResponse, GetDownloadFlowUrlResponse, DescribeTemplatesResponse, ChannelVerifyPdfRequest, ChannelVerifyPdfResponse, CreateConsoleLoginUrlRequest, ChannelCancelMultiFlowSignQRCodeRequest, ChannelDescribeOrganizationSealsRequest, DescribeUsageRequest, DescribeFlowDetailInfoResponse, DescribeUsageResponse, ChannelCreateBoundFlowsRequest, ChannelDescribeEmployeesRequest, DescribeResourceUrlsByFlowsResponse, SyncProxyOrganizationOperatorsRequest, CreateSignUrlsRequest, ChannelCreateMultiFlowSignQRCodeRequest, ChannelGetTaskResultApiRequest, CreateFlowsByTemplatesResponse, SyncProxyOrganizationOperatorsResponse, CreateSignUrlsResponse, UploadFilesResponse, ChannelCreateBatchCancelFlowUrlRequest, ChannelCreateFlowByFilesResponse, ChannelCreateFlowSignReviewResponse, ChannelDescribeOrganizationSealsResponse, ChannelCancelMultiFlowSignQRCodeResponse, ChannelCreateFlowGroupByFilesResponse, ChannelCreateMultiFlowSignQRCodeResponse, ChannelGetTaskResultApiResponse, GetDownloadFlowUrlRequest, ChannelBatchCancelFlowsRequest, ChannelCancelFlowRequest, DescribeTemplatesRequest, CreateFlowsByTemplatesRequest, ChannelCreateBatchCancelFlowUrlResponse, OperateChannelTemplateRequest, ChannelDescribeEmployeesResponse, ChannelCreateBoundFlowsResponse } from "./essbasic_models";
4
4
  /**
5
5
  * essbasic client
6
6
  * @class
@@ -81,6 +81,10 @@ export declare class Client extends AbstractClient {
81
81
  若子客企业、经办人均已完成认证,则会直接进入子客Web控制台。
82
82
  */
83
83
  CreateConsoleLoginUrl(req: CreateConsoleLoginUrlRequest, cb?: (error: string, rep: CreateConsoleLoginUrlResponse) => void): Promise<CreateConsoleLoginUrlResponse>;
84
+ /**
85
+ * 此接口(CreateConsoleLoginUrl)用于渠道子客领取合同,经办人需要有相应的角色,领取后的合同不能重复领取
86
+ */
87
+ ChannelCreateBoundFlows(req: ChannelCreateBoundFlowsRequest, cb?: (error: string, rep: ChannelCreateBoundFlowsResponse) => void): Promise<ChannelCreateBoundFlowsResponse>;
84
88
  /**
85
89
  * 指定需要批量撤销的签署流程Id,获取批量撤销链接
86
90
  客户指定需要撤销的签署流程Id,最多100个,超过100不处理;
@@ -123,6 +123,12 @@ class Client extends abstract_client_1.AbstractClient {
123
123
  async CreateConsoleLoginUrl(req, cb) {
124
124
  return this.request("CreateConsoleLoginUrl", req, cb);
125
125
  }
126
+ /**
127
+ * 此接口(CreateConsoleLoginUrl)用于渠道子客领取合同,经办人需要有相应的角色,领取后的合同不能重复领取
128
+ */
129
+ async ChannelCreateBoundFlows(req, cb) {
130
+ return this.request("ChannelCreateBoundFlows", req, cb);
131
+ }
126
132
  /**
127
133
  * 指定需要批量撤销的签署流程Id,获取批量撤销链接
128
134
  客户指定需要撤销的签署流程Id,最多100个,超过100不处理;
@@ -1093,8 +1093,8 @@ CreateFlowsByTemplates 接口不使用此字段。
1093
1093
  * 此结构体 (FlowInfo) 用于描述签署流程信息。
1094
1094
 
1095
1095
  【动态表格传参说明】
1096
- 当模板的 ComponentType='DYNAMIC_TABLE'时(渠道版),FormField.ComponentValue需要传递json格式的字符串参数,用于确定表头&填充动态表格(支持内容的单元格合并)
1097
- 输入示例
1096
+ 当模板的 ComponentType='DYNAMIC_TABLE'时(渠道版或集成版),FormField.ComponentValue需要传递json格式的字符串参数,用于确定表头&填充动态表格(支持内容的单元格合并)
1097
+ 输入示例1:
1098
1098
 
1099
1099
  ```
1100
1100
  {
@@ -1139,6 +1139,53 @@ CreateFlowsByTemplates 接口不使用此字段。
1139
1139
 
1140
1140
  ```
1141
1141
 
1142
+ 输入示例2(表格表头宽度比例配置):
1143
+
1144
+ ```
1145
+ {
1146
+ "headers":[
1147
+ {
1148
+ "content":"head1",
1149
+ "widthPercent": 30
1150
+ },
1151
+ {
1152
+ "content":"head2",
1153
+ "widthPercent": 30
1154
+ },
1155
+ {
1156
+ "content":"head3",
1157
+ "widthPercent": 40
1158
+ }
1159
+ ],
1160
+ "rowCount":3,
1161
+ "body":{
1162
+ "cells":[
1163
+ {
1164
+ "rowStart":1,
1165
+ "rowEnd":1,
1166
+ "columnStart":1,
1167
+ "columnEnd":1,
1168
+ "content":"123"
1169
+ },
1170
+ {
1171
+ "rowStart":2,
1172
+ "rowEnd":3,
1173
+ "columnStart":1,
1174
+ "columnEnd":2,
1175
+ "content":"456"
1176
+ },
1177
+ {
1178
+ "rowStart":3,
1179
+ "rowEnd":3,
1180
+ "columnStart":3,
1181
+ "columnEnd":3,
1182
+ "content":"789"
1183
+ }
1184
+ ]
1185
+ }
1186
+ }
1187
+
1188
+ ```
1142
1189
  表格参数说明
1143
1190
 
1144
1191
  | 名称 | 类型 | 描述 |
@@ -1151,6 +1198,12 @@ CreateFlowsByTemplates 接口不使用此字段。
1151
1198
  | cells.N.columnEnd | Integer | 单元格坐标:列结束index |
1152
1199
  | cells.N.content | String | 单元格内容,字数不超过100 |
1153
1200
 
1201
+ 表格参数headers说明
1202
+ | 名称 | 类型 | 描述 |
1203
+ | ------------------- | ------- | ------------------------------------------------- |
1204
+ | widthPercent | Integer | 表头单元格列占总表头的比例,例如1:30表示 此列占表头的30%,不填写时列宽度平均拆分;例如2:总2列,某一列填写40,剩余列可以为空,按照60计算。;例如3:总3列,某一列填写30,剩余2列可以为空,分别为(100-30)/2=35 |
1205
+ | content | String | 表头单元格内容,字数不超过100 |
1206
+
1154
1207
  */
1155
1208
  export interface FlowInfo {
1156
1209
  /**
@@ -1329,6 +1382,24 @@ export interface Staff {
1329
1382
  */
1330
1383
  VerifiedOn: number;
1331
1384
  }
1385
+ /**
1386
+ * ChannelCreateBoundFlows请求参数结构体
1387
+ */
1388
+ export interface ChannelCreateBoundFlowsRequest {
1389
+ /**
1390
+ * 应用信息
1391
+ 此接口Agent.AppId、Agent.ProxyOrganizationOpenId 和 Agent. ProxyOperator.OpenId 必填
1392
+ */
1393
+ Agent: Agent;
1394
+ /**
1395
+ * 领取的合同id列表
1396
+ */
1397
+ FlowIds?: Array<string>;
1398
+ /**
1399
+ * 操作者的信息
1400
+ */
1401
+ Operator?: UserInfo;
1402
+ }
1332
1403
  /**
1333
1404
  * ChannelDescribeEmployees请求参数结构体
1334
1405
  */
@@ -2541,6 +2612,15 @@ export interface ChannelDescribeEmployeesResponse {
2541
2612
  */
2542
2613
  RequestId?: string;
2543
2614
  }
2615
+ /**
2616
+ * ChannelCreateBoundFlows返回参数结构体
2617
+ */
2618
+ export interface ChannelCreateBoundFlowsResponse {
2619
+ /**
2620
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2621
+ */
2622
+ RequestId?: string;
2623
+ }
2544
2624
  /**
2545
2625
  * 抄送信息
2546
2626
  */
@@ -1954,7 +1954,7 @@ Url、Image必须提供一个,如果都提供,只使用 Url。
1954
1954
  * 是否返回年龄、性别、情绪等属性。
1955
1955
  合法值为(大小写不敏感):None、Age、Beauty、Emotion、Eye、Eyebrow、
1956
1956
  Gender、Hair、Hat、Headpose、Mask、Mouth、Moustache、Nose、Shape、Skin、Smile。
1957
- None为不需要返回。默认为 None。
1957
+ None为不需要返回。默认为 None。即FaceAttributesType属性为空时,各属性返回值为0
1958
1958
  需要将属性组成一个用逗号分隔的字符串,属性之间的顺序没有要求。
1959
1959
  关于各属性的详细描述,参见下文出参。
1960
1960
  最多返回面积最大的 5 张人脸属性信息,超过 5 张人脸(第 6 张及以后的人脸)的 AttributesInfo 不具备参考意义。
@@ -2104,7 +2104,7 @@ Url、Image必须提供一个,如果都提供,只使用 Url。
2104
2104
  * 是否返回年龄、性别、情绪等属性。
2105
2105
  合法值为(大小写不敏感):None、Age、Beauty、Emotion、Eye、Eyebrow、
2106
2106
  Gender、Hair、Hat、Headpose、Mask、Mouth、Moustache、Nose、Shape、Skin、Smile。
2107
- None为不需要返回。默认为 None。
2107
+ None为不需要返回。默认为 None。即FaceAttributesType属性为空时,各属性返回值为0
2108
2108
  需要将属性组成一个用逗号分隔的字符串,属性之间的顺序没有要求。
2109
2109
  关于各属性的详细描述,参见下文出参。
2110
2110
  最多返回面积最大的 5 张人脸属性信息,超过 5 张人脸(第 6 张及以后的人脸)的 AttributesInfo 不具备参考意义。
@@ -1,6 +1,6 @@
1
1
  import { AbstractClient } from "../../../common/abstract_client";
2
2
  import { ClientConfig } from "../../../common/interface";
3
- import { UpdateDevicesEnableStateResponse, DeleteProjectRequest, DeleteFenceBindRequest, DescribeModelDefinitionResponse, UnbindDevicesRequest, DeleteDevicesResponse, ModifyStudioProductResponse, GetGatewaySubDeviceListResponse, DeleteStudioProductResponse, BindDevicesRequest, DescribeGatewaySubProductsResponse, GetDeviceListResponse, DeleteLoRaFrequencyResponse, DescribeTopicPolicyRequest, ModifyPositionFenceRequest, DeleteTopicRuleResponse, ModifyModelDefinitionRequest, CreateStudioProductResponse, CallDeviceActionSyncRequest, DescribeDevicePositionListRequest, GetDeviceLocationHistoryResponse, UpdateFirmwareResponse, ModifyPositionFenceResponse, ModifyStudioProductRequest, ModifyPositionSpaceResponse, CreateStudioProductRequest, ModifyFenceBindResponse, CreateBatchProductionRequest, DeletePositionFenceResponse, UploadFirmwareRequest, ListEventHistoryRequest, SearchTopicRuleRequest, DescribeDeviceDataRequest, PublishRRPCMessageRequest, ListTopicPolicyResponse, SearchPositionSpaceResponse, DescribePositionFenceListResponse, GenSingleDeviceSignatureOfPublicResponse, DescribeDevicePositionListResponse, GetProjectListResponse, CreateProjectRequest, DescribeProjectResponse, UnbindProductsRequest, SearchStudioProductResponse, GetTopicRuleListRequest, GetFamilyDeviceUserListResponse, DescribeBatchProductionResponse, ListTopicPolicyRequest, DescribeLoRaFrequencyRequest, DeleteDeviceRequest, DeleteLoRaFrequencyRequest, ControlDeviceDataRequest, ListFirmwaresResponse, ReleaseStudioProductResponse, DescribeSpaceFenceEventListResponse, DeleteLoRaGatewayRequest, UnbindProductsResponse, DescribeTopicPolicyResponse, SearchPositionSpaceRequest, ModifyTopicPolicyResponse, GetPositionSpaceListRequest, SearchTopicRuleResponse, DescribeFenceEventListResponse, UpdateDevicesEnableStateRequest, DescribeTopicRuleRequest, GetDeviceLocationHistoryRequest, CallDeviceActionSyncResponse, CreateLoRaGatewayRequest, ReleaseStudioProductRequest, CreateProjectResponse, DescribeDeviceDataHistoryResponse, DeleteProjectResponse, CreateTopicPolicyResponse, CreateDeviceResponse, CreateDeviceRequest, DeletePositionSpaceRequest, GetStudioProductListRequest, DescribeFirmwareTaskResponse, DisableTopicRuleResponse, GetCOSURLRequest, DescribeStudioProductResponse, CreateFenceBindRequest, DescribeDeviceResponse, PublishBroadcastMessageRequest, ListFirmwaresRequest, GetStudioProductListResponse, PublishMessageRequest, ModifyTopicRuleRequest, GetDeviceListRequest, ModifySpacePropertyRequest, GetPositionSpaceListResponse, GetCOSURLResponse, ModifyFenceBindRequest, GetTopicRuleListResponse, DescribeFenceEventListRequest, ModifyPositionSpaceRequest, GetLoRaGatewayListResponse, ModifyLoRaGatewayResponse, DirectBindDeviceInFamilyResponse, CallDeviceActionAsyncRequest, CallDeviceActionAsyncResponse, DeleteFenceBindResponse, DeleteTopicPolicyRequest, CreateFenceBindResponse, DescribeTopicRuleResponse, CreatePositionFenceResponse, PublishBroadcastMessageResponse, DescribeFenceBindListRequest, DescribeBindedProductsResponse, DescribeDeviceRequest, DescribePositionFenceListRequest, ModifyTopicRuleResponse, DescribeBatchProductionRequest, CreateTopicPolicyRequest, DirectBindDeviceInFamilyRequest, GetFamilyDeviceUserListRequest, DescribeBindedProductsRequest, DescribeLoRaFrequencyResponse, DescribeGatewaySubDeviceListResponse, DescribeSpaceFenceEventListRequest, GetLoRaGatewayListRequest, DescribeProjectRequest, UnbindDevicesResponse, ModifyLoRaFrequencyRequest, UploadFirmwareResponse, ModifyTopicPolicyRequest, DeleteTopicRuleRequest, CreateLoRaGatewayResponse, DeleteTopicPolicyResponse, DeleteLoRaGatewayResponse, CreateLoRaFrequencyRequest, DescribeDeviceBindGatewayResponse, DescribeGatewaySubDeviceListRequest, ControlDeviceDataResponse, DescribeDeviceDataHistoryRequest, UpdateFirmwareRequest, DescribeStudioProductRequest, CreatePositionSpaceResponse, CreateBatchProductionResponse, ModifyModelDefinitionResponse, DeletePositionFenceRequest, GetProjectListRequest, DeletePositionSpaceResponse, DescribeDeviceBindGatewayRequest, CreateLoRaFrequencyResponse, EnableTopicRuleResponse, GetGatewaySubDeviceListRequest, SearchStudioProductRequest, GenSingleDeviceSignatureOfPublicRequest, DeleteDevicesRequest, BindProductsResponse, ModifyProjectResponse, DescribeGatewayBindDevicesRequest, DescribeGatewaySubProductsRequest, DeleteStudioProductRequest, BindProductsRequest, ModifyProjectRequest, ModifySpacePropertyResponse, PublishMessageResponse, BindDevicesResponse, DescribeFenceBindListResponse, CreatePositionFenceRequest, DescribeModelDefinitionRequest, EnableTopicRuleRequest, DisableTopicRuleRequest, CreateTopicRuleResponse, DescribeDeviceDataResponse, CreateTopicRuleRequest, PublishRRPCMessageResponse, GetBatchProductionsListRequest, DeleteDeviceResponse, ModifyLoRaFrequencyResponse, ModifyLoRaGatewayRequest, ListEventHistoryResponse, GetBatchProductionsListResponse, DescribeGatewayBindDevicesResponse, DescribeFirmwareTaskRequest, CreatePositionSpaceRequest } from "./iotexplorer_models";
3
+ import { UpdateDevicesEnableStateResponse, DescribeDeviceLocationSolveRequest, DeleteProjectRequest, DeleteFenceBindRequest, DescribeModelDefinitionResponse, UnbindDevicesRequest, DeleteDevicesResponse, ModifyStudioProductResponse, GetGatewaySubDeviceListResponse, DeleteStudioProductResponse, BindDevicesRequest, DescribeGatewaySubProductsResponse, GetDeviceListResponse, DeleteLoRaFrequencyResponse, DescribeTopicPolicyRequest, ModifyPositionFenceRequest, DeleteTopicRuleResponse, ModifyModelDefinitionRequest, CreateStudioProductResponse, CallDeviceActionSyncRequest, DescribeDevicePositionListRequest, GetDeviceLocationHistoryResponse, UpdateFirmwareResponse, ModifyPositionFenceResponse, ModifyStudioProductRequest, ModifyPositionSpaceResponse, CreateStudioProductRequest, ModifyFenceBindResponse, CreateBatchProductionRequest, DeletePositionFenceResponse, UploadFirmwareRequest, ListEventHistoryRequest, SearchTopicRuleRequest, DescribeDeviceDataRequest, PublishRRPCMessageRequest, ListTopicPolicyResponse, SearchPositionSpaceResponse, DescribePositionFenceListResponse, GenSingleDeviceSignatureOfPublicResponse, DescribeDevicePositionListResponse, GetProjectListResponse, CreateProjectRequest, DescribeProjectResponse, UnbindProductsRequest, SearchStudioProductResponse, GetTopicRuleListRequest, GetFamilyDeviceUserListResponse, DescribeBatchProductionResponse, ListTopicPolicyRequest, DeleteDeviceRequest, DeleteLoRaFrequencyRequest, ControlDeviceDataRequest, ListFirmwaresResponse, ReleaseStudioProductResponse, DescribeSpaceFenceEventListResponse, DeleteLoRaGatewayRequest, UnbindProductsResponse, DescribeTopicPolicyResponse, SearchPositionSpaceRequest, ModifyTopicPolicyResponse, GetPositionSpaceListRequest, SearchTopicRuleResponse, DescribeFenceEventListResponse, UpdateDevicesEnableStateRequest, DescribeTopicRuleRequest, GetDeviceLocationHistoryRequest, CallDeviceActionSyncResponse, CreateLoRaGatewayRequest, ReleaseStudioProductRequest, CreateProjectResponse, DescribeDeviceDataHistoryResponse, DeleteProjectResponse, CreateTopicPolicyResponse, CreateDeviceResponse, CreateDeviceRequest, DeletePositionSpaceRequest, GetStudioProductListRequest, DescribeFirmwareTaskResponse, DisableTopicRuleResponse, DescribeDeviceLocationSolveResponse, DescribeStudioProductResponse, CreateFenceBindRequest, DescribeDeviceResponse, PublishBroadcastMessageRequest, ListFirmwaresRequest, GetStudioProductListResponse, PublishMessageRequest, ModifyTopicRuleRequest, GetDeviceListRequest, ModifySpacePropertyRequest, GetPositionSpaceListResponse, GetCOSURLResponse, ModifyFenceBindRequest, GetTopicRuleListResponse, DescribeFenceEventListRequest, ModifyPositionSpaceRequest, GetLoRaGatewayListResponse, ModifyLoRaGatewayResponse, DirectBindDeviceInFamilyResponse, CallDeviceActionAsyncRequest, CallDeviceActionAsyncResponse, DeleteFenceBindResponse, DeleteTopicPolicyRequest, CreateFenceBindResponse, DescribeTopicRuleResponse, CreatePositionFenceResponse, PublishBroadcastMessageResponse, DescribeFenceBindListRequest, DescribeBindedProductsResponse, DescribeDeviceRequest, DescribePositionFenceListRequest, ModifyTopicRuleResponse, DescribeBatchProductionRequest, CreateTopicPolicyRequest, DirectBindDeviceInFamilyRequest, GetFamilyDeviceUserListRequest, DescribeBindedProductsRequest, DescribeLoRaFrequencyResponse, DescribeGatewaySubDeviceListResponse, DescribeSpaceFenceEventListRequest, GetLoRaGatewayListRequest, DescribeProjectRequest, UnbindDevicesResponse, ModifyLoRaFrequencyRequest, UploadFirmwareResponse, ModifyTopicPolicyRequest, DeleteTopicRuleRequest, CreateLoRaGatewayResponse, DeleteTopicPolicyResponse, DeleteLoRaGatewayResponse, CreateLoRaFrequencyRequest, DescribeDeviceBindGatewayResponse, DescribeGatewaySubDeviceListRequest, ControlDeviceDataResponse, DescribeDeviceDataHistoryRequest, UpdateFirmwareRequest, DescribeStudioProductRequest, CreatePositionSpaceResponse, CreateBatchProductionResponse, ModifyModelDefinitionResponse, DeletePositionFenceRequest, GetProjectListRequest, DeletePositionSpaceResponse, DescribeDeviceBindGatewayRequest, CreateLoRaFrequencyResponse, EnableTopicRuleResponse, GetGatewaySubDeviceListRequest, SearchStudioProductRequest, GenSingleDeviceSignatureOfPublicRequest, DeleteDevicesRequest, BindProductsResponse, ModifyProjectResponse, GetCOSURLRequest, DescribeLoRaFrequencyRequest, DescribeGatewayBindDevicesRequest, DescribeGatewaySubProductsRequest, DeleteStudioProductRequest, BindProductsRequest, ModifyProjectRequest, ModifySpacePropertyResponse, PublishMessageResponse, BindDevicesResponse, DescribeFenceBindListResponse, CreatePositionFenceRequest, DescribeModelDefinitionRequest, EnableTopicRuleRequest, DisableTopicRuleRequest, CreateTopicRuleResponse, DescribeDeviceDataResponse, CreateTopicRuleRequest, PublishRRPCMessageResponse, GetBatchProductionsListRequest, DeleteDeviceResponse, ModifyLoRaFrequencyResponse, ModifyLoRaGatewayRequest, ListEventHistoryResponse, GetBatchProductionsListResponse, DescribeGatewayBindDevicesResponse, DescribeFirmwareTaskRequest, CreatePositionSpaceRequest } from "./iotexplorer_models";
4
4
  /**
5
5
  * iotexplorer client
6
6
  * @class
@@ -35,6 +35,10 @@ export declare class Client extends AbstractClient {
35
35
  * 直接绑定设备和家庭
36
36
  */
37
37
  DirectBindDeviceInFamily(req: DirectBindDeviceInFamilyRequest, cb?: (error: string, rep: DirectBindDeviceInFamilyResponse) => void): Promise<DirectBindDeviceInFamilyResponse>;
38
+ /**
39
+ * 获取实时位置解析
40
+ */
41
+ DescribeDeviceLocationSolve(req: DescribeDeviceLocationSolveRequest, cb?: (error: string, rep: DescribeDeviceLocationSolveResponse) => void): Promise<DescribeDeviceLocationSolveResponse>;
38
42
  /**
39
43
  * 查询设备绑定的网关设备
40
44
  */
@@ -69,6 +69,12 @@ class Client extends abstract_client_1.AbstractClient {
69
69
  async DirectBindDeviceInFamily(req, cb) {
70
70
  return this.request("DirectBindDeviceInFamily", req, cb);
71
71
  }
72
+ /**
73
+ * 获取实时位置解析
74
+ */
75
+ async DescribeDeviceLocationSolve(req, cb) {
76
+ return this.request("DescribeDeviceLocationSolve", req, cb);
77
+ }
72
78
  /**
73
79
  * 查询设备绑定的网关设备
74
80
  */
@@ -17,6 +17,31 @@ export interface UpdateDevicesEnableStateResponse {
17
17
  */
18
18
  RequestId?: string;
19
19
  }
20
+ /**
21
+ * DescribeDeviceLocationSolve请求参数结构体
22
+ */
23
+ export interface DescribeDeviceLocationSolveRequest {
24
+ /**
25
+ * 产品ID
26
+ */
27
+ ProductId: string;
28
+ /**
29
+ * 设备名称
30
+ */
31
+ DeviceName: string;
32
+ /**
33
+ * 定位解析类型,wifi或GNSSNavigation
34
+ */
35
+ LocationType: string;
36
+ /**
37
+ * LoRaEdge卫星导航电文
38
+ */
39
+ GNSSNavigation?: string;
40
+ /**
41
+ * wifi信息
42
+ */
43
+ WiFiInfo?: Array<WifiInfo>;
44
+ }
20
45
  /**
21
46
  * DeleteProject请求参数结构体
22
47
  */
@@ -1025,6 +1050,19 @@ export interface DeviceData {
1025
1050
  */
1026
1051
  DevicePsk: string;
1027
1052
  }
1053
+ /**
1054
+ * wifi定位信息
1055
+ */
1056
+ export interface WifiInfo {
1057
+ /**
1058
+ * mac地址
1059
+ */
1060
+ MAC: string;
1061
+ /**
1062
+ * 信号强度
1063
+ */
1064
+ RSSI: number;
1065
+ }
1028
1066
  /**
1029
1067
  * GetTopicRuleList请求参数结构体
1030
1068
  */
@@ -1194,13 +1232,29 @@ export interface ListTopicPolicyRequest {
1194
1232
  ProductId: string;
1195
1233
  }
1196
1234
  /**
1197
- * DescribeLoRaFrequency请求参数结构体
1235
+ * 获取返回列表的详情。
1198
1236
  */
1199
- export interface DescribeLoRaFrequencyRequest {
1237
+ export interface BatchProductionInfo {
1200
1238
  /**
1201
- * 频点唯一ID
1239
+ * 量产ID
1202
1240
  */
1203
- FreqId?: string;
1241
+ BatchProductionId: string;
1242
+ /**
1243
+ * 产品ID
1244
+ */
1245
+ ProductId: string;
1246
+ /**
1247
+ * 烧录方式
1248
+ */
1249
+ BurnMethod: number;
1250
+ /**
1251
+ * 创建时间
1252
+ */
1253
+ CreateTime: number;
1254
+ /**
1255
+ * 产品名称
1256
+ */
1257
+ ProductName: string;
1204
1258
  }
1205
1259
  /**
1206
1260
  * DeleteDevice请求参数结构体
@@ -1878,21 +1932,30 @@ export interface TopicRuleInfo {
1878
1932
  RuleDisabled: boolean;
1879
1933
  }
1880
1934
  /**
1881
- * GetCOSURL请求参数结构体
1935
+ * DescribeDeviceLocationSolve返回参数结构体
1882
1936
  */
1883
- export interface GetCOSURLRequest {
1937
+ export interface DescribeDeviceLocationSolveResponse {
1884
1938
  /**
1885
- * 产品ID
1939
+ * 经度
1886
1940
  */
1887
- ProductID: string;
1941
+ Longitude: number;
1888
1942
  /**
1889
- * 固件版本
1943
+ * 维度
1890
1944
  */
1891
- FirmwareVersion: string;
1945
+ Latitude: number;
1892
1946
  /**
1893
- * 文件大小
1947
+ * 类型
1894
1948
  */
1895
- FileSize?: number;
1949
+ LocationType: string;
1950
+ /**
1951
+ * 误差精度预估,单位为米
1952
+ 注意:此字段可能返回 null,表示取不到有效值。
1953
+ */
1954
+ Accuracy: number;
1955
+ /**
1956
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1957
+ */
1958
+ RequestId?: string;
1896
1959
  }
1897
1960
  /**
1898
1961
  * DescribeStudioProduct返回参数结构体
@@ -3564,29 +3627,30 @@ export interface ModifyProjectResponse {
3564
3627
  RequestId?: string;
3565
3628
  }
3566
3629
  /**
3567
- * 获取返回列表的详情。
3630
+ * GetCOSURL请求参数结构体
3568
3631
  */
3569
- export interface BatchProductionInfo {
3570
- /**
3571
- * 量产ID
3572
- */
3573
- BatchProductionId: string;
3632
+ export interface GetCOSURLRequest {
3574
3633
  /**
3575
3634
  * 产品ID
3576
3635
  */
3577
- ProductId: string;
3636
+ ProductID: string;
3578
3637
  /**
3579
- * 烧录方式
3638
+ * 固件版本
3580
3639
  */
3581
- BurnMethod: number;
3640
+ FirmwareVersion: string;
3582
3641
  /**
3583
- * 创建时间
3642
+ * 文件大小
3584
3643
  */
3585
- CreateTime: number;
3644
+ FileSize?: number;
3645
+ }
3646
+ /**
3647
+ * DescribeLoRaFrequency请求参数结构体
3648
+ */
3649
+ export interface DescribeLoRaFrequencyRequest {
3586
3650
  /**
3587
- * 产品名称
3651
+ * 频点唯一ID
3588
3652
  */
3589
- ProductName: string;
3653
+ FreqId?: string;
3590
3654
  }
3591
3655
  /**
3592
3656
  * DescribeGatewayBindDevices请求参数结构体
@@ -1087,10 +1087,15 @@ export interface DeployedResources {
1087
1087
  */
1088
1088
  Type: string;
1089
1089
  /**
1090
- * 关联资源ID或关联域名
1090
+ * 不建议使用。字段返回和Resources相同。本字段后续只返回null
1091
1091
  注意:此字段可能返回 null,表示取不到有效值。
1092
1092
  */
1093
1093
  ResourceIds: Array<string>;
1094
+ /**
1095
+ * 关联资源ID或关联域名。
1096
+ 注意:此字段可能返回 null,表示取不到有效值。
1097
+ */
1098
+ Resources: Array<string>;
1094
1099
  }
1095
1100
  /**
1096
1101
  * DescribeCertificateDetail返回参数结构体
@@ -8973,6 +8973,18 @@ export interface ModifyClusterNodePoolRequest {
8973
8973
  * 镜像版本,"DOCKER_CUSTOMIZE"(容器定制版),"GENERAL"(普通版本,默认值)
8974
8974
  */
8975
8975
  OsCustomizeType?: string;
8976
+ /**
8977
+ * GPU驱动版本,CUDA版本,cuDNN版本以及是否启用MIG特性
8978
+ */
8979
+ GPUArgs?: GPUArgs;
8980
+ /**
8981
+ * base64编码后的自定义脚本
8982
+ */
8983
+ UserScript?: string;
8984
+ /**
8985
+ * 更新label和taint时忽略存量节点
8986
+ */
8987
+ IgnoreExistedNode?: boolean;
8976
8988
  /**
8977
8989
  * 节点自定义参数
8978
8990
  */
@@ -8989,6 +9001,10 @@ export interface ModifyClusterNodePoolRequest {
8989
9001
  * 删除保护开关
8990
9002
  */
8991
9003
  DeletionProtection?: boolean;
9004
+ /**
9005
+ * dockerd --graph 指定值, 默认为 /var/lib/docker
9006
+ */
9007
+ DockerGraphPath?: string;
8992
9008
  }
8993
9009
  /**
8994
9010
  * InstallLogAgent返回参数结构体
@@ -32,7 +32,7 @@ videoFreezeRate:视频卡顿率。
32
32
  networkDelay :网络延迟率。
33
33
  注意:
34
34
  1.调用接口需开通监控仪表盘【基础版】和【进阶版】,监控仪表盘【免费版】不支持调用,监控仪表盘版本功能和计费说明:https://cloud.tencent.com/document/product/647/81331。
35
- 2、查询时间范围根据监控仪表盘功能版本而定,【基础版】可查近30天,【进阶版】可查近60天。
35
+ 2.查询时间范围根据监控仪表盘功能版本而定,【基础版】可查近30天,【进阶版】可查近60天。
36
36
  */
37
37
  DescribeTRTCMarketQualityMetricData(req: DescribeTRTCMarketQualityMetricDataRequest, cb?: (error: string, rep: DescribeTRTCMarketQualityMetricDataResponse) => void): Promise<DescribeTRTCMarketQualityMetricDataResponse>;
38
38
  /**
@@ -54,7 +54,7 @@ peakCurrentChannels:峰值同时在线频道数。
54
54
  peakCurrentUsers:峰值同时在线人数。
55
55
  注意:
56
56
  1.调用接口需开通监控仪表盘【基础版】和【进阶版】,监控仪表盘【免费版】不支持调用,监控仪表盘版本功能和计费说明:https://cloud.tencent.com/document/product/647/81331。
57
- 2、查询时间范围根据监控仪表盘功能版本而定,【基础版】可查近30天,【进阶版】可查近60天。
57
+ 2.查询时间范围根据监控仪表盘功能版本而定,【基础版】可查近30天,【进阶版】可查近60天。
58
58
  */
59
59
  DescribeTRTCMarketScaleMetricData(req: DescribeTRTCMarketScaleMetricDataRequest, cb?: (error: string, rep: DescribeTRTCMarketScaleMetricDataResponse) => void): Promise<DescribeTRTCMarketScaleMetricDataResponse>;
60
60
  /**
@@ -91,7 +91,7 @@ TRTC 的一个房间中可能会同时存在多路音视频流,您可以通过
91
91
  -音频卡顿率
92
92
  注意:
93
93
  1.调用接口需开通监控仪表盘【基础版】和【进阶版】,监控仪表盘【免费版】不支持调用,监控仪表盘版本功能和计费说明:https://cloud.tencent.com/document/product/647/81331。
94
- 2、查询时间范围根据监控仪表盘功能版本而定,基础版可查近3小时,进阶版可查近12小时。
94
+ 2.查询时间范围根据监控仪表盘功能版本而定,基础版可查近3小时,进阶版可查近12小时。
95
95
  */
96
96
  DescribeTRTCRealTimeQualityMetricData(req: DescribeTRTCRealTimeQualityMetricDataRequest, cb?: (error: string, rep: DescribeTRTCRealTimeQualityMetricDataResponse) => void): Promise<DescribeTRTCRealTimeQualityMetricDataResponse>;
97
97
  /**
@@ -253,7 +253,7 @@ TRTC 的一个房间中可能会同时存在多路音视频流,您可以通过
253
253
  -roomCount(在线房间数)
254
254
  注意:
255
255
  1.调用接口需开通监控仪表盘【基础版】和【进阶版】,监控仪表盘【免费版】不支持调用,监控仪表盘版本功能和计费说明:https://cloud.tencent.com/document/product/647/81331。
256
- 2、查询时间范围根据监控仪表盘功能版本而定,基础版可查近3小时,进阶版可查近12小时。
256
+ 2.查询时间范围根据监控仪表盘功能版本而定,基础版可查近3小时,进阶版可查近12小时。
257
257
  */
258
258
  DescribeTRTCRealTimeScaleMetricData(req: DescribeTRTCRealTimeScaleMetricDataRequest, cb?: (error: string, rep: DescribeTRTCRealTimeScaleMetricDataResponse) => void): Promise<DescribeTRTCRealTimeScaleMetricDataResponse>;
259
259
  }
@@ -56,7 +56,7 @@ videoFreezeRate:视频卡顿率。
56
56
  networkDelay :网络延迟率。
57
57
  注意:
58
58
  1.调用接口需开通监控仪表盘【基础版】和【进阶版】,监控仪表盘【免费版】不支持调用,监控仪表盘版本功能和计费说明:https://cloud.tencent.com/document/product/647/81331。
59
- 2、查询时间范围根据监控仪表盘功能版本而定,【基础版】可查近30天,【进阶版】可查近60天。
59
+ 2.查询时间范围根据监控仪表盘功能版本而定,【基础版】可查近30天,【进阶版】可查近60天。
60
60
  */
61
61
  async DescribeTRTCMarketQualityMetricData(req, cb) {
62
62
  return this.request("DescribeTRTCMarketQualityMetricData", req, cb);
@@ -84,7 +84,7 @@ peakCurrentChannels:峰值同时在线频道数。
84
84
  peakCurrentUsers:峰值同时在线人数。
85
85
  注意:
86
86
  1.调用接口需开通监控仪表盘【基础版】和【进阶版】,监控仪表盘【免费版】不支持调用,监控仪表盘版本功能和计费说明:https://cloud.tencent.com/document/product/647/81331。
87
- 2、查询时间范围根据监控仪表盘功能版本而定,【基础版】可查近30天,【进阶版】可查近60天。
87
+ 2.查询时间范围根据监控仪表盘功能版本而定,【基础版】可查近30天,【进阶版】可查近60天。
88
88
  */
89
89
  async DescribeTRTCMarketScaleMetricData(req, cb) {
90
90
  return this.request("DescribeTRTCMarketScaleMetricData", req, cb);
@@ -127,7 +127,7 @@ TRTC 的一个房间中可能会同时存在多路音视频流,您可以通过
127
127
  -音频卡顿率
128
128
  注意:
129
129
  1.调用接口需开通监控仪表盘【基础版】和【进阶版】,监控仪表盘【免费版】不支持调用,监控仪表盘版本功能和计费说明:https://cloud.tencent.com/document/product/647/81331。
130
- 2、查询时间范围根据监控仪表盘功能版本而定,基础版可查近3小时,进阶版可查近12小时。
130
+ 2.查询时间范围根据监控仪表盘功能版本而定,基础版可查近3小时,进阶版可查近12小时。
131
131
  */
132
132
  async DescribeTRTCRealTimeQualityMetricData(req, cb) {
133
133
  return this.request("DescribeTRTCRealTimeQualityMetricData", req, cb);
@@ -337,7 +337,7 @@ TRTC 的一个房间中可能会同时存在多路音视频流,您可以通过
337
337
  -roomCount(在线房间数)
338
338
  注意:
339
339
  1.调用接口需开通监控仪表盘【基础版】和【进阶版】,监控仪表盘【免费版】不支持调用,监控仪表盘版本功能和计费说明:https://cloud.tencent.com/document/product/647/81331。
340
- 2、查询时间范围根据监控仪表盘功能版本而定,基础版可查近3小时,进阶版可查近12小时。
340
+ 2.查询时间范围根据监控仪表盘功能版本而定,基础版可查近3小时,进阶版可查近12小时。
341
341
  */
342
342
  async DescribeTRTCRealTimeScaleMetricData(req, cb) {
343
343
  return this.request("DescribeTRTCRealTimeScaleMetricData", req, cb);