@alicloud/dataworks-public20200518 4.4.8 → 4.4.10
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 +318 -0
- package/dist/client.js +622 -0
- package/dist/client.js.map +1 -1
- package/package.json +2 -2
- package/src/client.ts +858 -78
package/dist/client.js
CHANGED
|
@@ -75,6 +75,66 @@ class Entity extends $tea.Model {
|
|
|
75
75
|
}
|
|
76
76
|
}
|
|
77
77
|
exports.Entity = Entity;
|
|
78
|
+
class LineageEntityVO extends $tea.Model {
|
|
79
|
+
constructor(map) {
|
|
80
|
+
super(map);
|
|
81
|
+
}
|
|
82
|
+
static names() {
|
|
83
|
+
return {
|
|
84
|
+
detailUrl: 'DetailUrl',
|
|
85
|
+
name: 'Name',
|
|
86
|
+
parentName: 'ParentName',
|
|
87
|
+
qualifiedName: 'QualifiedName',
|
|
88
|
+
};
|
|
89
|
+
}
|
|
90
|
+
static types() {
|
|
91
|
+
return {
|
|
92
|
+
detailUrl: 'string',
|
|
93
|
+
name: 'string',
|
|
94
|
+
parentName: 'string',
|
|
95
|
+
qualifiedName: 'string',
|
|
96
|
+
};
|
|
97
|
+
}
|
|
98
|
+
}
|
|
99
|
+
exports.LineageEntityVO = LineageEntityVO;
|
|
100
|
+
class LineageRelationRegisterVO extends $tea.Model {
|
|
101
|
+
constructor(map) {
|
|
102
|
+
super(map);
|
|
103
|
+
}
|
|
104
|
+
static names() {
|
|
105
|
+
return {
|
|
106
|
+
createTimestamp: 'CreateTimestamp',
|
|
107
|
+
destEntity: 'DestEntity',
|
|
108
|
+
relationship: 'Relationship',
|
|
109
|
+
srcEntity: 'SrcEntity',
|
|
110
|
+
};
|
|
111
|
+
}
|
|
112
|
+
static types() {
|
|
113
|
+
return {
|
|
114
|
+
createTimestamp: 'number',
|
|
115
|
+
destEntity: LineageEntityVO,
|
|
116
|
+
relationship: RelationshipVO,
|
|
117
|
+
srcEntity: LineageEntityVO,
|
|
118
|
+
};
|
|
119
|
+
}
|
|
120
|
+
}
|
|
121
|
+
exports.LineageRelationRegisterVO = LineageRelationRegisterVO;
|
|
122
|
+
class RelationshipVO extends $tea.Model {
|
|
123
|
+
constructor(map) {
|
|
124
|
+
super(map);
|
|
125
|
+
}
|
|
126
|
+
static names() {
|
|
127
|
+
return {
|
|
128
|
+
type: 'Type',
|
|
129
|
+
};
|
|
130
|
+
}
|
|
131
|
+
static types() {
|
|
132
|
+
return {
|
|
133
|
+
type: 'string',
|
|
134
|
+
};
|
|
135
|
+
}
|
|
136
|
+
}
|
|
137
|
+
exports.RelationshipVO = RelationshipVO;
|
|
78
138
|
class AbolishDataServiceApiRequest extends $tea.Model {
|
|
79
139
|
constructor(map) {
|
|
80
140
|
super(map);
|
|
@@ -1505,6 +1565,7 @@ class CreateFileRequest extends $tea.Model {
|
|
|
1505
1565
|
autoRerunTimes: 'AutoRerunTimes',
|
|
1506
1566
|
connectionName: 'ConnectionName',
|
|
1507
1567
|
content: 'Content',
|
|
1568
|
+
createFolderIfNotExists: 'CreateFolderIfNotExists',
|
|
1508
1569
|
cronExpress: 'CronExpress',
|
|
1509
1570
|
cycleType: 'CycleType',
|
|
1510
1571
|
dependentNodeIdList: 'DependentNodeIdList',
|
|
@@ -1539,6 +1600,7 @@ class CreateFileRequest extends $tea.Model {
|
|
|
1539
1600
|
autoRerunTimes: 'number',
|
|
1540
1601
|
connectionName: 'string',
|
|
1541
1602
|
content: 'string',
|
|
1603
|
+
createFolderIfNotExists: 'boolean',
|
|
1542
1604
|
cronExpress: 'string',
|
|
1543
1605
|
cycleType: 'string',
|
|
1544
1606
|
dependentNodeIdList: 'string',
|
|
@@ -2525,6 +2587,82 @@ class CreateRemindResponse extends $tea.Model {
|
|
|
2525
2587
|
}
|
|
2526
2588
|
}
|
|
2527
2589
|
exports.CreateRemindResponse = CreateRemindResponse;
|
|
2590
|
+
class CreateResourceFileRequest extends $tea.Model {
|
|
2591
|
+
constructor(map) {
|
|
2592
|
+
super(map);
|
|
2593
|
+
}
|
|
2594
|
+
static names() {
|
|
2595
|
+
return {
|
|
2596
|
+
content: 'Content',
|
|
2597
|
+
fileDescription: 'FileDescription',
|
|
2598
|
+
fileFolderPath: 'FileFolderPath',
|
|
2599
|
+
fileName: 'FileName',
|
|
2600
|
+
fileType: 'FileType',
|
|
2601
|
+
originResourceName: 'OriginResourceName',
|
|
2602
|
+
owner: 'Owner',
|
|
2603
|
+
projectId: 'ProjectId',
|
|
2604
|
+
registerToCalcEngine: 'RegisterToCalcEngine',
|
|
2605
|
+
resourceFile: 'ResourceFile',
|
|
2606
|
+
storageURL: 'StorageURL',
|
|
2607
|
+
uploadMode: 'UploadMode',
|
|
2608
|
+
};
|
|
2609
|
+
}
|
|
2610
|
+
static types() {
|
|
2611
|
+
return {
|
|
2612
|
+
content: 'string',
|
|
2613
|
+
fileDescription: 'string',
|
|
2614
|
+
fileFolderPath: 'string',
|
|
2615
|
+
fileName: 'string',
|
|
2616
|
+
fileType: 'number',
|
|
2617
|
+
originResourceName: 'string',
|
|
2618
|
+
owner: 'string',
|
|
2619
|
+
projectId: 'number',
|
|
2620
|
+
registerToCalcEngine: 'boolean',
|
|
2621
|
+
resourceFile: 'string',
|
|
2622
|
+
storageURL: 'string',
|
|
2623
|
+
uploadMode: 'boolean',
|
|
2624
|
+
};
|
|
2625
|
+
}
|
|
2626
|
+
}
|
|
2627
|
+
exports.CreateResourceFileRequest = CreateResourceFileRequest;
|
|
2628
|
+
class CreateResourceFileResponseBody extends $tea.Model {
|
|
2629
|
+
constructor(map) {
|
|
2630
|
+
super(map);
|
|
2631
|
+
}
|
|
2632
|
+
static names() {
|
|
2633
|
+
return {
|
|
2634
|
+
data: 'Data',
|
|
2635
|
+
requestId: 'RequestId',
|
|
2636
|
+
};
|
|
2637
|
+
}
|
|
2638
|
+
static types() {
|
|
2639
|
+
return {
|
|
2640
|
+
data: 'number',
|
|
2641
|
+
requestId: 'string',
|
|
2642
|
+
};
|
|
2643
|
+
}
|
|
2644
|
+
}
|
|
2645
|
+
exports.CreateResourceFileResponseBody = CreateResourceFileResponseBody;
|
|
2646
|
+
class CreateResourceFileResponse extends $tea.Model {
|
|
2647
|
+
constructor(map) {
|
|
2648
|
+
super(map);
|
|
2649
|
+
}
|
|
2650
|
+
static names() {
|
|
2651
|
+
return {
|
|
2652
|
+
headers: 'headers',
|
|
2653
|
+
statusCode: 'statusCode',
|
|
2654
|
+
body: 'body',
|
|
2655
|
+
};
|
|
2656
|
+
}
|
|
2657
|
+
static types() {
|
|
2658
|
+
return {
|
|
2659
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2660
|
+
statusCode: 'number',
|
|
2661
|
+
body: CreateResourceFileResponseBody,
|
|
2662
|
+
};
|
|
2663
|
+
}
|
|
2664
|
+
}
|
|
2665
|
+
exports.CreateResourceFileResponse = CreateResourceFileResponse;
|
|
2528
2666
|
class CreateTableRequest extends $tea.Model {
|
|
2529
2667
|
constructor(map) {
|
|
2530
2668
|
super(map);
|
|
@@ -2761,6 +2899,7 @@ class CreateUdfFileRequest extends $tea.Model {
|
|
|
2761
2899
|
return {
|
|
2762
2900
|
className: 'ClassName',
|
|
2763
2901
|
cmdDescription: 'CmdDescription',
|
|
2902
|
+
createFolderIfNotExists: 'CreateFolderIfNotExists',
|
|
2764
2903
|
example: 'Example',
|
|
2765
2904
|
fileFolderPath: 'FileFolderPath',
|
|
2766
2905
|
fileName: 'FileName',
|
|
@@ -2777,6 +2916,7 @@ class CreateUdfFileRequest extends $tea.Model {
|
|
|
2777
2916
|
return {
|
|
2778
2917
|
className: 'string',
|
|
2779
2918
|
cmdDescription: 'string',
|
|
2919
|
+
createFolderIfNotExists: 'boolean',
|
|
2780
2920
|
example: 'string',
|
|
2781
2921
|
fileFolderPath: 'string',
|
|
2782
2922
|
fileName: 'string',
|
|
@@ -3461,6 +3601,72 @@ class DeleteFromMetaCategoryResponse extends $tea.Model {
|
|
|
3461
3601
|
}
|
|
3462
3602
|
}
|
|
3463
3603
|
exports.DeleteFromMetaCategoryResponse = DeleteFromMetaCategoryResponse;
|
|
3604
|
+
class DeleteLineageRelationRequest extends $tea.Model {
|
|
3605
|
+
constructor(map) {
|
|
3606
|
+
super(map);
|
|
3607
|
+
}
|
|
3608
|
+
static names() {
|
|
3609
|
+
return {
|
|
3610
|
+
destEntityQualifiedName: 'DestEntityQualifiedName',
|
|
3611
|
+
relationshipGuid: 'RelationshipGuid',
|
|
3612
|
+
srcEntityQualifiedName: 'SrcEntityQualifiedName',
|
|
3613
|
+
};
|
|
3614
|
+
}
|
|
3615
|
+
static types() {
|
|
3616
|
+
return {
|
|
3617
|
+
destEntityQualifiedName: 'string',
|
|
3618
|
+
relationshipGuid: 'string',
|
|
3619
|
+
srcEntityQualifiedName: 'string',
|
|
3620
|
+
};
|
|
3621
|
+
}
|
|
3622
|
+
}
|
|
3623
|
+
exports.DeleteLineageRelationRequest = DeleteLineageRelationRequest;
|
|
3624
|
+
class DeleteLineageRelationResponseBody extends $tea.Model {
|
|
3625
|
+
constructor(map) {
|
|
3626
|
+
super(map);
|
|
3627
|
+
}
|
|
3628
|
+
static names() {
|
|
3629
|
+
return {
|
|
3630
|
+
errorCode: 'ErrorCode',
|
|
3631
|
+
errorMessage: 'ErrorMessage',
|
|
3632
|
+
httpStatusCode: 'HttpStatusCode',
|
|
3633
|
+
requestId: 'RequestId',
|
|
3634
|
+
status: 'Status',
|
|
3635
|
+
success: 'Success',
|
|
3636
|
+
};
|
|
3637
|
+
}
|
|
3638
|
+
static types() {
|
|
3639
|
+
return {
|
|
3640
|
+
errorCode: 'string',
|
|
3641
|
+
errorMessage: 'string',
|
|
3642
|
+
httpStatusCode: 'number',
|
|
3643
|
+
requestId: 'string',
|
|
3644
|
+
status: 'boolean',
|
|
3645
|
+
success: 'boolean',
|
|
3646
|
+
};
|
|
3647
|
+
}
|
|
3648
|
+
}
|
|
3649
|
+
exports.DeleteLineageRelationResponseBody = DeleteLineageRelationResponseBody;
|
|
3650
|
+
class DeleteLineageRelationResponse extends $tea.Model {
|
|
3651
|
+
constructor(map) {
|
|
3652
|
+
super(map);
|
|
3653
|
+
}
|
|
3654
|
+
static names() {
|
|
3655
|
+
return {
|
|
3656
|
+
headers: 'headers',
|
|
3657
|
+
statusCode: 'statusCode',
|
|
3658
|
+
body: 'body',
|
|
3659
|
+
};
|
|
3660
|
+
}
|
|
3661
|
+
static types() {
|
|
3662
|
+
return {
|
|
3663
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3664
|
+
statusCode: 'number',
|
|
3665
|
+
body: DeleteLineageRelationResponseBody,
|
|
3666
|
+
};
|
|
3667
|
+
}
|
|
3668
|
+
}
|
|
3669
|
+
exports.DeleteLineageRelationResponse = DeleteLineageRelationResponse;
|
|
3464
3670
|
class DeleteMetaCategoryRequest extends $tea.Model {
|
|
3465
3671
|
constructor(map) {
|
|
3466
3672
|
super(map);
|
|
@@ -10715,9 +10921,13 @@ class ListFilesRequest extends $tea.Model {
|
|
|
10715
10921
|
}
|
|
10716
10922
|
static names() {
|
|
10717
10923
|
return {
|
|
10924
|
+
exactFileName: 'ExactFileName',
|
|
10718
10925
|
fileFolderPath: 'FileFolderPath',
|
|
10926
|
+
fileIdIn: 'FileIdIn',
|
|
10719
10927
|
fileTypes: 'FileTypes',
|
|
10720
10928
|
keyword: 'Keyword',
|
|
10929
|
+
needAbsoluteFolderPath: 'NeedAbsoluteFolderPath',
|
|
10930
|
+
needContent: 'NeedContent',
|
|
10721
10931
|
nodeId: 'NodeId',
|
|
10722
10932
|
owner: 'Owner',
|
|
10723
10933
|
pageNumber: 'PageNumber',
|
|
@@ -10729,9 +10939,13 @@ class ListFilesRequest extends $tea.Model {
|
|
|
10729
10939
|
}
|
|
10730
10940
|
static types() {
|
|
10731
10941
|
return {
|
|
10942
|
+
exactFileName: 'string',
|
|
10732
10943
|
fileFolderPath: 'string',
|
|
10944
|
+
fileIdIn: 'string',
|
|
10733
10945
|
fileTypes: 'string',
|
|
10734
10946
|
keyword: 'string',
|
|
10947
|
+
needAbsoluteFolderPath: 'boolean',
|
|
10948
|
+
needContent: 'boolean',
|
|
10735
10949
|
nodeId: 'number',
|
|
10736
10950
|
owner: 'string',
|
|
10737
10951
|
pageNumber: 'number',
|
|
@@ -11131,6 +11345,76 @@ class ListInstancesResponse extends $tea.Model {
|
|
|
11131
11345
|
}
|
|
11132
11346
|
}
|
|
11133
11347
|
exports.ListInstancesResponse = ListInstancesResponse;
|
|
11348
|
+
class ListLineageRequest extends $tea.Model {
|
|
11349
|
+
constructor(map) {
|
|
11350
|
+
super(map);
|
|
11351
|
+
}
|
|
11352
|
+
static names() {
|
|
11353
|
+
return {
|
|
11354
|
+
direction: 'Direction',
|
|
11355
|
+
entityQualifiedName: 'EntityQualifiedName',
|
|
11356
|
+
keyword: 'Keyword',
|
|
11357
|
+
nextToken: 'NextToken',
|
|
11358
|
+
pageSize: 'PageSize',
|
|
11359
|
+
};
|
|
11360
|
+
}
|
|
11361
|
+
static types() {
|
|
11362
|
+
return {
|
|
11363
|
+
direction: 'string',
|
|
11364
|
+
entityQualifiedName: 'string',
|
|
11365
|
+
keyword: 'string',
|
|
11366
|
+
nextToken: 'string',
|
|
11367
|
+
pageSize: 'number',
|
|
11368
|
+
};
|
|
11369
|
+
}
|
|
11370
|
+
}
|
|
11371
|
+
exports.ListLineageRequest = ListLineageRequest;
|
|
11372
|
+
class ListLineageResponseBody extends $tea.Model {
|
|
11373
|
+
constructor(map) {
|
|
11374
|
+
super(map);
|
|
11375
|
+
}
|
|
11376
|
+
static names() {
|
|
11377
|
+
return {
|
|
11378
|
+
data: 'Data',
|
|
11379
|
+
errorCode: 'ErrorCode',
|
|
11380
|
+
errorMessage: 'ErrorMessage',
|
|
11381
|
+
httpStatusCode: 'HttpStatusCode',
|
|
11382
|
+
requestId: 'RequestId',
|
|
11383
|
+
success: 'Success',
|
|
11384
|
+
};
|
|
11385
|
+
}
|
|
11386
|
+
static types() {
|
|
11387
|
+
return {
|
|
11388
|
+
data: ListLineageResponseBodyData,
|
|
11389
|
+
errorCode: 'string',
|
|
11390
|
+
errorMessage: 'string',
|
|
11391
|
+
httpStatusCode: 'number',
|
|
11392
|
+
requestId: 'string',
|
|
11393
|
+
success: 'boolean',
|
|
11394
|
+
};
|
|
11395
|
+
}
|
|
11396
|
+
}
|
|
11397
|
+
exports.ListLineageResponseBody = ListLineageResponseBody;
|
|
11398
|
+
class ListLineageResponse extends $tea.Model {
|
|
11399
|
+
constructor(map) {
|
|
11400
|
+
super(map);
|
|
11401
|
+
}
|
|
11402
|
+
static names() {
|
|
11403
|
+
return {
|
|
11404
|
+
headers: 'headers',
|
|
11405
|
+
statusCode: 'statusCode',
|
|
11406
|
+
body: 'body',
|
|
11407
|
+
};
|
|
11408
|
+
}
|
|
11409
|
+
static types() {
|
|
11410
|
+
return {
|
|
11411
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
11412
|
+
statusCode: 'number',
|
|
11413
|
+
body: ListLineageResponseBody,
|
|
11414
|
+
};
|
|
11415
|
+
}
|
|
11416
|
+
}
|
|
11417
|
+
exports.ListLineageResponse = ListLineageResponse;
|
|
11134
11418
|
class ListManualDagInstancesRequest extends $tea.Model {
|
|
11135
11419
|
constructor(map) {
|
|
11136
11420
|
super(map);
|
|
@@ -13317,6 +13601,84 @@ class QueryPublicModelEngineResponse extends $tea.Model {
|
|
|
13317
13601
|
}
|
|
13318
13602
|
}
|
|
13319
13603
|
exports.QueryPublicModelEngineResponse = QueryPublicModelEngineResponse;
|
|
13604
|
+
class RegisterLineageRelationRequest extends $tea.Model {
|
|
13605
|
+
constructor(map) {
|
|
13606
|
+
super(map);
|
|
13607
|
+
}
|
|
13608
|
+
static names() {
|
|
13609
|
+
return {
|
|
13610
|
+
lineageRelationRegisterVO: 'LineageRelationRegisterVO',
|
|
13611
|
+
};
|
|
13612
|
+
}
|
|
13613
|
+
static types() {
|
|
13614
|
+
return {
|
|
13615
|
+
lineageRelationRegisterVO: LineageRelationRegisterVO,
|
|
13616
|
+
};
|
|
13617
|
+
}
|
|
13618
|
+
}
|
|
13619
|
+
exports.RegisterLineageRelationRequest = RegisterLineageRelationRequest;
|
|
13620
|
+
class RegisterLineageRelationShrinkRequest extends $tea.Model {
|
|
13621
|
+
constructor(map) {
|
|
13622
|
+
super(map);
|
|
13623
|
+
}
|
|
13624
|
+
static names() {
|
|
13625
|
+
return {
|
|
13626
|
+
lineageRelationRegisterVOShrink: 'LineageRelationRegisterVO',
|
|
13627
|
+
};
|
|
13628
|
+
}
|
|
13629
|
+
static types() {
|
|
13630
|
+
return {
|
|
13631
|
+
lineageRelationRegisterVOShrink: 'string',
|
|
13632
|
+
};
|
|
13633
|
+
}
|
|
13634
|
+
}
|
|
13635
|
+
exports.RegisterLineageRelationShrinkRequest = RegisterLineageRelationShrinkRequest;
|
|
13636
|
+
class RegisterLineageRelationResponseBody extends $tea.Model {
|
|
13637
|
+
constructor(map) {
|
|
13638
|
+
super(map);
|
|
13639
|
+
}
|
|
13640
|
+
static names() {
|
|
13641
|
+
return {
|
|
13642
|
+
errorCode: 'ErrorCode',
|
|
13643
|
+
errorMessage: 'ErrorMessage',
|
|
13644
|
+
httpStatusCode: 'HttpStatusCode',
|
|
13645
|
+
lineageRelation: 'LineageRelation',
|
|
13646
|
+
requestId: 'RequestId',
|
|
13647
|
+
success: 'Success',
|
|
13648
|
+
};
|
|
13649
|
+
}
|
|
13650
|
+
static types() {
|
|
13651
|
+
return {
|
|
13652
|
+
errorCode: 'string',
|
|
13653
|
+
errorMessage: 'string',
|
|
13654
|
+
httpStatusCode: 'number',
|
|
13655
|
+
lineageRelation: RegisterLineageRelationResponseBodyLineageRelation,
|
|
13656
|
+
requestId: 'string',
|
|
13657
|
+
success: 'boolean',
|
|
13658
|
+
};
|
|
13659
|
+
}
|
|
13660
|
+
}
|
|
13661
|
+
exports.RegisterLineageRelationResponseBody = RegisterLineageRelationResponseBody;
|
|
13662
|
+
class RegisterLineageRelationResponse extends $tea.Model {
|
|
13663
|
+
constructor(map) {
|
|
13664
|
+
super(map);
|
|
13665
|
+
}
|
|
13666
|
+
static names() {
|
|
13667
|
+
return {
|
|
13668
|
+
headers: 'headers',
|
|
13669
|
+
statusCode: 'statusCode',
|
|
13670
|
+
body: 'body',
|
|
13671
|
+
};
|
|
13672
|
+
}
|
|
13673
|
+
static types() {
|
|
13674
|
+
return {
|
|
13675
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
13676
|
+
statusCode: 'number',
|
|
13677
|
+
body: RegisterLineageRelationResponseBody,
|
|
13678
|
+
};
|
|
13679
|
+
}
|
|
13680
|
+
}
|
|
13681
|
+
exports.RegisterLineageRelationResponse = RegisterLineageRelationResponse;
|
|
13320
13682
|
class RemoveProjectMemberFromRoleRequest extends $tea.Model {
|
|
13321
13683
|
constructor(map) {
|
|
13322
13684
|
super(map);
|
|
@@ -23575,6 +23937,7 @@ class ListFilesResponseBodyDataFiles extends $tea.Model {
|
|
|
23575
23937
|
}
|
|
23576
23938
|
static names() {
|
|
23577
23939
|
return {
|
|
23940
|
+
absoluteFolderPath: 'AbsoluteFolderPath',
|
|
23578
23941
|
autoParsing: 'AutoParsing',
|
|
23579
23942
|
bizId: 'BizId',
|
|
23580
23943
|
businessId: 'BusinessId',
|
|
@@ -23600,6 +23963,7 @@ class ListFilesResponseBodyDataFiles extends $tea.Model {
|
|
|
23600
23963
|
}
|
|
23601
23964
|
static types() {
|
|
23602
23965
|
return {
|
|
23966
|
+
absoluteFolderPath: 'string',
|
|
23603
23967
|
autoParsing: 'boolean',
|
|
23604
23968
|
bizId: 'number',
|
|
23605
23969
|
businessId: 'number',
|
|
@@ -23917,6 +24281,66 @@ class ListInstancesResponseBodyData extends $tea.Model {
|
|
|
23917
24281
|
}
|
|
23918
24282
|
}
|
|
23919
24283
|
exports.ListInstancesResponseBodyData = ListInstancesResponseBodyData;
|
|
24284
|
+
class ListLineageResponseBodyDataDataEntityListRelationList extends $tea.Model {
|
|
24285
|
+
constructor(map) {
|
|
24286
|
+
super(map);
|
|
24287
|
+
}
|
|
24288
|
+
static names() {
|
|
24289
|
+
return {
|
|
24290
|
+
channel: 'Channel',
|
|
24291
|
+
datasource: 'Datasource',
|
|
24292
|
+
guid: 'Guid',
|
|
24293
|
+
type: 'Type',
|
|
24294
|
+
};
|
|
24295
|
+
}
|
|
24296
|
+
static types() {
|
|
24297
|
+
return {
|
|
24298
|
+
channel: 'string',
|
|
24299
|
+
datasource: 'string',
|
|
24300
|
+
guid: 'string',
|
|
24301
|
+
type: 'string',
|
|
24302
|
+
};
|
|
24303
|
+
}
|
|
24304
|
+
}
|
|
24305
|
+
exports.ListLineageResponseBodyDataDataEntityListRelationList = ListLineageResponseBodyDataDataEntityListRelationList;
|
|
24306
|
+
class ListLineageResponseBodyDataDataEntityList extends $tea.Model {
|
|
24307
|
+
constructor(map) {
|
|
24308
|
+
super(map);
|
|
24309
|
+
}
|
|
24310
|
+
static names() {
|
|
24311
|
+
return {
|
|
24312
|
+
createTimestamp: 'CreateTimestamp',
|
|
24313
|
+
entity: 'Entity',
|
|
24314
|
+
relationList: 'RelationList',
|
|
24315
|
+
};
|
|
24316
|
+
}
|
|
24317
|
+
static types() {
|
|
24318
|
+
return {
|
|
24319
|
+
createTimestamp: 'number',
|
|
24320
|
+
entity: Entity,
|
|
24321
|
+
relationList: { 'type': 'array', 'itemType': ListLineageResponseBodyDataDataEntityListRelationList },
|
|
24322
|
+
};
|
|
24323
|
+
}
|
|
24324
|
+
}
|
|
24325
|
+
exports.ListLineageResponseBodyDataDataEntityList = ListLineageResponseBodyDataDataEntityList;
|
|
24326
|
+
class ListLineageResponseBodyData extends $tea.Model {
|
|
24327
|
+
constructor(map) {
|
|
24328
|
+
super(map);
|
|
24329
|
+
}
|
|
24330
|
+
static names() {
|
|
24331
|
+
return {
|
|
24332
|
+
dataEntityList: 'DataEntityList',
|
|
24333
|
+
nextToken: 'NextToken',
|
|
24334
|
+
};
|
|
24335
|
+
}
|
|
24336
|
+
static types() {
|
|
24337
|
+
return {
|
|
24338
|
+
dataEntityList: { 'type': 'array', 'itemType': ListLineageResponseBodyDataDataEntityList },
|
|
24339
|
+
nextToken: 'string',
|
|
24340
|
+
};
|
|
24341
|
+
}
|
|
24342
|
+
}
|
|
24343
|
+
exports.ListLineageResponseBodyData = ListLineageResponseBodyData;
|
|
23920
24344
|
class ListManualDagInstancesResponseBodyInstances extends $tea.Model {
|
|
23921
24345
|
constructor(map) {
|
|
23922
24346
|
super(map);
|
|
@@ -25565,6 +25989,26 @@ class QueryDISyncTaskConfigProcessResultResponseBodyData extends $tea.Model {
|
|
|
25565
25989
|
}
|
|
25566
25990
|
}
|
|
25567
25991
|
exports.QueryDISyncTaskConfigProcessResultResponseBodyData = QueryDISyncTaskConfigProcessResultResponseBodyData;
|
|
25992
|
+
class RegisterLineageRelationResponseBodyLineageRelation extends $tea.Model {
|
|
25993
|
+
constructor(map) {
|
|
25994
|
+
super(map);
|
|
25995
|
+
}
|
|
25996
|
+
static names() {
|
|
25997
|
+
return {
|
|
25998
|
+
destEntityQualifiedName: 'DestEntityQualifiedName',
|
|
25999
|
+
relationshipGuid: 'RelationshipGuid',
|
|
26000
|
+
srcEntityQualifiedName: 'SrcEntityQualifiedName',
|
|
26001
|
+
};
|
|
26002
|
+
}
|
|
26003
|
+
static types() {
|
|
26004
|
+
return {
|
|
26005
|
+
destEntityQualifiedName: 'string',
|
|
26006
|
+
relationshipGuid: 'string',
|
|
26007
|
+
srcEntityQualifiedName: 'string',
|
|
26008
|
+
};
|
|
26009
|
+
}
|
|
26010
|
+
}
|
|
26011
|
+
exports.RegisterLineageRelationResponseBodyLineageRelation = RegisterLineageRelationResponseBodyLineageRelation;
|
|
25568
26012
|
class SearchMetaTablesResponseBodyDataDataEntityList extends $tea.Model {
|
|
25569
26013
|
constructor(map) {
|
|
25570
26014
|
super(map);
|
|
@@ -27091,6 +27535,9 @@ class Client extends openapi_client_1.default {
|
|
|
27091
27535
|
if (!tea_util_1.default.isUnset(request.content)) {
|
|
27092
27536
|
body["Content"] = request.content;
|
|
27093
27537
|
}
|
|
27538
|
+
if (!tea_util_1.default.isUnset(request.createFolderIfNotExists)) {
|
|
27539
|
+
body["CreateFolderIfNotExists"] = request.createFolderIfNotExists;
|
|
27540
|
+
}
|
|
27094
27541
|
if (!tea_util_1.default.isUnset(request.cronExpress)) {
|
|
27095
27542
|
body["CronExpress"] = request.cronExpress;
|
|
27096
27543
|
}
|
|
@@ -27879,6 +28326,65 @@ class Client extends openapi_client_1.default {
|
|
|
27879
28326
|
let runtime = new $Util.RuntimeOptions({});
|
|
27880
28327
|
return await this.createRemindWithOptions(request, runtime);
|
|
27881
28328
|
}
|
|
28329
|
+
async createResourceFileWithOptions(request, runtime) {
|
|
28330
|
+
tea_util_1.default.validateModel(request);
|
|
28331
|
+
let body = {};
|
|
28332
|
+
if (!tea_util_1.default.isUnset(request.content)) {
|
|
28333
|
+
body["Content"] = request.content;
|
|
28334
|
+
}
|
|
28335
|
+
if (!tea_util_1.default.isUnset(request.fileDescription)) {
|
|
28336
|
+
body["FileDescription"] = request.fileDescription;
|
|
28337
|
+
}
|
|
28338
|
+
if (!tea_util_1.default.isUnset(request.fileFolderPath)) {
|
|
28339
|
+
body["FileFolderPath"] = request.fileFolderPath;
|
|
28340
|
+
}
|
|
28341
|
+
if (!tea_util_1.default.isUnset(request.fileName)) {
|
|
28342
|
+
body["FileName"] = request.fileName;
|
|
28343
|
+
}
|
|
28344
|
+
if (!tea_util_1.default.isUnset(request.fileType)) {
|
|
28345
|
+
body["FileType"] = request.fileType;
|
|
28346
|
+
}
|
|
28347
|
+
if (!tea_util_1.default.isUnset(request.originResourceName)) {
|
|
28348
|
+
body["OriginResourceName"] = request.originResourceName;
|
|
28349
|
+
}
|
|
28350
|
+
if (!tea_util_1.default.isUnset(request.owner)) {
|
|
28351
|
+
body["Owner"] = request.owner;
|
|
28352
|
+
}
|
|
28353
|
+
if (!tea_util_1.default.isUnset(request.projectId)) {
|
|
28354
|
+
body["ProjectId"] = request.projectId;
|
|
28355
|
+
}
|
|
28356
|
+
if (!tea_util_1.default.isUnset(request.registerToCalcEngine)) {
|
|
28357
|
+
body["RegisterToCalcEngine"] = request.registerToCalcEngine;
|
|
28358
|
+
}
|
|
28359
|
+
if (!tea_util_1.default.isUnset(request.resourceFile)) {
|
|
28360
|
+
body["ResourceFile"] = request.resourceFile;
|
|
28361
|
+
}
|
|
28362
|
+
if (!tea_util_1.default.isUnset(request.storageURL)) {
|
|
28363
|
+
body["StorageURL"] = request.storageURL;
|
|
28364
|
+
}
|
|
28365
|
+
if (!tea_util_1.default.isUnset(request.uploadMode)) {
|
|
28366
|
+
body["UploadMode"] = request.uploadMode;
|
|
28367
|
+
}
|
|
28368
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
28369
|
+
body: openapi_util_1.default.parseToMap(body),
|
|
28370
|
+
});
|
|
28371
|
+
let params = new $OpenApi.Params({
|
|
28372
|
+
action: "CreateResourceFile",
|
|
28373
|
+
version: "2020-05-18",
|
|
28374
|
+
protocol: "HTTPS",
|
|
28375
|
+
pathname: "/",
|
|
28376
|
+
method: "POST",
|
|
28377
|
+
authType: "AK",
|
|
28378
|
+
style: "RPC",
|
|
28379
|
+
reqBodyType: "formData",
|
|
28380
|
+
bodyType: "json",
|
|
28381
|
+
});
|
|
28382
|
+
return $tea.cast(await this.callApi(params, req, runtime), new CreateResourceFileResponse({}));
|
|
28383
|
+
}
|
|
28384
|
+
async createResourceFile(request) {
|
|
28385
|
+
let runtime = new $Util.RuntimeOptions({});
|
|
28386
|
+
return await this.createResourceFileWithOptions(request, runtime);
|
|
28387
|
+
}
|
|
27882
28388
|
async createTableWithOptions(request, runtime) {
|
|
27883
28389
|
tea_util_1.default.validateModel(request);
|
|
27884
28390
|
let query = {};
|
|
@@ -28043,6 +28549,9 @@ class Client extends openapi_client_1.default {
|
|
|
28043
28549
|
if (!tea_util_1.default.isUnset(request.cmdDescription)) {
|
|
28044
28550
|
body["CmdDescription"] = request.cmdDescription;
|
|
28045
28551
|
}
|
|
28552
|
+
if (!tea_util_1.default.isUnset(request.createFolderIfNotExists)) {
|
|
28553
|
+
body["CreateFolderIfNotExists"] = request.createFolderIfNotExists;
|
|
28554
|
+
}
|
|
28046
28555
|
if (!tea_util_1.default.isUnset(request.example)) {
|
|
28047
28556
|
body["Example"] = request.example;
|
|
28048
28557
|
}
|
|
@@ -28413,6 +28922,38 @@ class Client extends openapi_client_1.default {
|
|
|
28413
28922
|
let runtime = new $Util.RuntimeOptions({});
|
|
28414
28923
|
return await this.deleteFromMetaCategoryWithOptions(request, runtime);
|
|
28415
28924
|
}
|
|
28925
|
+
async deleteLineageRelationWithOptions(request, runtime) {
|
|
28926
|
+
tea_util_1.default.validateModel(request);
|
|
28927
|
+
let query = {};
|
|
28928
|
+
if (!tea_util_1.default.isUnset(request.destEntityQualifiedName)) {
|
|
28929
|
+
query["DestEntityQualifiedName"] = request.destEntityQualifiedName;
|
|
28930
|
+
}
|
|
28931
|
+
if (!tea_util_1.default.isUnset(request.relationshipGuid)) {
|
|
28932
|
+
query["RelationshipGuid"] = request.relationshipGuid;
|
|
28933
|
+
}
|
|
28934
|
+
if (!tea_util_1.default.isUnset(request.srcEntityQualifiedName)) {
|
|
28935
|
+
query["SrcEntityQualifiedName"] = request.srcEntityQualifiedName;
|
|
28936
|
+
}
|
|
28937
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
28938
|
+
query: openapi_util_1.default.query(query),
|
|
28939
|
+
});
|
|
28940
|
+
let params = new $OpenApi.Params({
|
|
28941
|
+
action: "DeleteLineageRelation",
|
|
28942
|
+
version: "2020-05-18",
|
|
28943
|
+
protocol: "HTTPS",
|
|
28944
|
+
pathname: "/",
|
|
28945
|
+
method: "POST",
|
|
28946
|
+
authType: "AK",
|
|
28947
|
+
style: "RPC",
|
|
28948
|
+
reqBodyType: "formData",
|
|
28949
|
+
bodyType: "json",
|
|
28950
|
+
});
|
|
28951
|
+
return $tea.cast(await this.callApi(params, req, runtime), new DeleteLineageRelationResponse({}));
|
|
28952
|
+
}
|
|
28953
|
+
async deleteLineageRelation(request) {
|
|
28954
|
+
let runtime = new $Util.RuntimeOptions({});
|
|
28955
|
+
return await this.deleteLineageRelationWithOptions(request, runtime);
|
|
28956
|
+
}
|
|
28416
28957
|
async deleteMetaCategoryWithOptions(request, runtime) {
|
|
28417
28958
|
tea_util_1.default.validateModel(request);
|
|
28418
28959
|
let query = openapi_util_1.default.query(tea_util_1.default.toMap(request));
|
|
@@ -32381,15 +32922,27 @@ class Client extends openapi_client_1.default {
|
|
|
32381
32922
|
async listFilesWithOptions(request, runtime) {
|
|
32382
32923
|
tea_util_1.default.validateModel(request);
|
|
32383
32924
|
let body = {};
|
|
32925
|
+
if (!tea_util_1.default.isUnset(request.exactFileName)) {
|
|
32926
|
+
body["ExactFileName"] = request.exactFileName;
|
|
32927
|
+
}
|
|
32384
32928
|
if (!tea_util_1.default.isUnset(request.fileFolderPath)) {
|
|
32385
32929
|
body["FileFolderPath"] = request.fileFolderPath;
|
|
32386
32930
|
}
|
|
32931
|
+
if (!tea_util_1.default.isUnset(request.fileIdIn)) {
|
|
32932
|
+
body["FileIdIn"] = request.fileIdIn;
|
|
32933
|
+
}
|
|
32387
32934
|
if (!tea_util_1.default.isUnset(request.fileTypes)) {
|
|
32388
32935
|
body["FileTypes"] = request.fileTypes;
|
|
32389
32936
|
}
|
|
32390
32937
|
if (!tea_util_1.default.isUnset(request.keyword)) {
|
|
32391
32938
|
body["Keyword"] = request.keyword;
|
|
32392
32939
|
}
|
|
32940
|
+
if (!tea_util_1.default.isUnset(request.needAbsoluteFolderPath)) {
|
|
32941
|
+
body["NeedAbsoluteFolderPath"] = request.needAbsoluteFolderPath;
|
|
32942
|
+
}
|
|
32943
|
+
if (!tea_util_1.default.isUnset(request.needContent)) {
|
|
32944
|
+
body["NeedContent"] = request.needContent;
|
|
32945
|
+
}
|
|
32393
32946
|
if (!tea_util_1.default.isUnset(request.nodeId)) {
|
|
32394
32947
|
body["NodeId"] = request.nodeId;
|
|
32395
32948
|
}
|
|
@@ -32639,6 +33192,44 @@ class Client extends openapi_client_1.default {
|
|
|
32639
33192
|
let runtime = new $Util.RuntimeOptions({});
|
|
32640
33193
|
return await this.listInstancesWithOptions(request, runtime);
|
|
32641
33194
|
}
|
|
33195
|
+
async listLineageWithOptions(request, runtime) {
|
|
33196
|
+
tea_util_1.default.validateModel(request);
|
|
33197
|
+
let query = {};
|
|
33198
|
+
if (!tea_util_1.default.isUnset(request.direction)) {
|
|
33199
|
+
query["Direction"] = request.direction;
|
|
33200
|
+
}
|
|
33201
|
+
if (!tea_util_1.default.isUnset(request.entityQualifiedName)) {
|
|
33202
|
+
query["EntityQualifiedName"] = request.entityQualifiedName;
|
|
33203
|
+
}
|
|
33204
|
+
if (!tea_util_1.default.isUnset(request.keyword)) {
|
|
33205
|
+
query["Keyword"] = request.keyword;
|
|
33206
|
+
}
|
|
33207
|
+
if (!tea_util_1.default.isUnset(request.nextToken)) {
|
|
33208
|
+
query["NextToken"] = request.nextToken;
|
|
33209
|
+
}
|
|
33210
|
+
if (!tea_util_1.default.isUnset(request.pageSize)) {
|
|
33211
|
+
query["PageSize"] = request.pageSize;
|
|
33212
|
+
}
|
|
33213
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
33214
|
+
query: openapi_util_1.default.query(query),
|
|
33215
|
+
});
|
|
33216
|
+
let params = new $OpenApi.Params({
|
|
33217
|
+
action: "ListLineage",
|
|
33218
|
+
version: "2020-05-18",
|
|
33219
|
+
protocol: "HTTPS",
|
|
33220
|
+
pathname: "/",
|
|
33221
|
+
method: "POST",
|
|
33222
|
+
authType: "AK",
|
|
33223
|
+
style: "RPC",
|
|
33224
|
+
reqBodyType: "formData",
|
|
33225
|
+
bodyType: "json",
|
|
33226
|
+
});
|
|
33227
|
+
return $tea.cast(await this.callApi(params, req, runtime), new ListLineageResponse({}));
|
|
33228
|
+
}
|
|
33229
|
+
async listLineage(request) {
|
|
33230
|
+
let runtime = new $Util.RuntimeOptions({});
|
|
33231
|
+
return await this.listLineageWithOptions(request, runtime);
|
|
33232
|
+
}
|
|
32642
33233
|
async listManualDagInstancesWithOptions(request, runtime) {
|
|
32643
33234
|
tea_util_1.default.validateModel(request);
|
|
32644
33235
|
let body = {};
|
|
@@ -33880,6 +34471,37 @@ class Client extends openapi_client_1.default {
|
|
|
33880
34471
|
let runtime = new $Util.RuntimeOptions({});
|
|
33881
34472
|
return await this.queryPublicModelEngineWithOptions(request, runtime);
|
|
33882
34473
|
}
|
|
34474
|
+
async registerLineageRelationWithOptions(tmpReq, runtime) {
|
|
34475
|
+
tea_util_1.default.validateModel(tmpReq);
|
|
34476
|
+
let request = new RegisterLineageRelationShrinkRequest({});
|
|
34477
|
+
openapi_util_1.default.convert(tmpReq, request);
|
|
34478
|
+
if (!tea_util_1.default.isUnset(tmpReq.lineageRelationRegisterVO)) {
|
|
34479
|
+
request.lineageRelationRegisterVOShrink = openapi_util_1.default.arrayToStringWithSpecifiedStyle(tmpReq.lineageRelationRegisterVO, "LineageRelationRegisterVO", "json");
|
|
34480
|
+
}
|
|
34481
|
+
let body = {};
|
|
34482
|
+
if (!tea_util_1.default.isUnset(request.lineageRelationRegisterVOShrink)) {
|
|
34483
|
+
body["LineageRelationRegisterVO"] = request.lineageRelationRegisterVOShrink;
|
|
34484
|
+
}
|
|
34485
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
34486
|
+
body: openapi_util_1.default.parseToMap(body),
|
|
34487
|
+
});
|
|
34488
|
+
let params = new $OpenApi.Params({
|
|
34489
|
+
action: "RegisterLineageRelation",
|
|
34490
|
+
version: "2020-05-18",
|
|
34491
|
+
protocol: "HTTPS",
|
|
34492
|
+
pathname: "/",
|
|
34493
|
+
method: "POST",
|
|
34494
|
+
authType: "AK",
|
|
34495
|
+
style: "RPC",
|
|
34496
|
+
reqBodyType: "formData",
|
|
34497
|
+
bodyType: "json",
|
|
34498
|
+
});
|
|
34499
|
+
return $tea.cast(await this.callApi(params, req, runtime), new RegisterLineageRelationResponse({}));
|
|
34500
|
+
}
|
|
34501
|
+
async registerLineageRelation(request) {
|
|
34502
|
+
let runtime = new $Util.RuntimeOptions({});
|
|
34503
|
+
return await this.registerLineageRelationWithOptions(request, runtime);
|
|
34504
|
+
}
|
|
33883
34505
|
async removeProjectMemberFromRoleWithOptions(request, runtime) {
|
|
33884
34506
|
tea_util_1.default.validateModel(request);
|
|
33885
34507
|
let query = {};
|