@alicloud/dataworks-public20200518 4.3.3 → 4.3.4
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/dist/client.d.ts +45 -0
- package/dist/client.js +93 -0
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +113 -0
package/dist/client.d.ts
CHANGED
|
@@ -10237,6 +10237,49 @@ export declare class UpdateUdfFileResponse extends $tea.Model {
|
|
|
10237
10237
|
[key: string]: any;
|
|
10238
10238
|
});
|
|
10239
10239
|
}
|
|
10240
|
+
export declare class UpdateWorkbenchEventResultRequest extends $tea.Model {
|
|
10241
|
+
checkResult?: string;
|
|
10242
|
+
checkResultTip?: string;
|
|
10243
|
+
extensionCode?: string;
|
|
10244
|
+
messageId?: string;
|
|
10245
|
+
static names(): {
|
|
10246
|
+
[key: string]: string;
|
|
10247
|
+
};
|
|
10248
|
+
static types(): {
|
|
10249
|
+
[key: string]: any;
|
|
10250
|
+
};
|
|
10251
|
+
constructor(map?: {
|
|
10252
|
+
[key: string]: any;
|
|
10253
|
+
});
|
|
10254
|
+
}
|
|
10255
|
+
export declare class UpdateWorkbenchEventResultResponseBody extends $tea.Model {
|
|
10256
|
+
requestId?: string;
|
|
10257
|
+
success?: boolean;
|
|
10258
|
+
static names(): {
|
|
10259
|
+
[key: string]: string;
|
|
10260
|
+
};
|
|
10261
|
+
static types(): {
|
|
10262
|
+
[key: string]: any;
|
|
10263
|
+
};
|
|
10264
|
+
constructor(map?: {
|
|
10265
|
+
[key: string]: any;
|
|
10266
|
+
});
|
|
10267
|
+
}
|
|
10268
|
+
export declare class UpdateWorkbenchEventResultResponse extends $tea.Model {
|
|
10269
|
+
headers: {
|
|
10270
|
+
[key: string]: string;
|
|
10271
|
+
};
|
|
10272
|
+
body: UpdateWorkbenchEventResultResponseBody;
|
|
10273
|
+
static names(): {
|
|
10274
|
+
[key: string]: string;
|
|
10275
|
+
};
|
|
10276
|
+
static types(): {
|
|
10277
|
+
[key: string]: any;
|
|
10278
|
+
};
|
|
10279
|
+
constructor(map?: {
|
|
10280
|
+
[key: string]: any;
|
|
10281
|
+
});
|
|
10282
|
+
}
|
|
10240
10283
|
export declare class CreateDISyncTaskResponseBodyData extends $tea.Model {
|
|
10241
10284
|
fileId?: number;
|
|
10242
10285
|
message?: string;
|
|
@@ -15821,4 +15864,6 @@ export default class Client extends OpenApi {
|
|
|
15821
15864
|
updateTableTheme(request: UpdateTableThemeRequest): Promise<UpdateTableThemeResponse>;
|
|
15822
15865
|
updateUdfFileWithOptions(request: UpdateUdfFileRequest, runtime: $Util.RuntimeOptions): Promise<UpdateUdfFileResponse>;
|
|
15823
15866
|
updateUdfFile(request: UpdateUdfFileRequest): Promise<UpdateUdfFileResponse>;
|
|
15867
|
+
updateWorkbenchEventResultWithOptions(request: UpdateWorkbenchEventResultRequest, runtime: $Util.RuntimeOptions): Promise<UpdateWorkbenchEventResultResponse>;
|
|
15868
|
+
updateWorkbenchEventResult(request: UpdateWorkbenchEventResultRequest): Promise<UpdateWorkbenchEventResultResponse>;
|
|
15824
15869
|
}
|
package/dist/client.js
CHANGED
|
@@ -14274,6 +14274,64 @@ class UpdateUdfFileResponse extends $tea.Model {
|
|
|
14274
14274
|
}
|
|
14275
14275
|
}
|
|
14276
14276
|
exports.UpdateUdfFileResponse = UpdateUdfFileResponse;
|
|
14277
|
+
class UpdateWorkbenchEventResultRequest extends $tea.Model {
|
|
14278
|
+
constructor(map) {
|
|
14279
|
+
super(map);
|
|
14280
|
+
}
|
|
14281
|
+
static names() {
|
|
14282
|
+
return {
|
|
14283
|
+
checkResult: 'CheckResult',
|
|
14284
|
+
checkResultTip: 'CheckResultTip',
|
|
14285
|
+
extensionCode: 'ExtensionCode',
|
|
14286
|
+
messageId: 'MessageId',
|
|
14287
|
+
};
|
|
14288
|
+
}
|
|
14289
|
+
static types() {
|
|
14290
|
+
return {
|
|
14291
|
+
checkResult: 'string',
|
|
14292
|
+
checkResultTip: 'string',
|
|
14293
|
+
extensionCode: 'string',
|
|
14294
|
+
messageId: 'string',
|
|
14295
|
+
};
|
|
14296
|
+
}
|
|
14297
|
+
}
|
|
14298
|
+
exports.UpdateWorkbenchEventResultRequest = UpdateWorkbenchEventResultRequest;
|
|
14299
|
+
class UpdateWorkbenchEventResultResponseBody extends $tea.Model {
|
|
14300
|
+
constructor(map) {
|
|
14301
|
+
super(map);
|
|
14302
|
+
}
|
|
14303
|
+
static names() {
|
|
14304
|
+
return {
|
|
14305
|
+
requestId: 'RequestId',
|
|
14306
|
+
success: 'Success',
|
|
14307
|
+
};
|
|
14308
|
+
}
|
|
14309
|
+
static types() {
|
|
14310
|
+
return {
|
|
14311
|
+
requestId: 'string',
|
|
14312
|
+
success: 'boolean',
|
|
14313
|
+
};
|
|
14314
|
+
}
|
|
14315
|
+
}
|
|
14316
|
+
exports.UpdateWorkbenchEventResultResponseBody = UpdateWorkbenchEventResultResponseBody;
|
|
14317
|
+
class UpdateWorkbenchEventResultResponse extends $tea.Model {
|
|
14318
|
+
constructor(map) {
|
|
14319
|
+
super(map);
|
|
14320
|
+
}
|
|
14321
|
+
static names() {
|
|
14322
|
+
return {
|
|
14323
|
+
headers: 'headers',
|
|
14324
|
+
body: 'body',
|
|
14325
|
+
};
|
|
14326
|
+
}
|
|
14327
|
+
static types() {
|
|
14328
|
+
return {
|
|
14329
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
14330
|
+
body: UpdateWorkbenchEventResultResponseBody,
|
|
14331
|
+
};
|
|
14332
|
+
}
|
|
14333
|
+
}
|
|
14334
|
+
exports.UpdateWorkbenchEventResultResponse = UpdateWorkbenchEventResultResponse;
|
|
14277
14335
|
class CreateDISyncTaskResponseBodyData extends $tea.Model {
|
|
14278
14336
|
constructor(map) {
|
|
14279
14337
|
super(map);
|
|
@@ -30381,6 +30439,41 @@ class Client extends openapi_client_1.default {
|
|
|
30381
30439
|
let runtime = new $Util.RuntimeOptions({});
|
|
30382
30440
|
return await this.updateUdfFileWithOptions(request, runtime);
|
|
30383
30441
|
}
|
|
30442
|
+
async updateWorkbenchEventResultWithOptions(request, runtime) {
|
|
30443
|
+
tea_util_1.default.validateModel(request);
|
|
30444
|
+
let query = {};
|
|
30445
|
+
if (!tea_util_1.default.isUnset(request.checkResult)) {
|
|
30446
|
+
query["CheckResult"] = request.checkResult;
|
|
30447
|
+
}
|
|
30448
|
+
if (!tea_util_1.default.isUnset(request.checkResultTip)) {
|
|
30449
|
+
query["CheckResultTip"] = request.checkResultTip;
|
|
30450
|
+
}
|
|
30451
|
+
if (!tea_util_1.default.isUnset(request.extensionCode)) {
|
|
30452
|
+
query["ExtensionCode"] = request.extensionCode;
|
|
30453
|
+
}
|
|
30454
|
+
if (!tea_util_1.default.isUnset(request.messageId)) {
|
|
30455
|
+
query["MessageId"] = request.messageId;
|
|
30456
|
+
}
|
|
30457
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
30458
|
+
query: openapi_util_1.default.query(query),
|
|
30459
|
+
});
|
|
30460
|
+
let params = new $OpenApi.Params({
|
|
30461
|
+
action: "UpdateWorkbenchEventResult",
|
|
30462
|
+
version: "2020-05-18",
|
|
30463
|
+
protocol: "HTTPS",
|
|
30464
|
+
pathname: "/",
|
|
30465
|
+
method: "POST",
|
|
30466
|
+
authType: "AK",
|
|
30467
|
+
style: "RPC",
|
|
30468
|
+
reqBodyType: "formData",
|
|
30469
|
+
bodyType: "json",
|
|
30470
|
+
});
|
|
30471
|
+
return $tea.cast(await this.callApi(params, req, runtime), new UpdateWorkbenchEventResultResponse({}));
|
|
30472
|
+
}
|
|
30473
|
+
async updateWorkbenchEventResult(request) {
|
|
30474
|
+
let runtime = new $Util.RuntimeOptions({});
|
|
30475
|
+
return await this.updateWorkbenchEventResultWithOptions(request, runtime);
|
|
30476
|
+
}
|
|
30384
30477
|
}
|
|
30385
30478
|
exports.default = Client;
|
|
30386
30479
|
//# sourceMappingURL=client.js.map
|