@alicloud/dataworks-public20200518 4.4.7 → 4.4.8
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 +33 -76
- package/dist/client.js +50 -87
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +59 -98
package/package.json
CHANGED
package/src/client.ts
CHANGED
|
@@ -831,8 +831,6 @@ export class CreateBaselineRequest extends $tea.Model {
|
|
|
831
831
|
|
|
832
832
|
export class CreateBaselineResponseBody extends $tea.Model {
|
|
833
833
|
data?: number;
|
|
834
|
-
dynamicErrorCode?: string;
|
|
835
|
-
dynamicErrorMessage?: string;
|
|
836
834
|
errorCode?: string;
|
|
837
835
|
errorMessage?: string;
|
|
838
836
|
httpStatusCode?: number;
|
|
@@ -841,8 +839,6 @@ export class CreateBaselineResponseBody extends $tea.Model {
|
|
|
841
839
|
static names(): { [key: string]: string } {
|
|
842
840
|
return {
|
|
843
841
|
data: 'Data',
|
|
844
|
-
dynamicErrorCode: 'DynamicErrorCode',
|
|
845
|
-
dynamicErrorMessage: 'DynamicErrorMessage',
|
|
846
842
|
errorCode: 'ErrorCode',
|
|
847
843
|
errorMessage: 'ErrorMessage',
|
|
848
844
|
httpStatusCode: 'HttpStatusCode',
|
|
@@ -854,8 +850,6 @@ export class CreateBaselineResponseBody extends $tea.Model {
|
|
|
854
850
|
static types(): { [key: string]: any } {
|
|
855
851
|
return {
|
|
856
852
|
data: 'number',
|
|
857
|
-
dynamicErrorCode: 'string',
|
|
858
|
-
dynamicErrorMessage: 'string',
|
|
859
853
|
errorCode: 'string',
|
|
860
854
|
errorMessage: 'string',
|
|
861
855
|
httpStatusCode: 'number',
|
|
@@ -1915,6 +1909,7 @@ export class CreateFileRequest extends $tea.Model {
|
|
|
1915
1909
|
fileFolderPath?: string;
|
|
1916
1910
|
fileName?: string;
|
|
1917
1911
|
fileType?: number;
|
|
1912
|
+
ignoreParentSkipRunningProperty?: boolean;
|
|
1918
1913
|
inputList?: string;
|
|
1919
1914
|
inputParameters?: string;
|
|
1920
1915
|
outputParameters?: string;
|
|
@@ -1946,6 +1941,7 @@ export class CreateFileRequest extends $tea.Model {
|
|
|
1946
1941
|
fileFolderPath: 'FileFolderPath',
|
|
1947
1942
|
fileName: 'FileName',
|
|
1948
1943
|
fileType: 'FileType',
|
|
1944
|
+
ignoreParentSkipRunningProperty: 'IgnoreParentSkipRunningProperty',
|
|
1949
1945
|
inputList: 'InputList',
|
|
1950
1946
|
inputParameters: 'InputParameters',
|
|
1951
1947
|
outputParameters: 'OutputParameters',
|
|
@@ -1980,6 +1976,7 @@ export class CreateFileRequest extends $tea.Model {
|
|
|
1980
1976
|
fileFolderPath: 'string',
|
|
1981
1977
|
fileName: 'string',
|
|
1982
1978
|
fileType: 'number',
|
|
1979
|
+
ignoreParentSkipRunningProperty: 'boolean',
|
|
1983
1980
|
inputList: 'string',
|
|
1984
1981
|
inputParameters: 'string',
|
|
1985
1982
|
outputParameters: 'string',
|
|
@@ -3676,8 +3673,6 @@ export class DeleteBaselineRequest extends $tea.Model {
|
|
|
3676
3673
|
|
|
3677
3674
|
export class DeleteBaselineResponseBody extends $tea.Model {
|
|
3678
3675
|
data?: boolean;
|
|
3679
|
-
dynamicErrorCode?: string;
|
|
3680
|
-
dynamicErrorMessage?: string;
|
|
3681
3676
|
errorCode?: string;
|
|
3682
3677
|
errorMessage?: string;
|
|
3683
3678
|
httpStatusCode?: number;
|
|
@@ -3686,8 +3681,6 @@ export class DeleteBaselineResponseBody extends $tea.Model {
|
|
|
3686
3681
|
static names(): { [key: string]: string } {
|
|
3687
3682
|
return {
|
|
3688
3683
|
data: 'Data',
|
|
3689
|
-
dynamicErrorCode: 'DynamicErrorCode',
|
|
3690
|
-
dynamicErrorMessage: 'DynamicErrorMessage',
|
|
3691
3684
|
errorCode: 'ErrorCode',
|
|
3692
3685
|
errorMessage: 'ErrorMessage',
|
|
3693
3686
|
httpStatusCode: 'HttpStatusCode',
|
|
@@ -3699,8 +3692,6 @@ export class DeleteBaselineResponseBody extends $tea.Model {
|
|
|
3699
3692
|
static types(): { [key: string]: any } {
|
|
3700
3693
|
return {
|
|
3701
3694
|
data: 'boolean',
|
|
3702
|
-
dynamicErrorCode: 'string',
|
|
3703
|
-
dynamicErrorMessage: 'string',
|
|
3704
3695
|
errorCode: 'string',
|
|
3705
3696
|
errorMessage: 'string',
|
|
3706
3697
|
httpStatusCode: 'number',
|
|
@@ -6001,8 +5992,6 @@ export class GetBaselineRequest extends $tea.Model {
|
|
|
6001
5992
|
|
|
6002
5993
|
export class GetBaselineResponseBody extends $tea.Model {
|
|
6003
5994
|
data?: GetBaselineResponseBodyData;
|
|
6004
|
-
dynamicErrorCode?: string;
|
|
6005
|
-
dynamicErrorMessage?: string;
|
|
6006
5995
|
errorCode?: string;
|
|
6007
5996
|
errorMessage?: string;
|
|
6008
5997
|
httpStatusCode?: number;
|
|
@@ -6011,8 +6000,6 @@ export class GetBaselineResponseBody extends $tea.Model {
|
|
|
6011
6000
|
static names(): { [key: string]: string } {
|
|
6012
6001
|
return {
|
|
6013
6002
|
data: 'Data',
|
|
6014
|
-
dynamicErrorCode: 'DynamicErrorCode',
|
|
6015
|
-
dynamicErrorMessage: 'DynamicErrorMessage',
|
|
6016
6003
|
errorCode: 'ErrorCode',
|
|
6017
6004
|
errorMessage: 'ErrorMessage',
|
|
6018
6005
|
httpStatusCode: 'HttpStatusCode',
|
|
@@ -6024,8 +6011,6 @@ export class GetBaselineResponseBody extends $tea.Model {
|
|
|
6024
6011
|
static types(): { [key: string]: any } {
|
|
6025
6012
|
return {
|
|
6026
6013
|
data: GetBaselineResponseBodyData,
|
|
6027
|
-
dynamicErrorCode: 'string',
|
|
6028
|
-
dynamicErrorMessage: 'string',
|
|
6029
6014
|
errorCode: 'string',
|
|
6030
6015
|
errorMessage: 'string',
|
|
6031
6016
|
httpStatusCode: 'number',
|
|
@@ -11969,8 +11954,6 @@ export class ListBaselinesRequest extends $tea.Model {
|
|
|
11969
11954
|
|
|
11970
11955
|
export class ListBaselinesResponseBody extends $tea.Model {
|
|
11971
11956
|
data?: ListBaselinesResponseBodyData;
|
|
11972
|
-
dynamicErrorCode?: string;
|
|
11973
|
-
dynamicErrorMessage?: string;
|
|
11974
11957
|
errorCode?: string;
|
|
11975
11958
|
errorMessage?: string;
|
|
11976
11959
|
httpStatusCode?: number;
|
|
@@ -11979,8 +11962,6 @@ export class ListBaselinesResponseBody extends $tea.Model {
|
|
|
11979
11962
|
static names(): { [key: string]: string } {
|
|
11980
11963
|
return {
|
|
11981
11964
|
data: 'Data',
|
|
11982
|
-
dynamicErrorCode: 'DynamicErrorCode',
|
|
11983
|
-
dynamicErrorMessage: 'DynamicErrorMessage',
|
|
11984
11965
|
errorCode: 'ErrorCode',
|
|
11985
11966
|
errorMessage: 'ErrorMessage',
|
|
11986
11967
|
httpStatusCode: 'HttpStatusCode',
|
|
@@ -11992,8 +11973,6 @@ export class ListBaselinesResponseBody extends $tea.Model {
|
|
|
11992
11973
|
static types(): { [key: string]: any } {
|
|
11993
11974
|
return {
|
|
11994
11975
|
data: ListBaselinesResponseBodyData,
|
|
11995
|
-
dynamicErrorCode: 'string',
|
|
11996
|
-
dynamicErrorMessage: 'string',
|
|
11997
11976
|
errorCode: 'string',
|
|
11998
11977
|
errorMessage: 'string',
|
|
11999
11978
|
httpStatusCode: 'number',
|
|
@@ -17467,6 +17446,7 @@ export class RunCycleDagNodesResponse extends $tea.Model {
|
|
|
17467
17446
|
export class RunManualDagNodesRequest extends $tea.Model {
|
|
17468
17447
|
bizDate?: string;
|
|
17469
17448
|
dagParameters?: string;
|
|
17449
|
+
endBizDate?: string;
|
|
17470
17450
|
excludeNodeIds?: string;
|
|
17471
17451
|
flowName?: string;
|
|
17472
17452
|
includeNodeIds?: string;
|
|
@@ -17474,10 +17454,12 @@ export class RunManualDagNodesRequest extends $tea.Model {
|
|
|
17474
17454
|
projectEnv?: string;
|
|
17475
17455
|
projectId?: number;
|
|
17476
17456
|
projectName?: string;
|
|
17457
|
+
startBizDate?: string;
|
|
17477
17458
|
static names(): { [key: string]: string } {
|
|
17478
17459
|
return {
|
|
17479
17460
|
bizDate: 'BizDate',
|
|
17480
17461
|
dagParameters: 'DagParameters',
|
|
17462
|
+
endBizDate: 'EndBizDate',
|
|
17481
17463
|
excludeNodeIds: 'ExcludeNodeIds',
|
|
17482
17464
|
flowName: 'FlowName',
|
|
17483
17465
|
includeNodeIds: 'IncludeNodeIds',
|
|
@@ -17485,6 +17467,7 @@ export class RunManualDagNodesRequest extends $tea.Model {
|
|
|
17485
17467
|
projectEnv: 'ProjectEnv',
|
|
17486
17468
|
projectId: 'ProjectId',
|
|
17487
17469
|
projectName: 'ProjectName',
|
|
17470
|
+
startBizDate: 'StartBizDate',
|
|
17488
17471
|
};
|
|
17489
17472
|
}
|
|
17490
17473
|
|
|
@@ -17492,6 +17475,7 @@ export class RunManualDagNodesRequest extends $tea.Model {
|
|
|
17492
17475
|
return {
|
|
17493
17476
|
bizDate: 'string',
|
|
17494
17477
|
dagParameters: 'string',
|
|
17478
|
+
endBizDate: 'string',
|
|
17495
17479
|
excludeNodeIds: 'string',
|
|
17496
17480
|
flowName: 'string',
|
|
17497
17481
|
includeNodeIds: 'string',
|
|
@@ -17499,6 +17483,7 @@ export class RunManualDagNodesRequest extends $tea.Model {
|
|
|
17499
17483
|
projectEnv: 'string',
|
|
17500
17484
|
projectId: 'number',
|
|
17501
17485
|
projectName: 'string',
|
|
17486
|
+
startBizDate: 'string',
|
|
17502
17487
|
};
|
|
17503
17488
|
}
|
|
17504
17489
|
|
|
@@ -19340,8 +19325,6 @@ export class UpdateBaselineShrinkRequest extends $tea.Model {
|
|
|
19340
19325
|
|
|
19341
19326
|
export class UpdateBaselineResponseBody extends $tea.Model {
|
|
19342
19327
|
data?: boolean;
|
|
19343
|
-
dynamicErrorCode?: string;
|
|
19344
|
-
dynamicErrorMessage?: string;
|
|
19345
19328
|
errorCode?: string;
|
|
19346
19329
|
errorMessage?: string;
|
|
19347
19330
|
httpStatusCode?: number;
|
|
@@ -19350,8 +19333,6 @@ export class UpdateBaselineResponseBody extends $tea.Model {
|
|
|
19350
19333
|
static names(): { [key: string]: string } {
|
|
19351
19334
|
return {
|
|
19352
19335
|
data: 'Data',
|
|
19353
|
-
dynamicErrorCode: 'DynamicErrorCode',
|
|
19354
|
-
dynamicErrorMessage: 'DynamicErrorMessage',
|
|
19355
19336
|
errorCode: 'ErrorCode',
|
|
19356
19337
|
errorMessage: 'ErrorMessage',
|
|
19357
19338
|
httpStatusCode: 'HttpStatusCode',
|
|
@@ -19363,8 +19344,6 @@ export class UpdateBaselineResponseBody extends $tea.Model {
|
|
|
19363
19344
|
static types(): { [key: string]: any } {
|
|
19364
19345
|
return {
|
|
19365
19346
|
data: 'boolean',
|
|
19366
|
-
dynamicErrorCode: 'string',
|
|
19367
|
-
dynamicErrorMessage: 'string',
|
|
19368
19347
|
errorCode: 'string',
|
|
19369
19348
|
errorMessage: 'string',
|
|
19370
19349
|
httpStatusCode: 'number',
|
|
@@ -19953,6 +19932,7 @@ export class UpdateFileRequest extends $tea.Model {
|
|
|
19953
19932
|
fileFolderPath?: string;
|
|
19954
19933
|
fileId?: number;
|
|
19955
19934
|
fileName?: string;
|
|
19935
|
+
ignoreParentSkipRunningProperty?: boolean;
|
|
19956
19936
|
inputList?: string;
|
|
19957
19937
|
inputParameters?: string;
|
|
19958
19938
|
outputList?: string;
|
|
@@ -19984,6 +19964,7 @@ export class UpdateFileRequest extends $tea.Model {
|
|
|
19984
19964
|
fileFolderPath: 'FileFolderPath',
|
|
19985
19965
|
fileId: 'FileId',
|
|
19986
19966
|
fileName: 'FileName',
|
|
19967
|
+
ignoreParentSkipRunningProperty: 'IgnoreParentSkipRunningProperty',
|
|
19987
19968
|
inputList: 'InputList',
|
|
19988
19969
|
inputParameters: 'InputParameters',
|
|
19989
19970
|
outputList: 'OutputList',
|
|
@@ -20018,6 +19999,7 @@ export class UpdateFileRequest extends $tea.Model {
|
|
|
20018
19999
|
fileFolderPath: 'string',
|
|
20019
20000
|
fileId: 'number',
|
|
20020
20001
|
fileName: 'string',
|
|
20002
|
+
ignoreParentSkipRunningProperty: 'boolean',
|
|
20021
20003
|
inputList: 'string',
|
|
20022
20004
|
inputParameters: 'string',
|
|
20023
20005
|
outputList: 'string',
|
|
@@ -22234,11 +22216,11 @@ export class GetBaselineResponseBodyData extends $tea.Model {
|
|
|
22234
22216
|
baselineName?: string;
|
|
22235
22217
|
baselineType?: string;
|
|
22236
22218
|
enabled?: boolean;
|
|
22219
|
+
nodeIds?: number[];
|
|
22237
22220
|
overTimeSettings?: GetBaselineResponseBodyDataOverTimeSettings[];
|
|
22238
22221
|
owner?: string;
|
|
22239
22222
|
priority?: number;
|
|
22240
22223
|
projectId?: number;
|
|
22241
|
-
taskIds?: number[];
|
|
22242
22224
|
static names(): { [key: string]: string } {
|
|
22243
22225
|
return {
|
|
22244
22226
|
alertEnabled: 'AlertEnabled',
|
|
@@ -22248,11 +22230,11 @@ export class GetBaselineResponseBodyData extends $tea.Model {
|
|
|
22248
22230
|
baselineName: 'BaselineName',
|
|
22249
22231
|
baselineType: 'BaselineType',
|
|
22250
22232
|
enabled: 'Enabled',
|
|
22233
|
+
nodeIds: 'NodeIds',
|
|
22251
22234
|
overTimeSettings: 'OverTimeSettings',
|
|
22252
22235
|
owner: 'Owner',
|
|
22253
22236
|
priority: 'Priority',
|
|
22254
22237
|
projectId: 'ProjectId',
|
|
22255
|
-
taskIds: 'TaskIds',
|
|
22256
22238
|
};
|
|
22257
22239
|
}
|
|
22258
22240
|
|
|
@@ -22265,11 +22247,11 @@ export class GetBaselineResponseBodyData extends $tea.Model {
|
|
|
22265
22247
|
baselineName: 'string',
|
|
22266
22248
|
baselineType: 'string',
|
|
22267
22249
|
enabled: 'boolean',
|
|
22250
|
+
nodeIds: { 'type': 'array', 'itemType': 'number' },
|
|
22268
22251
|
overTimeSettings: { 'type': 'array', 'itemType': GetBaselineResponseBodyDataOverTimeSettings },
|
|
22269
22252
|
owner: 'string',
|
|
22270
22253
|
priority: 'number',
|
|
22271
22254
|
projectId: 'number',
|
|
22272
|
-
taskIds: { 'type': 'array', 'itemType': 'number' },
|
|
22273
22255
|
};
|
|
22274
22256
|
}
|
|
22275
22257
|
|
|
@@ -33778,7 +33760,7 @@ export default class Client extends OpenApi {
|
|
|
33778
33760
|
}
|
|
33779
33761
|
|
|
33780
33762
|
/**
|
|
33781
|
-
*
|
|
33763
|
+
* The ID of the DataWorks workspace. You can call the [ListProjects](~~178393~~) operation to query the ID.
|
|
33782
33764
|
*
|
|
33783
33765
|
* @param request AddProjectMemberToRoleRequest
|
|
33784
33766
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -33821,7 +33803,7 @@ export default class Client extends OpenApi {
|
|
|
33821
33803
|
}
|
|
33822
33804
|
|
|
33823
33805
|
/**
|
|
33824
|
-
*
|
|
33806
|
+
* The ID of the DataWorks workspace. You can call the [ListProjects](~~178393~~) operation to query the ID.
|
|
33825
33807
|
*
|
|
33826
33808
|
* @param request AddProjectMemberToRoleRequest
|
|
33827
33809
|
* @return AddProjectMemberToRoleResponse
|
|
@@ -34850,6 +34832,10 @@ export default class Client extends OpenApi {
|
|
|
34850
34832
|
body["FileType"] = request.fileType;
|
|
34851
34833
|
}
|
|
34852
34834
|
|
|
34835
|
+
if (!Util.isUnset(request.ignoreParentSkipRunningProperty)) {
|
|
34836
|
+
body["IgnoreParentSkipRunningProperty"] = request.ignoreParentSkipRunningProperty;
|
|
34837
|
+
}
|
|
34838
|
+
|
|
34853
34839
|
if (!Util.isUnset(request.inputList)) {
|
|
34854
34840
|
body["InputList"] = request.inputList;
|
|
34855
34841
|
}
|
|
@@ -35251,7 +35237,8 @@ export default class Client extends OpenApi {
|
|
|
35251
35237
|
}
|
|
35252
35238
|
|
|
35253
35239
|
/**
|
|
35254
|
-
*
|
|
35240
|
+
* A category must belong to a data album.
|
|
35241
|
+
* 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.
|
|
35255
35242
|
*
|
|
35256
35243
|
* @param request CreateMetaCollectionRequest
|
|
35257
35244
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -35294,7 +35281,8 @@ export default class Client extends OpenApi {
|
|
|
35294
35281
|
}
|
|
35295
35282
|
|
|
35296
35283
|
/**
|
|
35297
|
-
*
|
|
35284
|
+
* A category must belong to a data album.
|
|
35285
|
+
* 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.
|
|
35298
35286
|
*
|
|
35299
35287
|
* @param request CreateMetaCollectionRequest
|
|
35300
35288
|
* @return CreateMetaCollectionResponse
|
|
@@ -36993,8 +36981,7 @@ export default class Client extends OpenApi {
|
|
|
36993
36981
|
}
|
|
36994
36982
|
|
|
36995
36983
|
/**
|
|
36996
|
-
*
|
|
36997
|
-
* DataWorks allows you to create real-time synchronization nodes and synchronization solutions in Data Integration only in asynchronous mode.
|
|
36984
|
+
* The operation that you want to perform.
|
|
36998
36985
|
*
|
|
36999
36986
|
* @param request GenerateDISyncTaskConfigForCreatingRequest
|
|
37000
36987
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -37037,8 +37024,7 @@ export default class Client extends OpenApi {
|
|
|
37037
37024
|
}
|
|
37038
37025
|
|
|
37039
37026
|
/**
|
|
37040
|
-
*
|
|
37041
|
-
* DataWorks allows you to create real-time synchronization nodes and synchronization solutions in Data Integration only in asynchronous mode.
|
|
37027
|
+
* The operation that you want to perform.
|
|
37042
37028
|
*
|
|
37043
37029
|
* @param request GenerateDISyncTaskConfigForCreatingRequest
|
|
37044
37030
|
* @return GenerateDISyncTaskConfigForCreatingResponse
|
|
@@ -37049,7 +37035,7 @@ export default class Client extends OpenApi {
|
|
|
37049
37035
|
}
|
|
37050
37036
|
|
|
37051
37037
|
/**
|
|
37052
|
-
*
|
|
37038
|
+
* The operation that you want to perform.
|
|
37053
37039
|
*
|
|
37054
37040
|
* @param request GenerateDISyncTaskConfigForUpdatingRequest
|
|
37055
37041
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -37096,7 +37082,7 @@ export default class Client extends OpenApi {
|
|
|
37096
37082
|
}
|
|
37097
37083
|
|
|
37098
37084
|
/**
|
|
37099
|
-
*
|
|
37085
|
+
* The operation that you want to perform.
|
|
37100
37086
|
*
|
|
37101
37087
|
* @param request GenerateDISyncTaskConfigForUpdatingRequest
|
|
37102
37088
|
* @return GenerateDISyncTaskConfigForUpdatingResponse
|
|
@@ -38456,7 +38442,8 @@ export default class Client extends OpenApi {
|
|
|
38456
38442
|
}
|
|
38457
38443
|
|
|
38458
38444
|
/**
|
|
38459
|
-
*
|
|
38445
|
+
* The ID of the EMR cluster. This parameter is required only if you set the DataSourceType parameter to emr.
|
|
38446
|
+
* 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.
|
|
38460
38447
|
*
|
|
38461
38448
|
* @param request GetMetaDBInfoRequest
|
|
38462
38449
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -38483,7 +38470,8 @@ export default class Client extends OpenApi {
|
|
|
38483
38470
|
}
|
|
38484
38471
|
|
|
38485
38472
|
/**
|
|
38486
|
-
*
|
|
38473
|
+
* The ID of the EMR cluster. This parameter is required only if you set the DataSourceType parameter to emr.
|
|
38474
|
+
* 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.
|
|
38487
38475
|
*
|
|
38488
38476
|
* @param request GetMetaDBInfoRequest
|
|
38489
38477
|
* @return GetMetaDBInfoResponse
|
|
@@ -38848,7 +38836,7 @@ export default class Client extends OpenApi {
|
|
|
38848
38836
|
}
|
|
38849
38837
|
|
|
38850
38838
|
/**
|
|
38851
|
-
*
|
|
38839
|
+
* The operation that you want to perform. Set the value to **GetMetaTablePartition**.
|
|
38852
38840
|
*
|
|
38853
38841
|
* @param tmpReq GetMetaTablePartitionRequest
|
|
38854
38842
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -38913,7 +38901,7 @@ export default class Client extends OpenApi {
|
|
|
38913
38901
|
}
|
|
38914
38902
|
|
|
38915
38903
|
/**
|
|
38916
|
-
*
|
|
38904
|
+
* The operation that you want to perform. Set the value to **GetMetaTablePartition**.
|
|
38917
38905
|
*
|
|
38918
38906
|
* @param request GetMetaTablePartitionRequest
|
|
38919
38907
|
* @return GetMetaTablePartitionResponse
|
|
@@ -40251,16 +40239,7 @@ export default class Client extends OpenApi {
|
|
|
40251
40239
|
}
|
|
40252
40240
|
|
|
40253
40241
|
/**
|
|
40254
|
-
*
|
|
40255
|
-
* * MANUAL: the DAG for a manually triggered workflow.
|
|
40256
|
-
* * SMOKE_TEST: the DAG for a smoke testing workflow.
|
|
40257
|
-
* * SUPPLY_DATA: the DAG for a data backfill instance.
|
|
40258
|
-
* * BUSINESS_PROCESS_DAG: the DAG for a one-time workflow.
|
|
40259
|
-
* Supported DAG states:
|
|
40260
|
-
* * CREATED: The DAG is created.
|
|
40261
|
-
* * RUNNING: The DAG is running.
|
|
40262
|
-
* * FAILURE: The DAG fails to run.
|
|
40263
|
-
* * SUCCESS: The DAG successfully runs.
|
|
40242
|
+
* The operation that you want to perform. Set the value to **ListDags**.
|
|
40264
40243
|
*
|
|
40265
40244
|
* @param request ListDagsRequest
|
|
40266
40245
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -40295,16 +40274,7 @@ export default class Client extends OpenApi {
|
|
|
40295
40274
|
}
|
|
40296
40275
|
|
|
40297
40276
|
/**
|
|
40298
|
-
*
|
|
40299
|
-
* * MANUAL: the DAG for a manually triggered workflow.
|
|
40300
|
-
* * SMOKE_TEST: the DAG for a smoke testing workflow.
|
|
40301
|
-
* * SUPPLY_DATA: the DAG for a data backfill instance.
|
|
40302
|
-
* * BUSINESS_PROCESS_DAG: the DAG for a one-time workflow.
|
|
40303
|
-
* Supported DAG states:
|
|
40304
|
-
* * CREATED: The DAG is created.
|
|
40305
|
-
* * RUNNING: The DAG is running.
|
|
40306
|
-
* * FAILURE: The DAG fails to run.
|
|
40307
|
-
* * SUCCESS: The DAG successfully runs.
|
|
40277
|
+
* The operation that you want to perform. Set the value to **ListDags**.
|
|
40308
40278
|
*
|
|
40309
40279
|
* @param request ListDagsRequest
|
|
40310
40280
|
* @return ListDagsResponse
|
|
@@ -41325,7 +41295,7 @@ export default class Client extends OpenApi {
|
|
|
41325
41295
|
}
|
|
41326
41296
|
|
|
41327
41297
|
/**
|
|
41328
|
-
*
|
|
41298
|
+
* You can configure only one of the Creator, Administrator, and Follower parameters.
|
|
41329
41299
|
*
|
|
41330
41300
|
* @param request ListMetaCollectionsRequest
|
|
41331
41301
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -41388,7 +41358,7 @@ export default class Client extends OpenApi {
|
|
|
41388
41358
|
}
|
|
41389
41359
|
|
|
41390
41360
|
/**
|
|
41391
|
-
*
|
|
41361
|
+
* You can configure only one of the Creator, Administrator, and Follower parameters.
|
|
41392
41362
|
*
|
|
41393
41363
|
* @param request ListMetaCollectionsRequest
|
|
41394
41364
|
* @return ListMetaCollectionsResponse
|
|
@@ -42599,8 +42569,7 @@ export default class Client extends OpenApi {
|
|
|
42599
42569
|
}
|
|
42600
42570
|
|
|
42601
42571
|
/**
|
|
42602
|
-
*
|
|
42603
|
-
* DataWorks allows you to create or update real-time synchronization nodes and synchronization solutions in Data Integration only in asynchronous mode.
|
|
42572
|
+
* The operation that you want to perform.
|
|
42604
42573
|
*
|
|
42605
42574
|
* @param request QueryDISyncTaskConfigProcessResultRequest
|
|
42606
42575
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -42639,8 +42608,7 @@ export default class Client extends OpenApi {
|
|
|
42639
42608
|
}
|
|
42640
42609
|
|
|
42641
42610
|
/**
|
|
42642
|
-
*
|
|
42643
|
-
* DataWorks allows you to create or update real-time synchronization nodes and synchronization solutions in Data Integration only in asynchronous mode.
|
|
42611
|
+
* The operation that you want to perform.
|
|
42644
42612
|
*
|
|
42645
42613
|
* @param request QueryDISyncTaskConfigProcessResultRequest
|
|
42646
42614
|
* @return QueryDISyncTaskConfigProcessResultResponse
|
|
@@ -42650,16 +42618,6 @@ export default class Client extends OpenApi {
|
|
|
42650
42618
|
return await this.queryDISyncTaskConfigProcessResultWithOptions(request, runtime);
|
|
42651
42619
|
}
|
|
42652
42620
|
|
|
42653
|
-
/**
|
|
42654
|
-
* * You must use FML statements to query information about the data modeling engine when you call this operation.
|
|
42655
|
-
* * 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.
|
|
42656
|
-
* 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.
|
|
42657
|
-
* * A maximum of 1,000 entries can be returned each time you call the operation.
|
|
42658
|
-
*
|
|
42659
|
-
* @param request QueryPublicModelEngineRequest
|
|
42660
|
-
* @param runtime runtime options for this request RuntimeOptions
|
|
42661
|
-
* @return QueryPublicModelEngineResponse
|
|
42662
|
-
*/
|
|
42663
42621
|
async queryPublicModelEngineWithOptions(request: QueryPublicModelEngineRequest, runtime: $Util.RuntimeOptions): Promise<QueryPublicModelEngineResponse> {
|
|
42664
42622
|
Util.validateModel(request);
|
|
42665
42623
|
let body : {[key: string ]: any} = { };
|
|
@@ -42688,15 +42646,6 @@ export default class Client extends OpenApi {
|
|
|
42688
42646
|
return $tea.cast<QueryPublicModelEngineResponse>(await this.callApi(params, req, runtime), new QueryPublicModelEngineResponse({}));
|
|
42689
42647
|
}
|
|
42690
42648
|
|
|
42691
|
-
/**
|
|
42692
|
-
* * You must use FML statements to query information about the data modeling engine when you call this operation.
|
|
42693
|
-
* * 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.
|
|
42694
|
-
* 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.
|
|
42695
|
-
* * A maximum of 1,000 entries can be returned each time you call the operation.
|
|
42696
|
-
*
|
|
42697
|
-
* @param request QueryPublicModelEngineRequest
|
|
42698
|
-
* @return QueryPublicModelEngineResponse
|
|
42699
|
-
*/
|
|
42700
42649
|
async queryPublicModelEngine(request: QueryPublicModelEngineRequest): Promise<QueryPublicModelEngineResponse> {
|
|
42701
42650
|
let runtime = new $Util.RuntimeOptions({ });
|
|
42702
42651
|
return await this.queryPublicModelEngineWithOptions(request, runtime);
|
|
@@ -43000,6 +42949,10 @@ export default class Client extends OpenApi {
|
|
|
43000
42949
|
body["DagParameters"] = request.dagParameters;
|
|
43001
42950
|
}
|
|
43002
42951
|
|
|
42952
|
+
if (!Util.isUnset(request.endBizDate)) {
|
|
42953
|
+
body["EndBizDate"] = request.endBizDate;
|
|
42954
|
+
}
|
|
42955
|
+
|
|
43003
42956
|
if (!Util.isUnset(request.excludeNodeIds)) {
|
|
43004
42957
|
body["ExcludeNodeIds"] = request.excludeNodeIds;
|
|
43005
42958
|
}
|
|
@@ -43028,6 +42981,10 @@ export default class Client extends OpenApi {
|
|
|
43028
42981
|
body["ProjectName"] = request.projectName;
|
|
43029
42982
|
}
|
|
43030
42983
|
|
|
42984
|
+
if (!Util.isUnset(request.startBizDate)) {
|
|
42985
|
+
body["StartBizDate"] = request.startBizDate;
|
|
42986
|
+
}
|
|
42987
|
+
|
|
43031
42988
|
let req = new $OpenApi.OpenApiRequest({
|
|
43032
42989
|
body: OpenApiUtil.parseToMap(body),
|
|
43033
42990
|
});
|
|
@@ -43207,7 +43164,7 @@ export default class Client extends OpenApi {
|
|
|
43207
43164
|
}
|
|
43208
43165
|
|
|
43209
43166
|
/**
|
|
43210
|
-
*
|
|
43167
|
+
* The operation that you want to perform. Set the value to **SearchMetaTables**.
|
|
43211
43168
|
*
|
|
43212
43169
|
* @param request SearchMetaTablesRequest
|
|
43213
43170
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -43266,7 +43223,7 @@ export default class Client extends OpenApi {
|
|
|
43266
43223
|
}
|
|
43267
43224
|
|
|
43268
43225
|
/**
|
|
43269
|
-
*
|
|
43226
|
+
* The operation that you want to perform. Set the value to **SearchMetaTables**.
|
|
43270
43227
|
*
|
|
43271
43228
|
* @param request SearchMetaTablesRequest
|
|
43272
43229
|
* @return SearchMetaTablesResponse
|
|
@@ -44097,7 +44054,7 @@ export default class Client extends OpenApi {
|
|
|
44097
44054
|
}
|
|
44098
44055
|
|
|
44099
44056
|
/**
|
|
44100
|
-
*
|
|
44057
|
+
* The operation that you want to perform. Set the value to **UpdateDIProjectConfig**.
|
|
44101
44058
|
*
|
|
44102
44059
|
* @param request UpdateDIProjectConfigRequest
|
|
44103
44060
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -44140,7 +44097,7 @@ export default class Client extends OpenApi {
|
|
|
44140
44097
|
}
|
|
44141
44098
|
|
|
44142
44099
|
/**
|
|
44143
|
-
*
|
|
44100
|
+
* The operation that you want to perform. Set the value to **UpdateDIProjectConfig**.
|
|
44144
44101
|
*
|
|
44145
44102
|
* @param request UpdateDIProjectConfigRequest
|
|
44146
44103
|
* @return UpdateDIProjectConfigResponse
|
|
@@ -44391,6 +44348,10 @@ export default class Client extends OpenApi {
|
|
|
44391
44348
|
body["FileName"] = request.fileName;
|
|
44392
44349
|
}
|
|
44393
44350
|
|
|
44351
|
+
if (!Util.isUnset(request.ignoreParentSkipRunningProperty)) {
|
|
44352
|
+
body["IgnoreParentSkipRunningProperty"] = request.ignoreParentSkipRunningProperty;
|
|
44353
|
+
}
|
|
44354
|
+
|
|
44394
44355
|
if (!Util.isUnset(request.inputList)) {
|
|
44395
44356
|
body["InputList"] = request.inputList;
|
|
44396
44357
|
}
|
|
@@ -44595,7 +44556,7 @@ export default class Client extends OpenApi {
|
|
|
44595
44556
|
}
|
|
44596
44557
|
|
|
44597
44558
|
/**
|
|
44598
|
-
*
|
|
44559
|
+
* You must configure at least one of the Name and Comment parameters when you update a collection.
|
|
44599
44560
|
*
|
|
44600
44561
|
* @param request UpdateMetaCollectionRequest
|
|
44601
44562
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -44634,7 +44595,7 @@ export default class Client extends OpenApi {
|
|
|
44634
44595
|
}
|
|
44635
44596
|
|
|
44636
44597
|
/**
|
|
44637
|
-
*
|
|
44598
|
+
* You must configure at least one of the Name and Comment parameters when you update a collection.
|
|
44638
44599
|
*
|
|
44639
44600
|
* @param request UpdateMetaCollectionRequest
|
|
44640
44601
|
* @return UpdateMetaCollectionResponse
|