@alicloud/dataworks-public20200518 6.1.7 → 6.2.1
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 +369 -81
- package/dist/client.js +274 -46
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +522 -81
package/dist/client.d.ts
CHANGED
|
@@ -204,6 +204,37 @@ export declare class LineageRelationRegisterBulkVO extends $tea.Model {
|
|
|
204
204
|
[key: string]: any;
|
|
205
205
|
});
|
|
206
206
|
}
|
|
207
|
+
export declare class LineageRelationRegisterTaskVO extends $tea.Model {
|
|
208
|
+
attributes?: {
|
|
209
|
+
[key: string]: string;
|
|
210
|
+
};
|
|
211
|
+
/**
|
|
212
|
+
* @example
|
|
213
|
+
* 1684327487964
|
|
214
|
+
*/
|
|
215
|
+
createTimestamp?: number;
|
|
216
|
+
inputEntities?: LineageEntityVO[];
|
|
217
|
+
/**
|
|
218
|
+
* @example
|
|
219
|
+
* pai-task name
|
|
220
|
+
*/
|
|
221
|
+
name?: string;
|
|
222
|
+
outputEntities?: LineageEntityVO[];
|
|
223
|
+
/**
|
|
224
|
+
* @example
|
|
225
|
+
* pai_dlcjob-task.12304
|
|
226
|
+
*/
|
|
227
|
+
qualifiedName?: string;
|
|
228
|
+
static names(): {
|
|
229
|
+
[key: string]: string;
|
|
230
|
+
};
|
|
231
|
+
static types(): {
|
|
232
|
+
[key: string]: any;
|
|
233
|
+
};
|
|
234
|
+
constructor(map?: {
|
|
235
|
+
[key: string]: any;
|
|
236
|
+
});
|
|
237
|
+
}
|
|
207
238
|
export declare class LineageRelationRegisterVO extends $tea.Model {
|
|
208
239
|
/**
|
|
209
240
|
* @example
|
|
@@ -4278,6 +4309,7 @@ export declare class CreateFileRequest extends $tea.Model {
|
|
|
4278
4309
|
* false
|
|
4279
4310
|
*/
|
|
4280
4311
|
stop?: boolean;
|
|
4312
|
+
timeout?: number;
|
|
4281
4313
|
static names(): {
|
|
4282
4314
|
[key: string]: string;
|
|
4283
4315
|
};
|
|
@@ -6802,6 +6834,9 @@ export declare class CreateTableRequest extends $tea.Model {
|
|
|
6802
6834
|
/**
|
|
6803
6835
|
* @remarks
|
|
6804
6836
|
* A reserved parameter.
|
|
6837
|
+
*
|
|
6838
|
+
* @example
|
|
6839
|
+
* reserved
|
|
6805
6840
|
*/
|
|
6806
6841
|
clientToken?: string;
|
|
6807
6842
|
/**
|
|
@@ -6814,6 +6849,9 @@ export declare class CreateTableRequest extends $tea.Model {
|
|
|
6814
6849
|
/**
|
|
6815
6850
|
* @remarks
|
|
6816
6851
|
* The comment.
|
|
6852
|
+
*
|
|
6853
|
+
* @example
|
|
6854
|
+
* comment
|
|
6817
6855
|
*/
|
|
6818
6856
|
comment?: string;
|
|
6819
6857
|
/**
|
|
@@ -8544,7 +8582,7 @@ export declare class DeleteFromMetaCategoryResponse extends $tea.Model {
|
|
|
8544
8582
|
export declare class DeleteLineageRelationRequest extends $tea.Model {
|
|
8545
8583
|
/**
|
|
8546
8584
|
* @remarks
|
|
8547
|
-
*
|
|
8585
|
+
* Destination entity unique identifier
|
|
8548
8586
|
*
|
|
8549
8587
|
* This parameter is required.
|
|
8550
8588
|
*
|
|
@@ -8554,16 +8592,23 @@ export declare class DeleteLineageRelationRequest extends $tea.Model {
|
|
|
8554
8592
|
destEntityQualifiedName?: string;
|
|
8555
8593
|
/**
|
|
8556
8594
|
* @remarks
|
|
8557
|
-
*
|
|
8595
|
+
* Lineage relationship unique identifier
|
|
8558
8596
|
*
|
|
8559
8597
|
* @example
|
|
8560
8598
|
* dfazcdfdfccdedd
|
|
8561
8599
|
*/
|
|
8562
8600
|
relationshipGuid?: string;
|
|
8601
|
+
/**
|
|
8602
|
+
* @remarks
|
|
8603
|
+
* Relationship type
|
|
8604
|
+
*
|
|
8605
|
+
* @example
|
|
8606
|
+
* sql
|
|
8607
|
+
*/
|
|
8563
8608
|
relationshipType?: string;
|
|
8564
8609
|
/**
|
|
8565
8610
|
* @remarks
|
|
8566
|
-
*
|
|
8611
|
+
* Source entity unique identifier
|
|
8567
8612
|
*
|
|
8568
8613
|
* This parameter is required.
|
|
8569
8614
|
*
|
|
@@ -8584,7 +8629,7 @@ export declare class DeleteLineageRelationRequest extends $tea.Model {
|
|
|
8584
8629
|
export declare class DeleteLineageRelationResponseBody extends $tea.Model {
|
|
8585
8630
|
/**
|
|
8586
8631
|
* @remarks
|
|
8587
|
-
*
|
|
8632
|
+
* Error code
|
|
8588
8633
|
*
|
|
8589
8634
|
* @example
|
|
8590
8635
|
* 1010040007
|
|
@@ -8592,7 +8637,7 @@ export declare class DeleteLineageRelationResponseBody extends $tea.Model {
|
|
|
8592
8637
|
errorCode?: string;
|
|
8593
8638
|
/**
|
|
8594
8639
|
* @remarks
|
|
8595
|
-
*
|
|
8640
|
+
* Error message
|
|
8596
8641
|
*
|
|
8597
8642
|
* @example
|
|
8598
8643
|
* qualifiedName should be in format as entity-table.entity-guid
|
|
@@ -8600,7 +8645,7 @@ export declare class DeleteLineageRelationResponseBody extends $tea.Model {
|
|
|
8600
8645
|
errorMessage?: string;
|
|
8601
8646
|
/**
|
|
8602
8647
|
* @remarks
|
|
8603
|
-
*
|
|
8648
|
+
* HTTP status code
|
|
8604
8649
|
*
|
|
8605
8650
|
* @example
|
|
8606
8651
|
* 200
|
|
@@ -8608,7 +8653,7 @@ export declare class DeleteLineageRelationResponseBody extends $tea.Model {
|
|
|
8608
8653
|
httpStatusCode?: number;
|
|
8609
8654
|
/**
|
|
8610
8655
|
* @remarks
|
|
8611
|
-
*
|
|
8656
|
+
* Request ID: used for locating logs and troubleshooting
|
|
8612
8657
|
*
|
|
8613
8658
|
* @example
|
|
8614
8659
|
* 64B-587A-8CED-969E1973887FXXX-TT
|
|
@@ -8616,11 +8661,11 @@ export declare class DeleteLineageRelationResponseBody extends $tea.Model {
|
|
|
8616
8661
|
requestId?: string;
|
|
8617
8662
|
/**
|
|
8618
8663
|
* @remarks
|
|
8619
|
-
*
|
|
8664
|
+
* Operation result:
|
|
8620
8665
|
*
|
|
8621
|
-
* true:
|
|
8666
|
+
* true: Success
|
|
8622
8667
|
*
|
|
8623
|
-
* false:
|
|
8668
|
+
* false: Failure
|
|
8624
8669
|
*
|
|
8625
8670
|
* @example
|
|
8626
8671
|
* true
|
|
@@ -8628,11 +8673,11 @@ export declare class DeleteLineageRelationResponseBody extends $tea.Model {
|
|
|
8628
8673
|
status?: boolean;
|
|
8629
8674
|
/**
|
|
8630
8675
|
* @remarks
|
|
8631
|
-
*
|
|
8676
|
+
* Whether the call was successful. Values are as follows:
|
|
8632
8677
|
*
|
|
8633
|
-
* true
|
|
8678
|
+
* true: success
|
|
8634
8679
|
*
|
|
8635
|
-
* false
|
|
8680
|
+
* false: failed
|
|
8636
8681
|
*
|
|
8637
8682
|
* @example
|
|
8638
8683
|
* true
|
|
@@ -17872,7 +17917,7 @@ export declare class GetMetaTableColumnResponse extends $tea.Model {
|
|
|
17872
17917
|
export declare class GetMetaTableFullInfoRequest extends $tea.Model {
|
|
17873
17918
|
/**
|
|
17874
17919
|
* @remarks
|
|
17875
|
-
* The ID of the
|
|
17920
|
+
* The ID of the EMR cluster. You can log in to the EMR management console to obtain the cluster ID.
|
|
17876
17921
|
*
|
|
17877
17922
|
* @example
|
|
17878
17923
|
* C-010A704DA760****
|
|
@@ -17880,7 +17925,7 @@ export declare class GetMetaTableFullInfoRequest extends $tea.Model {
|
|
|
17880
17925
|
clusterId?: string;
|
|
17881
17926
|
/**
|
|
17882
17927
|
* @remarks
|
|
17883
|
-
*
|
|
17928
|
+
* Data type, currently only supports the value `emr`.
|
|
17884
17929
|
*
|
|
17885
17930
|
* @example
|
|
17886
17931
|
* emr
|
|
@@ -17888,7 +17933,7 @@ export declare class GetMetaTableFullInfoRequest extends $tea.Model {
|
|
|
17888
17933
|
dataSourceType?: string;
|
|
17889
17934
|
/**
|
|
17890
17935
|
* @remarks
|
|
17891
|
-
* The name of the
|
|
17936
|
+
* The name of the EMR database. You can obtain the database name by calling the [ListMetaDB](https://help.aliyun.com/document_detail/185662.html) interface.
|
|
17892
17937
|
*
|
|
17893
17938
|
* @example
|
|
17894
17939
|
* abc
|
|
@@ -17896,7 +17941,7 @@ export declare class GetMetaTableFullInfoRequest extends $tea.Model {
|
|
|
17896
17941
|
databaseName?: string;
|
|
17897
17942
|
/**
|
|
17898
17943
|
* @remarks
|
|
17899
|
-
* The number
|
|
17944
|
+
* The page number requested for pagination.
|
|
17900
17945
|
*
|
|
17901
17946
|
* @example
|
|
17902
17947
|
* 1
|
|
@@ -17904,7 +17949,7 @@ export declare class GetMetaTableFullInfoRequest extends $tea.Model {
|
|
|
17904
17949
|
pageNum?: number;
|
|
17905
17950
|
/**
|
|
17906
17951
|
* @remarks
|
|
17907
|
-
* The number of
|
|
17952
|
+
* The number of items per page, with a default of 10 and a maximum of 100.
|
|
17908
17953
|
*
|
|
17909
17954
|
* @example
|
|
17910
17955
|
* 10
|
|
@@ -17912,7 +17957,7 @@ export declare class GetMetaTableFullInfoRequest extends $tea.Model {
|
|
|
17912
17957
|
pageSize?: number;
|
|
17913
17958
|
/**
|
|
17914
17959
|
* @remarks
|
|
17915
|
-
* The
|
|
17960
|
+
* The unique identifier of the table. You can obtain the unique identifier by calling the [GetMetaDBTableList](https://help.aliyun.com/document_detail/173916.html) interface.
|
|
17916
17961
|
*
|
|
17917
17962
|
* @example
|
|
17918
17963
|
* odps.engine_name.table_name
|
|
@@ -17920,7 +17965,7 @@ export declare class GetMetaTableFullInfoRequest extends $tea.Model {
|
|
|
17920
17965
|
tableGuid?: string;
|
|
17921
17966
|
/**
|
|
17922
17967
|
* @remarks
|
|
17923
|
-
* The name of the
|
|
17968
|
+
* The name of the EMR table. You can obtain the table name by calling the [GetMetaDBTableList](https://help.aliyun.com/document_detail/173916.html) interface.
|
|
17924
17969
|
*
|
|
17925
17970
|
* @example
|
|
17926
17971
|
* abc
|
|
@@ -17939,12 +17984,12 @@ export declare class GetMetaTableFullInfoRequest extends $tea.Model {
|
|
|
17939
17984
|
export declare class GetMetaTableFullInfoResponseBody extends $tea.Model {
|
|
17940
17985
|
/**
|
|
17941
17986
|
* @remarks
|
|
17942
|
-
*
|
|
17987
|
+
* Business data.
|
|
17943
17988
|
*/
|
|
17944
17989
|
data?: GetMetaTableFullInfoResponseBodyData;
|
|
17945
17990
|
/**
|
|
17946
17991
|
* @remarks
|
|
17947
|
-
*
|
|
17992
|
+
* Error code.
|
|
17948
17993
|
*
|
|
17949
17994
|
* @example
|
|
17950
17995
|
* 1031203110005
|
|
@@ -17952,7 +17997,7 @@ export declare class GetMetaTableFullInfoResponseBody extends $tea.Model {
|
|
|
17952
17997
|
errorCode?: string;
|
|
17953
17998
|
/**
|
|
17954
17999
|
* @remarks
|
|
17955
|
-
*
|
|
18000
|
+
* Error message.
|
|
17956
18001
|
*
|
|
17957
18002
|
* @example
|
|
17958
18003
|
* The specified parameters are invalid.
|
|
@@ -17960,7 +18005,7 @@ export declare class GetMetaTableFullInfoResponseBody extends $tea.Model {
|
|
|
17960
18005
|
errorMessage?: string;
|
|
17961
18006
|
/**
|
|
17962
18007
|
* @remarks
|
|
17963
|
-
*
|
|
18008
|
+
* HTTP status code.
|
|
17964
18009
|
*
|
|
17965
18010
|
* @example
|
|
17966
18011
|
* 200
|
|
@@ -17968,7 +18013,7 @@ export declare class GetMetaTableFullInfoResponseBody extends $tea.Model {
|
|
|
17968
18013
|
httpStatusCode?: number;
|
|
17969
18014
|
/**
|
|
17970
18015
|
* @remarks
|
|
17971
|
-
*
|
|
18016
|
+
* Request ID. Used for locating logs and troubleshooting issues.
|
|
17972
18017
|
*
|
|
17973
18018
|
* @example
|
|
17974
18019
|
* 0bc1411515937****
|
|
@@ -17976,7 +18021,7 @@ export declare class GetMetaTableFullInfoResponseBody extends $tea.Model {
|
|
|
17976
18021
|
requestId?: string;
|
|
17977
18022
|
/**
|
|
17978
18023
|
* @remarks
|
|
17979
|
-
*
|
|
18024
|
+
* Whether the call was successful.
|
|
17980
18025
|
*
|
|
17981
18026
|
* @example
|
|
17982
18027
|
* true
|
|
@@ -18734,27 +18779,41 @@ export declare class GetMetaTablePartitionResponse extends $tea.Model {
|
|
|
18734
18779
|
}
|
|
18735
18780
|
export declare class GetMetaTableProducingTasksRequest extends $tea.Model {
|
|
18736
18781
|
/**
|
|
18782
|
+
* @remarks
|
|
18783
|
+
* The ID of the EMR cluster. This parameter takes effect only if the DataSourceType parameter is set to emr.
|
|
18784
|
+
*
|
|
18737
18785
|
* @example
|
|
18738
18786
|
* C-A_SAMPLE_CLUSTER_ID
|
|
18739
18787
|
*/
|
|
18740
18788
|
clusterId?: string;
|
|
18741
18789
|
/**
|
|
18790
|
+
* @remarks
|
|
18791
|
+
* The type of the metatable. Valid values: odps and emr. The value odps indicates that the metatable is a MaxCompute metatable. The value emr indicates that the metatable is an E-MapReduce (EMR) metatable.
|
|
18792
|
+
*
|
|
18742
18793
|
* @example
|
|
18743
18794
|
* odps
|
|
18744
18795
|
*/
|
|
18745
18796
|
dataSourceType?: string;
|
|
18746
18797
|
/**
|
|
18798
|
+
* @remarks
|
|
18799
|
+
* The name of the database.
|
|
18800
|
+
*
|
|
18747
18801
|
* @example
|
|
18748
18802
|
* default
|
|
18749
18803
|
*/
|
|
18750
18804
|
dbName?: string;
|
|
18751
18805
|
/**
|
|
18806
|
+
* @remarks
|
|
18807
|
+
* The name of the schema.
|
|
18808
|
+
*
|
|
18752
18809
|
* @example
|
|
18753
18810
|
* myschema
|
|
18754
18811
|
*/
|
|
18755
18812
|
schemaName?: string;
|
|
18756
18813
|
/**
|
|
18757
18814
|
* @remarks
|
|
18815
|
+
* The GUID of the MaxCompute metatable.
|
|
18816
|
+
*
|
|
18758
18817
|
* This parameter is required.
|
|
18759
18818
|
*
|
|
18760
18819
|
* @example
|
|
@@ -18762,6 +18821,9 @@ export declare class GetMetaTableProducingTasksRequest extends $tea.Model {
|
|
|
18762
18821
|
*/
|
|
18763
18822
|
tableGuid?: string;
|
|
18764
18823
|
/**
|
|
18824
|
+
* @remarks
|
|
18825
|
+
* The name of the metatable.
|
|
18826
|
+
*
|
|
18765
18827
|
* @example
|
|
18766
18828
|
* sample_table
|
|
18767
18829
|
*/
|
|
@@ -18777,28 +18839,47 @@ export declare class GetMetaTableProducingTasksRequest extends $tea.Model {
|
|
|
18777
18839
|
});
|
|
18778
18840
|
}
|
|
18779
18841
|
export declare class GetMetaTableProducingTasksResponseBody extends $tea.Model {
|
|
18842
|
+
/**
|
|
18843
|
+
* @remarks
|
|
18844
|
+
* The output tasks of the metatable.
|
|
18845
|
+
*/
|
|
18780
18846
|
data?: GetMetaTableProducingTasksResponseBodyData[];
|
|
18781
18847
|
/**
|
|
18848
|
+
* @remarks
|
|
18849
|
+
* The error code.
|
|
18850
|
+
*
|
|
18782
18851
|
* @example
|
|
18783
18852
|
* "0"
|
|
18784
18853
|
*/
|
|
18785
18854
|
errorCode?: string;
|
|
18786
18855
|
/**
|
|
18856
|
+
* @remarks
|
|
18857
|
+
* The error message.
|
|
18858
|
+
*
|
|
18787
18859
|
* @example
|
|
18788
18860
|
* SUCCESS
|
|
18789
18861
|
*/
|
|
18790
18862
|
errorMessage?: string;
|
|
18791
18863
|
/**
|
|
18864
|
+
* @remarks
|
|
18865
|
+
* The HTTP status code returned.
|
|
18866
|
+
*
|
|
18792
18867
|
* @example
|
|
18793
18868
|
* 200
|
|
18794
18869
|
*/
|
|
18795
18870
|
httpStatusCode?: number;
|
|
18796
18871
|
/**
|
|
18872
|
+
* @remarks
|
|
18873
|
+
* The request ID.
|
|
18874
|
+
*
|
|
18797
18875
|
* @example
|
|
18798
18876
|
* 00000-00000-00000-00000
|
|
18799
18877
|
*/
|
|
18800
18878
|
requestId?: string;
|
|
18801
18879
|
/**
|
|
18880
|
+
* @remarks
|
|
18881
|
+
* Indicates whether the request was successful. Valid values: true and false. The value true indicates that the request was successful. The value false indicates that the request failed.
|
|
18882
|
+
*
|
|
18802
18883
|
* @example
|
|
18803
18884
|
* true
|
|
18804
18885
|
*/
|
|
@@ -21984,6 +22065,83 @@ export declare class ListCalcEnginesResponse extends $tea.Model {
|
|
|
21984
22065
|
[key: string]: any;
|
|
21985
22066
|
});
|
|
21986
22067
|
}
|
|
22068
|
+
export declare class ListCheckProcessesRequest extends $tea.Model {
|
|
22069
|
+
/**
|
|
22070
|
+
* @remarks
|
|
22071
|
+
* This parameter is required.
|
|
22072
|
+
*
|
|
22073
|
+
* @example
|
|
22074
|
+
* commit-file
|
|
22075
|
+
*/
|
|
22076
|
+
eventCode?: string;
|
|
22077
|
+
/**
|
|
22078
|
+
* @example
|
|
22079
|
+
* 123333232
|
|
22080
|
+
*/
|
|
22081
|
+
operator?: string;
|
|
22082
|
+
/**
|
|
22083
|
+
* @example
|
|
22084
|
+
* 1
|
|
22085
|
+
*/
|
|
22086
|
+
pageNumber?: number;
|
|
22087
|
+
/**
|
|
22088
|
+
* @example
|
|
22089
|
+
* 10
|
|
22090
|
+
*/
|
|
22091
|
+
pageSize?: number;
|
|
22092
|
+
/**
|
|
22093
|
+
* @example
|
|
22094
|
+
* 123465
|
|
22095
|
+
*/
|
|
22096
|
+
projectId?: number;
|
|
22097
|
+
/**
|
|
22098
|
+
* @example
|
|
22099
|
+
* True
|
|
22100
|
+
*/
|
|
22101
|
+
status?: string;
|
|
22102
|
+
static names(): {
|
|
22103
|
+
[key: string]: string;
|
|
22104
|
+
};
|
|
22105
|
+
static types(): {
|
|
22106
|
+
[key: string]: any;
|
|
22107
|
+
};
|
|
22108
|
+
constructor(map?: {
|
|
22109
|
+
[key: string]: any;
|
|
22110
|
+
});
|
|
22111
|
+
}
|
|
22112
|
+
export declare class ListCheckProcessesResponseBody extends $tea.Model {
|
|
22113
|
+
pagingInfo?: ListCheckProcessesResponseBodyPagingInfo;
|
|
22114
|
+
/**
|
|
22115
|
+
* @example
|
|
22116
|
+
* 0000-ABCD-EF****
|
|
22117
|
+
*/
|
|
22118
|
+
requestId?: string;
|
|
22119
|
+
static names(): {
|
|
22120
|
+
[key: string]: string;
|
|
22121
|
+
};
|
|
22122
|
+
static types(): {
|
|
22123
|
+
[key: string]: any;
|
|
22124
|
+
};
|
|
22125
|
+
constructor(map?: {
|
|
22126
|
+
[key: string]: any;
|
|
22127
|
+
});
|
|
22128
|
+
}
|
|
22129
|
+
export declare class ListCheckProcessesResponse extends $tea.Model {
|
|
22130
|
+
headers?: {
|
|
22131
|
+
[key: string]: string;
|
|
22132
|
+
};
|
|
22133
|
+
statusCode?: number;
|
|
22134
|
+
body?: ListCheckProcessesResponseBody;
|
|
22135
|
+
static names(): {
|
|
22136
|
+
[key: string]: string;
|
|
22137
|
+
};
|
|
22138
|
+
static types(): {
|
|
22139
|
+
[key: string]: any;
|
|
22140
|
+
};
|
|
22141
|
+
constructor(map?: {
|
|
22142
|
+
[key: string]: any;
|
|
22143
|
+
});
|
|
22144
|
+
}
|
|
21987
22145
|
export declare class ListClusterConfigsRequest extends $tea.Model {
|
|
21988
22146
|
/**
|
|
21989
22147
|
* @remarks
|
|
@@ -35905,6 +36063,7 @@ export declare class UpdateFileRequest extends $tea.Model {
|
|
|
35905
36063
|
* false
|
|
35906
36064
|
*/
|
|
35907
36065
|
stop?: boolean;
|
|
36066
|
+
timeout?: number;
|
|
35908
36067
|
static names(): {
|
|
35909
36068
|
[key: string]: string;
|
|
35910
36069
|
};
|
|
@@ -37528,6 +37687,9 @@ export declare class UpdateTableRequest extends $tea.Model {
|
|
|
37528
37687
|
/**
|
|
37529
37688
|
* @remarks
|
|
37530
37689
|
* The comment.
|
|
37690
|
+
*
|
|
37691
|
+
* @example
|
|
37692
|
+
* comment
|
|
37531
37693
|
*/
|
|
37532
37694
|
comment?: string;
|
|
37533
37695
|
/**
|
|
@@ -39204,6 +39366,9 @@ export declare class CreateTableRequestColumns extends $tea.Model {
|
|
|
39204
39366
|
/**
|
|
39205
39367
|
* @remarks
|
|
39206
39368
|
* The display name of the field.
|
|
39369
|
+
*
|
|
39370
|
+
* @example
|
|
39371
|
+
* columnName in chinese
|
|
39207
39372
|
*/
|
|
39208
39373
|
columnNameCn?: string;
|
|
39209
39374
|
/**
|
|
@@ -39219,6 +39384,9 @@ export declare class CreateTableRequestColumns extends $tea.Model {
|
|
|
39219
39384
|
/**
|
|
39220
39385
|
* @remarks
|
|
39221
39386
|
* The comment of the field.
|
|
39387
|
+
*
|
|
39388
|
+
* @example
|
|
39389
|
+
* comment
|
|
39222
39390
|
*/
|
|
39223
39391
|
comment?: string;
|
|
39224
39392
|
/**
|
|
@@ -46036,6 +46204,7 @@ export declare class GetFileResponseBodyDataNodeConfiguration extends $tea.Model
|
|
|
46036
46204
|
* 4155787800000
|
|
46037
46205
|
*/
|
|
46038
46206
|
endEffectDate?: number;
|
|
46207
|
+
ignoreParentSkipRunningProperty?: string;
|
|
46039
46208
|
/**
|
|
46040
46209
|
* @remarks
|
|
46041
46210
|
* The output names of the parent files on which the current file depends.
|
|
@@ -46140,6 +46309,7 @@ export declare class GetFileResponseBodyDataNodeConfiguration extends $tea.Model
|
|
|
46140
46309
|
* false
|
|
46141
46310
|
*/
|
|
46142
46311
|
stop?: boolean;
|
|
46312
|
+
timeout?: number;
|
|
46143
46313
|
static names(): {
|
|
46144
46314
|
[key: string]: string;
|
|
46145
46315
|
};
|
|
@@ -47156,6 +47326,11 @@ export declare class GetInstanceResponseBodyData extends $tea.Model {
|
|
|
47156
47326
|
* kzh
|
|
47157
47327
|
*/
|
|
47158
47328
|
nodeName?: string;
|
|
47329
|
+
/**
|
|
47330
|
+
* @example
|
|
47331
|
+
* 111
|
|
47332
|
+
*/
|
|
47333
|
+
owner?: string;
|
|
47159
47334
|
/**
|
|
47160
47335
|
* @remarks
|
|
47161
47336
|
* The parameters related to the node.
|
|
@@ -47164,6 +47339,11 @@ export declare class GetInstanceResponseBodyData extends $tea.Model {
|
|
|
47164
47339
|
* bizdate=$bizdate tbods=$tbods tbdw=$tbdw tbpmic=$tbpmic tbpidx=$tbpidx tbptcif=$tbptcif
|
|
47165
47340
|
*/
|
|
47166
47341
|
paramValues?: string;
|
|
47342
|
+
/**
|
|
47343
|
+
* @example
|
|
47344
|
+
* 1
|
|
47345
|
+
*/
|
|
47346
|
+
periodNumber?: number;
|
|
47167
47347
|
/**
|
|
47168
47348
|
* @remarks
|
|
47169
47349
|
* The priority of the instance. Valid values: 1, 3, 5, 7, and 8. A greater value indicates a higher priority. Default value: 1.
|
|
@@ -48657,7 +48837,7 @@ export declare class GetMetaTableColumnResponseBodyData extends $tea.Model {
|
|
|
48657
48837
|
export declare class GetMetaTableFullInfoResponseBodyDataColumnList extends $tea.Model {
|
|
48658
48838
|
/**
|
|
48659
48839
|
* @remarks
|
|
48660
|
-
* The description of the
|
|
48840
|
+
* The description of the column.
|
|
48661
48841
|
*
|
|
48662
48842
|
* @example
|
|
48663
48843
|
* data comment
|
|
@@ -48665,7 +48845,7 @@ export declare class GetMetaTableFullInfoResponseBodyDataColumnList extends $tea
|
|
|
48665
48845
|
caption?: string;
|
|
48666
48846
|
/**
|
|
48667
48847
|
* @remarks
|
|
48668
|
-
* The
|
|
48848
|
+
* The unique identifier of the column.
|
|
48669
48849
|
*
|
|
48670
48850
|
* @example
|
|
48671
48851
|
* odps.engine_name.table_name.1
|
|
@@ -48673,7 +48853,7 @@ export declare class GetMetaTableFullInfoResponseBodyDataColumnList extends $tea
|
|
|
48673
48853
|
columnGuid?: string;
|
|
48674
48854
|
/**
|
|
48675
48855
|
* @remarks
|
|
48676
|
-
* The name of the
|
|
48856
|
+
* The name of the column.
|
|
48677
48857
|
*
|
|
48678
48858
|
* @example
|
|
48679
48859
|
* 1
|
|
@@ -48681,7 +48861,7 @@ export declare class GetMetaTableFullInfoResponseBodyDataColumnList extends $tea
|
|
|
48681
48861
|
columnName?: string;
|
|
48682
48862
|
/**
|
|
48683
48863
|
* @remarks
|
|
48684
|
-
* The
|
|
48864
|
+
* The type of the column.
|
|
48685
48865
|
*
|
|
48686
48866
|
* @example
|
|
48687
48867
|
* string
|
|
@@ -48689,7 +48869,7 @@ export declare class GetMetaTableFullInfoResponseBodyDataColumnList extends $tea
|
|
|
48689
48869
|
columnType?: string;
|
|
48690
48870
|
/**
|
|
48691
48871
|
* @remarks
|
|
48692
|
-
* The
|
|
48872
|
+
* The comment for the column.
|
|
48693
48873
|
*
|
|
48694
48874
|
* @example
|
|
48695
48875
|
* comment
|
|
@@ -48697,10 +48877,9 @@ export declare class GetMetaTableFullInfoResponseBodyDataColumnList extends $tea
|
|
|
48697
48877
|
comment?: string;
|
|
48698
48878
|
/**
|
|
48699
48879
|
* @remarks
|
|
48700
|
-
*
|
|
48701
|
-
*
|
|
48702
|
-
*
|
|
48703
|
-
* * false: The field is not a foreign key.
|
|
48880
|
+
* Whether the field is a foreign key, with values as follows:
|
|
48881
|
+
* - true, it is a foreign key.
|
|
48882
|
+
* - false, it is not a foreign key.
|
|
48704
48883
|
*
|
|
48705
48884
|
* @example
|
|
48706
48885
|
* true
|
|
@@ -48708,10 +48887,9 @@ export declare class GetMetaTableFullInfoResponseBodyDataColumnList extends $tea
|
|
|
48708
48887
|
isForeignKey?: boolean;
|
|
48709
48888
|
/**
|
|
48710
48889
|
* @remarks
|
|
48711
|
-
* Indicates whether the
|
|
48712
|
-
*
|
|
48713
|
-
*
|
|
48714
|
-
* * false: The field is not a partition field.
|
|
48890
|
+
* Indicates whether the column is a partition column, with the following values:
|
|
48891
|
+
* - true: It is a partition column.
|
|
48892
|
+
* - false: It is not a partition column.
|
|
48715
48893
|
*
|
|
48716
48894
|
* @example
|
|
48717
48895
|
* true
|
|
@@ -48719,10 +48897,9 @@ export declare class GetMetaTableFullInfoResponseBodyDataColumnList extends $tea
|
|
|
48719
48897
|
isPartitionColumn?: boolean;
|
|
48720
48898
|
/**
|
|
48721
48899
|
* @remarks
|
|
48722
|
-
* Indicates whether the
|
|
48723
|
-
*
|
|
48724
|
-
*
|
|
48725
|
-
* * false: The field is not the primary key.
|
|
48900
|
+
* Indicates whether the column is a primary key, with the following values:
|
|
48901
|
+
* - true: It is a primary key.
|
|
48902
|
+
* - false: It is not a primary key.
|
|
48726
48903
|
*
|
|
48727
48904
|
* @example
|
|
48728
48905
|
* false
|
|
@@ -48730,7 +48907,7 @@ export declare class GetMetaTableFullInfoResponseBodyDataColumnList extends $tea
|
|
|
48730
48907
|
isPrimaryKey?: boolean;
|
|
48731
48908
|
/**
|
|
48732
48909
|
* @remarks
|
|
48733
|
-
* The
|
|
48910
|
+
* The position of the column in the order.
|
|
48734
48911
|
*
|
|
48735
48912
|
* @example
|
|
48736
48913
|
* 1
|
|
@@ -48757,12 +48934,12 @@ export declare class GetMetaTableFullInfoResponseBodyData extends $tea.Model {
|
|
|
48757
48934
|
clusterId?: string;
|
|
48758
48935
|
/**
|
|
48759
48936
|
* @remarks
|
|
48760
|
-
*
|
|
48937
|
+
* A list of columns.
|
|
48761
48938
|
*/
|
|
48762
48939
|
columnList?: GetMetaTableFullInfoResponseBodyDataColumnList[];
|
|
48763
48940
|
/**
|
|
48764
48941
|
* @remarks
|
|
48765
|
-
* The
|
|
48942
|
+
* The comment of the table.
|
|
48766
48943
|
*
|
|
48767
48944
|
* @example
|
|
48768
48945
|
* comment
|
|
@@ -48770,7 +48947,7 @@ export declare class GetMetaTableFullInfoResponseBodyData extends $tea.Model {
|
|
|
48770
48947
|
comment?: string;
|
|
48771
48948
|
/**
|
|
48772
48949
|
* @remarks
|
|
48773
|
-
* The time when the
|
|
48950
|
+
* The time when the table was created. The result is displayed as a timestamp, which you can convert to the corresponding date based on your timezone.
|
|
48774
48951
|
*
|
|
48775
48952
|
* @example
|
|
48776
48953
|
* 1589870293000
|
|
@@ -48778,7 +48955,7 @@ export declare class GetMetaTableFullInfoResponseBodyData extends $tea.Model {
|
|
|
48778
48955
|
createTime?: number;
|
|
48779
48956
|
/**
|
|
48780
48957
|
* @remarks
|
|
48781
|
-
* The
|
|
48958
|
+
* The storage space occupied by the table, in bytes (B).
|
|
48782
48959
|
*
|
|
48783
48960
|
* @example
|
|
48784
48961
|
* 10
|
|
@@ -48794,10 +48971,9 @@ export declare class GetMetaTableFullInfoResponseBodyData extends $tea.Model {
|
|
|
48794
48971
|
databaseName?: string;
|
|
48795
48972
|
/**
|
|
48796
48973
|
* @remarks
|
|
48797
|
-
*
|
|
48798
|
-
*
|
|
48799
|
-
*
|
|
48800
|
-
* * 1: indicates that the metatable resides in the production environment.
|
|
48974
|
+
* Environment type, with the following values:
|
|
48975
|
+
* - 0 indicates a table in the development environment.
|
|
48976
|
+
* - 1 indicates a table in the production environment.
|
|
48801
48977
|
*
|
|
48802
48978
|
* @example
|
|
48803
48979
|
* 1
|
|
@@ -48805,12 +48981,11 @@ export declare class GetMetaTableFullInfoResponseBodyData extends $tea.Model {
|
|
|
48805
48981
|
envType?: number;
|
|
48806
48982
|
/**
|
|
48807
48983
|
* @remarks
|
|
48808
|
-
*
|
|
48809
|
-
*
|
|
48810
|
-
*
|
|
48811
|
-
*
|
|
48812
|
-
*
|
|
48813
|
-
* * 3: indicates that the metatable is visible only to the metatable owner.
|
|
48984
|
+
* Indicates whether the table is visible, with the following values:
|
|
48985
|
+
* - 0: The table is visible to workspace members.
|
|
48986
|
+
* - 1: The table is visible within the tenant.
|
|
48987
|
+
* - 2: The table is visible across tenants.
|
|
48988
|
+
* - 3: The table is only visible to the responsible person.
|
|
48814
48989
|
*
|
|
48815
48990
|
* @example
|
|
48816
48991
|
* 1
|
|
@@ -48818,7 +48993,7 @@ export declare class GetMetaTableFullInfoResponseBodyData extends $tea.Model {
|
|
|
48818
48993
|
isVisible?: number;
|
|
48819
48994
|
/**
|
|
48820
48995
|
* @remarks
|
|
48821
|
-
* The time
|
|
48996
|
+
* The last time the table was accessed. The result is displayed as a timestamp, which you can convert to the corresponding date based on your timezone.
|
|
48822
48997
|
*
|
|
48823
48998
|
* @example
|
|
48824
48999
|
* 1589870294000
|
|
@@ -48826,7 +49001,7 @@ export declare class GetMetaTableFullInfoResponseBodyData extends $tea.Model {
|
|
|
48826
49001
|
lastAccessTime?: number;
|
|
48827
49002
|
/**
|
|
48828
49003
|
* @remarks
|
|
48829
|
-
* The time
|
|
49004
|
+
* The last time the table structure was changed. The result is displayed as a timestamp, which you can convert to the corresponding date based on your timezone.
|
|
48830
49005
|
*
|
|
48831
49006
|
* @example
|
|
48832
49007
|
* 1589870294000
|
|
@@ -48834,7 +49009,7 @@ export declare class GetMetaTableFullInfoResponseBodyData extends $tea.Model {
|
|
|
48834
49009
|
lastDdlTime?: number;
|
|
48835
49010
|
/**
|
|
48836
49011
|
* @remarks
|
|
48837
|
-
* The time
|
|
49012
|
+
* The last time the table was updated. The result is displayed as a timestamp, which you can convert to the corresponding date based on your timezone.
|
|
48838
49013
|
*
|
|
48839
49014
|
* @example
|
|
48840
49015
|
* 1589870294000
|
|
@@ -48842,7 +49017,7 @@ export declare class GetMetaTableFullInfoResponseBodyData extends $tea.Model {
|
|
|
48842
49017
|
lastModifyTime?: number;
|
|
48843
49018
|
/**
|
|
48844
49019
|
* @remarks
|
|
48845
|
-
* The lifecycle of the
|
|
49020
|
+
* The lifecycle of the table, in days.
|
|
48846
49021
|
*
|
|
48847
49022
|
* @example
|
|
48848
49023
|
* 5
|
|
@@ -48850,7 +49025,7 @@ export declare class GetMetaTableFullInfoResponseBodyData extends $tea.Model {
|
|
|
48850
49025
|
lifeCycle?: number;
|
|
48851
49026
|
/**
|
|
48852
49027
|
* @remarks
|
|
48853
|
-
* The storage
|
|
49028
|
+
* The storage location of the Hive table.
|
|
48854
49029
|
*
|
|
48855
49030
|
* @example
|
|
48856
49031
|
* hdfs://localhost:777/user/hadoop/test.txt
|
|
@@ -48858,7 +49033,7 @@ export declare class GetMetaTableFullInfoResponseBodyData extends $tea.Model {
|
|
|
48858
49033
|
location?: string;
|
|
48859
49034
|
/**
|
|
48860
49035
|
* @remarks
|
|
48861
|
-
* The ID of the
|
|
49036
|
+
* The ID of the table owner.
|
|
48862
49037
|
*
|
|
48863
49038
|
* @example
|
|
48864
49039
|
* 123
|
|
@@ -48866,7 +49041,7 @@ export declare class GetMetaTableFullInfoResponseBodyData extends $tea.Model {
|
|
|
48866
49041
|
ownerId?: string;
|
|
48867
49042
|
/**
|
|
48868
49043
|
* @remarks
|
|
48869
|
-
*
|
|
49044
|
+
* Partition keys.
|
|
48870
49045
|
*
|
|
48871
49046
|
* @example
|
|
48872
49047
|
* abc
|
|
@@ -48874,7 +49049,7 @@ export declare class GetMetaTableFullInfoResponseBodyData extends $tea.Model {
|
|
|
48874
49049
|
partitionKeys?: string;
|
|
48875
49050
|
/**
|
|
48876
49051
|
* @remarks
|
|
48877
|
-
* The ID of the workspace
|
|
49052
|
+
* The ID of the workspace where the table is located.
|
|
48878
49053
|
*
|
|
48879
49054
|
* @example
|
|
48880
49055
|
* 22
|
|
@@ -48882,7 +49057,7 @@ export declare class GetMetaTableFullInfoResponseBodyData extends $tea.Model {
|
|
|
48882
49057
|
projectId?: number;
|
|
48883
49058
|
/**
|
|
48884
49059
|
* @remarks
|
|
48885
|
-
* The name of the workspace
|
|
49060
|
+
* The name of the workspace where the table is located.
|
|
48886
49061
|
*
|
|
48887
49062
|
* @example
|
|
48888
49063
|
* test
|
|
@@ -48891,7 +49066,7 @@ export declare class GetMetaTableFullInfoResponseBodyData extends $tea.Model {
|
|
|
48891
49066
|
schema?: string;
|
|
48892
49067
|
/**
|
|
48893
49068
|
* @remarks
|
|
48894
|
-
* The
|
|
49069
|
+
* The unique identifier of the table.
|
|
48895
49070
|
*
|
|
48896
49071
|
* @example
|
|
48897
49072
|
* odps.engine_name.table_name
|
|
@@ -48899,7 +49074,7 @@ export declare class GetMetaTableFullInfoResponseBodyData extends $tea.Model {
|
|
|
48899
49074
|
tableGuid?: string;
|
|
48900
49075
|
/**
|
|
48901
49076
|
* @remarks
|
|
48902
|
-
* The name of the
|
|
49077
|
+
* The name of the table.
|
|
48903
49078
|
*
|
|
48904
49079
|
* @example
|
|
48905
49080
|
* table_name
|
|
@@ -48907,7 +49082,7 @@ export declare class GetMetaTableFullInfoResponseBodyData extends $tea.Model {
|
|
|
48907
49082
|
tableName?: string;
|
|
48908
49083
|
/**
|
|
48909
49084
|
* @remarks
|
|
48910
|
-
* The ID
|
|
49085
|
+
* The tenant ID.
|
|
48911
49086
|
*
|
|
48912
49087
|
* @example
|
|
48913
49088
|
* 12345
|
|
@@ -48915,7 +49090,7 @@ export declare class GetMetaTableFullInfoResponseBodyData extends $tea.Model {
|
|
|
48915
49090
|
tenantId?: number;
|
|
48916
49091
|
/**
|
|
48917
49092
|
* @remarks
|
|
48918
|
-
* The total number of
|
|
49093
|
+
* The total number of columns.
|
|
48919
49094
|
*
|
|
48920
49095
|
* @example
|
|
48921
49096
|
* 22
|
|
@@ -49380,10 +49555,17 @@ export declare class GetMetaTablePartitionResponseBodyData extends $tea.Model {
|
|
|
49380
49555
|
}
|
|
49381
49556
|
export declare class GetMetaTableProducingTasksResponseBodyData extends $tea.Model {
|
|
49382
49557
|
/**
|
|
49558
|
+
* @remarks
|
|
49559
|
+
* The ID of the output task.
|
|
49560
|
+
*
|
|
49383
49561
|
* @example
|
|
49384
49562
|
* 9876543210
|
|
49385
49563
|
*/
|
|
49386
49564
|
taskId?: string;
|
|
49565
|
+
/**
|
|
49566
|
+
* @remarks
|
|
49567
|
+
* The name of the output task.
|
|
49568
|
+
*/
|
|
49387
49569
|
taskName?: string;
|
|
49388
49570
|
static names(): {
|
|
49389
49571
|
[key: string]: string;
|
|
@@ -53239,6 +53421,89 @@ export declare class ListCalcEnginesResponseBodyData extends $tea.Model {
|
|
|
53239
53421
|
[key: string]: any;
|
|
53240
53422
|
});
|
|
53241
53423
|
}
|
|
53424
|
+
export declare class ListCheckProcessesResponseBodyPagingInfoCheckProcesses extends $tea.Model {
|
|
53425
|
+
/**
|
|
53426
|
+
* @example
|
|
53427
|
+
* commit-file
|
|
53428
|
+
*/
|
|
53429
|
+
eventCode?: string;
|
|
53430
|
+
/**
|
|
53431
|
+
* @example
|
|
53432
|
+
* DnsEvent
|
|
53433
|
+
*/
|
|
53434
|
+
eventName?: string;
|
|
53435
|
+
/**
|
|
53436
|
+
* @example
|
|
53437
|
+
* Pre-event for Node Commit
|
|
53438
|
+
*/
|
|
53439
|
+
eventNameEn?: string;
|
|
53440
|
+
/**
|
|
53441
|
+
* @example
|
|
53442
|
+
* b824a5de-4223-4315-af3e-c4449d236db4
|
|
53443
|
+
*/
|
|
53444
|
+
messageId?: string;
|
|
53445
|
+
/**
|
|
53446
|
+
* @example
|
|
53447
|
+
* 297635
|
|
53448
|
+
*/
|
|
53449
|
+
operator?: string;
|
|
53450
|
+
/**
|
|
53451
|
+
* @example
|
|
53452
|
+
* rdk_generate_d395da25-b0d3-4114-b2a5-d0247444a661_none_3496903_365203
|
|
53453
|
+
*/
|
|
53454
|
+
processId?: string;
|
|
53455
|
+
/**
|
|
53456
|
+
* @example
|
|
53457
|
+
* odps_sql_test
|
|
53458
|
+
*/
|
|
53459
|
+
processName?: string;
|
|
53460
|
+
/**
|
|
53461
|
+
* @example
|
|
53462
|
+
* 32563
|
|
53463
|
+
*/
|
|
53464
|
+
projectId?: number;
|
|
53465
|
+
/**
|
|
53466
|
+
* @example
|
|
53467
|
+
* CHECKING
|
|
53468
|
+
*/
|
|
53469
|
+
status?: string;
|
|
53470
|
+
static names(): {
|
|
53471
|
+
[key: string]: string;
|
|
53472
|
+
};
|
|
53473
|
+
static types(): {
|
|
53474
|
+
[key: string]: any;
|
|
53475
|
+
};
|
|
53476
|
+
constructor(map?: {
|
|
53477
|
+
[key: string]: any;
|
|
53478
|
+
});
|
|
53479
|
+
}
|
|
53480
|
+
export declare class ListCheckProcessesResponseBodyPagingInfo extends $tea.Model {
|
|
53481
|
+
checkProcesses?: ListCheckProcessesResponseBodyPagingInfoCheckProcesses[];
|
|
53482
|
+
/**
|
|
53483
|
+
* @example
|
|
53484
|
+
* 1
|
|
53485
|
+
*/
|
|
53486
|
+
pageNumber?: number;
|
|
53487
|
+
/**
|
|
53488
|
+
* @example
|
|
53489
|
+
* 10
|
|
53490
|
+
*/
|
|
53491
|
+
pageSize?: number;
|
|
53492
|
+
/**
|
|
53493
|
+
* @example
|
|
53494
|
+
* 12
|
|
53495
|
+
*/
|
|
53496
|
+
totalCount?: number;
|
|
53497
|
+
static names(): {
|
|
53498
|
+
[key: string]: string;
|
|
53499
|
+
};
|
|
53500
|
+
static types(): {
|
|
53501
|
+
[key: string]: any;
|
|
53502
|
+
};
|
|
53503
|
+
constructor(map?: {
|
|
53504
|
+
[key: string]: any;
|
|
53505
|
+
});
|
|
53506
|
+
}
|
|
53242
53507
|
export declare class ListClustersResponseBodyData extends $tea.Model {
|
|
53243
53508
|
clusters?: Cluster[];
|
|
53244
53509
|
/**
|
|
@@ -64091,6 +64356,9 @@ export declare class UpdateTableRequestColumns extends $tea.Model {
|
|
|
64091
64356
|
/**
|
|
64092
64357
|
* @remarks
|
|
64093
64358
|
* The display name of the field.
|
|
64359
|
+
*
|
|
64360
|
+
* @example
|
|
64361
|
+
* 名称
|
|
64094
64362
|
*/
|
|
64095
64363
|
columnNameCn?: string;
|
|
64096
64364
|
/**
|
|
@@ -64106,6 +64374,9 @@ export declare class UpdateTableRequestColumns extends $tea.Model {
|
|
|
64106
64374
|
/**
|
|
64107
64375
|
* @remarks
|
|
64108
64376
|
* The comment of the field.
|
|
64377
|
+
*
|
|
64378
|
+
* @example
|
|
64379
|
+
* comment
|
|
64109
64380
|
*/
|
|
64110
64381
|
comment?: string;
|
|
64111
64382
|
/**
|
|
@@ -64349,7 +64620,8 @@ export default class Client extends OpenApi {
|
|
|
64349
64620
|
* Assigns a role to a member of a DataWorks workspace. Before you call this operation, you must add your account to a DataWorks workspace as a member.
|
|
64350
64621
|
*
|
|
64351
64622
|
* @remarks
|
|
64352
|
-
*
|
|
64623
|
+
* For information about how to add an account to a DataWorks workspace as a member, see [Add workspace members and assign roles to them](https://help.aliyun.com/document_detail/136941.html).
|
|
64624
|
+
* * If you assign a built-in workspace-level role to a member of a DataWorks workspace, the member is automatically granted the permissions of the mapped role of the MaxCompute compute engine in the development environment. For more information, see [Appendix: Mappings between the built-in workspace-level roles of DataWorks and the roles of MaxCompute](https://help.aliyun.com/document_detail/449397.html).
|
|
64353
64625
|
*
|
|
64354
64626
|
* @param request - AddProjectMemberToRoleRequest
|
|
64355
64627
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -64360,7 +64632,8 @@ export default class Client extends OpenApi {
|
|
|
64360
64632
|
* Assigns a role to a member of a DataWorks workspace. Before you call this operation, you must add your account to a DataWorks workspace as a member.
|
|
64361
64633
|
*
|
|
64362
64634
|
* @remarks
|
|
64363
|
-
*
|
|
64635
|
+
* For information about how to add an account to a DataWorks workspace as a member, see [Add workspace members and assign roles to them](https://help.aliyun.com/document_detail/136941.html).
|
|
64636
|
+
* * If you assign a built-in workspace-level role to a member of a DataWorks workspace, the member is automatically granted the permissions of the mapped role of the MaxCompute compute engine in the development environment. For more information, see [Appendix: Mappings between the built-in workspace-level roles of DataWorks and the roles of MaxCompute](https://help.aliyun.com/document_detail/449397.html).
|
|
64364
64637
|
*
|
|
64365
64638
|
* @param request - AddProjectMemberToRoleRequest
|
|
64366
64639
|
* @returns AddProjectMemberToRoleResponse
|
|
@@ -65220,10 +65493,10 @@ export default class Client extends OpenApi {
|
|
|
65220
65493
|
*/
|
|
65221
65494
|
deleteFromMetaCategory(request: DeleteFromMetaCategoryRequest): Promise<DeleteFromMetaCategoryResponse>;
|
|
65222
65495
|
/**
|
|
65223
|
-
*
|
|
65496
|
+
* Delete lineage, supports deleting user-defined lineage relationships
|
|
65224
65497
|
*
|
|
65225
65498
|
* @remarks
|
|
65226
|
-
* This
|
|
65499
|
+
* This API is currently in the trial phase. Users who wish to experience it can apply, and after the administrator adds them to the trial list, they can call this API.
|
|
65227
65500
|
*
|
|
65228
65501
|
* @param request - DeleteLineageRelationRequest
|
|
65229
65502
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -65231,10 +65504,10 @@ export default class Client extends OpenApi {
|
|
|
65231
65504
|
*/
|
|
65232
65505
|
deleteLineageRelationWithOptions(request: DeleteLineageRelationRequest, runtime: $Util.RuntimeOptions): Promise<DeleteLineageRelationResponse>;
|
|
65233
65506
|
/**
|
|
65234
|
-
*
|
|
65507
|
+
* Delete lineage, supports deleting user-defined lineage relationships
|
|
65235
65508
|
*
|
|
65236
65509
|
* @remarks
|
|
65237
|
-
* This
|
|
65510
|
+
* This API is currently in the trial phase. Users who wish to experience it can apply, and after the administrator adds them to the trial list, they can call this API.
|
|
65238
65511
|
*
|
|
65239
65512
|
* @param request - DeleteLineageRelationRequest
|
|
65240
65513
|
* @returns DeleteLineageRelationResponse
|
|
@@ -66564,7 +66837,7 @@ export default class Client extends OpenApi {
|
|
|
66564
66837
|
*/
|
|
66565
66838
|
getMetaTableColumn(request: GetMetaTableColumnRequest): Promise<GetMetaTableColumnResponse>;
|
|
66566
66839
|
/**
|
|
66567
|
-
*
|
|
66840
|
+
* Invoke the GetMetaTableFullInfo interface to obtain the complete information of a table (including field information).
|
|
66568
66841
|
*
|
|
66569
66842
|
* @param request - GetMetaTableFullInfoRequest
|
|
66570
66843
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -66572,7 +66845,7 @@ export default class Client extends OpenApi {
|
|
|
66572
66845
|
*/
|
|
66573
66846
|
getMetaTableFullInfoWithOptions(request: GetMetaTableFullInfoRequest, runtime: $Util.RuntimeOptions): Promise<GetMetaTableFullInfoResponse>;
|
|
66574
66847
|
/**
|
|
66575
|
-
*
|
|
66848
|
+
* Invoke the GetMetaTableFullInfo interface to obtain the complete information of a table (including field information).
|
|
66576
66849
|
*
|
|
66577
66850
|
* @param request - GetMetaTableFullInfoRequest
|
|
66578
66851
|
* @returns GetMetaTableFullInfoResponse
|
|
@@ -66660,7 +66933,7 @@ export default class Client extends OpenApi {
|
|
|
66660
66933
|
*/
|
|
66661
66934
|
getMetaTablePartition(request: GetMetaTablePartitionRequest): Promise<GetMetaTablePartitionResponse>;
|
|
66662
66935
|
/**
|
|
66663
|
-
*
|
|
66936
|
+
* Queries the output tasks of a metatable.
|
|
66664
66937
|
*
|
|
66665
66938
|
* @param request - GetMetaTableProducingTasksRequest
|
|
66666
66939
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -66668,7 +66941,7 @@ export default class Client extends OpenApi {
|
|
|
66668
66941
|
*/
|
|
66669
66942
|
getMetaTableProducingTasksWithOptions(request: GetMetaTableProducingTasksRequest, runtime: $Util.RuntimeOptions): Promise<GetMetaTableProducingTasksResponse>;
|
|
66670
66943
|
/**
|
|
66671
|
-
*
|
|
66944
|
+
* Queries the output tasks of a metatable.
|
|
66672
66945
|
*
|
|
66673
66946
|
* @param request - GetMetaTableProducingTasksRequest
|
|
66674
66947
|
* @returns GetMetaTableProducingTasksResponse
|
|
@@ -67152,6 +67425,21 @@ export default class Client extends OpenApi {
|
|
|
67152
67425
|
* @returns ListCalcEnginesResponse
|
|
67153
67426
|
*/
|
|
67154
67427
|
listCalcEngines(request: ListCalcEnginesRequest): Promise<ListCalcEnginesResponse>;
|
|
67428
|
+
/**
|
|
67429
|
+
* 查询扩展事件的检查列表
|
|
67430
|
+
*
|
|
67431
|
+
* @param request - ListCheckProcessesRequest
|
|
67432
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
67433
|
+
* @returns ListCheckProcessesResponse
|
|
67434
|
+
*/
|
|
67435
|
+
listCheckProcessesWithOptions(request: ListCheckProcessesRequest, runtime: $Util.RuntimeOptions): Promise<ListCheckProcessesResponse>;
|
|
67436
|
+
/**
|
|
67437
|
+
* 查询扩展事件的检查列表
|
|
67438
|
+
*
|
|
67439
|
+
* @param request - ListCheckProcessesRequest
|
|
67440
|
+
* @returns ListCheckProcessesResponse
|
|
67441
|
+
*/
|
|
67442
|
+
listCheckProcesses(request: ListCheckProcessesRequest): Promise<ListCheckProcessesResponse>;
|
|
67155
67443
|
/**
|
|
67156
67444
|
* 列出集群的配置信息
|
|
67157
67445
|
*
|