tencentcloud-sdk-nodejs-dlc 4.0.311 → 4.0.314
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.
- package/CHANGELOG.md +294 -0
- package/SERVICE_CHANGELOG.md +407 -154
- package/package.json +1 -1
- package/products.md +25 -25
- package/src/services/dlc/v20210125/dlc_client.ts +26 -2
- package/src/services/dlc/v20210125/dlc_models.ts +131 -51
- package/tencentcloud/services/dlc/v20210125/dlc_client.d.ts +9 -1
- package/tencentcloud/services/dlc/v20210125/dlc_client.js +12 -0
- package/tencentcloud/services/dlc/v20210125/dlc_models.d.ts +113 -45
|
@@ -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
|
|
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
|
-
*
|
|
1213
|
+
* Script列表
|
|
1160
1214
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1161
1215
|
*/
|
|
1162
|
-
|
|
1216
|
+
Scripts: Array<Script>;
|
|
1163
1217
|
/**
|
|
1164
|
-
|
|
1165
|
-
|
|
1166
|
-
|
|
1167
|
-
ORC: Other;
|
|
1218
|
+
* 实例总数
|
|
1219
|
+
*/
|
|
1220
|
+
TotalCount: number;
|
|
1168
1221
|
/**
|
|
1169
|
-
|
|
1170
|
-
|
|
1171
|
-
|
|
1172
|
-
AVRO: Other;
|
|
1222
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
1223
|
+
*/
|
|
1224
|
+
RequestId?: string;
|
|
1173
1225
|
}
|
|
1174
1226
|
/**
|
|
1175
1227
|
* 查询视图信息对象
|
|
@@ -1449,6 +1501,40 @@ export interface DatabaseInfo {
|
|
|
1449
1501
|
*/
|
|
1450
1502
|
Location?: string;
|
|
1451
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
|
+
}
|
|
1452
1538
|
/**
|
|
1453
1539
|
* UnbindWorkGroupsFromUser请求参数结构体
|
|
1454
1540
|
*/
|
|
@@ -1826,24 +1912,6 @@ export interface AttachUserPolicyResponse {
|
|
|
1826
1912
|
*/
|
|
1827
1913
|
RequestId?: string;
|
|
1828
1914
|
}
|
|
1829
|
-
/**
|
|
1830
|
-
* DescribeScripts返回参数结构体
|
|
1831
|
-
*/
|
|
1832
|
-
export interface DescribeScriptsResponse {
|
|
1833
|
-
/**
|
|
1834
|
-
* Script列表
|
|
1835
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1836
|
-
*/
|
|
1837
|
-
Scripts: Array<Script>;
|
|
1838
|
-
/**
|
|
1839
|
-
* 实例总数
|
|
1840
|
-
*/
|
|
1841
|
-
TotalCount: number;
|
|
1842
|
-
/**
|
|
1843
|
-
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
1844
|
-
*/
|
|
1845
|
-
RequestId?: string;
|
|
1846
|
-
}
|
|
1847
1915
|
/**
|
|
1848
1916
|
* DetachWorkGroupPolicy请求参数结构体
|
|
1849
1917
|
*/
|