@alicloud/dataworks-public20200518 4.4.7 → 4.4.9
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 +290 -76
- package/dist/client.js +505 -87
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +622 -98
package/dist/client.d.ts
CHANGED
|
@@ -42,6 +42,48 @@ export declare class Entity extends $tea.Model {
|
|
|
42
42
|
[key: string]: any;
|
|
43
43
|
});
|
|
44
44
|
}
|
|
45
|
+
export declare class LineageEntityVO extends $tea.Model {
|
|
46
|
+
detailUrl?: string;
|
|
47
|
+
name?: string;
|
|
48
|
+
parentName?: string;
|
|
49
|
+
qualifiedName?: string;
|
|
50
|
+
static names(): {
|
|
51
|
+
[key: string]: string;
|
|
52
|
+
};
|
|
53
|
+
static types(): {
|
|
54
|
+
[key: string]: any;
|
|
55
|
+
};
|
|
56
|
+
constructor(map?: {
|
|
57
|
+
[key: string]: any;
|
|
58
|
+
});
|
|
59
|
+
}
|
|
60
|
+
export declare class LineageRelationRegisterVO extends $tea.Model {
|
|
61
|
+
createTimestamp?: number;
|
|
62
|
+
destEntity?: LineageEntityVO;
|
|
63
|
+
relationship?: RelationshipVO;
|
|
64
|
+
srcEntity?: LineageEntityVO;
|
|
65
|
+
static names(): {
|
|
66
|
+
[key: string]: string;
|
|
67
|
+
};
|
|
68
|
+
static types(): {
|
|
69
|
+
[key: string]: any;
|
|
70
|
+
};
|
|
71
|
+
constructor(map?: {
|
|
72
|
+
[key: string]: any;
|
|
73
|
+
});
|
|
74
|
+
}
|
|
75
|
+
export declare class RelationshipVO extends $tea.Model {
|
|
76
|
+
type?: string;
|
|
77
|
+
static names(): {
|
|
78
|
+
[key: string]: string;
|
|
79
|
+
};
|
|
80
|
+
static types(): {
|
|
81
|
+
[key: string]: any;
|
|
82
|
+
};
|
|
83
|
+
constructor(map?: {
|
|
84
|
+
[key: string]: any;
|
|
85
|
+
});
|
|
86
|
+
}
|
|
45
87
|
export declare class AbolishDataServiceApiRequest extends $tea.Model {
|
|
46
88
|
apiId?: number;
|
|
47
89
|
projectId?: number;
|
|
@@ -470,8 +512,6 @@ export declare class CreateBaselineRequest extends $tea.Model {
|
|
|
470
512
|
}
|
|
471
513
|
export declare class CreateBaselineResponseBody extends $tea.Model {
|
|
472
514
|
data?: number;
|
|
473
|
-
dynamicErrorCode?: string;
|
|
474
|
-
dynamicErrorMessage?: string;
|
|
475
515
|
errorCode?: string;
|
|
476
516
|
errorMessage?: string;
|
|
477
517
|
httpStatusCode?: number;
|
|
@@ -1063,6 +1103,7 @@ export declare class CreateFileRequest extends $tea.Model {
|
|
|
1063
1103
|
fileFolderPath?: string;
|
|
1064
1104
|
fileName?: string;
|
|
1065
1105
|
fileType?: number;
|
|
1106
|
+
ignoreParentSkipRunningProperty?: boolean;
|
|
1066
1107
|
inputList?: string;
|
|
1067
1108
|
inputParameters?: string;
|
|
1068
1109
|
outputParameters?: string;
|
|
@@ -1975,8 +2016,6 @@ export declare class DeleteBaselineRequest extends $tea.Model {
|
|
|
1975
2016
|
}
|
|
1976
2017
|
export declare class DeleteBaselineResponseBody extends $tea.Model {
|
|
1977
2018
|
data?: boolean;
|
|
1978
|
-
dynamicErrorCode?: string;
|
|
1979
|
-
dynamicErrorMessage?: string;
|
|
1980
2019
|
errorCode?: string;
|
|
1981
2020
|
errorMessage?: string;
|
|
1982
2021
|
httpStatusCode?: number;
|
|
@@ -2414,6 +2453,53 @@ export declare class DeleteFromMetaCategoryResponse extends $tea.Model {
|
|
|
2414
2453
|
[key: string]: any;
|
|
2415
2454
|
});
|
|
2416
2455
|
}
|
|
2456
|
+
export declare class DeleteLineageRelationRequest extends $tea.Model {
|
|
2457
|
+
destEntityQualifiedName?: string;
|
|
2458
|
+
relationshipGuid?: string;
|
|
2459
|
+
srcEntityQualifiedName?: string;
|
|
2460
|
+
static names(): {
|
|
2461
|
+
[key: string]: string;
|
|
2462
|
+
};
|
|
2463
|
+
static types(): {
|
|
2464
|
+
[key: string]: any;
|
|
2465
|
+
};
|
|
2466
|
+
constructor(map?: {
|
|
2467
|
+
[key: string]: any;
|
|
2468
|
+
});
|
|
2469
|
+
}
|
|
2470
|
+
export declare class DeleteLineageRelationResponseBody extends $tea.Model {
|
|
2471
|
+
errorCode?: string;
|
|
2472
|
+
errorMessage?: string;
|
|
2473
|
+
httpStatusCode?: number;
|
|
2474
|
+
requestId?: string;
|
|
2475
|
+
status?: boolean;
|
|
2476
|
+
success?: boolean;
|
|
2477
|
+
static names(): {
|
|
2478
|
+
[key: string]: string;
|
|
2479
|
+
};
|
|
2480
|
+
static types(): {
|
|
2481
|
+
[key: string]: any;
|
|
2482
|
+
};
|
|
2483
|
+
constructor(map?: {
|
|
2484
|
+
[key: string]: any;
|
|
2485
|
+
});
|
|
2486
|
+
}
|
|
2487
|
+
export declare class DeleteLineageRelationResponse extends $tea.Model {
|
|
2488
|
+
headers: {
|
|
2489
|
+
[key: string]: string;
|
|
2490
|
+
};
|
|
2491
|
+
statusCode: number;
|
|
2492
|
+
body: DeleteLineageRelationResponseBody;
|
|
2493
|
+
static names(): {
|
|
2494
|
+
[key: string]: string;
|
|
2495
|
+
};
|
|
2496
|
+
static types(): {
|
|
2497
|
+
[key: string]: any;
|
|
2498
|
+
};
|
|
2499
|
+
constructor(map?: {
|
|
2500
|
+
[key: string]: any;
|
|
2501
|
+
});
|
|
2502
|
+
}
|
|
2417
2503
|
export declare class DeleteMetaCategoryRequest extends $tea.Model {
|
|
2418
2504
|
categoryId?: number;
|
|
2419
2505
|
static names(): {
|
|
@@ -3301,8 +3387,6 @@ export declare class GetBaselineRequest extends $tea.Model {
|
|
|
3301
3387
|
}
|
|
3302
3388
|
export declare class GetBaselineResponseBody extends $tea.Model {
|
|
3303
3389
|
data?: GetBaselineResponseBodyData;
|
|
3304
|
-
dynamicErrorCode?: string;
|
|
3305
|
-
dynamicErrorMessage?: string;
|
|
3306
3390
|
errorCode?: string;
|
|
3307
3391
|
errorMessage?: string;
|
|
3308
3392
|
httpStatusCode?: number;
|
|
@@ -6685,8 +6769,6 @@ export declare class ListBaselinesRequest extends $tea.Model {
|
|
|
6685
6769
|
}
|
|
6686
6770
|
export declare class ListBaselinesResponseBody extends $tea.Model {
|
|
6687
6771
|
data?: ListBaselinesResponseBodyData;
|
|
6688
|
-
dynamicErrorCode?: string;
|
|
6689
|
-
dynamicErrorMessage?: string;
|
|
6690
6772
|
errorCode?: string;
|
|
6691
6773
|
errorMessage?: string;
|
|
6692
6774
|
httpStatusCode?: number;
|
|
@@ -7911,6 +7993,55 @@ export declare class ListInstancesResponse extends $tea.Model {
|
|
|
7911
7993
|
[key: string]: any;
|
|
7912
7994
|
});
|
|
7913
7995
|
}
|
|
7996
|
+
export declare class ListLineageRequest extends $tea.Model {
|
|
7997
|
+
direction?: string;
|
|
7998
|
+
entityQualifiedName?: string;
|
|
7999
|
+
keyword?: string;
|
|
8000
|
+
nextToken?: string;
|
|
8001
|
+
pageSize?: number;
|
|
8002
|
+
static names(): {
|
|
8003
|
+
[key: string]: string;
|
|
8004
|
+
};
|
|
8005
|
+
static types(): {
|
|
8006
|
+
[key: string]: any;
|
|
8007
|
+
};
|
|
8008
|
+
constructor(map?: {
|
|
8009
|
+
[key: string]: any;
|
|
8010
|
+
});
|
|
8011
|
+
}
|
|
8012
|
+
export declare class ListLineageResponseBody extends $tea.Model {
|
|
8013
|
+
data?: ListLineageResponseBodyData;
|
|
8014
|
+
errorCode?: string;
|
|
8015
|
+
errorMessage?: string;
|
|
8016
|
+
httpStatusCode?: number;
|
|
8017
|
+
requestId?: string;
|
|
8018
|
+
success?: boolean;
|
|
8019
|
+
static names(): {
|
|
8020
|
+
[key: string]: string;
|
|
8021
|
+
};
|
|
8022
|
+
static types(): {
|
|
8023
|
+
[key: string]: any;
|
|
8024
|
+
};
|
|
8025
|
+
constructor(map?: {
|
|
8026
|
+
[key: string]: any;
|
|
8027
|
+
});
|
|
8028
|
+
}
|
|
8029
|
+
export declare class ListLineageResponse extends $tea.Model {
|
|
8030
|
+
headers: {
|
|
8031
|
+
[key: string]: string;
|
|
8032
|
+
};
|
|
8033
|
+
statusCode: number;
|
|
8034
|
+
body: ListLineageResponseBody;
|
|
8035
|
+
static names(): {
|
|
8036
|
+
[key: string]: string;
|
|
8037
|
+
};
|
|
8038
|
+
static types(): {
|
|
8039
|
+
[key: string]: any;
|
|
8040
|
+
};
|
|
8041
|
+
constructor(map?: {
|
|
8042
|
+
[key: string]: any;
|
|
8043
|
+
});
|
|
8044
|
+
}
|
|
7914
8045
|
export declare class ListManualDagInstancesRequest extends $tea.Model {
|
|
7915
8046
|
dagId?: string;
|
|
7916
8047
|
projectEnv?: string;
|
|
@@ -9476,6 +9607,63 @@ export declare class QueryPublicModelEngineResponse extends $tea.Model {
|
|
|
9476
9607
|
[key: string]: any;
|
|
9477
9608
|
});
|
|
9478
9609
|
}
|
|
9610
|
+
export declare class RegisterLineageRelationRequest extends $tea.Model {
|
|
9611
|
+
lineageRelationRegisterVO?: LineageRelationRegisterVO;
|
|
9612
|
+
static names(): {
|
|
9613
|
+
[key: string]: string;
|
|
9614
|
+
};
|
|
9615
|
+
static types(): {
|
|
9616
|
+
[key: string]: any;
|
|
9617
|
+
};
|
|
9618
|
+
constructor(map?: {
|
|
9619
|
+
[key: string]: any;
|
|
9620
|
+
});
|
|
9621
|
+
}
|
|
9622
|
+
export declare class RegisterLineageRelationShrinkRequest extends $tea.Model {
|
|
9623
|
+
lineageRelationRegisterVOShrink?: string;
|
|
9624
|
+
static names(): {
|
|
9625
|
+
[key: string]: string;
|
|
9626
|
+
};
|
|
9627
|
+
static types(): {
|
|
9628
|
+
[key: string]: any;
|
|
9629
|
+
};
|
|
9630
|
+
constructor(map?: {
|
|
9631
|
+
[key: string]: any;
|
|
9632
|
+
});
|
|
9633
|
+
}
|
|
9634
|
+
export declare class RegisterLineageRelationResponseBody extends $tea.Model {
|
|
9635
|
+
errorCode?: string;
|
|
9636
|
+
errorMessage?: string;
|
|
9637
|
+
httpStatusCode?: number;
|
|
9638
|
+
lineageRelation?: RegisterLineageRelationResponseBodyLineageRelation;
|
|
9639
|
+
requestId?: string;
|
|
9640
|
+
success?: boolean;
|
|
9641
|
+
static names(): {
|
|
9642
|
+
[key: string]: string;
|
|
9643
|
+
};
|
|
9644
|
+
static types(): {
|
|
9645
|
+
[key: string]: any;
|
|
9646
|
+
};
|
|
9647
|
+
constructor(map?: {
|
|
9648
|
+
[key: string]: any;
|
|
9649
|
+
});
|
|
9650
|
+
}
|
|
9651
|
+
export declare class RegisterLineageRelationResponse extends $tea.Model {
|
|
9652
|
+
headers: {
|
|
9653
|
+
[key: string]: string;
|
|
9654
|
+
};
|
|
9655
|
+
statusCode: number;
|
|
9656
|
+
body: RegisterLineageRelationResponseBody;
|
|
9657
|
+
static names(): {
|
|
9658
|
+
[key: string]: string;
|
|
9659
|
+
};
|
|
9660
|
+
static types(): {
|
|
9661
|
+
[key: string]: any;
|
|
9662
|
+
};
|
|
9663
|
+
constructor(map?: {
|
|
9664
|
+
[key: string]: any;
|
|
9665
|
+
});
|
|
9666
|
+
}
|
|
9479
9667
|
export declare class RemoveProjectMemberFromRoleRequest extends $tea.Model {
|
|
9480
9668
|
projectId?: number;
|
|
9481
9669
|
roleCode?: string;
|
|
@@ -9761,6 +9949,7 @@ export declare class RunCycleDagNodesResponse extends $tea.Model {
|
|
|
9761
9949
|
export declare class RunManualDagNodesRequest extends $tea.Model {
|
|
9762
9950
|
bizDate?: string;
|
|
9763
9951
|
dagParameters?: string;
|
|
9952
|
+
endBizDate?: string;
|
|
9764
9953
|
excludeNodeIds?: string;
|
|
9765
9954
|
flowName?: string;
|
|
9766
9955
|
includeNodeIds?: string;
|
|
@@ -9768,6 +9957,7 @@ export declare class RunManualDagNodesRequest extends $tea.Model {
|
|
|
9768
9957
|
projectEnv?: string;
|
|
9769
9958
|
projectId?: number;
|
|
9770
9959
|
projectName?: string;
|
|
9960
|
+
startBizDate?: string;
|
|
9771
9961
|
static names(): {
|
|
9772
9962
|
[key: string]: string;
|
|
9773
9963
|
};
|
|
@@ -10818,8 +11008,6 @@ export declare class UpdateBaselineShrinkRequest extends $tea.Model {
|
|
|
10818
11008
|
}
|
|
10819
11009
|
export declare class UpdateBaselineResponseBody extends $tea.Model {
|
|
10820
11010
|
data?: boolean;
|
|
10821
|
-
dynamicErrorCode?: string;
|
|
10822
|
-
dynamicErrorMessage?: string;
|
|
10823
11011
|
errorCode?: string;
|
|
10824
11012
|
errorMessage?: string;
|
|
10825
11013
|
httpStatusCode?: number;
|
|
@@ -11159,6 +11347,7 @@ export declare class UpdateFileRequest extends $tea.Model {
|
|
|
11159
11347
|
fileFolderPath?: string;
|
|
11160
11348
|
fileId?: number;
|
|
11161
11349
|
fileName?: string;
|
|
11350
|
+
ignoreParentSkipRunningProperty?: boolean;
|
|
11162
11351
|
inputList?: string;
|
|
11163
11352
|
inputParameters?: string;
|
|
11164
11353
|
outputList?: string;
|
|
@@ -12377,11 +12566,11 @@ export declare class GetBaselineResponseBodyData extends $tea.Model {
|
|
|
12377
12566
|
baselineName?: string;
|
|
12378
12567
|
baselineType?: string;
|
|
12379
12568
|
enabled?: boolean;
|
|
12569
|
+
nodeIds?: number[];
|
|
12380
12570
|
overTimeSettings?: GetBaselineResponseBodyDataOverTimeSettings[];
|
|
12381
12571
|
owner?: string;
|
|
12382
12572
|
priority?: number;
|
|
12383
12573
|
projectId?: number;
|
|
12384
|
-
taskIds?: number[];
|
|
12385
12574
|
static names(): {
|
|
12386
12575
|
[key: string]: string;
|
|
12387
12576
|
};
|
|
@@ -16537,6 +16726,48 @@ export declare class ListInstancesResponseBodyData extends $tea.Model {
|
|
|
16537
16726
|
[key: string]: any;
|
|
16538
16727
|
});
|
|
16539
16728
|
}
|
|
16729
|
+
export declare class ListLineageResponseBodyDataDataEntityListRelationList extends $tea.Model {
|
|
16730
|
+
channel?: string;
|
|
16731
|
+
datasource?: string;
|
|
16732
|
+
guid?: string;
|
|
16733
|
+
type?: string;
|
|
16734
|
+
static names(): {
|
|
16735
|
+
[key: string]: string;
|
|
16736
|
+
};
|
|
16737
|
+
static types(): {
|
|
16738
|
+
[key: string]: any;
|
|
16739
|
+
};
|
|
16740
|
+
constructor(map?: {
|
|
16741
|
+
[key: string]: any;
|
|
16742
|
+
});
|
|
16743
|
+
}
|
|
16744
|
+
export declare class ListLineageResponseBodyDataDataEntityList extends $tea.Model {
|
|
16745
|
+
createTimestamp?: number;
|
|
16746
|
+
entity?: Entity;
|
|
16747
|
+
relationList?: ListLineageResponseBodyDataDataEntityListRelationList[];
|
|
16748
|
+
static names(): {
|
|
16749
|
+
[key: string]: string;
|
|
16750
|
+
};
|
|
16751
|
+
static types(): {
|
|
16752
|
+
[key: string]: any;
|
|
16753
|
+
};
|
|
16754
|
+
constructor(map?: {
|
|
16755
|
+
[key: string]: any;
|
|
16756
|
+
});
|
|
16757
|
+
}
|
|
16758
|
+
export declare class ListLineageResponseBodyData extends $tea.Model {
|
|
16759
|
+
dataEntityList?: ListLineageResponseBodyDataDataEntityList[];
|
|
16760
|
+
nextToken?: string;
|
|
16761
|
+
static names(): {
|
|
16762
|
+
[key: string]: string;
|
|
16763
|
+
};
|
|
16764
|
+
static types(): {
|
|
16765
|
+
[key: string]: any;
|
|
16766
|
+
};
|
|
16767
|
+
constructor(map?: {
|
|
16768
|
+
[key: string]: any;
|
|
16769
|
+
});
|
|
16770
|
+
}
|
|
16540
16771
|
export declare class ListManualDagInstancesResponseBodyInstances extends $tea.Model {
|
|
16541
16772
|
beginRunningTime?: number;
|
|
16542
16773
|
beginWaitResTime?: number;
|
|
@@ -17603,6 +17834,20 @@ export declare class QueryDISyncTaskConfigProcessResultResponseBodyData extends
|
|
|
17603
17834
|
[key: string]: any;
|
|
17604
17835
|
});
|
|
17605
17836
|
}
|
|
17837
|
+
export declare class RegisterLineageRelationResponseBodyLineageRelation extends $tea.Model {
|
|
17838
|
+
destEntityQualifiedName?: string;
|
|
17839
|
+
relationshipGuid?: string;
|
|
17840
|
+
srcEntityQualifiedName?: string;
|
|
17841
|
+
static names(): {
|
|
17842
|
+
[key: string]: string;
|
|
17843
|
+
};
|
|
17844
|
+
static types(): {
|
|
17845
|
+
[key: string]: any;
|
|
17846
|
+
};
|
|
17847
|
+
constructor(map?: {
|
|
17848
|
+
[key: string]: any;
|
|
17849
|
+
});
|
|
17850
|
+
}
|
|
17606
17851
|
export declare class SearchMetaTablesResponseBodyDataDataEntityList extends $tea.Model {
|
|
17607
17852
|
clusterId?: string;
|
|
17608
17853
|
databaseName?: string;
|
|
@@ -17990,7 +18235,7 @@ export default class Client extends OpenApi {
|
|
|
17990
18235
|
addMetaCollectionEntityWithOptions(request: AddMetaCollectionEntityRequest, runtime: $Util.RuntimeOptions): Promise<AddMetaCollectionEntityResponse>;
|
|
17991
18236
|
addMetaCollectionEntity(request: AddMetaCollectionEntityRequest): Promise<AddMetaCollectionEntityResponse>;
|
|
17992
18237
|
/**
|
|
17993
|
-
*
|
|
18238
|
+
* The ID of the DataWorks workspace. You can call the [ListProjects](~~178393~~) operation to query the ID.
|
|
17994
18239
|
*
|
|
17995
18240
|
* @param request AddProjectMemberToRoleRequest
|
|
17996
18241
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -17998,7 +18243,7 @@ export default class Client extends OpenApi {
|
|
|
17998
18243
|
*/
|
|
17999
18244
|
addProjectMemberToRoleWithOptions(request: AddProjectMemberToRoleRequest, runtime: $Util.RuntimeOptions): Promise<AddProjectMemberToRoleResponse>;
|
|
18000
18245
|
/**
|
|
18001
|
-
*
|
|
18246
|
+
* The ID of the DataWorks workspace. You can call the [ListProjects](~~178393~~) operation to query the ID.
|
|
18002
18247
|
*
|
|
18003
18248
|
* @param request AddProjectMemberToRoleRequest
|
|
18004
18249
|
* @return AddProjectMemberToRoleResponse
|
|
@@ -18158,7 +18403,8 @@ export default class Client extends OpenApi {
|
|
|
18158
18403
|
createMetaCategoryWithOptions(request: CreateMetaCategoryRequest, runtime: $Util.RuntimeOptions): Promise<CreateMetaCategoryResponse>;
|
|
18159
18404
|
createMetaCategory(request: CreateMetaCategoryRequest): Promise<CreateMetaCategoryResponse>;
|
|
18160
18405
|
/**
|
|
18161
|
-
*
|
|
18406
|
+
* A category must belong to a data album.
|
|
18407
|
+
* You can create a category in a data album only after you create the data album. You can set the value of the parentQualifiedName parameter to the unique identifier of the data album to create the category.
|
|
18162
18408
|
*
|
|
18163
18409
|
* @param request CreateMetaCollectionRequest
|
|
18164
18410
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -18166,7 +18412,8 @@ export default class Client extends OpenApi {
|
|
|
18166
18412
|
*/
|
|
18167
18413
|
createMetaCollectionWithOptions(request: CreateMetaCollectionRequest, runtime: $Util.RuntimeOptions): Promise<CreateMetaCollectionResponse>;
|
|
18168
18414
|
/**
|
|
18169
|
-
*
|
|
18415
|
+
* A category must belong to a data album.
|
|
18416
|
+
* You can create a category in a data album only after you create the data album. You can set the value of the parentQualifiedName parameter to the unique identifier of the data album to create the category.
|
|
18170
18417
|
*
|
|
18171
18418
|
* @param request CreateMetaCollectionRequest
|
|
18172
18419
|
* @return CreateMetaCollectionResponse
|
|
@@ -18227,6 +18474,8 @@ export default class Client extends OpenApi {
|
|
|
18227
18474
|
deleteFolder(request: DeleteFolderRequest): Promise<DeleteFolderResponse>;
|
|
18228
18475
|
deleteFromMetaCategoryWithOptions(request: DeleteFromMetaCategoryRequest, runtime: $Util.RuntimeOptions): Promise<DeleteFromMetaCategoryResponse>;
|
|
18229
18476
|
deleteFromMetaCategory(request: DeleteFromMetaCategoryRequest): Promise<DeleteFromMetaCategoryResponse>;
|
|
18477
|
+
deleteLineageRelationWithOptions(request: DeleteLineageRelationRequest, runtime: $Util.RuntimeOptions): Promise<DeleteLineageRelationResponse>;
|
|
18478
|
+
deleteLineageRelation(request: DeleteLineageRelationRequest): Promise<DeleteLineageRelationResponse>;
|
|
18230
18479
|
deleteMetaCategoryWithOptions(request: DeleteMetaCategoryRequest, runtime: $Util.RuntimeOptions): Promise<DeleteMetaCategoryResponse>;
|
|
18231
18480
|
deleteMetaCategory(request: DeleteMetaCategoryRequest): Promise<DeleteMetaCategoryResponse>;
|
|
18232
18481
|
deleteMetaCollectionWithOptions(request: DeleteMetaCollectionRequest, runtime: $Util.RuntimeOptions): Promise<DeleteMetaCollectionResponse>;
|
|
@@ -18275,8 +18524,7 @@ export default class Client extends OpenApi {
|
|
|
18275
18524
|
exportDataSourcesWithOptions(request: ExportDataSourcesRequest, runtime: $Util.RuntimeOptions): Promise<ExportDataSourcesResponse>;
|
|
18276
18525
|
exportDataSources(request: ExportDataSourcesRequest): Promise<ExportDataSourcesResponse>;
|
|
18277
18526
|
/**
|
|
18278
|
-
*
|
|
18279
|
-
* DataWorks allows you to create real-time synchronization nodes and synchronization solutions in Data Integration only in asynchronous mode.
|
|
18527
|
+
* The operation that you want to perform.
|
|
18280
18528
|
*
|
|
18281
18529
|
* @param request GenerateDISyncTaskConfigForCreatingRequest
|
|
18282
18530
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -18284,15 +18532,14 @@ export default class Client extends OpenApi {
|
|
|
18284
18532
|
*/
|
|
18285
18533
|
generateDISyncTaskConfigForCreatingWithOptions(request: GenerateDISyncTaskConfigForCreatingRequest, runtime: $Util.RuntimeOptions): Promise<GenerateDISyncTaskConfigForCreatingResponse>;
|
|
18286
18534
|
/**
|
|
18287
|
-
*
|
|
18288
|
-
* DataWorks allows you to create real-time synchronization nodes and synchronization solutions in Data Integration only in asynchronous mode.
|
|
18535
|
+
* The operation that you want to perform.
|
|
18289
18536
|
*
|
|
18290
18537
|
* @param request GenerateDISyncTaskConfigForCreatingRequest
|
|
18291
18538
|
* @return GenerateDISyncTaskConfigForCreatingResponse
|
|
18292
18539
|
*/
|
|
18293
18540
|
generateDISyncTaskConfigForCreating(request: GenerateDISyncTaskConfigForCreatingRequest): Promise<GenerateDISyncTaskConfigForCreatingResponse>;
|
|
18294
18541
|
/**
|
|
18295
|
-
*
|
|
18542
|
+
* The operation that you want to perform.
|
|
18296
18543
|
*
|
|
18297
18544
|
* @param request GenerateDISyncTaskConfigForUpdatingRequest
|
|
18298
18545
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -18300,7 +18547,7 @@ export default class Client extends OpenApi {
|
|
|
18300
18547
|
*/
|
|
18301
18548
|
generateDISyncTaskConfigForUpdatingWithOptions(request: GenerateDISyncTaskConfigForUpdatingRequest, runtime: $Util.RuntimeOptions): Promise<GenerateDISyncTaskConfigForUpdatingResponse>;
|
|
18302
18549
|
/**
|
|
18303
|
-
*
|
|
18550
|
+
* The operation that you want to perform.
|
|
18304
18551
|
*
|
|
18305
18552
|
* @param request GenerateDISyncTaskConfigForUpdatingRequest
|
|
18306
18553
|
* @return GenerateDISyncTaskConfigForUpdatingResponse
|
|
@@ -18484,7 +18731,8 @@ export default class Client extends OpenApi {
|
|
|
18484
18731
|
getMetaColumnLineageWithOptions(request: GetMetaColumnLineageRequest, runtime: $Util.RuntimeOptions): Promise<GetMetaColumnLineageResponse>;
|
|
18485
18732
|
getMetaColumnLineage(request: GetMetaColumnLineageRequest): Promise<GetMetaColumnLineageResponse>;
|
|
18486
18733
|
/**
|
|
18487
|
-
*
|
|
18734
|
+
* The ID of the EMR cluster. This parameter is required only if you set the DataSourceType parameter to emr.
|
|
18735
|
+
* You can log on to the [EMR console](https://emr.console.aliyun.com/?spm=a2c4g.11186623.0.0.965cc5c2GeiHet#/cn-hangzhou) to obtain the ID of the EMR cluster.
|
|
18488
18736
|
*
|
|
18489
18737
|
* @param request GetMetaDBInfoRequest
|
|
18490
18738
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -18492,7 +18740,8 @@ export default class Client extends OpenApi {
|
|
|
18492
18740
|
*/
|
|
18493
18741
|
getMetaDBInfoWithOptions(request: GetMetaDBInfoRequest, runtime: $Util.RuntimeOptions): Promise<GetMetaDBInfoResponse>;
|
|
18494
18742
|
/**
|
|
18495
|
-
*
|
|
18743
|
+
* The ID of the EMR cluster. This parameter is required only if you set the DataSourceType parameter to emr.
|
|
18744
|
+
* You can log on to the [EMR console](https://emr.console.aliyun.com/?spm=a2c4g.11186623.0.0.965cc5c2GeiHet#/cn-hangzhou) to obtain the ID of the EMR cluster.
|
|
18496
18745
|
*
|
|
18497
18746
|
* @param request GetMetaDBInfoRequest
|
|
18498
18747
|
* @return GetMetaDBInfoResponse
|
|
@@ -18530,7 +18779,7 @@ export default class Client extends OpenApi {
|
|
|
18530
18779
|
getMetaTableOutputWithOptions(request: GetMetaTableOutputRequest, runtime: $Util.RuntimeOptions): Promise<GetMetaTableOutputResponse>;
|
|
18531
18780
|
getMetaTableOutput(request: GetMetaTableOutputRequest): Promise<GetMetaTableOutputResponse>;
|
|
18532
18781
|
/**
|
|
18533
|
-
*
|
|
18782
|
+
* The operation that you want to perform. Set the value to **GetMetaTablePartition**.
|
|
18534
18783
|
*
|
|
18535
18784
|
* @param tmpReq GetMetaTablePartitionRequest
|
|
18536
18785
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -18538,7 +18787,7 @@ export default class Client extends OpenApi {
|
|
|
18538
18787
|
*/
|
|
18539
18788
|
getMetaTablePartitionWithOptions(tmpReq: GetMetaTablePartitionRequest, runtime: $Util.RuntimeOptions): Promise<GetMetaTablePartitionResponse>;
|
|
18540
18789
|
/**
|
|
18541
|
-
*
|
|
18790
|
+
* The operation that you want to perform. Set the value to **GetMetaTablePartition**.
|
|
18542
18791
|
*
|
|
18543
18792
|
* @param request GetMetaTablePartitionRequest
|
|
18544
18793
|
* @return GetMetaTablePartitionResponse
|
|
@@ -18719,16 +18968,7 @@ export default class Client extends OpenApi {
|
|
|
18719
18968
|
*/
|
|
18720
18969
|
listDIProjectConfig(request: ListDIProjectConfigRequest): Promise<ListDIProjectConfigResponse>;
|
|
18721
18970
|
/**
|
|
18722
|
-
*
|
|
18723
|
-
* * MANUAL: the DAG for a manually triggered workflow.
|
|
18724
|
-
* * SMOKE_TEST: the DAG for a smoke testing workflow.
|
|
18725
|
-
* * SUPPLY_DATA: the DAG for a data backfill instance.
|
|
18726
|
-
* * BUSINESS_PROCESS_DAG: the DAG for a one-time workflow.
|
|
18727
|
-
* Supported DAG states:
|
|
18728
|
-
* * CREATED: The DAG is created.
|
|
18729
|
-
* * RUNNING: The DAG is running.
|
|
18730
|
-
* * FAILURE: The DAG fails to run.
|
|
18731
|
-
* * SUCCESS: The DAG successfully runs.
|
|
18971
|
+
* The operation that you want to perform. Set the value to **ListDags**.
|
|
18732
18972
|
*
|
|
18733
18973
|
* @param request ListDagsRequest
|
|
18734
18974
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -18736,16 +18976,7 @@ export default class Client extends OpenApi {
|
|
|
18736
18976
|
*/
|
|
18737
18977
|
listDagsWithOptions(request: ListDagsRequest, runtime: $Util.RuntimeOptions): Promise<ListDagsResponse>;
|
|
18738
18978
|
/**
|
|
18739
|
-
*
|
|
18740
|
-
* * MANUAL: the DAG for a manually triggered workflow.
|
|
18741
|
-
* * SMOKE_TEST: the DAG for a smoke testing workflow.
|
|
18742
|
-
* * SUPPLY_DATA: the DAG for a data backfill instance.
|
|
18743
|
-
* * BUSINESS_PROCESS_DAG: the DAG for a one-time workflow.
|
|
18744
|
-
* Supported DAG states:
|
|
18745
|
-
* * CREATED: The DAG is created.
|
|
18746
|
-
* * RUNNING: The DAG is running.
|
|
18747
|
-
* * FAILURE: The DAG fails to run.
|
|
18748
|
-
* * SUCCESS: The DAG successfully runs.
|
|
18979
|
+
* The operation that you want to perform. Set the value to **ListDags**.
|
|
18749
18980
|
*
|
|
18750
18981
|
* @param request ListDagsRequest
|
|
18751
18982
|
* @return ListDagsResponse
|
|
@@ -18791,12 +19022,14 @@ export default class Client extends OpenApi {
|
|
|
18791
19022
|
listInstanceHistory(request: ListInstanceHistoryRequest): Promise<ListInstanceHistoryResponse>;
|
|
18792
19023
|
listInstancesWithOptions(request: ListInstancesRequest, runtime: $Util.RuntimeOptions): Promise<ListInstancesResponse>;
|
|
18793
19024
|
listInstances(request: ListInstancesRequest): Promise<ListInstancesResponse>;
|
|
19025
|
+
listLineageWithOptions(request: ListLineageRequest, runtime: $Util.RuntimeOptions): Promise<ListLineageResponse>;
|
|
19026
|
+
listLineage(request: ListLineageRequest): Promise<ListLineageResponse>;
|
|
18794
19027
|
listManualDagInstancesWithOptions(request: ListManualDagInstancesRequest, runtime: $Util.RuntimeOptions): Promise<ListManualDagInstancesResponse>;
|
|
18795
19028
|
listManualDagInstances(request: ListManualDagInstancesRequest): Promise<ListManualDagInstancesResponse>;
|
|
18796
19029
|
listMetaCollectionEntitiesWithOptions(request: ListMetaCollectionEntitiesRequest, runtime: $Util.RuntimeOptions): Promise<ListMetaCollectionEntitiesResponse>;
|
|
18797
19030
|
listMetaCollectionEntities(request: ListMetaCollectionEntitiesRequest): Promise<ListMetaCollectionEntitiesResponse>;
|
|
18798
19031
|
/**
|
|
18799
|
-
*
|
|
19032
|
+
* You can configure only one of the Creator, Administrator, and Follower parameters.
|
|
18800
19033
|
*
|
|
18801
19034
|
* @param request ListMetaCollectionsRequest
|
|
18802
19035
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -18804,7 +19037,7 @@ export default class Client extends OpenApi {
|
|
|
18804
19037
|
*/
|
|
18805
19038
|
listMetaCollectionsWithOptions(request: ListMetaCollectionsRequest, runtime: $Util.RuntimeOptions): Promise<ListMetaCollectionsResponse>;
|
|
18806
19039
|
/**
|
|
18807
|
-
*
|
|
19040
|
+
* You can configure only one of the Creator, Administrator, and Follower parameters.
|
|
18808
19041
|
*
|
|
18809
19042
|
* @param request ListMetaCollectionsRequest
|
|
18810
19043
|
* @return ListMetaCollectionsResponse
|
|
@@ -18919,8 +19152,7 @@ export default class Client extends OpenApi {
|
|
|
18919
19152
|
publishDataServiceApiWithOptions(request: PublishDataServiceApiRequest, runtime: $Util.RuntimeOptions): Promise<PublishDataServiceApiResponse>;
|
|
18920
19153
|
publishDataServiceApi(request: PublishDataServiceApiRequest): Promise<PublishDataServiceApiResponse>;
|
|
18921
19154
|
/**
|
|
18922
|
-
*
|
|
18923
|
-
* DataWorks allows you to create or update real-time synchronization nodes and synchronization solutions in Data Integration only in asynchronous mode.
|
|
19155
|
+
* The operation that you want to perform.
|
|
18924
19156
|
*
|
|
18925
19157
|
* @param request QueryDISyncTaskConfigProcessResultRequest
|
|
18926
19158
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -18928,34 +19160,16 @@ export default class Client extends OpenApi {
|
|
|
18928
19160
|
*/
|
|
18929
19161
|
queryDISyncTaskConfigProcessResultWithOptions(request: QueryDISyncTaskConfigProcessResultRequest, runtime: $Util.RuntimeOptions): Promise<QueryDISyncTaskConfigProcessResultResponse>;
|
|
18930
19162
|
/**
|
|
18931
|
-
*
|
|
18932
|
-
* DataWorks allows you to create or update real-time synchronization nodes and synchronization solutions in Data Integration only in asynchronous mode.
|
|
19163
|
+
* The operation that you want to perform.
|
|
18933
19164
|
*
|
|
18934
19165
|
* @param request QueryDISyncTaskConfigProcessResultRequest
|
|
18935
19166
|
* @return QueryDISyncTaskConfigProcessResultResponse
|
|
18936
19167
|
*/
|
|
18937
19168
|
queryDISyncTaskConfigProcessResult(request: QueryDISyncTaskConfigProcessResultRequest): Promise<QueryDISyncTaskConfigProcessResultResponse>;
|
|
18938
|
-
/**
|
|
18939
|
-
* * You must use FML statements to query information about the data modeling engine when you call this operation.
|
|
18940
|
-
* * The information about the data modeling engine can be queried by page, except for data layers, business processes, and data domains. You can add an offset to the end of an FML statement.
|
|
18941
|
-
* The num LIMIT num statement specifies the offset when the information about the data modeling engine is queried, and the number of pages to return each time. The offset value must be a multiple of the number of pages.
|
|
18942
|
-
* * A maximum of 1,000 entries can be returned each time you call the operation.
|
|
18943
|
-
*
|
|
18944
|
-
* @param request QueryPublicModelEngineRequest
|
|
18945
|
-
* @param runtime runtime options for this request RuntimeOptions
|
|
18946
|
-
* @return QueryPublicModelEngineResponse
|
|
18947
|
-
*/
|
|
18948
19169
|
queryPublicModelEngineWithOptions(request: QueryPublicModelEngineRequest, runtime: $Util.RuntimeOptions): Promise<QueryPublicModelEngineResponse>;
|
|
18949
|
-
/**
|
|
18950
|
-
* * You must use FML statements to query information about the data modeling engine when you call this operation.
|
|
18951
|
-
* * The information about the data modeling engine can be queried by page, except for data layers, business processes, and data domains. You can add an offset to the end of an FML statement.
|
|
18952
|
-
* The num LIMIT num statement specifies the offset when the information about the data modeling engine is queried, and the number of pages to return each time. The offset value must be a multiple of the number of pages.
|
|
18953
|
-
* * A maximum of 1,000 entries can be returned each time you call the operation.
|
|
18954
|
-
*
|
|
18955
|
-
* @param request QueryPublicModelEngineRequest
|
|
18956
|
-
* @return QueryPublicModelEngineResponse
|
|
18957
|
-
*/
|
|
18958
19170
|
queryPublicModelEngine(request: QueryPublicModelEngineRequest): Promise<QueryPublicModelEngineResponse>;
|
|
19171
|
+
registerLineageRelationWithOptions(tmpReq: RegisterLineageRelationRequest, runtime: $Util.RuntimeOptions): Promise<RegisterLineageRelationResponse>;
|
|
19172
|
+
registerLineageRelation(request: RegisterLineageRelationRequest): Promise<RegisterLineageRelationResponse>;
|
|
18959
19173
|
removeProjectMemberFromRoleWithOptions(request: RemoveProjectMemberFromRoleRequest, runtime: $Util.RuntimeOptions): Promise<RemoveProjectMemberFromRoleResponse>;
|
|
18960
19174
|
removeProjectMemberFromRole(request: RemoveProjectMemberFromRoleRequest): Promise<RemoveProjectMemberFromRoleResponse>;
|
|
18961
19175
|
restartInstanceWithOptions(request: RestartInstanceRequest, runtime: $Util.RuntimeOptions): Promise<RestartInstanceResponse>;
|
|
@@ -18992,7 +19206,7 @@ export default class Client extends OpenApi {
|
|
|
18992
19206
|
scanSensitiveDataWithOptions(request: ScanSensitiveDataRequest, runtime: $Util.RuntimeOptions): Promise<ScanSensitiveDataResponse>;
|
|
18993
19207
|
scanSensitiveData(request: ScanSensitiveDataRequest): Promise<ScanSensitiveDataResponse>;
|
|
18994
19208
|
/**
|
|
18995
|
-
*
|
|
19209
|
+
* The operation that you want to perform. Set the value to **SearchMetaTables**.
|
|
18996
19210
|
*
|
|
18997
19211
|
* @param request SearchMetaTablesRequest
|
|
18998
19212
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -19000,7 +19214,7 @@ export default class Client extends OpenApi {
|
|
|
19000
19214
|
*/
|
|
19001
19215
|
searchMetaTablesWithOptions(request: SearchMetaTablesRequest, runtime: $Util.RuntimeOptions): Promise<SearchMetaTablesResponse>;
|
|
19002
19216
|
/**
|
|
19003
|
-
*
|
|
19217
|
+
* The operation that you want to perform. Set the value to **SearchMetaTables**.
|
|
19004
19218
|
*
|
|
19005
19219
|
* @param request SearchMetaTablesRequest
|
|
19006
19220
|
* @return SearchMetaTablesResponse
|
|
@@ -19084,7 +19298,7 @@ export default class Client extends OpenApi {
|
|
|
19084
19298
|
*/
|
|
19085
19299
|
updateConnection(request: UpdateConnectionRequest): Promise<UpdateConnectionResponse>;
|
|
19086
19300
|
/**
|
|
19087
|
-
*
|
|
19301
|
+
* The operation that you want to perform. Set the value to **UpdateDIProjectConfig**.
|
|
19088
19302
|
*
|
|
19089
19303
|
* @param request UpdateDIProjectConfigRequest
|
|
19090
19304
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -19092,7 +19306,7 @@ export default class Client extends OpenApi {
|
|
|
19092
19306
|
*/
|
|
19093
19307
|
updateDIProjectConfigWithOptions(request: UpdateDIProjectConfigRequest, runtime: $Util.RuntimeOptions): Promise<UpdateDIProjectConfigResponse>;
|
|
19094
19308
|
/**
|
|
19095
|
-
*
|
|
19309
|
+
* The operation that you want to perform. Set the value to **UpdateDIProjectConfig**.
|
|
19096
19310
|
*
|
|
19097
19311
|
* @param request UpdateDIProjectConfigRequest
|
|
19098
19312
|
* @return UpdateDIProjectConfigResponse
|
|
@@ -19126,7 +19340,7 @@ export default class Client extends OpenApi {
|
|
|
19126
19340
|
updateMetaCategoryWithOptions(request: UpdateMetaCategoryRequest, runtime: $Util.RuntimeOptions): Promise<UpdateMetaCategoryResponse>;
|
|
19127
19341
|
updateMetaCategory(request: UpdateMetaCategoryRequest): Promise<UpdateMetaCategoryResponse>;
|
|
19128
19342
|
/**
|
|
19129
|
-
*
|
|
19343
|
+
* You must configure at least one of the Name and Comment parameters when you update a collection.
|
|
19130
19344
|
*
|
|
19131
19345
|
* @param request UpdateMetaCollectionRequest
|
|
19132
19346
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -19134,7 +19348,7 @@ export default class Client extends OpenApi {
|
|
|
19134
19348
|
*/
|
|
19135
19349
|
updateMetaCollectionWithOptions(request: UpdateMetaCollectionRequest, runtime: $Util.RuntimeOptions): Promise<UpdateMetaCollectionResponse>;
|
|
19136
19350
|
/**
|
|
19137
|
-
*
|
|
19351
|
+
* You must configure at least one of the Name and Comment parameters when you update a collection.
|
|
19138
19352
|
*
|
|
19139
19353
|
* @param request UpdateMetaCollectionRequest
|
|
19140
19354
|
* @return UpdateMetaCollectionResponse
|