@alicloud/dataworks-public20200518 4.4.8 → 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 +257 -0
- package/dist/client.js +455 -0
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +563 -0
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;
|
|
@@ -2411,6 +2453,53 @@ export declare class DeleteFromMetaCategoryResponse extends $tea.Model {
|
|
|
2411
2453
|
[key: string]: any;
|
|
2412
2454
|
});
|
|
2413
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
|
+
}
|
|
2414
2503
|
export declare class DeleteMetaCategoryRequest extends $tea.Model {
|
|
2415
2504
|
categoryId?: number;
|
|
2416
2505
|
static names(): {
|
|
@@ -7904,6 +7993,55 @@ export declare class ListInstancesResponse extends $tea.Model {
|
|
|
7904
7993
|
[key: string]: any;
|
|
7905
7994
|
});
|
|
7906
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
|
+
}
|
|
7907
8045
|
export declare class ListManualDagInstancesRequest extends $tea.Model {
|
|
7908
8046
|
dagId?: string;
|
|
7909
8047
|
projectEnv?: string;
|
|
@@ -9469,6 +9607,63 @@ export declare class QueryPublicModelEngineResponse extends $tea.Model {
|
|
|
9469
9607
|
[key: string]: any;
|
|
9470
9608
|
});
|
|
9471
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
|
+
}
|
|
9472
9667
|
export declare class RemoveProjectMemberFromRoleRequest extends $tea.Model {
|
|
9473
9668
|
projectId?: number;
|
|
9474
9669
|
roleCode?: string;
|
|
@@ -16531,6 +16726,48 @@ export declare class ListInstancesResponseBodyData extends $tea.Model {
|
|
|
16531
16726
|
[key: string]: any;
|
|
16532
16727
|
});
|
|
16533
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
|
+
}
|
|
16534
16771
|
export declare class ListManualDagInstancesResponseBodyInstances extends $tea.Model {
|
|
16535
16772
|
beginRunningTime?: number;
|
|
16536
16773
|
beginWaitResTime?: number;
|
|
@@ -17597,6 +17834,20 @@ export declare class QueryDISyncTaskConfigProcessResultResponseBodyData extends
|
|
|
17597
17834
|
[key: string]: any;
|
|
17598
17835
|
});
|
|
17599
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
|
+
}
|
|
17600
17851
|
export declare class SearchMetaTablesResponseBodyDataDataEntityList extends $tea.Model {
|
|
17601
17852
|
clusterId?: string;
|
|
17602
17853
|
databaseName?: string;
|
|
@@ -18223,6 +18474,8 @@ export default class Client extends OpenApi {
|
|
|
18223
18474
|
deleteFolder(request: DeleteFolderRequest): Promise<DeleteFolderResponse>;
|
|
18224
18475
|
deleteFromMetaCategoryWithOptions(request: DeleteFromMetaCategoryRequest, runtime: $Util.RuntimeOptions): Promise<DeleteFromMetaCategoryResponse>;
|
|
18225
18476
|
deleteFromMetaCategory(request: DeleteFromMetaCategoryRequest): Promise<DeleteFromMetaCategoryResponse>;
|
|
18477
|
+
deleteLineageRelationWithOptions(request: DeleteLineageRelationRequest, runtime: $Util.RuntimeOptions): Promise<DeleteLineageRelationResponse>;
|
|
18478
|
+
deleteLineageRelation(request: DeleteLineageRelationRequest): Promise<DeleteLineageRelationResponse>;
|
|
18226
18479
|
deleteMetaCategoryWithOptions(request: DeleteMetaCategoryRequest, runtime: $Util.RuntimeOptions): Promise<DeleteMetaCategoryResponse>;
|
|
18227
18480
|
deleteMetaCategory(request: DeleteMetaCategoryRequest): Promise<DeleteMetaCategoryResponse>;
|
|
18228
18481
|
deleteMetaCollectionWithOptions(request: DeleteMetaCollectionRequest, runtime: $Util.RuntimeOptions): Promise<DeleteMetaCollectionResponse>;
|
|
@@ -18769,6 +19022,8 @@ export default class Client extends OpenApi {
|
|
|
18769
19022
|
listInstanceHistory(request: ListInstanceHistoryRequest): Promise<ListInstanceHistoryResponse>;
|
|
18770
19023
|
listInstancesWithOptions(request: ListInstancesRequest, runtime: $Util.RuntimeOptions): Promise<ListInstancesResponse>;
|
|
18771
19024
|
listInstances(request: ListInstancesRequest): Promise<ListInstancesResponse>;
|
|
19025
|
+
listLineageWithOptions(request: ListLineageRequest, runtime: $Util.RuntimeOptions): Promise<ListLineageResponse>;
|
|
19026
|
+
listLineage(request: ListLineageRequest): Promise<ListLineageResponse>;
|
|
18772
19027
|
listManualDagInstancesWithOptions(request: ListManualDagInstancesRequest, runtime: $Util.RuntimeOptions): Promise<ListManualDagInstancesResponse>;
|
|
18773
19028
|
listManualDagInstances(request: ListManualDagInstancesRequest): Promise<ListManualDagInstancesResponse>;
|
|
18774
19029
|
listMetaCollectionEntitiesWithOptions(request: ListMetaCollectionEntitiesRequest, runtime: $Util.RuntimeOptions): Promise<ListMetaCollectionEntitiesResponse>;
|
|
@@ -18913,6 +19168,8 @@ export default class Client extends OpenApi {
|
|
|
18913
19168
|
queryDISyncTaskConfigProcessResult(request: QueryDISyncTaskConfigProcessResultRequest): Promise<QueryDISyncTaskConfigProcessResultResponse>;
|
|
18914
19169
|
queryPublicModelEngineWithOptions(request: QueryPublicModelEngineRequest, runtime: $Util.RuntimeOptions): Promise<QueryPublicModelEngineResponse>;
|
|
18915
19170
|
queryPublicModelEngine(request: QueryPublicModelEngineRequest): Promise<QueryPublicModelEngineResponse>;
|
|
19171
|
+
registerLineageRelationWithOptions(tmpReq: RegisterLineageRelationRequest, runtime: $Util.RuntimeOptions): Promise<RegisterLineageRelationResponse>;
|
|
19172
|
+
registerLineageRelation(request: RegisterLineageRelationRequest): Promise<RegisterLineageRelationResponse>;
|
|
18916
19173
|
removeProjectMemberFromRoleWithOptions(request: RemoveProjectMemberFromRoleRequest, runtime: $Util.RuntimeOptions): Promise<RemoveProjectMemberFromRoleResponse>;
|
|
18917
19174
|
removeProjectMemberFromRole(request: RemoveProjectMemberFromRoleRequest): Promise<RemoveProjectMemberFromRoleResponse>;
|
|
18918
19175
|
restartInstanceWithOptions(request: RestartInstanceRequest, runtime: $Util.RuntimeOptions): Promise<RestartInstanceResponse>;
|