@alicloud/dataworks-public20200518 6.1.6 → 6.2.0
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 +213 -9
- package/dist/client.js +229 -31
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +346 -9
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
|
|
@@ -21984,6 +22015,83 @@ export declare class ListCalcEnginesResponse extends $tea.Model {
|
|
|
21984
22015
|
[key: string]: any;
|
|
21985
22016
|
});
|
|
21986
22017
|
}
|
|
22018
|
+
export declare class ListCheckProcessesRequest extends $tea.Model {
|
|
22019
|
+
/**
|
|
22020
|
+
* @remarks
|
|
22021
|
+
* This parameter is required.
|
|
22022
|
+
*
|
|
22023
|
+
* @example
|
|
22024
|
+
* commit-file
|
|
22025
|
+
*/
|
|
22026
|
+
eventCode?: string;
|
|
22027
|
+
/**
|
|
22028
|
+
* @example
|
|
22029
|
+
* 123333232
|
|
22030
|
+
*/
|
|
22031
|
+
operator?: string;
|
|
22032
|
+
/**
|
|
22033
|
+
* @example
|
|
22034
|
+
* 1
|
|
22035
|
+
*/
|
|
22036
|
+
pageNumber?: number;
|
|
22037
|
+
/**
|
|
22038
|
+
* @example
|
|
22039
|
+
* 10
|
|
22040
|
+
*/
|
|
22041
|
+
pageSize?: number;
|
|
22042
|
+
/**
|
|
22043
|
+
* @example
|
|
22044
|
+
* 123465
|
|
22045
|
+
*/
|
|
22046
|
+
projectId?: number;
|
|
22047
|
+
/**
|
|
22048
|
+
* @example
|
|
22049
|
+
* True
|
|
22050
|
+
*/
|
|
22051
|
+
status?: string;
|
|
22052
|
+
static names(): {
|
|
22053
|
+
[key: string]: string;
|
|
22054
|
+
};
|
|
22055
|
+
static types(): {
|
|
22056
|
+
[key: string]: any;
|
|
22057
|
+
};
|
|
22058
|
+
constructor(map?: {
|
|
22059
|
+
[key: string]: any;
|
|
22060
|
+
});
|
|
22061
|
+
}
|
|
22062
|
+
export declare class ListCheckProcessesResponseBody extends $tea.Model {
|
|
22063
|
+
pagingInfo?: ListCheckProcessesResponseBodyPagingInfo;
|
|
22064
|
+
/**
|
|
22065
|
+
* @example
|
|
22066
|
+
* 0000-ABCD-EF****
|
|
22067
|
+
*/
|
|
22068
|
+
requestId?: string;
|
|
22069
|
+
static names(): {
|
|
22070
|
+
[key: string]: string;
|
|
22071
|
+
};
|
|
22072
|
+
static types(): {
|
|
22073
|
+
[key: string]: any;
|
|
22074
|
+
};
|
|
22075
|
+
constructor(map?: {
|
|
22076
|
+
[key: string]: any;
|
|
22077
|
+
});
|
|
22078
|
+
}
|
|
22079
|
+
export declare class ListCheckProcessesResponse extends $tea.Model {
|
|
22080
|
+
headers?: {
|
|
22081
|
+
[key: string]: string;
|
|
22082
|
+
};
|
|
22083
|
+
statusCode?: number;
|
|
22084
|
+
body?: ListCheckProcessesResponseBody;
|
|
22085
|
+
static names(): {
|
|
22086
|
+
[key: string]: string;
|
|
22087
|
+
};
|
|
22088
|
+
static types(): {
|
|
22089
|
+
[key: string]: any;
|
|
22090
|
+
};
|
|
22091
|
+
constructor(map?: {
|
|
22092
|
+
[key: string]: any;
|
|
22093
|
+
});
|
|
22094
|
+
}
|
|
21987
22095
|
export declare class ListClusterConfigsRequest extends $tea.Model {
|
|
21988
22096
|
/**
|
|
21989
22097
|
* @remarks
|
|
@@ -25545,9 +25653,9 @@ export declare class ListManualDagInstancesResponse extends $tea.Model {
|
|
|
25545
25653
|
export declare class ListMeasureDataRequest extends $tea.Model {
|
|
25546
25654
|
/**
|
|
25547
25655
|
* @remarks
|
|
25548
|
-
* The measurement component.
|
|
25656
|
+
* The measurement component. Valid values:
|
|
25549
25657
|
*
|
|
25550
|
-
* *
|
|
25658
|
+
* * Count: phone call-based alerts and text message-based alerts
|
|
25551
25659
|
*
|
|
25552
25660
|
* This parameter is required.
|
|
25553
25661
|
*
|
|
@@ -25557,7 +25665,7 @@ export declare class ListMeasureDataRequest extends $tea.Model {
|
|
|
25557
25665
|
componentCode?: string;
|
|
25558
25666
|
/**
|
|
25559
25667
|
* @remarks
|
|
25560
|
-
* The item
|
|
25668
|
+
* The measurement item. Valid values:
|
|
25561
25669
|
*
|
|
25562
25670
|
* * DideAlarmPhone: phone call-based alerts
|
|
25563
25671
|
* * DideAlarmSms: text message-based alerts
|
|
@@ -25570,7 +25678,7 @@ export declare class ListMeasureDataRequest extends $tea.Model {
|
|
|
25570
25678
|
domainCode?: string;
|
|
25571
25679
|
/**
|
|
25572
25680
|
* @remarks
|
|
25573
|
-
* The end timestamp of the measurement period, in milliseconds. The measurement period is calculated in days. You can query only the data within the
|
|
25681
|
+
* The end timestamp of the measurement period, in milliseconds. The measurement period is calculated in days. You can query only the data within the previous 30 days.
|
|
25574
25682
|
*
|
|
25575
25683
|
* This parameter is required.
|
|
25576
25684
|
*
|
|
@@ -25580,7 +25688,7 @@ export declare class ListMeasureDataRequest extends $tea.Model {
|
|
|
25580
25688
|
endTime?: number;
|
|
25581
25689
|
/**
|
|
25582
25690
|
* @remarks
|
|
25583
|
-
* The start timestamp of the measurement period, in milliseconds. The measurement period is calculated in days. You can query only the data within the
|
|
25691
|
+
* The start timestamp of the measurement period, in milliseconds. The measurement period is calculated in days. You can query only the data within the previous 30 days.
|
|
25584
25692
|
*
|
|
25585
25693
|
* This parameter is required.
|
|
25586
25694
|
*
|
|
@@ -36960,8 +37068,6 @@ export declare class UpdateQualityRuleRequest extends $tea.Model {
|
|
|
36960
37068
|
* @remarks
|
|
36961
37069
|
* The checker ID. Valid values: 2: indicates that the current value is compared with the average value of the previous 7 days. 3: indicates that the current value is compared with the average value of the previous 30 days. 4: indicates that the current value is compared with the value 1 day earlier. 5: indicates that the current value is compared with the value 7 days earlier. 6: indicates that the current value is compared with the value 30 days earlier. 7: indicates the variance between the current value and the value 7 days earlier. 8: indicates the variance between the current value and the value 30 days earlier. 9: indicates that the current value is compared with a fixed value. 10: indicates that the current value is compared with the value 1, 7, or 30 days earlier. 11: indicates that the current value is compared with the value of the previous cycle. You can call the [ListQualityRules](https://help.aliyun.com/document_detail/173995.html) operation to query the ID.
|
|
36962
37070
|
*
|
|
36963
|
-
* This parameter is required.
|
|
36964
|
-
*
|
|
36965
37071
|
* @example
|
|
36966
37072
|
* 9
|
|
36967
37073
|
*/
|
|
@@ -53241,6 +53347,89 @@ export declare class ListCalcEnginesResponseBodyData extends $tea.Model {
|
|
|
53241
53347
|
[key: string]: any;
|
|
53242
53348
|
});
|
|
53243
53349
|
}
|
|
53350
|
+
export declare class ListCheckProcessesResponseBodyPagingInfoCheckProcesses extends $tea.Model {
|
|
53351
|
+
/**
|
|
53352
|
+
* @example
|
|
53353
|
+
* commit-file
|
|
53354
|
+
*/
|
|
53355
|
+
eventCode?: string;
|
|
53356
|
+
/**
|
|
53357
|
+
* @example
|
|
53358
|
+
* DnsEvent
|
|
53359
|
+
*/
|
|
53360
|
+
eventName?: string;
|
|
53361
|
+
/**
|
|
53362
|
+
* @example
|
|
53363
|
+
* Pre-event for Node Commit
|
|
53364
|
+
*/
|
|
53365
|
+
eventNameEn?: string;
|
|
53366
|
+
/**
|
|
53367
|
+
* @example
|
|
53368
|
+
* b824a5de-4223-4315-af3e-c4449d236db4
|
|
53369
|
+
*/
|
|
53370
|
+
messageId?: string;
|
|
53371
|
+
/**
|
|
53372
|
+
* @example
|
|
53373
|
+
* 297635
|
|
53374
|
+
*/
|
|
53375
|
+
operator?: string;
|
|
53376
|
+
/**
|
|
53377
|
+
* @example
|
|
53378
|
+
* rdk_generate_d395da25-b0d3-4114-b2a5-d0247444a661_none_3496903_365203
|
|
53379
|
+
*/
|
|
53380
|
+
processId?: string;
|
|
53381
|
+
/**
|
|
53382
|
+
* @example
|
|
53383
|
+
* odps_sql_test
|
|
53384
|
+
*/
|
|
53385
|
+
processName?: string;
|
|
53386
|
+
/**
|
|
53387
|
+
* @example
|
|
53388
|
+
* 32563
|
|
53389
|
+
*/
|
|
53390
|
+
projectId?: number;
|
|
53391
|
+
/**
|
|
53392
|
+
* @example
|
|
53393
|
+
* CHECKING
|
|
53394
|
+
*/
|
|
53395
|
+
status?: string;
|
|
53396
|
+
static names(): {
|
|
53397
|
+
[key: string]: string;
|
|
53398
|
+
};
|
|
53399
|
+
static types(): {
|
|
53400
|
+
[key: string]: any;
|
|
53401
|
+
};
|
|
53402
|
+
constructor(map?: {
|
|
53403
|
+
[key: string]: any;
|
|
53404
|
+
});
|
|
53405
|
+
}
|
|
53406
|
+
export declare class ListCheckProcessesResponseBodyPagingInfo extends $tea.Model {
|
|
53407
|
+
checkProcesses?: ListCheckProcessesResponseBodyPagingInfoCheckProcesses[];
|
|
53408
|
+
/**
|
|
53409
|
+
* @example
|
|
53410
|
+
* 1
|
|
53411
|
+
*/
|
|
53412
|
+
pageNumber?: number;
|
|
53413
|
+
/**
|
|
53414
|
+
* @example
|
|
53415
|
+
* 10
|
|
53416
|
+
*/
|
|
53417
|
+
pageSize?: number;
|
|
53418
|
+
/**
|
|
53419
|
+
* @example
|
|
53420
|
+
* 12
|
|
53421
|
+
*/
|
|
53422
|
+
totalCount?: number;
|
|
53423
|
+
static names(): {
|
|
53424
|
+
[key: string]: string;
|
|
53425
|
+
};
|
|
53426
|
+
static types(): {
|
|
53427
|
+
[key: string]: any;
|
|
53428
|
+
};
|
|
53429
|
+
constructor(map?: {
|
|
53430
|
+
[key: string]: any;
|
|
53431
|
+
});
|
|
53432
|
+
}
|
|
53244
53433
|
export declare class ListClustersResponseBodyData extends $tea.Model {
|
|
53245
53434
|
clusters?: Cluster[];
|
|
53246
53435
|
/**
|
|
@@ -67154,6 +67343,21 @@ export default class Client extends OpenApi {
|
|
|
67154
67343
|
* @returns ListCalcEnginesResponse
|
|
67155
67344
|
*/
|
|
67156
67345
|
listCalcEngines(request: ListCalcEnginesRequest): Promise<ListCalcEnginesResponse>;
|
|
67346
|
+
/**
|
|
67347
|
+
* 查询扩展事件的检查列表
|
|
67348
|
+
*
|
|
67349
|
+
* @param request - ListCheckProcessesRequest
|
|
67350
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
67351
|
+
* @returns ListCheckProcessesResponse
|
|
67352
|
+
*/
|
|
67353
|
+
listCheckProcessesWithOptions(request: ListCheckProcessesRequest, runtime: $Util.RuntimeOptions): Promise<ListCheckProcessesResponse>;
|
|
67354
|
+
/**
|
|
67355
|
+
* 查询扩展事件的检查列表
|
|
67356
|
+
*
|
|
67357
|
+
* @param request - ListCheckProcessesRequest
|
|
67358
|
+
* @returns ListCheckProcessesResponse
|
|
67359
|
+
*/
|
|
67360
|
+
listCheckProcesses(request: ListCheckProcessesRequest): Promise<ListCheckProcessesResponse>;
|
|
67157
67361
|
/**
|
|
67158
67362
|
* 列出集群的配置信息
|
|
67159
67363
|
*
|
|
@@ -67664,7 +67868,7 @@ export default class Client extends OpenApi {
|
|
|
67664
67868
|
*/
|
|
67665
67869
|
listManualDagInstances(request: ListManualDagInstancesRequest): Promise<ListManualDagInstancesResponse>;
|
|
67666
67870
|
/**
|
|
67667
|
-
*
|
|
67871
|
+
* Queries the statistics on the number of phone call-based alerts or text message-based alerts reported within the tenant to which your account belongs during the previous 30 days.
|
|
67668
67872
|
*
|
|
67669
67873
|
* @param request - ListMeasureDataRequest
|
|
67670
67874
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -67672,7 +67876,7 @@ export default class Client extends OpenApi {
|
|
|
67672
67876
|
*/
|
|
67673
67877
|
listMeasureDataWithOptions(request: ListMeasureDataRequest, runtime: $Util.RuntimeOptions): Promise<ListMeasureDataResponse>;
|
|
67674
67878
|
/**
|
|
67675
|
-
*
|
|
67879
|
+
* Queries the statistics on the number of phone call-based alerts or text message-based alerts reported within the tenant to which your account belongs during the previous 30 days.
|
|
67676
67880
|
*
|
|
67677
67881
|
* @param request - ListMeasureDataRequest
|
|
67678
67882
|
* @returns ListMeasureDataResponse
|