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
@@ -214,6 +214,118 @@ export class Client extends AbstractClient {
214
214
  * 创建签署流程电子文档
215
215
  适用场景:见创建签署流程接口。
216
216
  注:该接口需要给对应的流程指定一个模板id,并且填充该模板中需要补充的信息。是“发起流程”接口的前置接口。
217
+
218
+ 【动态表格传参说明】
219
+ 当模板的 ComponentType='DYNAMIC_TABLE'时(渠道版或集成版),FormField.ComponentValue需要传递json格式的字符串参数,用于确定表头&填充动态表格(支持内容的单元格合并)
220
+ 输入示例1:
221
+
222
+ ```
223
+ {
224
+ "headers":[
225
+ {
226
+ "content":"head1"
227
+ },
228
+ {
229
+ "content":"head2"
230
+ },
231
+ {
232
+ "content":"head3"
233
+ }
234
+ ],
235
+ "rowCount":3,
236
+ "body":{
237
+ "cells":[
238
+ {
239
+ "rowStart":1,
240
+ "rowEnd":1,
241
+ "columnStart":1,
242
+ "columnEnd":1,
243
+ "content":"123"
244
+ },
245
+ {
246
+ "rowStart":2,
247
+ "rowEnd":3,
248
+ "columnStart":1,
249
+ "columnEnd":2,
250
+ "content":"456"
251
+ },
252
+ {
253
+ "rowStart":3,
254
+ "rowEnd":3,
255
+ "columnStart":3,
256
+ "columnEnd":3,
257
+ "content":"789"
258
+ }
259
+ ]
260
+ }
261
+ }
262
+
263
+ ```
264
+
265
+ 输入示例2(表格表头宽度比例配置):
266
+
267
+ ```
268
+ {
269
+ "headers":[
270
+ {
271
+ "content":"head1",
272
+ "widthPercent": 30
273
+ },
274
+ {
275
+ "content":"head2",
276
+ "widthPercent": 30
277
+ },
278
+ {
279
+ "content":"head3",
280
+ "widthPercent": 40
281
+ }
282
+ ],
283
+ "rowCount":3,
284
+ "body":{
285
+ "cells":[
286
+ {
287
+ "rowStart":1,
288
+ "rowEnd":1,
289
+ "columnStart":1,
290
+ "columnEnd":1,
291
+ "content":"123"
292
+ },
293
+ {
294
+ "rowStart":2,
295
+ "rowEnd":3,
296
+ "columnStart":1,
297
+ "columnEnd":2,
298
+ "content":"456"
299
+ },
300
+ {
301
+ "rowStart":3,
302
+ "rowEnd":3,
303
+ "columnStart":3,
304
+ "columnEnd":3,
305
+ "content":"789"
306
+ }
307
+ ]
308
+ }
309
+ }
310
+
311
+ ```
312
+ 表格参数说明
313
+
314
+ | 名称 | 类型 | 描述 |
315
+ | ------------------- | ------- | ------------------------------------------------- |
316
+ | headers | Array | 表头:不超过10列,不支持单元格合并,字数不超过100 |
317
+ | rowCount | Integer | 表格内容最大行数 |
318
+ | cells.N.rowStart | Integer | 单元格坐标:行起始index |
319
+ | cells.N.rowEnd | Integer | 单元格坐标:行结束index |
320
+ | cells.N.columnStart | Integer | 单元格坐标:列起始index |
321
+ | cells.N.columnEnd | Integer | 单元格坐标:列结束index |
322
+ | cells.N.content | String | 单元格内容,字数不超过100 |
323
+
324
+ 表格参数headers说明
325
+ | 名称 | 类型 | 描述 |
326
+ | ------------------- | ------- | ------------------------------------------------- |
327
+ | widthPercent | Integer | 表头单元格列占总表头的比例,例如1:30表示 此列占表头的30%,不填写时列宽度平均拆分;例如2:总2列,某一列填写40,剩余列可以为空,按照60计算。;例如3:总3列,某一列填写30,剩余2列可以为空,分别为(100-30)/2=35 |
328
+ | content | String | 表头单元格内容,字数不超过100 |
217
329
  */
218
330
  async CreateDocument(
219
331
  req: CreateDocumentRequest,
@@ -63,6 +63,7 @@ import {
63
63
  DescribeFlowDetailInfoResponse,
64
64
  DescribeUsageResponse,
65
65
  Staff,
66
+ ChannelCreateBoundFlowsRequest,
66
67
  ChannelDescribeEmployeesRequest,
67
68
  AuthorizedUser,
68
69
  DescribeResourceUrlsByFlowsResponse,
@@ -105,6 +106,7 @@ import {
105
106
  OperateChannelTemplateRequest,
106
107
  SyncFailReason,
107
108
  ChannelDescribeEmployeesResponse,
109
+ ChannelCreateBoundFlowsResponse,
108
110
  CcInfo,
109
111
  } from "./essbasic_models"
110
112
 
@@ -257,6 +259,16 @@ export class Client extends AbstractClient {
257
259
  return this.request("CreateConsoleLoginUrl", req, cb)
258
260
  }
259
261
 
262
+ /**
263
+ * 此接口(CreateConsoleLoginUrl)用于渠道子客领取合同,经办人需要有相应的角色,领取后的合同不能重复领取
264
+ */
265
+ async ChannelCreateBoundFlows(
266
+ req: ChannelCreateBoundFlowsRequest,
267
+ cb?: (error: string, rep: ChannelCreateBoundFlowsResponse) => void
268
+ ): Promise<ChannelCreateBoundFlowsResponse> {
269
+ return this.request("ChannelCreateBoundFlows", req, cb)
270
+ }
271
+
260
272
  /**
261
273
  * 指定需要批量撤销的签署流程Id,获取批量撤销链接
262
274
  客户指定需要撤销的签署流程Id,最多100个,超过100不处理;
@@ -1315,8 +1315,8 @@ CreateFlowsByTemplates 接口不使用此字段。
1315
1315
  * 此结构体 (FlowInfo) 用于描述签署流程信息。
1316
1316
 
1317
1317
  【动态表格传参说明】
1318
- 当模板的 ComponentType='DYNAMIC_TABLE'时(渠道版),FormField.ComponentValue需要传递json格式的字符串参数,用于确定表头&填充动态表格(支持内容的单元格合并)
1319
- 输入示例
1318
+ 当模板的 ComponentType='DYNAMIC_TABLE'时(渠道版或集成版),FormField.ComponentValue需要传递json格式的字符串参数,用于确定表头&填充动态表格(支持内容的单元格合并)
1319
+ 输入示例1:
1320
1320
 
1321
1321
  ```
1322
1322
  {
@@ -1361,6 +1361,53 @@ CreateFlowsByTemplates 接口不使用此字段。
1361
1361
 
1362
1362
  ```
1363
1363
 
1364
+ 输入示例2(表格表头宽度比例配置):
1365
+
1366
+ ```
1367
+ {
1368
+ "headers":[
1369
+ {
1370
+ "content":"head1",
1371
+ "widthPercent": 30
1372
+ },
1373
+ {
1374
+ "content":"head2",
1375
+ "widthPercent": 30
1376
+ },
1377
+ {
1378
+ "content":"head3",
1379
+ "widthPercent": 40
1380
+ }
1381
+ ],
1382
+ "rowCount":3,
1383
+ "body":{
1384
+ "cells":[
1385
+ {
1386
+ "rowStart":1,
1387
+ "rowEnd":1,
1388
+ "columnStart":1,
1389
+ "columnEnd":1,
1390
+ "content":"123"
1391
+ },
1392
+ {
1393
+ "rowStart":2,
1394
+ "rowEnd":3,
1395
+ "columnStart":1,
1396
+ "columnEnd":2,
1397
+ "content":"456"
1398
+ },
1399
+ {
1400
+ "rowStart":3,
1401
+ "rowEnd":3,
1402
+ "columnStart":3,
1403
+ "columnEnd":3,
1404
+ "content":"789"
1405
+ }
1406
+ ]
1407
+ }
1408
+ }
1409
+
1410
+ ```
1364
1411
  表格参数说明
1365
1412
 
1366
1413
  | 名称 | 类型 | 描述 |
@@ -1373,6 +1420,12 @@ CreateFlowsByTemplates 接口不使用此字段。
1373
1420
  | cells.N.columnEnd | Integer | 单元格坐标:列结束index |
1374
1421
  | cells.N.content | String | 单元格内容,字数不超过100 |
1375
1422
 
1423
+ 表格参数headers说明
1424
+ | 名称 | 类型 | 描述 |
1425
+ | ------------------- | ------- | ------------------------------------------------- |
1426
+ | widthPercent | Integer | 表头单元格列占总表头的比例,例如1:30表示 此列占表头的30%,不填写时列宽度平均拆分;例如2:总2列,某一列填写40,剩余列可以为空,按照60计算。;例如3:总3列,某一列填写30,剩余2列可以为空,分别为(100-30)/2=35 |
1427
+ | content | String | 表头单元格内容,字数不超过100 |
1428
+
1376
1429
  */
1377
1430
  export interface FlowInfo {
1378
1431
  /**
@@ -1587,6 +1640,27 @@ export interface Staff {
1587
1640
  VerifiedOn: number
1588
1641
  }
1589
1642
 
1643
+ /**
1644
+ * ChannelCreateBoundFlows请求参数结构体
1645
+ */
1646
+ export interface ChannelCreateBoundFlowsRequest {
1647
+ /**
1648
+ * 应用信息
1649
+ 此接口Agent.AppId、Agent.ProxyOrganizationOpenId 和 Agent. ProxyOperator.OpenId 必填
1650
+ */
1651
+ Agent: Agent
1652
+
1653
+ /**
1654
+ * 领取的合同id列表
1655
+ */
1656
+ FlowIds?: Array<string>
1657
+
1658
+ /**
1659
+ * 操作者的信息
1660
+ */
1661
+ Operator?: UserInfo
1662
+ }
1663
+
1590
1664
  /**
1591
1665
  * ChannelDescribeEmployees请求参数结构体
1592
1666
  */
@@ -3013,6 +3087,16 @@ export interface ChannelDescribeEmployeesResponse {
3013
3087
  RequestId?: string
3014
3088
  }
3015
3089
 
3090
+ /**
3091
+ * ChannelCreateBoundFlows返回参数结构体
3092
+ */
3093
+ export interface ChannelCreateBoundFlowsResponse {
3094
+ /**
3095
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
3096
+ */
3097
+ RequestId?: string
3098
+ }
3099
+
3016
3100
  /**
3017
3101
  * 抄送信息
3018
3102
  */
@@ -2289,7 +2289,7 @@ Url、Image必须提供一个,如果都提供,只使用 Url。
2289
2289
  * 是否返回年龄、性别、情绪等属性。
2290
2290
  合法值为(大小写不敏感):None、Age、Beauty、Emotion、Eye、Eyebrow、
2291
2291
  Gender、Hair、Hat、Headpose、Mask、Mouth、Moustache、Nose、Shape、Skin、Smile。
2292
- None为不需要返回。默认为 None。
2292
+ None为不需要返回。默认为 None。即FaceAttributesType属性为空时,各属性返回值为0
2293
2293
  需要将属性组成一个用逗号分隔的字符串,属性之间的顺序没有要求。
2294
2294
  关于各属性的详细描述,参见下文出参。
2295
2295
  最多返回面积最大的 5 张人脸属性信息,超过 5 张人脸(第 6 张及以后的人脸)的 AttributesInfo 不具备参考意义。
@@ -2454,7 +2454,7 @@ Url、Image必须提供一个,如果都提供,只使用 Url。
2454
2454
  * 是否返回年龄、性别、情绪等属性。
2455
2455
  合法值为(大小写不敏感):None、Age、Beauty、Emotion、Eye、Eyebrow、
2456
2456
  Gender、Hair、Hat、Headpose、Mask、Mouth、Moustache、Nose、Shape、Skin、Smile。
2457
- None为不需要返回。默认为 None。
2457
+ None为不需要返回。默认为 None。即FaceAttributesType属性为空时,各属性返回值为0
2458
2458
  需要将属性组成一个用逗号分隔的字符串,属性之间的顺序没有要求。
2459
2459
  关于各属性的详细描述,参见下文出参。
2460
2460
  最多返回面积最大的 5 张人脸属性信息,超过 5 张人脸(第 6 张及以后的人脸)的 AttributesInfo 不具备参考意义。
@@ -19,6 +19,7 @@ import { AbstractClient } from "../../../common/abstract_client"
19
19
  import { ClientConfig } from "../../../common/interface"
20
20
  import {
21
21
  UpdateDevicesEnableStateResponse,
22
+ DescribeDeviceLocationSolveRequest,
22
23
  DeleteProjectRequest,
23
24
  DevicesItem,
24
25
  DeleteFenceBindRequest,
@@ -73,6 +74,7 @@ import {
73
74
  UnbindProductsRequest,
74
75
  SearchStudioProductResponse,
75
76
  DeviceData,
77
+ WifiInfo,
76
78
  GetTopicRuleListRequest,
77
79
  FenceBindDeviceItem,
78
80
  DeviceDataHistoryItem,
@@ -81,7 +83,7 @@ import {
81
83
  ProjectEntryEx,
82
84
  DescribeBatchProductionResponse,
83
85
  ListTopicPolicyRequest,
84
- DescribeLoRaFrequencyRequest,
86
+ BatchProductionInfo,
85
87
  DeleteDeviceRequest,
86
88
  DeleteLoRaFrequencyRequest,
87
89
  ControlDeviceDataRequest,
@@ -116,7 +118,7 @@ import {
116
118
  FirmwareInfo,
117
119
  DisableTopicRuleResponse,
118
120
  TopicRuleInfo,
119
- GetCOSURLRequest,
121
+ DescribeDeviceLocationSolveResponse,
120
122
  DescribeStudioProductResponse,
121
123
  CreateFenceBindRequest,
122
124
  DescribeDeviceResponse,
@@ -201,7 +203,8 @@ import {
201
203
  AppDeviceInfo,
202
204
  BindProductsResponse,
203
205
  ModifyProjectResponse,
204
- BatchProductionInfo,
206
+ GetCOSURLRequest,
207
+ DescribeLoRaFrequencyRequest,
205
208
  DescribeGatewayBindDevicesRequest,
206
209
  DescribeGatewaySubProductsRequest,
207
210
  DeleteStudioProductRequest,
@@ -312,6 +315,16 @@ export class Client extends AbstractClient {
312
315
  return this.request("DirectBindDeviceInFamily", req, cb)
313
316
  }
314
317
 
318
+ /**
319
+ * 获取实时位置解析
320
+ */
321
+ async DescribeDeviceLocationSolve(
322
+ req: DescribeDeviceLocationSolveRequest,
323
+ cb?: (error: string, rep: DescribeDeviceLocationSolveResponse) => void
324
+ ): Promise<DescribeDeviceLocationSolveResponse> {
325
+ return this.request("DescribeDeviceLocationSolve", req, cb)
326
+ }
327
+
315
328
  /**
316
329
  * 查询设备绑定的网关设备
317
330
  */
@@ -37,6 +37,36 @@ export interface UpdateDevicesEnableStateResponse {
37
37
  RequestId?: string
38
38
  }
39
39
 
40
+ /**
41
+ * DescribeDeviceLocationSolve请求参数结构体
42
+ */
43
+ export interface DescribeDeviceLocationSolveRequest {
44
+ /**
45
+ * 产品ID
46
+ */
47
+ ProductId: string
48
+
49
+ /**
50
+ * 设备名称
51
+ */
52
+ DeviceName: string
53
+
54
+ /**
55
+ * 定位解析类型,wifi或GNSSNavigation
56
+ */
57
+ LocationType: string
58
+
59
+ /**
60
+ * LoRaEdge卫星导航电文
61
+ */
62
+ GNSSNavigation?: string
63
+
64
+ /**
65
+ * wifi信息
66
+ */
67
+ WiFiInfo?: Array<WifiInfo>
68
+ }
69
+
40
70
  /**
41
71
  * DeleteProject请求参数结构体
42
72
  */
@@ -1212,6 +1242,21 @@ export interface DeviceData {
1212
1242
  DevicePsk: string
1213
1243
  }
1214
1244
 
1245
+ /**
1246
+ * wifi定位信息
1247
+ */
1248
+ export interface WifiInfo {
1249
+ /**
1250
+ * mac地址
1251
+ */
1252
+ MAC: string
1253
+
1254
+ /**
1255
+ * 信号强度
1256
+ */
1257
+ RSSI: number
1258
+ }
1259
+
1215
1260
  /**
1216
1261
  * GetTopicRuleList请求参数结构体
1217
1262
  */
@@ -1412,13 +1457,33 @@ export interface ListTopicPolicyRequest {
1412
1457
  }
1413
1458
 
1414
1459
  /**
1415
- * DescribeLoRaFrequency请求参数结构体
1460
+ * 获取返回列表的详情。
1416
1461
  */
1417
- export interface DescribeLoRaFrequencyRequest {
1462
+ export interface BatchProductionInfo {
1418
1463
  /**
1419
- * 频点唯一ID
1464
+ * 量产ID
1420
1465
  */
1421
- FreqId?: string
1466
+ BatchProductionId: string
1467
+
1468
+ /**
1469
+ * 产品ID
1470
+ */
1471
+ ProductId: string
1472
+
1473
+ /**
1474
+ * 烧录方式
1475
+ */
1476
+ BurnMethod: number
1477
+
1478
+ /**
1479
+ * 创建时间
1480
+ */
1481
+ CreateTime: number
1482
+
1483
+ /**
1484
+ * 产品名称
1485
+ */
1486
+ ProductName: string
1422
1487
  }
1423
1488
 
1424
1489
  /**
@@ -2218,23 +2283,34 @@ export interface TopicRuleInfo {
2218
2283
  }
2219
2284
 
2220
2285
  /**
2221
- * GetCOSURL请求参数结构体
2286
+ * DescribeDeviceLocationSolve返回参数结构体
2222
2287
  */
2223
- export interface GetCOSURLRequest {
2288
+ export interface DescribeDeviceLocationSolveResponse {
2224
2289
  /**
2225
- * 产品ID
2290
+ * 经度
2226
2291
  */
2227
- ProductID: string
2292
+ Longitude: number
2228
2293
 
2229
2294
  /**
2230
- * 固件版本
2295
+ * 维度
2231
2296
  */
2232
- FirmwareVersion: string
2297
+ Latitude: number
2233
2298
 
2234
2299
  /**
2235
- * 文件大小
2300
+ * 类型
2236
2301
  */
2237
- FileSize?: number
2302
+ LocationType: string
2303
+
2304
+ /**
2305
+ * 误差精度预估,单位为米
2306
+ 注意:此字段可能返回 null,表示取不到有效值。
2307
+ */
2308
+ Accuracy: number
2309
+
2310
+ /**
2311
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2312
+ */
2313
+ RequestId?: string
2238
2314
  }
2239
2315
 
2240
2316
  /**
@@ -4211,33 +4287,33 @@ export interface ModifyProjectResponse {
4211
4287
  }
4212
4288
 
4213
4289
  /**
4214
- * 获取返回列表的详情。
4290
+ * GetCOSURL请求参数结构体
4215
4291
  */
4216
- export interface BatchProductionInfo {
4217
- /**
4218
- * 量产ID
4219
- */
4220
- BatchProductionId: string
4221
-
4292
+ export interface GetCOSURLRequest {
4222
4293
  /**
4223
4294
  * 产品ID
4224
4295
  */
4225
- ProductId: string
4296
+ ProductID: string
4226
4297
 
4227
4298
  /**
4228
- * 烧录方式
4299
+ * 固件版本
4229
4300
  */
4230
- BurnMethod: number
4301
+ FirmwareVersion: string
4231
4302
 
4232
4303
  /**
4233
- * 创建时间
4304
+ * 文件大小
4234
4305
  */
4235
- CreateTime: number
4306
+ FileSize?: number
4307
+ }
4236
4308
 
4309
+ /**
4310
+ * DescribeLoRaFrequency请求参数结构体
4311
+ */
4312
+ export interface DescribeLoRaFrequencyRequest {
4237
4313
  /**
4238
- * 产品名称
4314
+ * 频点唯一ID
4239
4315
  */
4240
- ProductName: string
4316
+ FreqId?: string
4241
4317
  }
4242
4318
 
4243
4319
  /**
@@ -1304,10 +1304,16 @@ export interface DeployedResources {
1304
1304
  Type: string
1305
1305
 
1306
1306
  /**
1307
- * 关联资源ID或关联域名
1307
+ * 不建议使用。字段返回和Resources相同。本字段后续只返回null
1308
1308
  注意:此字段可能返回 null,表示取不到有效值。
1309
1309
  */
1310
1310
  ResourceIds: Array<string>
1311
+
1312
+ /**
1313
+ * 关联资源ID或关联域名。
1314
+ 注意:此字段可能返回 null,表示取不到有效值。
1315
+ */
1316
+ Resources: Array<string>
1311
1317
  }
1312
1318
 
1313
1319
  /**
@@ -10538,6 +10538,21 @@ export interface ModifyClusterNodePoolRequest {
10538
10538
  */
10539
10539
  OsCustomizeType?: string
10540
10540
 
10541
+ /**
10542
+ * GPU驱动版本,CUDA版本,cuDNN版本以及是否启用MIG特性
10543
+ */
10544
+ GPUArgs?: GPUArgs
10545
+
10546
+ /**
10547
+ * base64编码后的自定义脚本
10548
+ */
10549
+ UserScript?: string
10550
+
10551
+ /**
10552
+ * 更新label和taint时忽略存量节点
10553
+ */
10554
+ IgnoreExistedNode?: boolean
10555
+
10541
10556
  /**
10542
10557
  * 节点自定义参数
10543
10558
  */
@@ -10557,6 +10572,11 @@ export interface ModifyClusterNodePoolRequest {
10557
10572
  * 删除保护开关
10558
10573
  */
10559
10574
  DeletionProtection?: boolean
10575
+
10576
+ /**
10577
+ * dockerd --graph 指定值, 默认为 /var/lib/docker
10578
+ */
10579
+ DockerGraphPath?: string
10560
10580
  }
10561
10581
 
10562
10582
  /**
@@ -172,7 +172,7 @@ videoFreezeRate:视频卡顿率。
172
172
  networkDelay :网络延迟率。
173
173
  注意:
174
174
  1.调用接口需开通监控仪表盘【基础版】和【进阶版】,监控仪表盘【免费版】不支持调用,监控仪表盘版本功能和计费说明:https://cloud.tencent.com/document/product/647/81331。
175
- 2、查询时间范围根据监控仪表盘功能版本而定,【基础版】可查近30天,【进阶版】可查近60天。
175
+ 2.查询时间范围根据监控仪表盘功能版本而定,【基础版】可查近30天,【进阶版】可查近60天。
176
176
  */
177
177
  async DescribeTRTCMarketQualityMetricData(
178
178
  req: DescribeTRTCMarketQualityMetricDataRequest,
@@ -212,7 +212,7 @@ peakCurrentChannels:峰值同时在线频道数。
212
212
  peakCurrentUsers:峰值同时在线人数。
213
213
  注意:
214
214
  1.调用接口需开通监控仪表盘【基础版】和【进阶版】,监控仪表盘【免费版】不支持调用,监控仪表盘版本功能和计费说明:https://cloud.tencent.com/document/product/647/81331。
215
- 2、查询时间范围根据监控仪表盘功能版本而定,【基础版】可查近30天,【进阶版】可查近60天。
215
+ 2.查询时间范围根据监控仪表盘功能版本而定,【基础版】可查近30天,【进阶版】可查近60天。
216
216
  */
217
217
  async DescribeTRTCMarketScaleMetricData(
218
218
  req: DescribeTRTCMarketScaleMetricDataRequest,
@@ -267,7 +267,7 @@ TRTC 的一个房间中可能会同时存在多路音视频流,您可以通过
267
267
  -音频卡顿率
268
268
  注意:
269
269
  1.调用接口需开通监控仪表盘【基础版】和【进阶版】,监控仪表盘【免费版】不支持调用,监控仪表盘版本功能和计费说明:https://cloud.tencent.com/document/product/647/81331。
270
- 2、查询时间范围根据监控仪表盘功能版本而定,基础版可查近3小时,进阶版可查近12小时。
270
+ 2.查询时间范围根据监控仪表盘功能版本而定,基础版可查近3小时,进阶版可查近12小时。
271
271
  */
272
272
  async DescribeTRTCRealTimeQualityMetricData(
273
273
  req: DescribeTRTCRealTimeQualityMetricDataRequest,
@@ -573,7 +573,7 @@ TRTC 的一个房间中可能会同时存在多路音视频流,您可以通过
573
573
  -roomCount(在线房间数)
574
574
  注意:
575
575
  1.调用接口需开通监控仪表盘【基础版】和【进阶版】,监控仪表盘【免费版】不支持调用,监控仪表盘版本功能和计费说明:https://cloud.tencent.com/document/product/647/81331。
576
- 2、查询时间范围根据监控仪表盘功能版本而定,基础版可查近3小时,进阶版可查近12小时。
576
+ 2.查询时间范围根据监控仪表盘功能版本而定,基础版可查近3小时,进阶版可查近12小时。
577
577
  */
578
578
  async DescribeTRTCRealTimeScaleMetricData(
579
579
  req: DescribeTRTCRealTimeScaleMetricDataRequest,
@@ -1 +1 @@
1
- export declare const sdkVersion = "4.0.484";
1
+ export declare const sdkVersion = "4.0.485";
@@ -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.484";
4
+ exports.sdkVersion = "4.0.485";