tencentcloud-sdk-nodejs-dlc 4.0.464 → 4.0.469
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 +848 -0
- package/README.md +6 -4
- package/SERVICE_CHANGELOG.md +1065 -683
- package/package.json +1 -1
- package/products.md +44 -44
- package/src/services/dlc/v20210125/dlc_client.ts +35 -11
- package/src/services/dlc/v20210125/dlc_models.ts +210 -120
- package/tencentcloud/services/dlc/v20210125/dlc_client.d.ts +11 -3
- package/tencentcloud/services/dlc/v20210125/dlc_client.js +15 -3
- package/tencentcloud/services/dlc/v20210125/dlc_models.d.ts +182 -105
|
@@ -15,6 +15,51 @@
|
|
|
15
15
|
* under the License.
|
|
16
16
|
*/
|
|
17
17
|
|
|
18
|
+
/**
|
|
19
|
+
* DescribeResultDownload返回参数结构体
|
|
20
|
+
*/
|
|
21
|
+
export interface DescribeResultDownloadResponse {
|
|
22
|
+
/**
|
|
23
|
+
* 下载文件路径
|
|
24
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
25
|
+
*/
|
|
26
|
+
Path: string
|
|
27
|
+
|
|
28
|
+
/**
|
|
29
|
+
* 任务状态 init | queue | format | compress | success| timeout | error
|
|
30
|
+
*/
|
|
31
|
+
Status: string
|
|
32
|
+
|
|
33
|
+
/**
|
|
34
|
+
* 任务异常原因
|
|
35
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
36
|
+
*/
|
|
37
|
+
Reason: string
|
|
38
|
+
|
|
39
|
+
/**
|
|
40
|
+
* 临时AK
|
|
41
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
42
|
+
*/
|
|
43
|
+
SecretId: string
|
|
44
|
+
|
|
45
|
+
/**
|
|
46
|
+
* 临时SK
|
|
47
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
48
|
+
*/
|
|
49
|
+
SecretKey: string
|
|
50
|
+
|
|
51
|
+
/**
|
|
52
|
+
* 临时Token
|
|
53
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
54
|
+
*/
|
|
55
|
+
Token: string
|
|
56
|
+
|
|
57
|
+
/**
|
|
58
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
59
|
+
*/
|
|
60
|
+
RequestId?: string
|
|
61
|
+
}
|
|
62
|
+
|
|
18
63
|
/**
|
|
19
64
|
* DescribeTaskResult返回参数结构体
|
|
20
65
|
*/
|
|
@@ -146,18 +191,97 @@ export interface ListTaskJobLogDetailResponse {
|
|
|
146
191
|
}
|
|
147
192
|
|
|
148
193
|
/**
|
|
149
|
-
*
|
|
194
|
+
* 元数据基本对象
|
|
150
195
|
*/
|
|
151
|
-
export interface
|
|
196
|
+
export interface Asset {
|
|
152
197
|
/**
|
|
153
|
-
|
|
198
|
+
* 主键
|
|
199
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
200
|
+
*/
|
|
201
|
+
Id?: number
|
|
202
|
+
|
|
203
|
+
/**
|
|
204
|
+
* 名称
|
|
205
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
206
|
+
*/
|
|
207
|
+
Name?: string
|
|
208
|
+
|
|
209
|
+
/**
|
|
210
|
+
* 对象GUID值
|
|
211
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
212
|
+
*/
|
|
213
|
+
Guid?: string
|
|
214
|
+
|
|
215
|
+
/**
|
|
216
|
+
* 数据目录
|
|
217
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
218
|
+
*/
|
|
219
|
+
Catalog?: string
|
|
220
|
+
|
|
221
|
+
/**
|
|
222
|
+
* 描述信息
|
|
154
223
|
*/
|
|
155
|
-
|
|
224
|
+
Description?: string
|
|
156
225
|
|
|
157
226
|
/**
|
|
158
|
-
*
|
|
227
|
+
* 对象owner
|
|
159
228
|
*/
|
|
160
|
-
|
|
229
|
+
Owner?: string
|
|
230
|
+
|
|
231
|
+
/**
|
|
232
|
+
* 对象owner账户
|
|
233
|
+
*/
|
|
234
|
+
OwnerAccount?: string
|
|
235
|
+
|
|
236
|
+
/**
|
|
237
|
+
* 权限
|
|
238
|
+
*/
|
|
239
|
+
PermValues?: Array<KVPair>
|
|
240
|
+
|
|
241
|
+
/**
|
|
242
|
+
* 附加属性
|
|
243
|
+
*/
|
|
244
|
+
Params?: Array<KVPair>
|
|
245
|
+
|
|
246
|
+
/**
|
|
247
|
+
* 附加业务属性
|
|
248
|
+
*/
|
|
249
|
+
BizParams?: Array<KVPair>
|
|
250
|
+
|
|
251
|
+
/**
|
|
252
|
+
* 数据版本
|
|
253
|
+
*/
|
|
254
|
+
DataVersion?: number
|
|
255
|
+
|
|
256
|
+
/**
|
|
257
|
+
* 创建时间
|
|
258
|
+
*/
|
|
259
|
+
CreateTime?: string
|
|
260
|
+
|
|
261
|
+
/**
|
|
262
|
+
* 修改时间
|
|
263
|
+
*/
|
|
264
|
+
ModifiedTime?: string
|
|
265
|
+
|
|
266
|
+
/**
|
|
267
|
+
* 数据源主键
|
|
268
|
+
*/
|
|
269
|
+
DatasourceId?: number
|
|
270
|
+
}
|
|
271
|
+
|
|
272
|
+
/**
|
|
273
|
+
* CreateResultDownload返回参数结构体
|
|
274
|
+
*/
|
|
275
|
+
export interface CreateResultDownloadResponse {
|
|
276
|
+
/**
|
|
277
|
+
* 下载任务Id
|
|
278
|
+
*/
|
|
279
|
+
DownloadId: string
|
|
280
|
+
|
|
281
|
+
/**
|
|
282
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
283
|
+
*/
|
|
284
|
+
RequestId?: string
|
|
161
285
|
}
|
|
162
286
|
|
|
163
287
|
/**
|
|
@@ -1167,82 +1291,18 @@ export interface CheckLockMetaDataRequest {
|
|
|
1167
1291
|
}
|
|
1168
1292
|
|
|
1169
1293
|
/**
|
|
1170
|
-
*
|
|
1294
|
+
* DescribeSparkAppJob请求参数结构体
|
|
1171
1295
|
*/
|
|
1172
|
-
export interface
|
|
1173
|
-
/**
|
|
1174
|
-
* 主键
|
|
1175
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1176
|
-
*/
|
|
1177
|
-
Id?: number
|
|
1178
|
-
|
|
1179
|
-
/**
|
|
1180
|
-
* 名称
|
|
1181
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1182
|
-
*/
|
|
1183
|
-
Name?: string
|
|
1184
|
-
|
|
1185
|
-
/**
|
|
1186
|
-
* 对象GUID值
|
|
1187
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1188
|
-
*/
|
|
1189
|
-
Guid?: string
|
|
1190
|
-
|
|
1191
|
-
/**
|
|
1192
|
-
* 数据目录
|
|
1193
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1194
|
-
*/
|
|
1195
|
-
Catalog?: string
|
|
1196
|
-
|
|
1197
|
-
/**
|
|
1198
|
-
* 描述信息
|
|
1199
|
-
*/
|
|
1200
|
-
Description?: string
|
|
1201
|
-
|
|
1202
|
-
/**
|
|
1203
|
-
* 对象owner
|
|
1204
|
-
*/
|
|
1205
|
-
Owner?: string
|
|
1206
|
-
|
|
1207
|
-
/**
|
|
1208
|
-
* 对象owner账户
|
|
1209
|
-
*/
|
|
1210
|
-
OwnerAccount?: string
|
|
1211
|
-
|
|
1212
|
-
/**
|
|
1213
|
-
* 权限
|
|
1214
|
-
*/
|
|
1215
|
-
PermValues?: Array<KVPair>
|
|
1216
|
-
|
|
1217
|
-
/**
|
|
1218
|
-
* 附加属性
|
|
1219
|
-
*/
|
|
1220
|
-
Params?: Array<KVPair>
|
|
1221
|
-
|
|
1222
|
-
/**
|
|
1223
|
-
* 附加业务属性
|
|
1224
|
-
*/
|
|
1225
|
-
BizParams?: Array<KVPair>
|
|
1226
|
-
|
|
1227
|
-
/**
|
|
1228
|
-
* 数据版本
|
|
1229
|
-
*/
|
|
1230
|
-
DataVersion?: number
|
|
1231
|
-
|
|
1232
|
-
/**
|
|
1233
|
-
* 创建时间
|
|
1234
|
-
*/
|
|
1235
|
-
CreateTime?: string
|
|
1236
|
-
|
|
1296
|
+
export interface DescribeSparkAppJobRequest {
|
|
1237
1297
|
/**
|
|
1238
|
-
*
|
|
1298
|
+
* spark作业Id,与JobName同时存在时,JobName无效
|
|
1239
1299
|
*/
|
|
1240
|
-
|
|
1300
|
+
JobId?: string
|
|
1241
1301
|
|
|
1242
1302
|
/**
|
|
1243
|
-
*
|
|
1303
|
+
* spark作业名
|
|
1244
1304
|
*/
|
|
1245
|
-
|
|
1305
|
+
JobName?: string
|
|
1246
1306
|
}
|
|
1247
1307
|
|
|
1248
1308
|
/**
|
|
@@ -3106,24 +3166,44 @@ export interface DescribeUsersResponse {
|
|
|
3106
3166
|
}
|
|
3107
3167
|
|
|
3108
3168
|
/**
|
|
3109
|
-
*
|
|
3169
|
+
* 数据表数据格式。
|
|
3110
3170
|
*/
|
|
3111
|
-
export interface
|
|
3171
|
+
export interface DataFormat {
|
|
3112
3172
|
/**
|
|
3113
|
-
*
|
|
3173
|
+
* 文本格式,TextFile。
|
|
3114
3174
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
3115
3175
|
*/
|
|
3116
|
-
|
|
3176
|
+
TextFile: TextFile
|
|
3117
3177
|
|
|
3118
3178
|
/**
|
|
3119
|
-
|
|
3120
|
-
|
|
3121
|
-
|
|
3179
|
+
* 文本格式,CSV。
|
|
3180
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3181
|
+
*/
|
|
3182
|
+
CSV: CSV
|
|
3122
3183
|
|
|
3123
3184
|
/**
|
|
3124
|
-
|
|
3125
|
-
|
|
3126
|
-
|
|
3185
|
+
* 文本格式,Json。
|
|
3186
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3187
|
+
*/
|
|
3188
|
+
Json: Other
|
|
3189
|
+
|
|
3190
|
+
/**
|
|
3191
|
+
* Parquet格式
|
|
3192
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3193
|
+
*/
|
|
3194
|
+
Parquet: Other
|
|
3195
|
+
|
|
3196
|
+
/**
|
|
3197
|
+
* ORC格式
|
|
3198
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3199
|
+
*/
|
|
3200
|
+
ORC: Other
|
|
3201
|
+
|
|
3202
|
+
/**
|
|
3203
|
+
* AVRO格式
|
|
3204
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3205
|
+
*/
|
|
3206
|
+
AVRO: Other
|
|
3127
3207
|
}
|
|
3128
3208
|
|
|
3129
3209
|
/**
|
|
@@ -3481,6 +3561,16 @@ export interface DMSTableInfo {
|
|
|
3481
3561
|
Asset: Asset
|
|
3482
3562
|
}
|
|
3483
3563
|
|
|
3564
|
+
/**
|
|
3565
|
+
* AttachUserPolicy返回参数结构体
|
|
3566
|
+
*/
|
|
3567
|
+
export interface AttachUserPolicyResponse {
|
|
3568
|
+
/**
|
|
3569
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
3570
|
+
*/
|
|
3571
|
+
RequestId?: string
|
|
3572
|
+
}
|
|
3573
|
+
|
|
3484
3574
|
/**
|
|
3485
3575
|
* 迁移元数据分区对象
|
|
3486
3576
|
*/
|
|
@@ -4560,13 +4650,23 @@ export interface Property {
|
|
|
4560
4650
|
}
|
|
4561
4651
|
|
|
4562
4652
|
/**
|
|
4563
|
-
*
|
|
4653
|
+
* CreateResultDownload请求参数结构体
|
|
4564
4654
|
*/
|
|
4565
|
-
export interface
|
|
4655
|
+
export interface CreateResultDownloadRequest {
|
|
4566
4656
|
/**
|
|
4567
|
-
*
|
|
4657
|
+
* 查询结果任务Id
|
|
4568
4658
|
*/
|
|
4569
|
-
|
|
4659
|
+
TaskId: string
|
|
4660
|
+
|
|
4661
|
+
/**
|
|
4662
|
+
* 下载格式
|
|
4663
|
+
*/
|
|
4664
|
+
Format: string
|
|
4665
|
+
|
|
4666
|
+
/**
|
|
4667
|
+
* 是否重新生成下载文件,仅当之前任务为 Timout | Error 时有效
|
|
4668
|
+
*/
|
|
4669
|
+
Force?: boolean
|
|
4570
4670
|
}
|
|
4571
4671
|
|
|
4572
4672
|
/**
|
|
@@ -4670,44 +4770,24 @@ export interface DescribeViewsResponse {
|
|
|
4670
4770
|
}
|
|
4671
4771
|
|
|
4672
4772
|
/**
|
|
4673
|
-
*
|
|
4773
|
+
* DescribeScripts返回参数结构体
|
|
4674
4774
|
*/
|
|
4675
|
-
export interface
|
|
4676
|
-
/**
|
|
4677
|
-
* 文本格式,TextFile。
|
|
4678
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
4679
|
-
*/
|
|
4680
|
-
TextFile: TextFile
|
|
4681
|
-
|
|
4682
|
-
/**
|
|
4683
|
-
* 文本格式,CSV。
|
|
4684
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
4685
|
-
*/
|
|
4686
|
-
CSV: CSV
|
|
4687
|
-
|
|
4688
|
-
/**
|
|
4689
|
-
* 文本格式,Json。
|
|
4690
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
4691
|
-
*/
|
|
4692
|
-
Json: Other
|
|
4693
|
-
|
|
4775
|
+
export interface DescribeScriptsResponse {
|
|
4694
4776
|
/**
|
|
4695
|
-
*
|
|
4777
|
+
* Script列表
|
|
4696
4778
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
4697
4779
|
*/
|
|
4698
|
-
|
|
4780
|
+
Scripts: Array<Script>
|
|
4699
4781
|
|
|
4700
4782
|
/**
|
|
4701
|
-
|
|
4702
|
-
|
|
4703
|
-
|
|
4704
|
-
ORC: Other
|
|
4783
|
+
* 实例总数
|
|
4784
|
+
*/
|
|
4785
|
+
TotalCount: number
|
|
4705
4786
|
|
|
4706
4787
|
/**
|
|
4707
|
-
|
|
4708
|
-
|
|
4709
|
-
|
|
4710
|
-
AVRO: Other
|
|
4788
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
4789
|
+
*/
|
|
4790
|
+
RequestId?: string
|
|
4711
4791
|
}
|
|
4712
4792
|
|
|
4713
4793
|
/**
|
|
@@ -4808,3 +4888,13 @@ export interface DMSColumn {
|
|
|
4808
4888
|
*/
|
|
4809
4889
|
IsPartition?: boolean
|
|
4810
4890
|
}
|
|
4891
|
+
|
|
4892
|
+
/**
|
|
4893
|
+
* DescribeResultDownload请求参数结构体
|
|
4894
|
+
*/
|
|
4895
|
+
export interface DescribeResultDownloadRequest {
|
|
4896
|
+
/**
|
|
4897
|
+
* 查询任务Id
|
|
4898
|
+
*/
|
|
4899
|
+
DownloadId: string
|
|
4900
|
+
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as TencentCloudCommon from "tencentcloud-sdk-nodejs-common";
|
|
2
|
-
import { DescribeTaskResultResponse, AlterDMSTableResponse, DescribeDatabasesRequest, DeleteUserRequest, ListTaskJobLogDetailResponse,
|
|
2
|
+
import { DescribeResultDownloadResponse, DescribeTaskResultResponse, AlterDMSTableResponse, DescribeDatabasesRequest, DeleteUserRequest, ListTaskJobLogDetailResponse, CreateResultDownloadResponse, CreateDMSDatabaseResponse, CreateStoreLocationResponse, ReportHeartbeatMetaDataRequest, DescribeDMSDatabaseResponse, DropDMSDatabaseRequest, CreateScriptResponse, CreateTasksInOrderResponse, DescribeTablesResponse, DeleteSparkAppRequest, ModifyUserResponse, DeleteScriptResponse, DetachUserPolicyRequest, DescribeSparkAppTasksResponse, DescribeTasksResponse, DescribeDMSTableResponse, DropDMSPartitionsRequest, CreateTasksInOrderRequest, AddDMSPartitionsResponse, DetachWorkGroupPolicyResponse, ModifySparkAppRequest, CreateDatabaseRequest, DescribeDMSTablesResponse, AlterDMSPartitionRequest, CheckLockMetaDataRequest, DescribeSparkAppJobRequest, CreateDatabaseResponse, DescribeTasksRequest, CreateSparkAppTaskRequest, DeleteWorkGroupRequest, UnlockMetaDataRequest, AttachUserPolicyRequest, ListTaskJobLogDetailRequest, AttachWorkGroupPolicyRequest, CreateUserResponse, DeleteUserResponse, CreateStoreLocationRequest, DescribeDMSPartitionsRequest, DescribeSparkAppJobsRequest, CreateDMSTableResponse, CreateTaskRequest, ModifySparkAppResponse, CreateTableRequest, DescribeWorkGroupsResponse, CreateImportTaskRequest, DescribeScriptsRequest, DescribeSparkAppJobResponse, DeleteUsersFromWorkGroupResponse, AddUsersToWorkGroupRequest, DescribeStoreLocationRequest, AddUsersToWorkGroupResponse, CreateExportTaskRequest, ReportHeartbeatMetaDataResponse, CreateDMSTableRequest, DropDMSTableRequest, AttachWorkGroupPolicyResponse, ModifyWorkGroupResponse, DescribeDMSTablesRequest, ModifyUserRequest, CreateSparkAppTaskResponse, CancelTaskRequest, BindWorkGroupsToUserResponse, DescribeStoreLocationResponse, DeleteScriptRequest, AddDMSPartitionsRequest, AlterDMSTableRequest, CreateImportTaskResponse, CreateTableResponse, CreateScriptRequest, BindWorkGroupsToUserRequest, DescribeTaskResultRequest, DescribeUsersResponse, CreateUserRequest, ModifyWorkGroupRequest, CancelTaskResponse, UnlockMetaDataResponse, DeleteWorkGroupResponse, DropDMSTableResponse, CreateWorkGroupResponse, DescribeTablesRequest, DescribeDatabasesResponse, AttachUserPolicyResponse, DescribeDMSPartitionsResponse, CreateExportTaskResponse, UnbindWorkGroupsFromUserRequest, DescribeDMSDatabaseRequest, DescribeTableRequest, DropDMSDatabaseResponse, DescribeUsersRequest, DeleteUsersFromWorkGroupRequest, CreateSparkAppResponse, CreateTaskResponse, DeleteSparkAppResponse, AlterDMSPartitionResponse, CreateTasksRequest, DescribeTableResponse, DescribeSparkAppJobsResponse, DescribeViewsRequest, LockMetaDataRequest, DetachUserPolicyResponse, DescribeWorkGroupsRequest, CreateTasksResponse, CreateSparkAppRequest, UnbindWorkGroupsFromUserResponse, DropDMSPartitionsResponse, AlterDMSDatabaseResponse, CreateWorkGroupRequest, DescribeSparkAppTasksRequest, LockMetaDataResponse, CheckLockMetaDataResponse, AlterDMSDatabaseRequest, CreateResultDownloadRequest, CreateDMSDatabaseRequest, DetachWorkGroupPolicyRequest, DescribeDMSTableRequest, DescribeViewsResponse, DescribeScriptsResponse, DescribeResultDownloadRequest } from "./dlc_models";
|
|
3
3
|
/**
|
|
4
4
|
* dlc client
|
|
5
5
|
* @class
|
|
@@ -74,6 +74,10 @@ export declare class Client extends TencentCloudCommon.AbstractClient {
|
|
|
74
74
|
* 该接口(DescribeScripts)用于获取所有SQL查询。
|
|
75
75
|
*/
|
|
76
76
|
DescribeScripts(req: DescribeScriptsRequest, cb?: (error: string, rep: DescribeScriptsResponse) => void): Promise<DescribeScriptsResponse>;
|
|
77
|
+
/**
|
|
78
|
+
* 查询具体的spark应用
|
|
79
|
+
*/
|
|
80
|
+
DescribeSparkAppJob(req: DescribeSparkAppJobRequest, cb?: (error: string, rep: DescribeSparkAppJobResponse) => void): Promise<DescribeSparkAppJobResponse>;
|
|
77
81
|
/**
|
|
78
82
|
* 删除工作组
|
|
79
83
|
*/
|
|
@@ -82,6 +86,10 @@ export declare class Client extends TencentCloudCommon.AbstractClient {
|
|
|
82
86
|
* 元数据解锁
|
|
83
87
|
*/
|
|
84
88
|
UnlockMetaData(req: UnlockMetaDataRequest, cb?: (error: string, rep: UnlockMetaDataResponse) => void): Promise<UnlockMetaDataResponse>;
|
|
89
|
+
/**
|
|
90
|
+
* 查询结果下载任务
|
|
91
|
+
*/
|
|
92
|
+
DescribeResultDownload(req: DescribeResultDownloadRequest, cb?: (error: string, rep: DescribeResultDownloadResponse) => void): Promise<DescribeResultDownloadResponse>;
|
|
85
93
|
/**
|
|
86
94
|
* 该接口(CreateStoreLocation)新增或覆盖计算结果存储位置。
|
|
87
95
|
*/
|
|
@@ -223,9 +231,9 @@ export declare class Client extends TencentCloudCommon.AbstractClient {
|
|
|
223
231
|
*/
|
|
224
232
|
CreateDMSTable(req: CreateDMSTableRequest, cb?: (error: string, rep: CreateDMSTableResponse) => void): Promise<CreateDMSTableResponse>;
|
|
225
233
|
/**
|
|
226
|
-
*
|
|
234
|
+
* 创建查询结果下载任务
|
|
227
235
|
*/
|
|
228
|
-
|
|
236
|
+
CreateResultDownload(req: CreateResultDownloadRequest, cb?: (error: string, rep: CreateResultDownloadResponse) => void): Promise<CreateResultDownloadResponse>;
|
|
229
237
|
/**
|
|
230
238
|
* 查询spark应用的运行任务实例列表
|
|
231
239
|
*/
|
|
@@ -129,6 +129,12 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
129
129
|
async DescribeScripts(req, cb) {
|
|
130
130
|
return this.request("DescribeScripts", req, cb);
|
|
131
131
|
}
|
|
132
|
+
/**
|
|
133
|
+
* 查询具体的spark应用
|
|
134
|
+
*/
|
|
135
|
+
async DescribeSparkAppJob(req, cb) {
|
|
136
|
+
return this.request("DescribeSparkAppJob", req, cb);
|
|
137
|
+
}
|
|
132
138
|
/**
|
|
133
139
|
* 删除工作组
|
|
134
140
|
*/
|
|
@@ -141,6 +147,12 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
141
147
|
async UnlockMetaData(req, cb) {
|
|
142
148
|
return this.request("UnlockMetaData", req, cb);
|
|
143
149
|
}
|
|
150
|
+
/**
|
|
151
|
+
* 查询结果下载任务
|
|
152
|
+
*/
|
|
153
|
+
async DescribeResultDownload(req, cb) {
|
|
154
|
+
return this.request("DescribeResultDownload", req, cb);
|
|
155
|
+
}
|
|
144
156
|
/**
|
|
145
157
|
* 该接口(CreateStoreLocation)新增或覆盖计算结果存储位置。
|
|
146
158
|
*/
|
|
@@ -352,10 +364,10 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
352
364
|
return this.request("CreateDMSTable", req, cb);
|
|
353
365
|
}
|
|
354
366
|
/**
|
|
355
|
-
*
|
|
367
|
+
* 创建查询结果下载任务
|
|
356
368
|
*/
|
|
357
|
-
async
|
|
358
|
-
return this.request("
|
|
369
|
+
async CreateResultDownload(req, cb) {
|
|
370
|
+
return this.request("CreateResultDownload", req, cb);
|
|
359
371
|
}
|
|
360
372
|
/**
|
|
361
373
|
* 查询spark应用的运行任务实例列表
|