tencentcloud-sdk-nodejs-dlc 4.0.309 → 4.0.312

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.
@@ -284,6 +284,41 @@ export interface DetachWorkGroupPolicyResponse {
284
284
  */
285
285
  RequestId?: string;
286
286
  }
287
+ /**
288
+ * 数据表数据格式。
289
+ */
290
+ export interface DataFormat {
291
+ /**
292
+ * 文本格式,TextFile。
293
+ 注意:此字段可能返回 null,表示取不到有效值。
294
+ */
295
+ TextFile: TextFile;
296
+ /**
297
+ * 文本格式,CSV。
298
+ 注意:此字段可能返回 null,表示取不到有效值。
299
+ */
300
+ CSV: CSV;
301
+ /**
302
+ * 文本格式,Json。
303
+ 注意:此字段可能返回 null,表示取不到有效值。
304
+ */
305
+ Json: Other;
306
+ /**
307
+ * Parquet格式
308
+ 注意:此字段可能返回 null,表示取不到有效值。
309
+ */
310
+ Parquet: Other;
311
+ /**
312
+ * ORC格式
313
+ 注意:此字段可能返回 null,表示取不到有效值。
314
+ */
315
+ ORC: Other;
316
+ /**
317
+ * AVRO格式
318
+ 注意:此字段可能返回 null,表示取不到有效值。
319
+ */
320
+ AVRO: Other;
321
+ }
287
322
  /**
288
323
  * CSV序列化及反序列化数据结构
289
324
  */
@@ -787,6 +822,27 @@ export interface UserInfo {
787
822
  */
788
823
  UserType: string;
789
824
  }
825
+ /**
826
+ * CreateExportTask请求参数结构体
827
+ */
828
+ export interface CreateExportTaskRequest {
829
+ /**
830
+ * 数据来源,lakefsStorage、taskResult
831
+ */
832
+ InputType: string;
833
+ /**
834
+ * 导出任务输入配置
835
+ */
836
+ InputConf: Array<KVPair>;
837
+ /**
838
+ * 导出任务输出配置
839
+ */
840
+ OutputConf: Array<KVPair>;
841
+ /**
842
+ * 目标数据源的类型,目前支持导出到cos
843
+ */
844
+ OutputType?: string;
845
+ }
790
846
  /**
791
847
  * AttachWorkGroupPolicy返回参数结构体
792
848
  */
@@ -988,6 +1044,19 @@ export interface DeleteScriptRequest {
988
1044
  */
989
1045
  ScriptIds: Array<string>;
990
1046
  }
1047
+ /**
1048
+ * CreateImportTask返回参数结构体
1049
+ */
1050
+ export interface CreateImportTaskResponse {
1051
+ /**
1052
+ * 任务id
1053
+ */
1054
+ TaskId: string;
1055
+ /**
1056
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1057
+ */
1058
+ RequestId?: string;
1059
+ }
991
1060
  /**
992
1061
  * SQL语句对象
993
1062
  */
@@ -1137,39 +1206,22 @@ export interface DescribeUsersResponse {
1137
1206
  RequestId?: string;
1138
1207
  }
1139
1208
  /**
1140
- * 数据表数据格式。
1209
+ * DescribeScripts返回参数结构体
1141
1210
  */
1142
- export interface DataFormat {
1143
- /**
1144
- * 文本格式,TextFile。
1145
- 注意:此字段可能返回 null,表示取不到有效值。
1146
- */
1147
- TextFile: TextFile;
1148
- /**
1149
- * 文本格式,CSV。
1150
- 注意:此字段可能返回 null,表示取不到有效值。
1151
- */
1152
- CSV: CSV;
1153
- /**
1154
- * 文本格式,Json。
1155
- 注意:此字段可能返回 null,表示取不到有效值。
1156
- */
1157
- Json: Other;
1211
+ export interface DescribeScriptsResponse {
1158
1212
  /**
1159
- * Parquet格式
1213
+ * Script列表
1160
1214
  注意:此字段可能返回 null,表示取不到有效值。
1161
1215
  */
1162
- Parquet: Other;
1216
+ Scripts: Array<Script>;
1163
1217
  /**
1164
- * ORC格式
1165
- 注意:此字段可能返回 null,表示取不到有效值。
1166
- */
1167
- ORC: Other;
1218
+ * 实例总数
1219
+ */
1220
+ TotalCount: number;
1168
1221
  /**
1169
- * AVRO格式
1170
- 注意:此字段可能返回 null,表示取不到有效值。
1171
- */
1172
- AVRO: Other;
1222
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1223
+ */
1224
+ RequestId?: string;
1173
1225
  }
1174
1226
  /**
1175
1227
  * 查询视图信息对象
@@ -1214,6 +1266,14 @@ export interface CreateUserRequest {
1214
1266
  * 绑定到用户的权限集合
1215
1267
  */
1216
1268
  PolicySet?: Array<Policy>;
1269
+ /**
1270
+ * 用户类型。ADMIN:管理员 COMMON:一般用户。当用户类型为管理员的时候,不能设置权限集合和绑定的工作组集合,管理员默认拥有所有权限。该参数不填默认为COMMON
1271
+ */
1272
+ UserType?: string;
1273
+ /**
1274
+ * 绑定到用户的工作组ID集合。
1275
+ */
1276
+ WorkGroupIds?: Array<number>;
1217
1277
  }
1218
1278
  /**
1219
1279
  * ModifyWorkGroup请求参数结构体
@@ -1441,6 +1501,40 @@ export interface DatabaseInfo {
1441
1501
  */
1442
1502
  Location?: string;
1443
1503
  }
1504
+ /**
1505
+ * CreateImportTask请求参数结构体
1506
+ */
1507
+ export interface CreateImportTaskRequest {
1508
+ /**
1509
+ * 数据来源,cos
1510
+ */
1511
+ InputType: string;
1512
+ /**
1513
+ * 输入配置
1514
+ */
1515
+ InputConf: Array<KVPair>;
1516
+ /**
1517
+ * 输出配置
1518
+ */
1519
+ OutputConf: Array<KVPair>;
1520
+ /**
1521
+ * 目标数据源的类型,目前支持导入到托管存储,即lakefsStorage
1522
+ */
1523
+ OutputType?: string;
1524
+ }
1525
+ /**
1526
+ * CreateExportTask返回参数结构体
1527
+ */
1528
+ export interface CreateExportTaskResponse {
1529
+ /**
1530
+ * 任务id
1531
+ */
1532
+ TaskId: string;
1533
+ /**
1534
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1535
+ */
1536
+ RequestId?: string;
1537
+ }
1444
1538
  /**
1445
1539
  * UnbindWorkGroupsFromUser请求参数结构体
1446
1540
  */
@@ -1769,6 +1863,10 @@ export interface CreateWorkGroupRequest {
1769
1863
  * 工作组绑定的鉴权策略集合
1770
1864
  */
1771
1865
  PolicySet?: Array<Policy>;
1866
+ /**
1867
+ * 需要绑定到工作组的用户Id集合
1868
+ */
1869
+ UserIds?: Array<string>;
1772
1870
  }
1773
1871
  /**
1774
1872
  * SQL查询任务
@@ -1814,24 +1912,6 @@ export interface AttachUserPolicyResponse {
1814
1912
  */
1815
1913
  RequestId?: string;
1816
1914
  }
1817
- /**
1818
- * DescribeScripts返回参数结构体
1819
- */
1820
- export interface DescribeScriptsResponse {
1821
- /**
1822
- * Script列表
1823
- 注意:此字段可能返回 null,表示取不到有效值。
1824
- */
1825
- Scripts: Array<Script>;
1826
- /**
1827
- * 实例总数
1828
- */
1829
- TotalCount: number;
1830
- /**
1831
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1832
- */
1833
- RequestId?: string;
1834
- }
1835
1915
  /**
1836
1916
  * DetachWorkGroupPolicy请求参数结构体
1837
1917
  */