@alicloud/dataworks-public20240518 6.0.2 → 6.1.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 +1536 -608
- package/dist/client.js +952 -24
- package/dist/client.js.map +1 -1
- package/package.json +5 -1
- package/src/client.ts +3030 -1468
package/dist/client.d.ts
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
|
-
/**
|
|
2
|
-
*/
|
|
3
1
|
import OpenApi from '@alicloud/openapi-core';
|
|
4
2
|
import { $OpenApiUtil } from '@alicloud/openapi-core';
|
|
3
|
+
import { Readable } from 'stream';
|
|
5
4
|
import * as $dara from '@darabonba/typescript';
|
|
6
5
|
export declare class DataQualityEvaluationTaskHooks extends $dara.Model {
|
|
7
6
|
/**
|
|
@@ -1517,7 +1516,7 @@ export declare class CreateAlertRuleRequestTriggerCondition extends $dara.Model
|
|
|
1517
1516
|
export declare class CreateDIAlarmRuleRequestNotificationSettingsNotificationChannels extends $dara.Model {
|
|
1518
1517
|
/**
|
|
1519
1518
|
* @remarks
|
|
1520
|
-
* The alert notification
|
|
1519
|
+
* The alert notification method. Valid values:
|
|
1521
1520
|
*
|
|
1522
1521
|
* * Mail
|
|
1523
1522
|
* * Phone
|
|
@@ -1578,7 +1577,7 @@ export declare class CreateDIAlarmRuleRequestNotificationSettingsNotificationRec
|
|
|
1578
1577
|
export declare class CreateDIAlarmRuleRequestNotificationSettings extends $dara.Model {
|
|
1579
1578
|
/**
|
|
1580
1579
|
* @remarks
|
|
1581
|
-
*
|
|
1580
|
+
* This parameter is deprecated and replaced by the MuteInterval parameter.
|
|
1582
1581
|
*
|
|
1583
1582
|
* @example
|
|
1584
1583
|
* 5
|
|
@@ -1588,7 +1587,7 @@ export declare class CreateDIAlarmRuleRequestNotificationSettings extends $dara.
|
|
|
1588
1587
|
inhibitionInterval?: number;
|
|
1589
1588
|
/**
|
|
1590
1589
|
* @remarks
|
|
1591
|
-
*
|
|
1590
|
+
* The duration of the alert suppression interval. Default value: 5. Unit: minutes.
|
|
1592
1591
|
*
|
|
1593
1592
|
* @example
|
|
1594
1593
|
* 5
|
|
@@ -1618,14 +1617,14 @@ export declare class CreateDIAlarmRuleRequestNotificationSettings extends $dara.
|
|
|
1618
1617
|
export declare class CreateDIAlarmRuleRequestTriggerConditions extends $dara.Model {
|
|
1619
1618
|
/**
|
|
1620
1619
|
* @remarks
|
|
1621
|
-
*
|
|
1620
|
+
* This parameter is deprecated and replaced by the DdlTypes parameter.
|
|
1622
1621
|
*
|
|
1623
1622
|
* @deprecated
|
|
1624
1623
|
*/
|
|
1625
1624
|
ddlReportTags?: string[];
|
|
1626
1625
|
/**
|
|
1627
1626
|
* @remarks
|
|
1628
|
-
*
|
|
1627
|
+
* The types of DDL operations for which the alert rule takes effect.
|
|
1629
1628
|
*/
|
|
1630
1629
|
ddlTypes?: string[];
|
|
1631
1630
|
/**
|
|
@@ -1800,8 +1799,8 @@ export declare class CreateDIJobRequestJobSettingsRuntimeSettings extends $dara.
|
|
|
1800
1799
|
* * runtime.offline.concurrent: specifies the maximum number of parallel threads that are allowed for a batch synchronization task.
|
|
1801
1800
|
* * runtime.enable.auto.create.schema: specifies whether schemas are automatically created in the destination of a synchronization task.
|
|
1802
1801
|
* * runtime.realtime.concurrent: specifies the maximum number of parallel threads that are allowed for a real-time synchronization task.
|
|
1803
|
-
* * runtime.realtime.failover.minute.dataxcdc:
|
|
1804
|
-
* * runtime.realtime.failover.times.dataxcdc:
|
|
1802
|
+
* * runtime.realtime.failover.minute.dataxcdc: specifies the maximum waiting duration before a synchronization task retries the next restart if the previous restart fails after failover occurs. Unit: minutes.
|
|
1803
|
+
* * runtime.realtime.failover.times.dataxcdc: specifies the maximum number of failures that are allowed for restarting a synchronization task after failovers occur.
|
|
1805
1804
|
*
|
|
1806
1805
|
* @example
|
|
1807
1806
|
* runtime.offline.concurrent
|
|
@@ -1831,19 +1830,19 @@ export declare class CreateDIJobRequestJobSettings extends $dara.Model {
|
|
|
1831
1830
|
* @remarks
|
|
1832
1831
|
* The channel control settings for the synchronization task. You can configure special channel control settings for the following synchronization links: data synchronization between Hologres data sources and data synchronization from Hologres to Kafka.
|
|
1833
1832
|
*
|
|
1834
|
-
* 1.
|
|
1833
|
+
* 1. Holo2Kafka
|
|
1835
1834
|
*
|
|
1836
1835
|
* * Example: {"destinationChannelSettings":{"kafkaClientProperties":[{"key":"linger.ms","value":"100"}],"keyColumns":["col3"],"writeMode":"canal"}}
|
|
1837
1836
|
* * kafkaClientProperties: the parameters related to a Kafka producer, which are used when you write data to a Kafka data source.
|
|
1838
1837
|
* * keyColumns: the names of Kafka columns to which you want to write data.
|
|
1839
|
-
* * writeMode: the writing format. Valid values: json and canal.
|
|
1838
|
+
* * writeMode: the writing format of the Kafka data source. Valid values: json and canal.
|
|
1840
1839
|
*
|
|
1841
|
-
* 2.
|
|
1840
|
+
* 2. Holo2Holo
|
|
1842
1841
|
*
|
|
1843
1842
|
* * Example: {"destinationChannelSettings":{"conflictMode":"replace","dynamicColumnAction":"replay","writeMode":"replay"}}
|
|
1844
1843
|
* * conflictMode: the policy used to handle a conflict that occurs during data writing to Hologres. Valid values: replace and ignore.
|
|
1845
1844
|
* * writeMode: the mode in which you want to write data to Hologres. Valid values: replay and insert.
|
|
1846
|
-
* * dynamicColumnAction: the
|
|
1845
|
+
* * dynamicColumnAction: the mode in which you want to write data to dynamic columns in a Hologres table. Valid values: replay, insert, and ignore.
|
|
1847
1846
|
*
|
|
1848
1847
|
* @example
|
|
1849
1848
|
* {"structInfo":"MANAGED","storageType":"TEXTFILE","writeMode":"APPEND","partitionColumns":[{"columnName":"pt","columnType":"STRING","comment":""}],"fieldDelimiter":""}
|
|
@@ -2269,15 +2268,15 @@ export declare class CreateDIJobRequestTransformationRules extends $dara.Model {
|
|
|
2269
2268
|
export declare class CreateDataQualityEvaluationTaskRequestDataQualityRulesCheckingConfigThresholdsCritical extends $dara.Model {
|
|
2270
2269
|
/**
|
|
2271
2270
|
* @remarks
|
|
2272
|
-
*
|
|
2271
|
+
* The threshold expression.
|
|
2273
2272
|
*
|
|
2274
|
-
*
|
|
2273
|
+
* If the template specified by the TemplateCode parameter is about fluctuation, you must use an expression to represent the threshold for fluctuation. Examples:
|
|
2275
2274
|
*
|
|
2276
|
-
*
|
|
2277
|
-
*
|
|
2278
|
-
*
|
|
2275
|
+
* * $checkValue > 0.01
|
|
2276
|
+
* * $checkValue < -0.01
|
|
2277
|
+
* * abs($checkValue) > 0.01
|
|
2279
2278
|
*
|
|
2280
|
-
*
|
|
2279
|
+
* If the template specified by the TemplateCode parameter is about fixed value, you can also use an expression to represent the threshold. If you configure the Expression, Operator, and Value parameters for the threshold at the same time, the Expression parameter takes precedence over the Operator and Value parameters.
|
|
2281
2280
|
*
|
|
2282
2281
|
* @example
|
|
2283
2282
|
* $checkValue > 0.01
|
|
@@ -2320,15 +2319,15 @@ export declare class CreateDataQualityEvaluationTaskRequestDataQualityRulesCheck
|
|
|
2320
2319
|
export declare class CreateDataQualityEvaluationTaskRequestDataQualityRulesCheckingConfigThresholdsExpected extends $dara.Model {
|
|
2321
2320
|
/**
|
|
2322
2321
|
* @remarks
|
|
2323
|
-
*
|
|
2322
|
+
* The threshold expression.
|
|
2324
2323
|
*
|
|
2325
|
-
*
|
|
2324
|
+
* If the template specified by the TemplateCode parameter is about fluctuation, you must use an expression to represent the threshold for fluctuation. Examples:
|
|
2326
2325
|
*
|
|
2327
|
-
*
|
|
2328
|
-
*
|
|
2329
|
-
*
|
|
2326
|
+
* * $checkValue > 0.01
|
|
2327
|
+
* * $checkValue < -0.01
|
|
2328
|
+
* * abs($checkValue) > 0.01
|
|
2330
2329
|
*
|
|
2331
|
-
*
|
|
2330
|
+
* If the template specified by the TemplateCode parameter is about fixed value, you can also use an expression to represent the threshold. If you configure the Expression, Operator, and Value parameters for the threshold at the same time, the Expression parameter takes precedence over the Operator and Value parameters.
|
|
2332
2331
|
*
|
|
2333
2332
|
* @example
|
|
2334
2333
|
* $checkValue > 0.01
|
|
@@ -2371,15 +2370,15 @@ export declare class CreateDataQualityEvaluationTaskRequestDataQualityRulesCheck
|
|
|
2371
2370
|
export declare class CreateDataQualityEvaluationTaskRequestDataQualityRulesCheckingConfigThresholdsWarned extends $dara.Model {
|
|
2372
2371
|
/**
|
|
2373
2372
|
* @remarks
|
|
2374
|
-
*
|
|
2373
|
+
* The threshold expression.
|
|
2375
2374
|
*
|
|
2376
|
-
*
|
|
2375
|
+
* If the template specified by the TemplateCode parameter is about fluctuation, you must use an expression to represent the threshold for fluctuation. Examples:
|
|
2377
2376
|
*
|
|
2378
|
-
*
|
|
2379
|
-
*
|
|
2380
|
-
*
|
|
2377
|
+
* * $checkValue > 0.01
|
|
2378
|
+
* * $checkValue < -0.01
|
|
2379
|
+
* * abs($checkValue) > 0.01
|
|
2381
2380
|
*
|
|
2382
|
-
*
|
|
2381
|
+
* If the template specified by the TemplateCode parameter is about fixed value, you can also use an expression to represent the threshold. If you configure the Expression, Operator, and Value parameters for the threshold at the same time, the Expression parameter takes precedence over the Operator and Value parameters.
|
|
2383
2382
|
*
|
|
2384
2383
|
* @example
|
|
2385
2384
|
* $checkValue > 0.01
|
|
@@ -2806,6 +2805,8 @@ export declare class CreateDataQualityEvaluationTaskRequestTarget extends $dara.
|
|
|
2806
2805
|
* * emr
|
|
2807
2806
|
* * analyticdb_for_postgresql
|
|
2808
2807
|
*
|
|
2808
|
+
* This parameter is required.
|
|
2809
|
+
*
|
|
2809
2810
|
* @example
|
|
2810
2811
|
* maxcompute
|
|
2811
2812
|
*/
|
|
@@ -2822,6 +2823,8 @@ export declare class CreateDataQualityEvaluationTaskRequestTarget extends $dara.
|
|
|
2822
2823
|
* @remarks
|
|
2823
2824
|
* The ID of the table in Data Map.
|
|
2824
2825
|
*
|
|
2826
|
+
* This parameter is required.
|
|
2827
|
+
*
|
|
2825
2828
|
* @example
|
|
2826
2829
|
* odps.api_test.ods_openapi_log_d
|
|
2827
2830
|
*/
|
|
@@ -3314,7 +3317,7 @@ export declare class CreateDataQualityRuleTemplateRequestSamplingConfig extends
|
|
|
3314
3317
|
* * GroupCount: the field value and the number of rows for each field value.
|
|
3315
3318
|
* * CountNotIn: the number of rows in which the field values are different from the referenced values that you specified in the rule.
|
|
3316
3319
|
* * CountDistinctNotIn: the number of unique values that are different from the referenced values that you specified in the rule after deduplication.
|
|
3317
|
-
* * UserDefinedSql:
|
|
3320
|
+
* * UserDefinedSql: specifies that data is sampled by executing custom SQL statements.
|
|
3318
3321
|
*
|
|
3319
3322
|
* @example
|
|
3320
3323
|
* Count
|
|
@@ -3407,7 +3410,7 @@ export declare class CreateResourceGroupRequestAliyunResourceTags extends $dara.
|
|
|
3407
3410
|
export declare class CreateResourceGroupResponseBodyResourceGroupOrder extends $dara.Model {
|
|
3408
3411
|
/**
|
|
3409
3412
|
* @remarks
|
|
3410
|
-
* The
|
|
3413
|
+
* The ID of the serverless resource group.
|
|
3411
3414
|
*
|
|
3412
3415
|
* @example
|
|
3413
3416
|
* Serverless_res_group_524257424564736_6831777003XXXXX
|
|
@@ -3415,7 +3418,7 @@ export declare class CreateResourceGroupResponseBodyResourceGroupOrder extends $
|
|
|
3415
3418
|
id?: string;
|
|
3416
3419
|
/**
|
|
3417
3420
|
* @remarks
|
|
3418
|
-
* The ID of the order to create
|
|
3421
|
+
* The ID of the order that is used to create the serverless resource group.
|
|
3419
3422
|
*
|
|
3420
3423
|
* @example
|
|
3421
3424
|
* 2391982058XXXXX
|
|
@@ -3423,7 +3426,7 @@ export declare class CreateResourceGroupResponseBodyResourceGroupOrder extends $
|
|
|
3423
3426
|
orderId?: number;
|
|
3424
3427
|
/**
|
|
3425
3428
|
* @remarks
|
|
3426
|
-
* The ID of the order
|
|
3429
|
+
* The instance ID of the order that is used to create the serverless resource group.
|
|
3427
3430
|
*
|
|
3428
3431
|
* @example
|
|
3429
3432
|
* c442b330-3b10-4584-959e-736e4edXXXXX
|
|
@@ -3443,10 +3446,11 @@ export declare class CreateResourceGroupResponseBodyResourceGroupOrder extends $
|
|
|
3443
3446
|
export declare class CreateWorkflowInstancesRequestDefaultRunPropertiesAlert extends $dara.Model {
|
|
3444
3447
|
/**
|
|
3445
3448
|
* @remarks
|
|
3446
|
-
* The notification method.
|
|
3447
|
-
*
|
|
3448
|
-
*
|
|
3449
|
-
*
|
|
3449
|
+
* The alert notification method. Valid values:
|
|
3450
|
+
*
|
|
3451
|
+
* * Sms
|
|
3452
|
+
* * Mail
|
|
3453
|
+
* * SmsMail
|
|
3450
3454
|
*
|
|
3451
3455
|
* @example
|
|
3452
3456
|
* Sms
|
|
@@ -3454,10 +3458,11 @@ export declare class CreateWorkflowInstancesRequestDefaultRunPropertiesAlert ext
|
|
|
3454
3458
|
noticeType?: string;
|
|
3455
3459
|
/**
|
|
3456
3460
|
* @remarks
|
|
3457
|
-
* The
|
|
3458
|
-
*
|
|
3459
|
-
*
|
|
3460
|
-
*
|
|
3461
|
+
* The alerting policy. Valid values:
|
|
3462
|
+
*
|
|
3463
|
+
* * SUCCESS: An alert is reported when data backfill succeeds.
|
|
3464
|
+
* * FAILURE: An alert is reported when data backfill fails.
|
|
3465
|
+
* * SuccessFailure: An alert is reported regardless of whether data backfill succeeds or fails.
|
|
3461
3466
|
*
|
|
3462
3467
|
* @example
|
|
3463
3468
|
* Succes
|
|
@@ -3477,9 +3482,7 @@ export declare class CreateWorkflowInstancesRequestDefaultRunPropertiesAlert ext
|
|
|
3477
3482
|
export declare class CreateWorkflowInstancesRequestDefaultRunPropertiesAnalysis extends $dara.Model {
|
|
3478
3483
|
/**
|
|
3479
3484
|
* @remarks
|
|
3480
|
-
*
|
|
3481
|
-
*
|
|
3482
|
-
* This parameter is required.
|
|
3485
|
+
* Specifies whether to block the running of the instance if the analysis fails.
|
|
3483
3486
|
*
|
|
3484
3487
|
* @example
|
|
3485
3488
|
* true
|
|
@@ -3487,9 +3490,7 @@ export declare class CreateWorkflowInstancesRequestDefaultRunPropertiesAnalysis
|
|
|
3487
3490
|
blocked?: boolean;
|
|
3488
3491
|
/**
|
|
3489
3492
|
* @remarks
|
|
3490
|
-
*
|
|
3491
|
-
*
|
|
3492
|
-
* This parameter is required.
|
|
3493
|
+
* Specifies whether to enable the analysis feature.
|
|
3493
3494
|
*
|
|
3494
3495
|
* @example
|
|
3495
3496
|
* true
|
|
@@ -3509,7 +3510,7 @@ export declare class CreateWorkflowInstancesRequestDefaultRunPropertiesAnalysis
|
|
|
3509
3510
|
export declare class CreateWorkflowInstancesRequestDefaultRunPropertiesRunPolicy extends $dara.Model {
|
|
3510
3511
|
/**
|
|
3511
3512
|
* @remarks
|
|
3512
|
-
* The
|
|
3513
|
+
* The time when the instance finishes running. This parameter is required if you specify the RunPolicy parameter.
|
|
3513
3514
|
*
|
|
3514
3515
|
* @example
|
|
3515
3516
|
* 23:59:59
|
|
@@ -3517,7 +3518,7 @@ export declare class CreateWorkflowInstancesRequestDefaultRunPropertiesRunPolicy
|
|
|
3517
3518
|
endTime?: string;
|
|
3518
3519
|
/**
|
|
3519
3520
|
* @remarks
|
|
3520
|
-
*
|
|
3521
|
+
* Specifies whether the instance can be run immediately during the time period in the future. Default value: false.
|
|
3521
3522
|
*
|
|
3522
3523
|
* @example
|
|
3523
3524
|
* false
|
|
@@ -3525,7 +3526,7 @@ export declare class CreateWorkflowInstancesRequestDefaultRunPropertiesRunPolicy
|
|
|
3525
3526
|
immediately?: boolean;
|
|
3526
3527
|
/**
|
|
3527
3528
|
* @remarks
|
|
3528
|
-
* The
|
|
3529
|
+
* The time when the instance starts to run. This parameter is required if you specify the RunPolicy parameter.
|
|
3529
3530
|
*
|
|
3530
3531
|
* @example
|
|
3531
3532
|
* 00:00:00
|
|
@@ -3533,9 +3534,10 @@ export declare class CreateWorkflowInstancesRequestDefaultRunPropertiesRunPolicy
|
|
|
3533
3534
|
startTime?: string;
|
|
3534
3535
|
/**
|
|
3535
3536
|
* @remarks
|
|
3536
|
-
* The type of the time period. This
|
|
3537
|
-
*
|
|
3538
|
-
*
|
|
3537
|
+
* The type of the time period during which the data is backfilled. This parameter is required if you specify the RunPolicy parameter. Valid values:
|
|
3538
|
+
*
|
|
3539
|
+
* * Daily
|
|
3540
|
+
* * Weekend
|
|
3539
3541
|
*
|
|
3540
3542
|
* @example
|
|
3541
3543
|
* Daily
|
|
@@ -3555,43 +3557,42 @@ export declare class CreateWorkflowInstancesRequestDefaultRunPropertiesRunPolicy
|
|
|
3555
3557
|
export declare class CreateWorkflowInstancesRequestDefaultRunProperties extends $dara.Model {
|
|
3556
3558
|
/**
|
|
3557
3559
|
* @remarks
|
|
3558
|
-
*
|
|
3560
|
+
* The alert settings.
|
|
3559
3561
|
*/
|
|
3560
3562
|
alert?: CreateWorkflowInstancesRequestDefaultRunPropertiesAlert;
|
|
3561
3563
|
/**
|
|
3562
3564
|
* @remarks
|
|
3563
|
-
*
|
|
3564
|
-
*
|
|
3565
|
-
* This parameter is required.
|
|
3565
|
+
* The analysis of the configurations.
|
|
3566
3566
|
*/
|
|
3567
3567
|
analysis?: CreateWorkflowInstancesRequestDefaultRunPropertiesAnalysis;
|
|
3568
3568
|
/**
|
|
3569
3569
|
* @remarks
|
|
3570
|
-
* The
|
|
3570
|
+
* The IDs of the projects that do not need to be run.
|
|
3571
3571
|
*/
|
|
3572
3572
|
excludeProjectIds?: number[];
|
|
3573
3573
|
/**
|
|
3574
3574
|
* @remarks
|
|
3575
|
-
* The
|
|
3575
|
+
* The IDs of the tasks that do not need to be run.
|
|
3576
3576
|
*/
|
|
3577
3577
|
excludeTaskIds?: number[];
|
|
3578
3578
|
/**
|
|
3579
3579
|
* @remarks
|
|
3580
|
-
* The
|
|
3580
|
+
* The IDs of the projects that need to be run.
|
|
3581
3581
|
*/
|
|
3582
3582
|
includeProjectIds?: number[];
|
|
3583
3583
|
/**
|
|
3584
3584
|
* @remarks
|
|
3585
|
-
* The
|
|
3585
|
+
* The IDs of the tasks that need to be run.
|
|
3586
3586
|
*/
|
|
3587
3587
|
includeTaskIds?: number[];
|
|
3588
3588
|
/**
|
|
3589
3589
|
* @remarks
|
|
3590
|
-
* The data
|
|
3591
|
-
*
|
|
3592
|
-
*
|
|
3593
|
-
*
|
|
3594
|
-
*
|
|
3590
|
+
* The data backfill mode. Default value: ManualSelection. Valid values:
|
|
3591
|
+
*
|
|
3592
|
+
* * General: You can specify only one root task ID. The `IncludeTaskIds` parameter is optional. If you do not specify the IncludeTaskIds parameter, the tasks that are specified by the `RootTaskIds` parameter are included by default.``
|
|
3593
|
+
* * ManualSelection: You can specify multiple root tasks IDs. The `IncludeTaskIds` parameter is optional. If you do not specify the IncludeTaskIds parameter, the tasks that are specified by the `RootTaskIds` parameter are included by default.``
|
|
3594
|
+
* * Chain: The value of the `RootTaskIds` parameter is left empty. You must set the `IncludeTaskIds` parameter to the start task ID and the end task ID.
|
|
3595
|
+
* * AllDownstream: You can specify only one root task ID.``
|
|
3595
3596
|
*
|
|
3596
3597
|
* @example
|
|
3597
3598
|
* ManualSelection
|
|
@@ -3599,9 +3600,10 @@ export declare class CreateWorkflowInstancesRequestDefaultRunProperties extends
|
|
|
3599
3600
|
mode?: string;
|
|
3600
3601
|
/**
|
|
3601
3602
|
* @remarks
|
|
3602
|
-
* The running
|
|
3603
|
-
*
|
|
3604
|
-
*
|
|
3603
|
+
* The running order. Default value: Asc. Valid values:
|
|
3604
|
+
*
|
|
3605
|
+
* * Asc: The tasks are sorted by data timestamp in ascending order.
|
|
3606
|
+
* * Desc: The tasks are sorted by data timestamp in descending order.
|
|
3605
3607
|
*
|
|
3606
3608
|
* @example
|
|
3607
3609
|
* Asc
|
|
@@ -3609,9 +3611,7 @@ export declare class CreateWorkflowInstancesRequestDefaultRunProperties extends
|
|
|
3609
3611
|
order?: string;
|
|
3610
3612
|
/**
|
|
3611
3613
|
* @remarks
|
|
3612
|
-
* The number of
|
|
3613
|
-
*
|
|
3614
|
-
* This parameter is required.
|
|
3614
|
+
* The number of tasks that can be run in parallel. If you specify the value to 2 to 10, the value indicates the number of tasks that can be run in parallel. If you specify the value to 1, the tasks are run one by one.
|
|
3615
3615
|
*
|
|
3616
3616
|
* @example
|
|
3617
3617
|
* 2
|
|
@@ -3619,17 +3619,17 @@ export declare class CreateWorkflowInstancesRequestDefaultRunProperties extends
|
|
|
3619
3619
|
parallelism?: number;
|
|
3620
3620
|
/**
|
|
3621
3621
|
* @remarks
|
|
3622
|
-
* The
|
|
3622
|
+
* The root task IDs.
|
|
3623
3623
|
*/
|
|
3624
3624
|
rootTaskIds?: number[];
|
|
3625
3625
|
/**
|
|
3626
3626
|
* @remarks
|
|
3627
|
-
*
|
|
3627
|
+
* The data backfill policy. If you leave this parameter empty, the runtime configuration is used.
|
|
3628
3628
|
*/
|
|
3629
3629
|
runPolicy?: CreateWorkflowInstancesRequestDefaultRunPropertiesRunPolicy;
|
|
3630
3630
|
/**
|
|
3631
3631
|
* @remarks
|
|
3632
|
-
* The identifier of the custom
|
|
3632
|
+
* The identifier of the custom resource group for scheduling. If you leave this parameter empty, the runtime configuration is used.
|
|
3633
3633
|
*
|
|
3634
3634
|
* @example
|
|
3635
3635
|
* S_res_group_524258031846018_1684XXXXXXXXX
|
|
@@ -3768,7 +3768,7 @@ export declare class ExecuteAdhocWorkflowInstanceRequestTasksInputsVariables ext
|
|
|
3768
3768
|
name?: string;
|
|
3769
3769
|
/**
|
|
3770
3770
|
* @remarks
|
|
3771
|
-
* The value of the variable.
|
|
3771
|
+
* The value of the variable. You must configure this parameter in the `The ancestor output: The output variable name of the ancestor task` format.
|
|
3772
3772
|
*
|
|
3773
3773
|
* @example
|
|
3774
3774
|
* Value1
|
|
@@ -3833,7 +3833,7 @@ export declare class ExecuteAdhocWorkflowInstanceRequestTasksOutputsVariables ex
|
|
|
3833
3833
|
name?: string;
|
|
3834
3834
|
/**
|
|
3835
3835
|
* @remarks
|
|
3836
|
-
* The type
|
|
3836
|
+
* The type. Valid values:
|
|
3837
3837
|
*
|
|
3838
3838
|
* * System
|
|
3839
3839
|
* * Constant
|
|
@@ -4501,6 +4501,53 @@ export declare class GetAlertRuleResponseBodyAlertRule extends $dara.Model {
|
|
|
4501
4501
|
[key: string]: any;
|
|
4502
4502
|
});
|
|
4503
4503
|
}
|
|
4504
|
+
export declare class GetCertificateResponseBodyCertificate extends $dara.Model {
|
|
4505
|
+
/**
|
|
4506
|
+
* @example
|
|
4507
|
+
* 1730217600000
|
|
4508
|
+
*/
|
|
4509
|
+
createTime?: number;
|
|
4510
|
+
/**
|
|
4511
|
+
* @example
|
|
4512
|
+
* 1107550004253538
|
|
4513
|
+
*/
|
|
4514
|
+
createUser?: string;
|
|
4515
|
+
/**
|
|
4516
|
+
* @example
|
|
4517
|
+
* This is a file
|
|
4518
|
+
*/
|
|
4519
|
+
description?: string;
|
|
4520
|
+
/**
|
|
4521
|
+
* @example
|
|
4522
|
+
* 77549
|
|
4523
|
+
*/
|
|
4524
|
+
fileSizeInBytes?: number;
|
|
4525
|
+
/**
|
|
4526
|
+
* @example
|
|
4527
|
+
* 676303114031776
|
|
4528
|
+
*/
|
|
4529
|
+
id?: number;
|
|
4530
|
+
/**
|
|
4531
|
+
* @example
|
|
4532
|
+
* ca1.crt
|
|
4533
|
+
*/
|
|
4534
|
+
name?: string;
|
|
4535
|
+
/**
|
|
4536
|
+
* @example
|
|
4537
|
+
* 177161
|
|
4538
|
+
*/
|
|
4539
|
+
projectId?: number;
|
|
4540
|
+
static names(): {
|
|
4541
|
+
[key: string]: string;
|
|
4542
|
+
};
|
|
4543
|
+
static types(): {
|
|
4544
|
+
[key: string]: any;
|
|
4545
|
+
};
|
|
4546
|
+
validate(): void;
|
|
4547
|
+
constructor(map?: {
|
|
4548
|
+
[key: string]: any;
|
|
4549
|
+
});
|
|
4550
|
+
}
|
|
4504
4551
|
export declare class GetCreateWorkflowInstancesResultResponseBodyResult extends $dara.Model {
|
|
4505
4552
|
/**
|
|
4506
4553
|
* @remarks
|
|
@@ -5158,7 +5205,7 @@ export declare class GetDIJobResponseBodyPagingInfo extends $dara.Model {
|
|
|
5158
5205
|
destinationDataSourceSettings?: GetDIJobResponseBodyPagingInfoDestinationDataSourceSettings[];
|
|
5159
5206
|
/**
|
|
5160
5207
|
* @remarks
|
|
5161
|
-
* The destination type. Valid values: Hologres, OSS-HDFS, OSS, MaxCompute,
|
|
5208
|
+
* The destination type. Valid values: Hologres, OSS-HDFS, OSS, MaxCompute, LogHub, StarRocks, DataHub, AnalyticDB_For_MySQL, Kafka, Hive.
|
|
5162
5209
|
*
|
|
5163
5210
|
* @example
|
|
5164
5211
|
* Hologres
|
|
@@ -5193,6 +5240,7 @@ export declare class GetDIJobResponseBodyPagingInfo extends $dara.Model {
|
|
|
5193
5240
|
* Running
|
|
5194
5241
|
*/
|
|
5195
5242
|
jobStatus?: string;
|
|
5243
|
+
jobType?: string;
|
|
5196
5244
|
/**
|
|
5197
5245
|
* @remarks
|
|
5198
5246
|
* The synchronization type. Valid values:
|
|
@@ -5229,7 +5277,7 @@ export declare class GetDIJobResponseBodyPagingInfo extends $dara.Model {
|
|
|
5229
5277
|
sourceDataSourceSettings?: GetDIJobResponseBodyPagingInfoSourceDataSourceSettings[];
|
|
5230
5278
|
/**
|
|
5231
5279
|
* @remarks
|
|
5232
|
-
* The source type. Valid values: PolarDB, MySQL, Kafka,
|
|
5280
|
+
* The source type. Valid values: PolarDB, MySQL, Kafka, LogHub, Hologres, Oracle, OceanBase, MongoDB, RedShift, Hive, SQLServer, Doris, ClickHouse.
|
|
5233
5281
|
*
|
|
5234
5282
|
* @example
|
|
5235
5283
|
* Mysql
|
|
@@ -5576,10 +5624,10 @@ export declare class GetDataQualityEvaluationTaskResponseBodyDataQualityEvaluati
|
|
|
5576
5624
|
export declare class GetDataQualityEvaluationTaskInstanceResponseBodyDataQualityEvaluationTaskInstanceTaskHooks extends $dara.Model {
|
|
5577
5625
|
/**
|
|
5578
5626
|
* @remarks
|
|
5579
|
-
*
|
|
5627
|
+
* The hook trigger condition. When this condition is met, the hook action is triggered. Only two conditional expressions are supported:
|
|
5580
5628
|
*
|
|
5581
|
-
*
|
|
5582
|
-
*
|
|
5629
|
+
* * Specify only one group of rule strength type and rule check status, such as `${severity} == "High" AND ${status} == "Critical"`. In this expression, the hook trigger condition is met if severity is High and status is Critical.
|
|
5630
|
+
* * Specify multiple groups of rule strength types and rule check status, such as `(${severity} == "High"AND ${status} == "Critical") OR (${severity} == "Normal" AND ${status} == "Critical") OR (${severity} == "Normal" AND ${status} == "Error")`. In this expression, the hook trigger condition is met if severity is High and status is Critical, severity is Normal and status is Critical, or severity is Normal and status is Error. The enumeration of severity in a conditional expression is the same as the enumeration of severity in DataQualityRule. The enumeration of status in a conditional expression is the same as the enumeration of status in DataQualityResult.
|
|
5583
5631
|
*
|
|
5584
5632
|
* @example
|
|
5585
5633
|
* (${severity} == "High" AND ${status} == "Critical") OR (${severity} == "Normal" AND ${status} == "Critical") OR (${severity} == "Normal" AND ${status} == "Error")
|
|
@@ -5683,10 +5731,10 @@ export declare class GetDataQualityEvaluationTaskInstanceResponseBodyDataQuality
|
|
|
5683
5731
|
export declare class GetDataQualityEvaluationTaskInstanceResponseBodyDataQualityEvaluationTaskInstanceTaskNotifications extends $dara.Model {
|
|
5684
5732
|
/**
|
|
5685
5733
|
* @remarks
|
|
5686
|
-
* The notification trigger condition. When this condition is met,
|
|
5734
|
+
* The notification trigger condition. When this condition is met, the alert notification is triggered. Only two conditional expressions are supported:
|
|
5687
5735
|
*
|
|
5688
|
-
*
|
|
5689
|
-
*
|
|
5736
|
+
* * Specify only one group of rule strength type and rule check status, such as `${severity} == "High" AND ${status} == "Critical"`. In this expression, the hook trigger condition is met if severity is High and status is Critical.
|
|
5737
|
+
* * Specify multiple groups of rule strength types and rule check status, such as `(${severity} == "High"AND ${status} == "Critical") OR (${severity} == "Normal" AND ${status} == "Critical") OR (${severity} == "Normal" AND ${status} == "Error")`. In this expression, the hook trigger condition is met if severity is High and status is Critical, severity is Normal and status is Critical, or severity is Normal and status is Error. The enumeration of severity in a conditional expression is the same as the enumeration of severity in DataQualityRule. The enumeration of status in a conditional expression is the same as the enumeration of status in DataQualityResult.
|
|
5690
5738
|
*
|
|
5691
5739
|
* @example
|
|
5692
5740
|
* ${severity} == "High" AND ${status} == "Critical"
|
|
@@ -5761,10 +5809,10 @@ export declare class GetDataQualityEvaluationTaskInstanceResponseBodyDataQuality
|
|
|
5761
5809
|
taskIds?: number[];
|
|
5762
5810
|
/**
|
|
5763
5811
|
* @remarks
|
|
5764
|
-
*
|
|
5812
|
+
* The trigger type of the monitor. Valid values:
|
|
5765
5813
|
*
|
|
5766
|
-
*
|
|
5767
|
-
*
|
|
5814
|
+
* * ByManual (default): The monitor is manually triggered.
|
|
5815
|
+
* * ByScheduledTaskInstance: The monitor is triggered by the associated scheduling tasks.
|
|
5768
5816
|
*
|
|
5769
5817
|
* @example
|
|
5770
5818
|
* ByScheduledTaskInstance
|
|
@@ -5792,7 +5840,7 @@ export declare class GetDataQualityEvaluationTaskInstanceResponseBodyDataQuality
|
|
|
5792
5840
|
description?: string;
|
|
5793
5841
|
/**
|
|
5794
5842
|
* @remarks
|
|
5795
|
-
*
|
|
5843
|
+
* The hook.
|
|
5796
5844
|
*/
|
|
5797
5845
|
hooks?: GetDataQualityEvaluationTaskInstanceResponseBodyDataQualityEvaluationTaskInstanceTaskHooks[];
|
|
5798
5846
|
/**
|
|
@@ -5839,12 +5887,12 @@ export declare class GetDataQualityEvaluationTaskInstanceResponseBodyDataQuality
|
|
|
5839
5887
|
runtimeConf?: string;
|
|
5840
5888
|
/**
|
|
5841
5889
|
* @remarks
|
|
5842
|
-
*
|
|
5890
|
+
* The monitored object of the monitor.
|
|
5843
5891
|
*/
|
|
5844
5892
|
target?: GetDataQualityEvaluationTaskInstanceResponseBodyDataQualityEvaluationTaskInstanceTaskTarget;
|
|
5845
5893
|
/**
|
|
5846
5894
|
* @remarks
|
|
5847
|
-
* The trigger configuration of the
|
|
5895
|
+
* The trigger configuration of the monitor.
|
|
5848
5896
|
*/
|
|
5849
5897
|
trigger?: GetDataQualityEvaluationTaskInstanceResponseBodyDataQualityEvaluationTaskInstanceTaskTrigger;
|
|
5850
5898
|
static names(): {
|
|
@@ -5950,13 +5998,14 @@ export declare class GetDataQualityRuleResponseBodyDataQualityRuleCheckingConfig
|
|
|
5950
5998
|
expression?: string;
|
|
5951
5999
|
/**
|
|
5952
6000
|
* @remarks
|
|
5953
|
-
*
|
|
5954
|
-
*
|
|
5955
|
-
*
|
|
5956
|
-
*
|
|
5957
|
-
*
|
|
5958
|
-
*
|
|
5959
|
-
*
|
|
6001
|
+
* The comparison operator. Valid values:
|
|
6002
|
+
*
|
|
6003
|
+
* * \\>
|
|
6004
|
+
* * \\>=
|
|
6005
|
+
* * <
|
|
6006
|
+
* * <=
|
|
6007
|
+
* * !=
|
|
6008
|
+
* * \\=
|
|
5960
6009
|
*
|
|
5961
6010
|
* @example
|
|
5962
6011
|
* >
|
|
@@ -5992,13 +6041,14 @@ export declare class GetDataQualityRuleResponseBodyDataQualityRuleCheckingConfig
|
|
|
5992
6041
|
expression?: string;
|
|
5993
6042
|
/**
|
|
5994
6043
|
* @remarks
|
|
5995
|
-
*
|
|
5996
|
-
*
|
|
5997
|
-
*
|
|
5998
|
-
*
|
|
5999
|
-
*
|
|
6000
|
-
*
|
|
6001
|
-
*
|
|
6044
|
+
* The comparison operator. Valid values:
|
|
6045
|
+
*
|
|
6046
|
+
* * \\>
|
|
6047
|
+
* * \\>=
|
|
6048
|
+
* * <
|
|
6049
|
+
* * <=
|
|
6050
|
+
* * !=
|
|
6051
|
+
* * \\=
|
|
6002
6052
|
*
|
|
6003
6053
|
* @example
|
|
6004
6054
|
* >
|
|
@@ -6034,13 +6084,14 @@ export declare class GetDataQualityRuleResponseBodyDataQualityRuleCheckingConfig
|
|
|
6034
6084
|
expression?: string;
|
|
6035
6085
|
/**
|
|
6036
6086
|
* @remarks
|
|
6037
|
-
*
|
|
6038
|
-
*
|
|
6039
|
-
*
|
|
6040
|
-
*
|
|
6041
|
-
*
|
|
6042
|
-
*
|
|
6043
|
-
*
|
|
6087
|
+
* The comparison operator. Valid values:
|
|
6088
|
+
*
|
|
6089
|
+
* * \\>
|
|
6090
|
+
* * \\>=
|
|
6091
|
+
* * <
|
|
6092
|
+
* * <=
|
|
6093
|
+
* * !=
|
|
6094
|
+
* * \\=
|
|
6044
6095
|
*
|
|
6045
6096
|
* @example
|
|
6046
6097
|
* >
|
|
@@ -6095,7 +6146,7 @@ export declare class GetDataQualityRuleResponseBodyDataQualityRuleCheckingConfig
|
|
|
6095
6146
|
export declare class GetDataQualityRuleResponseBodyDataQualityRuleCheckingConfig extends $dara.Model {
|
|
6096
6147
|
/**
|
|
6097
6148
|
* @remarks
|
|
6098
|
-
*
|
|
6149
|
+
* The method that is used to query the referenced samples. To obtain some types of thresholds, you need to query reference values. In this example, an expression is used to indicate the query method of referenced samples.
|
|
6099
6150
|
*
|
|
6100
6151
|
* @example
|
|
6101
6152
|
* { "bizdate": [ "-1", "-7", "-1m" ] }
|
|
@@ -6108,13 +6159,14 @@ export declare class GetDataQualityRuleResponseBodyDataQualityRuleCheckingConfig
|
|
|
6108
6159
|
thresholds?: GetDataQualityRuleResponseBodyDataQualityRuleCheckingConfigThresholds;
|
|
6109
6160
|
/**
|
|
6110
6161
|
* @remarks
|
|
6111
|
-
*
|
|
6112
|
-
*
|
|
6113
|
-
*
|
|
6114
|
-
*
|
|
6115
|
-
*
|
|
6116
|
-
*
|
|
6117
|
-
*
|
|
6162
|
+
* The threshold calculation method. Valid values:
|
|
6163
|
+
*
|
|
6164
|
+
* * Fixed
|
|
6165
|
+
* * Fluctation
|
|
6166
|
+
* * FluctationDiscreate
|
|
6167
|
+
* * Auto
|
|
6168
|
+
* * Average
|
|
6169
|
+
* * Variance
|
|
6118
6170
|
*
|
|
6119
6171
|
* @example
|
|
6120
6172
|
* Fixed
|
|
@@ -6134,7 +6186,7 @@ export declare class GetDataQualityRuleResponseBodyDataQualityRuleCheckingConfig
|
|
|
6134
6186
|
export declare class GetDataQualityRuleResponseBodyDataQualityRuleErrorHandlers extends $dara.Model {
|
|
6135
6187
|
/**
|
|
6136
6188
|
* @remarks
|
|
6137
|
-
*
|
|
6189
|
+
* The SQL statement that is used to filter failed tasks. If you define the rule by using custom SQL statements, you must specify an SQL statement to filter failed tasks.
|
|
6138
6190
|
*
|
|
6139
6191
|
* @example
|
|
6140
6192
|
* SELECT * FROM tb_api_log WHERE id IS NULL
|
|
@@ -6163,22 +6215,23 @@ export declare class GetDataQualityRuleResponseBodyDataQualityRuleErrorHandlers
|
|
|
6163
6215
|
export declare class GetDataQualityRuleResponseBodyDataQualityRuleSamplingConfig extends $dara.Model {
|
|
6164
6216
|
/**
|
|
6165
6217
|
* @remarks
|
|
6166
|
-
* The
|
|
6167
|
-
*
|
|
6168
|
-
*
|
|
6169
|
-
*
|
|
6170
|
-
*
|
|
6171
|
-
*
|
|
6172
|
-
*
|
|
6173
|
-
*
|
|
6174
|
-
*
|
|
6175
|
-
*
|
|
6176
|
-
*
|
|
6177
|
-
*
|
|
6178
|
-
*
|
|
6179
|
-
*
|
|
6180
|
-
*
|
|
6181
|
-
*
|
|
6218
|
+
* The metrics used for sampling. Valid values:
|
|
6219
|
+
*
|
|
6220
|
+
* * Count: the number of rows in the table.
|
|
6221
|
+
* * Min: the minimum value of the field.
|
|
6222
|
+
* * Max: the maximum value of the field.
|
|
6223
|
+
* * Avg: the average value of the field.
|
|
6224
|
+
* * DistinctCount: the number of unique values of the field after deduplication.
|
|
6225
|
+
* * DistinctPercent: the proportion of the number of unique values of the field after deduplication to the number of rows in the table.
|
|
6226
|
+
* * DuplicatedCount: the number of duplicated values of the field.
|
|
6227
|
+
* * DuplicatedPercent: the proportion of the number of duplicated values of the field to the number of rows in the table.
|
|
6228
|
+
* * TableSize: the table size.
|
|
6229
|
+
* * NullValueCount: the number of rows in which the field value is null.
|
|
6230
|
+
* * NullValuePercent: the proportion of the number of rows in which the field value is null to the number of rows in the table.
|
|
6231
|
+
* * GroupCount: the field value and the number of rows for each field value.
|
|
6232
|
+
* * CountNotIn: the number of rows in which the field values are different from the referenced values that you specified in the rule.
|
|
6233
|
+
* * CountDistinctNotIn: the number of unique values that are different from the referenced values that you specified in the rule after deduplication.
|
|
6234
|
+
* * UserDefinedSql: indicates that data is sampled by executing custom SQL statements.
|
|
6182
6235
|
*
|
|
6183
6236
|
* @example
|
|
6184
6237
|
* Max
|
|
@@ -6186,7 +6239,7 @@ export declare class GetDataQualityRuleResponseBodyDataQualityRuleSamplingConfig
|
|
|
6186
6239
|
metric?: string;
|
|
6187
6240
|
/**
|
|
6188
6241
|
* @remarks
|
|
6189
|
-
*
|
|
6242
|
+
* The parameters required for sampling.
|
|
6190
6243
|
*
|
|
6191
6244
|
* @example
|
|
6192
6245
|
* { "Columns": [ "id", "name" ] , "SQL": "select count(1) from table;"}
|
|
@@ -6194,7 +6247,7 @@ export declare class GetDataQualityRuleResponseBodyDataQualityRuleSamplingConfig
|
|
|
6194
6247
|
metricParameters?: string;
|
|
6195
6248
|
/**
|
|
6196
6249
|
* @remarks
|
|
6197
|
-
* The
|
|
6250
|
+
* The statements that are used to filter unnecessary data during sampling. The statements can be up to 16,777,215 characters in length.
|
|
6198
6251
|
*
|
|
6199
6252
|
* @example
|
|
6200
6253
|
* id IS NULL
|
|
@@ -6202,7 +6255,7 @@ export declare class GetDataQualityRuleResponseBodyDataQualityRuleSamplingConfig
|
|
|
6202
6255
|
samplingFilter?: string;
|
|
6203
6256
|
/**
|
|
6204
6257
|
* @remarks
|
|
6205
|
-
*
|
|
6258
|
+
* The statements that are used to configure the parameters required for sampling before you execute the sampling statements. The statements can be up to 1,000 characters in length. Only the MaxCompute database is supported.
|
|
6206
6259
|
*
|
|
6207
6260
|
* @example
|
|
6208
6261
|
* SET odps.sql.udf.timeout=600s;
|
|
@@ -6238,7 +6291,7 @@ export declare class GetDataQualityRuleResponseBodyDataQualityRuleTarget extends
|
|
|
6238
6291
|
databaseType?: string;
|
|
6239
6292
|
/**
|
|
6240
6293
|
* @remarks
|
|
6241
|
-
*
|
|
6294
|
+
* The configuration of the partitioned table.
|
|
6242
6295
|
*
|
|
6243
6296
|
* @example
|
|
6244
6297
|
* ds=$[yyyymmdd-1]
|
|
@@ -6246,7 +6299,7 @@ export declare class GetDataQualityRuleResponseBodyDataQualityRuleTarget extends
|
|
|
6246
6299
|
partitionSpec?: string;
|
|
6247
6300
|
/**
|
|
6248
6301
|
* @remarks
|
|
6249
|
-
* The
|
|
6302
|
+
* The ID of the table that is limited by the rule in Data Map.
|
|
6250
6303
|
*
|
|
6251
6304
|
* @example
|
|
6252
6305
|
* odps.unit_test.tb_unit_test
|
|
@@ -6281,7 +6334,7 @@ export declare class GetDataQualityRuleResponseBodyDataQualityRule extends $dara
|
|
|
6281
6334
|
checkingConfig?: GetDataQualityRuleResponseBodyDataQualityRuleCheckingConfig;
|
|
6282
6335
|
/**
|
|
6283
6336
|
* @remarks
|
|
6284
|
-
* The description of the rule.
|
|
6337
|
+
* The description of the rule. The description can be up to 500 characters in length.
|
|
6285
6338
|
*
|
|
6286
6339
|
* @example
|
|
6287
6340
|
* this is a odps _sql task
|
|
@@ -6289,7 +6342,7 @@ export declare class GetDataQualityRuleResponseBodyDataQualityRule extends $dara
|
|
|
6289
6342
|
description?: string;
|
|
6290
6343
|
/**
|
|
6291
6344
|
* @remarks
|
|
6292
|
-
*
|
|
6345
|
+
* Indicates whether the rule is enabled.
|
|
6293
6346
|
*
|
|
6294
6347
|
* @example
|
|
6295
6348
|
* true
|
|
@@ -6297,12 +6350,12 @@ export declare class GetDataQualityRuleResponseBodyDataQualityRule extends $dara
|
|
|
6297
6350
|
enabled?: boolean;
|
|
6298
6351
|
/**
|
|
6299
6352
|
* @remarks
|
|
6300
|
-
* The
|
|
6353
|
+
* The operations that you can perform after the rule-based check fails.
|
|
6301
6354
|
*/
|
|
6302
6355
|
errorHandlers?: GetDataQualityRuleResponseBodyDataQualityRuleErrorHandlers[];
|
|
6303
6356
|
/**
|
|
6304
6357
|
* @remarks
|
|
6305
|
-
* The ID
|
|
6358
|
+
* The rule ID.
|
|
6306
6359
|
*
|
|
6307
6360
|
* @example
|
|
6308
6361
|
* 16033
|
|
@@ -6310,7 +6363,7 @@ export declare class GetDataQualityRuleResponseBodyDataQualityRule extends $dara
|
|
|
6310
6363
|
id?: number;
|
|
6311
6364
|
/**
|
|
6312
6365
|
* @remarks
|
|
6313
|
-
* The name
|
|
6366
|
+
* The rule name.
|
|
6314
6367
|
*
|
|
6315
6368
|
* @example
|
|
6316
6369
|
* The table cannot be empty.
|
|
@@ -6318,7 +6371,7 @@ export declare class GetDataQualityRuleResponseBodyDataQualityRule extends $dara
|
|
|
6318
6371
|
name?: string;
|
|
6319
6372
|
/**
|
|
6320
6373
|
* @remarks
|
|
6321
|
-
* The
|
|
6374
|
+
* The DataWorks workspace ID.
|
|
6322
6375
|
*
|
|
6323
6376
|
* @example
|
|
6324
6377
|
* 1948
|
|
@@ -6326,7 +6379,7 @@ export declare class GetDataQualityRuleResponseBodyDataQualityRule extends $dara
|
|
|
6326
6379
|
projectId?: number;
|
|
6327
6380
|
/**
|
|
6328
6381
|
* @remarks
|
|
6329
|
-
* The settings
|
|
6382
|
+
* The sampling settings.
|
|
6330
6383
|
*/
|
|
6331
6384
|
samplingConfig?: GetDataQualityRuleResponseBodyDataQualityRuleSamplingConfig;
|
|
6332
6385
|
/**
|
|
@@ -6341,7 +6394,7 @@ export declare class GetDataQualityRuleResponseBodyDataQualityRule extends $dara
|
|
|
6341
6394
|
severity?: string;
|
|
6342
6395
|
/**
|
|
6343
6396
|
* @remarks
|
|
6344
|
-
* The object
|
|
6397
|
+
* The monitored object of the rule.
|
|
6345
6398
|
*/
|
|
6346
6399
|
target?: GetDataQualityRuleResponseBodyDataQualityRuleTarget;
|
|
6347
6400
|
/**
|
|
@@ -6366,7 +6419,7 @@ export declare class GetDataQualityRuleResponseBodyDataQualityRule extends $dara
|
|
|
6366
6419
|
export declare class GetDataQualityRuleTemplateResponseBodyDataQualityRuleTemplateCheckingConfig extends $dara.Model {
|
|
6367
6420
|
/**
|
|
6368
6421
|
* @remarks
|
|
6369
|
-
*
|
|
6422
|
+
* The method that is used to query the referenced samples. To obtain some types of thresholds, you need to query reference samples and perform aggregate operations on the reference values. In this example, an expression is used to indicate the query method of referenced samples.
|
|
6370
6423
|
*
|
|
6371
6424
|
* @example
|
|
6372
6425
|
* { "bizdate": [ "-1", "-7", "-1m" ] }
|
|
@@ -6374,13 +6427,14 @@ export declare class GetDataQualityRuleTemplateResponseBodyDataQualityRuleTempla
|
|
|
6374
6427
|
referencedSamplesFilter?: string;
|
|
6375
6428
|
/**
|
|
6376
6429
|
* @remarks
|
|
6377
|
-
*
|
|
6378
|
-
*
|
|
6379
|
-
*
|
|
6380
|
-
*
|
|
6381
|
-
*
|
|
6382
|
-
*
|
|
6383
|
-
*
|
|
6430
|
+
* The threshold calculation method. Valid values:
|
|
6431
|
+
*
|
|
6432
|
+
* * Fixed
|
|
6433
|
+
* * Fluctation
|
|
6434
|
+
* * FluctationDiscreate
|
|
6435
|
+
* * Auto
|
|
6436
|
+
* * Average
|
|
6437
|
+
* * Variance
|
|
6384
6438
|
*
|
|
6385
6439
|
* @example
|
|
6386
6440
|
* Fixed
|
|
@@ -6400,22 +6454,23 @@ export declare class GetDataQualityRuleTemplateResponseBodyDataQualityRuleTempla
|
|
|
6400
6454
|
export declare class GetDataQualityRuleTemplateResponseBodyDataQualityRuleTemplateSamplingConfig extends $dara.Model {
|
|
6401
6455
|
/**
|
|
6402
6456
|
* @remarks
|
|
6403
|
-
* The
|
|
6404
|
-
*
|
|
6405
|
-
*
|
|
6406
|
-
*
|
|
6407
|
-
*
|
|
6408
|
-
*
|
|
6409
|
-
*
|
|
6410
|
-
*
|
|
6411
|
-
*
|
|
6412
|
-
*
|
|
6413
|
-
*
|
|
6414
|
-
*
|
|
6415
|
-
*
|
|
6416
|
-
*
|
|
6417
|
-
*
|
|
6418
|
-
*
|
|
6457
|
+
* The metrics used for sampling. Valid values:
|
|
6458
|
+
*
|
|
6459
|
+
* * Count: the number of rows in the table.
|
|
6460
|
+
* * Min: the minimum value of the field.
|
|
6461
|
+
* * Max: the maximum value of the field.
|
|
6462
|
+
* * Avg: the average value of the field.
|
|
6463
|
+
* * DistinctCount: the number of unique values of the field after deduplication.
|
|
6464
|
+
* * DistinctPercent: the proportion of the number of unique values of the field after deduplication to the number of rows in the table.
|
|
6465
|
+
* * DuplicatedCount: the number of duplicated values of the field.
|
|
6466
|
+
* * DuplicatedPercent: the proportion of the number of duplicated values of the field to the number of rows in the table.
|
|
6467
|
+
* * TableSize: the table size.
|
|
6468
|
+
* * NullValueCount: the number of rows in which the field value is null.
|
|
6469
|
+
* * NullValuePercent: the proportion of the number of rows in which the field value is null to the number of rows in the table.
|
|
6470
|
+
* * GroupCount: the field value and the number of rows for each field value.
|
|
6471
|
+
* * CountNotIn: the number of rows in which the field values are different from the referenced values that you specified in the rule.
|
|
6472
|
+
* * CountDistinctNotIn: the number of unique values that are different from the referenced values that you specified in the rule after deduplication.
|
|
6473
|
+
* * UserDefinedSql: indicates that data is sampled by executing custom SQL statements.
|
|
6419
6474
|
*
|
|
6420
6475
|
* @example
|
|
6421
6476
|
* Max
|
|
@@ -6423,7 +6478,7 @@ export declare class GetDataQualityRuleTemplateResponseBodyDataQualityRuleTempla
|
|
|
6423
6478
|
metric?: string;
|
|
6424
6479
|
/**
|
|
6425
6480
|
* @remarks
|
|
6426
|
-
*
|
|
6481
|
+
* The parameters required for sampling.
|
|
6427
6482
|
*
|
|
6428
6483
|
* @example
|
|
6429
6484
|
* {"SQL": "select count(1) from table;"}
|
|
@@ -6431,7 +6486,7 @@ export declare class GetDataQualityRuleTemplateResponseBodyDataQualityRuleTempla
|
|
|
6431
6486
|
metricParameters?: string;
|
|
6432
6487
|
/**
|
|
6433
6488
|
* @remarks
|
|
6434
|
-
*
|
|
6489
|
+
* The statements that are used to configure the parameters required for sampling before you execute the sampling statements. The statements can be up to 1,000 characters in length. Only the MaxCompute database is supported.
|
|
6435
6490
|
*
|
|
6436
6491
|
* @example
|
|
6437
6492
|
* SET odps.sql.udf.timeout=600s;
|
|
@@ -6452,12 +6507,12 @@ export declare class GetDataQualityRuleTemplateResponseBodyDataQualityRuleTempla
|
|
|
6452
6507
|
export declare class GetDataQualityRuleTemplateResponseBodyDataQualityRuleTemplate extends $dara.Model {
|
|
6453
6508
|
/**
|
|
6454
6509
|
* @remarks
|
|
6455
|
-
*
|
|
6510
|
+
* The check settings for sample data.
|
|
6456
6511
|
*/
|
|
6457
6512
|
checkingConfig?: GetDataQualityRuleTemplateResponseBodyDataQualityRuleTemplateCheckingConfig;
|
|
6458
6513
|
/**
|
|
6459
6514
|
* @remarks
|
|
6460
|
-
* The
|
|
6515
|
+
* The code for the template.
|
|
6461
6516
|
*
|
|
6462
6517
|
* @example
|
|
6463
6518
|
* USER_DEFINED:123
|
|
@@ -6465,7 +6520,7 @@ export declare class GetDataQualityRuleTemplateResponseBodyDataQualityRuleTempla
|
|
|
6465
6520
|
code?: string;
|
|
6466
6521
|
/**
|
|
6467
6522
|
* @remarks
|
|
6468
|
-
* The
|
|
6523
|
+
* The directory in which the template is stored. Slashes (/) are used to separate directory levels. The name of each directory level can be up to 1,024 characters in length. It cannot contain whitespace characters or slashes (/).
|
|
6469
6524
|
*
|
|
6470
6525
|
* @example
|
|
6471
6526
|
* /ods/order_data
|
|
@@ -6473,7 +6528,7 @@ export declare class GetDataQualityRuleTemplateResponseBodyDataQualityRuleTempla
|
|
|
6473
6528
|
directoryPath?: string;
|
|
6474
6529
|
/**
|
|
6475
6530
|
* @remarks
|
|
6476
|
-
* The name of the
|
|
6531
|
+
* The name of the template. The name can be up to 512 characters in length and can contain digits, letters, and punctuation marks.
|
|
6477
6532
|
*
|
|
6478
6533
|
* @example
|
|
6479
6534
|
* Table row Count Verification
|
|
@@ -6481,7 +6536,7 @@ export declare class GetDataQualityRuleTemplateResponseBodyDataQualityRuleTempla
|
|
|
6481
6536
|
name?: string;
|
|
6482
6537
|
/**
|
|
6483
6538
|
* @remarks
|
|
6484
|
-
* The
|
|
6539
|
+
* The DataWorks workspace ID.
|
|
6485
6540
|
*
|
|
6486
6541
|
* @example
|
|
6487
6542
|
* 4020
|
|
@@ -6489,7 +6544,7 @@ export declare class GetDataQualityRuleTemplateResponseBodyDataQualityRuleTempla
|
|
|
6489
6544
|
projectId?: number;
|
|
6490
6545
|
/**
|
|
6491
6546
|
* @remarks
|
|
6492
|
-
* The settings
|
|
6547
|
+
* The sampling settings.
|
|
6493
6548
|
*/
|
|
6494
6549
|
samplingConfig?: GetDataQualityRuleTemplateResponseBodyDataQualityRuleTemplateSamplingConfig;
|
|
6495
6550
|
/**
|
|
@@ -7202,6 +7257,9 @@ export declare class GetNodeResponseBodyNode extends $dara.Model {
|
|
|
7202
7257
|
*/
|
|
7203
7258
|
spec?: string;
|
|
7204
7259
|
/**
|
|
7260
|
+
* @remarks
|
|
7261
|
+
* The Id of the scheduled task after the node is published.
|
|
7262
|
+
*
|
|
7205
7263
|
* @example
|
|
7206
7264
|
* 700006680527
|
|
7207
7265
|
*/
|
|
@@ -10047,6 +10105,9 @@ export declare class GetWorkflowDefinitionResponseBodyWorkflowDefinition extends
|
|
|
10047
10105
|
*/
|
|
10048
10106
|
spec?: string;
|
|
10049
10107
|
/**
|
|
10108
|
+
* @remarks
|
|
10109
|
+
* The ID of the workflow on the scheduling side after publishing.
|
|
10110
|
+
*
|
|
10050
10111
|
* @example
|
|
10051
10112
|
* 700006657495
|
|
10052
10113
|
*/
|
|
@@ -10091,8 +10152,8 @@ export declare class GetWorkflowInstanceResponseBodyWorkflowInstance extends $da
|
|
|
10091
10152
|
* @remarks
|
|
10092
10153
|
* The environment of the workspace. Valid values:
|
|
10093
10154
|
*
|
|
10094
|
-
* * Prod
|
|
10095
|
-
* * Dev
|
|
10155
|
+
* * Prod
|
|
10156
|
+
* * Dev
|
|
10096
10157
|
*
|
|
10097
10158
|
* @example
|
|
10098
10159
|
* Prod
|
|
@@ -10692,6 +10753,76 @@ export declare class ListAlertRulesResponseBodyPagingInfo extends $dara.Model {
|
|
|
10692
10753
|
[key: string]: any;
|
|
10693
10754
|
});
|
|
10694
10755
|
}
|
|
10756
|
+
export declare class ListCertificatesResponseBodyPagingInfoCertificates extends $dara.Model {
|
|
10757
|
+
/**
|
|
10758
|
+
* @example
|
|
10759
|
+
* 1730217600000
|
|
10760
|
+
*/
|
|
10761
|
+
createTime?: number;
|
|
10762
|
+
/**
|
|
10763
|
+
* @example
|
|
10764
|
+
* 1107550004253538
|
|
10765
|
+
*/
|
|
10766
|
+
createUser?: string;
|
|
10767
|
+
/**
|
|
10768
|
+
* @example
|
|
10769
|
+
* This is a file
|
|
10770
|
+
*/
|
|
10771
|
+
description?: string;
|
|
10772
|
+
/**
|
|
10773
|
+
* @example
|
|
10774
|
+
* 1024
|
|
10775
|
+
*/
|
|
10776
|
+
fileSizeInBytes?: number;
|
|
10777
|
+
/**
|
|
10778
|
+
* @example
|
|
10779
|
+
* 676303114031776
|
|
10780
|
+
*/
|
|
10781
|
+
id?: number;
|
|
10782
|
+
/**
|
|
10783
|
+
* @example
|
|
10784
|
+
* ca1.crt
|
|
10785
|
+
*/
|
|
10786
|
+
name?: string;
|
|
10787
|
+
static names(): {
|
|
10788
|
+
[key: string]: string;
|
|
10789
|
+
};
|
|
10790
|
+
static types(): {
|
|
10791
|
+
[key: string]: any;
|
|
10792
|
+
};
|
|
10793
|
+
validate(): void;
|
|
10794
|
+
constructor(map?: {
|
|
10795
|
+
[key: string]: any;
|
|
10796
|
+
});
|
|
10797
|
+
}
|
|
10798
|
+
export declare class ListCertificatesResponseBodyPagingInfo extends $dara.Model {
|
|
10799
|
+
certificates?: ListCertificatesResponseBodyPagingInfoCertificates[];
|
|
10800
|
+
/**
|
|
10801
|
+
* @example
|
|
10802
|
+
* 1
|
|
10803
|
+
*/
|
|
10804
|
+
pageNumber?: number;
|
|
10805
|
+
/**
|
|
10806
|
+
* @example
|
|
10807
|
+
* 10
|
|
10808
|
+
*/
|
|
10809
|
+
pageSize?: number;
|
|
10810
|
+
/**
|
|
10811
|
+
* @example
|
|
10812
|
+
* 100
|
|
10813
|
+
*/
|
|
10814
|
+
totalCount?: number;
|
|
10815
|
+
static names(): {
|
|
10816
|
+
[key: string]: string;
|
|
10817
|
+
};
|
|
10818
|
+
static types(): {
|
|
10819
|
+
[key: string]: any;
|
|
10820
|
+
};
|
|
10821
|
+
validate(): void;
|
|
10822
|
+
constructor(map?: {
|
|
10823
|
+
[key: string]: any;
|
|
10824
|
+
});
|
|
10825
|
+
}
|
|
10695
10826
|
export declare class ListDIAlarmRulesResponseBodyPagingInfoDIJobAlarmRulesNotificationSettingsNotificationChannels extends $dara.Model {
|
|
10696
10827
|
/**
|
|
10697
10828
|
* @remarks
|
|
@@ -11407,7 +11538,7 @@ export declare class ListDIJobsResponseBodyPagingInfoDIJobs extends $dara.Model
|
|
|
11407
11538
|
DIJobId?: number;
|
|
11408
11539
|
/**
|
|
11409
11540
|
* @remarks
|
|
11410
|
-
* The destination type. Valid values: Hologres, OSS-HDFS, OSS, MaxCompute, Loghub, STARROCKS,
|
|
11541
|
+
* The destination type. Valid values: Hologres, OSS-HDFS, OSS, MaxCompute, Loghub, STARROCKS, DataHub, ANALYTICDB_FOR_MYSQL, Kafka, and Hive.
|
|
11411
11542
|
*
|
|
11412
11543
|
* @example
|
|
11413
11544
|
* Hologres
|
|
@@ -12601,7 +12732,7 @@ export declare class ListDataQualityEvaluationTasksResponseBodyPagingInfo extend
|
|
|
12601
12732
|
export declare class ListDataQualityResultsResponseBodyPagingInfoDataQualityResultsDetails extends $dara.Model {
|
|
12602
12733
|
/**
|
|
12603
12734
|
* @remarks
|
|
12604
|
-
* The value used
|
|
12735
|
+
* The value that is used for comparison with the threshold.
|
|
12605
12736
|
*
|
|
12606
12737
|
* @example
|
|
12607
12738
|
* 100.0
|
|
@@ -12609,7 +12740,7 @@ export declare class ListDataQualityResultsResponseBodyPagingInfoDataQualityResu
|
|
|
12609
12740
|
checkedValue?: string;
|
|
12610
12741
|
/**
|
|
12611
12742
|
* @remarks
|
|
12612
|
-
*
|
|
12743
|
+
* The value that is calculated based on sample data. The value serves as a baseline value during the calculation of the value of the CheckedValue parameter.
|
|
12613
12744
|
*
|
|
12614
12745
|
* @example
|
|
12615
12746
|
* 0.0
|
|
@@ -12644,13 +12775,13 @@ export declare class ListDataQualityResultsResponseBodyPagingInfoDataQualityResu
|
|
|
12644
12775
|
* @remarks
|
|
12645
12776
|
* The threshold expression.
|
|
12646
12777
|
*
|
|
12647
|
-
*
|
|
12778
|
+
* If the template specified by the TemplateCode parameter is about fluctuation, you must use an expression to represent the threshold for fluctuation. Examples:
|
|
12648
12779
|
*
|
|
12649
|
-
*
|
|
12650
|
-
*
|
|
12651
|
-
*
|
|
12780
|
+
* * $checkValue > 0.01
|
|
12781
|
+
* * $checkValue < -0.01
|
|
12782
|
+
* * abs($checkValue) > 0.01
|
|
12652
12783
|
*
|
|
12653
|
-
*
|
|
12784
|
+
* If the template specified by the TemplateCode parameter is about fixed value, you can also use an expression to represent the threshold. If you configure the Expression, Operator, and Value parameters for the threshold at the same time, the Expression parameter takes precedence over the Operator and Value parameters.
|
|
12654
12785
|
*
|
|
12655
12786
|
* @example
|
|
12656
12787
|
* $checkValue > 0.01
|
|
@@ -12658,6 +12789,8 @@ export declare class ListDataQualityResultsResponseBodyPagingInfoDataQualityResu
|
|
|
12658
12789
|
expression?: string;
|
|
12659
12790
|
/**
|
|
12660
12791
|
* @remarks
|
|
12792
|
+
* The comparison operator. Valid values:
|
|
12793
|
+
*
|
|
12661
12794
|
* * \\>
|
|
12662
12795
|
* * \\>=
|
|
12663
12796
|
* * <
|
|
@@ -12693,13 +12826,13 @@ export declare class ListDataQualityResultsResponseBodyPagingInfoDataQualityResu
|
|
|
12693
12826
|
* @remarks
|
|
12694
12827
|
* The threshold expression.
|
|
12695
12828
|
*
|
|
12696
|
-
*
|
|
12829
|
+
* If the template specified by the TemplateCode parameter is about fluctuation, you must use an expression to represent the threshold for fluctuation. Examples:
|
|
12697
12830
|
*
|
|
12698
|
-
*
|
|
12699
|
-
*
|
|
12700
|
-
*
|
|
12831
|
+
* * $checkValue > 0.01
|
|
12832
|
+
* * $checkValue < -0.01
|
|
12833
|
+
* * abs($checkValue) > 0.01
|
|
12701
12834
|
*
|
|
12702
|
-
*
|
|
12835
|
+
* If the template specified by the TemplateCode parameter is about fixed value, you can also use an expression to represent the threshold. If you configure the Expression, Operator, and Value parameters for the threshold at the same time, the Expression parameter takes precedence over the Operator and Value parameters.
|
|
12703
12836
|
*
|
|
12704
12837
|
* @example
|
|
12705
12838
|
* $checkValue > 0.01
|
|
@@ -12707,6 +12840,8 @@ export declare class ListDataQualityResultsResponseBodyPagingInfoDataQualityResu
|
|
|
12707
12840
|
expression?: string;
|
|
12708
12841
|
/**
|
|
12709
12842
|
* @remarks
|
|
12843
|
+
* The comparison operator. Valid values:
|
|
12844
|
+
*
|
|
12710
12845
|
* * \\>
|
|
12711
12846
|
* * \\>=
|
|
12712
12847
|
* * <
|
|
@@ -12742,13 +12877,13 @@ export declare class ListDataQualityResultsResponseBodyPagingInfoDataQualityResu
|
|
|
12742
12877
|
* @remarks
|
|
12743
12878
|
* The threshold expression.
|
|
12744
12879
|
*
|
|
12745
|
-
*
|
|
12880
|
+
* If the template specified by the TemplateCode parameter is about fluctuation, you must use an expression to represent the threshold for fluctuation. Examples:
|
|
12746
12881
|
*
|
|
12747
|
-
*
|
|
12748
|
-
*
|
|
12749
|
-
*
|
|
12882
|
+
* * $checkValue > 0.01
|
|
12883
|
+
* * $checkValue < -0.01
|
|
12884
|
+
* * abs($checkValue) > 0.01
|
|
12750
12885
|
*
|
|
12751
|
-
*
|
|
12886
|
+
* If the template specified by the TemplateCode parameter is about fixed value, you can also use an expression to represent the threshold. If you configure the Expression, Operator, and Value parameters for the threshold at the same time, the Expression parameter takes precedence over the Operator and Value parameters.
|
|
12752
12887
|
*
|
|
12753
12888
|
* @example
|
|
12754
12889
|
* $checkValue > 0.01
|
|
@@ -12756,6 +12891,8 @@ export declare class ListDataQualityResultsResponseBodyPagingInfoDataQualityResu
|
|
|
12756
12891
|
expression?: string;
|
|
12757
12892
|
/**
|
|
12758
12893
|
* @remarks
|
|
12894
|
+
* The comparison operator. Valid values:
|
|
12895
|
+
*
|
|
12759
12896
|
* * \\>
|
|
12760
12897
|
* * \\>=
|
|
12761
12898
|
* * <
|
|
@@ -12816,7 +12953,7 @@ export declare class ListDataQualityResultsResponseBodyPagingInfoDataQualityResu
|
|
|
12816
12953
|
export declare class ListDataQualityResultsResponseBodyPagingInfoDataQualityResultsRuleCheckingConfig extends $dara.Model {
|
|
12817
12954
|
/**
|
|
12818
12955
|
* @remarks
|
|
12819
|
-
*
|
|
12956
|
+
* The method that is used to query the referenced samples. To obtain some types of thresholds, you need to query reference samples and perform aggregate operations on the reference values. In this example, an expression is used to indicate the query method of referenced samples.
|
|
12820
12957
|
*
|
|
12821
12958
|
* @example
|
|
12822
12959
|
* { "bizdate": [ "-1", "-7", "-1m" ] }
|
|
@@ -12856,7 +12993,7 @@ export declare class ListDataQualityResultsResponseBodyPagingInfoDataQualityResu
|
|
|
12856
12993
|
export declare class ListDataQualityResultsResponseBodyPagingInfoDataQualityResultsRuleErrorHandlers extends $dara.Model {
|
|
12857
12994
|
/**
|
|
12858
12995
|
* @remarks
|
|
12859
|
-
*
|
|
12996
|
+
* The SQL statement that is used to filter failed tasks. If the rule is defined by custom SQL statements, you must specify an SQL statement to filter failed tasks.
|
|
12860
12997
|
*
|
|
12861
12998
|
* @example
|
|
12862
12999
|
* SELECT * FROM tb_api_log WHERE id IS NULL
|
|
@@ -12910,7 +13047,7 @@ export declare class ListDataQualityResultsResponseBodyPagingInfoDataQualityResu
|
|
|
12910
13047
|
metric?: string;
|
|
12911
13048
|
/**
|
|
12912
13049
|
* @remarks
|
|
12913
|
-
*
|
|
13050
|
+
* The parameters required for sampling.
|
|
12914
13051
|
*
|
|
12915
13052
|
* @example
|
|
12916
13053
|
* { "columns": [ "id", "name" ] }
|
|
@@ -12918,7 +13055,7 @@ export declare class ListDataQualityResultsResponseBodyPagingInfoDataQualityResu
|
|
|
12918
13055
|
metricParameters?: string;
|
|
12919
13056
|
/**
|
|
12920
13057
|
* @remarks
|
|
12921
|
-
* The
|
|
13058
|
+
* The statements that are used to filter unnecessary data during sampling. The statements can be up to 16,777,215 characters in length.
|
|
12922
13059
|
*
|
|
12923
13060
|
* @example
|
|
12924
13061
|
* id IS NULL
|
|
@@ -12926,7 +13063,7 @@ export declare class ListDataQualityResultsResponseBodyPagingInfoDataQualityResu
|
|
|
12926
13063
|
samplingFilter?: string;
|
|
12927
13064
|
/**
|
|
12928
13065
|
* @remarks
|
|
12929
|
-
*
|
|
13066
|
+
* The statements that are used to configure the parameters required for sampling before you execute the sampling statements. The statements can be up to 1,000 characters in length. Only the MaxCompute database is supported.
|
|
12930
13067
|
*
|
|
12931
13068
|
* @example
|
|
12932
13069
|
* SET odps.sql.udf.timeout=600s;
|
|
@@ -12962,7 +13099,7 @@ export declare class ListDataQualityResultsResponseBodyPagingInfoDataQualityResu
|
|
|
12962
13099
|
databaseType?: string;
|
|
12963
13100
|
/**
|
|
12964
13101
|
* @remarks
|
|
12965
|
-
* The
|
|
13102
|
+
* The ID of the table in Data Map.
|
|
12966
13103
|
*
|
|
12967
13104
|
* @example
|
|
12968
13105
|
* odps.unit_test.tb_unit_test
|
|
@@ -12997,7 +13134,7 @@ export declare class ListDataQualityResultsResponseBodyPagingInfoDataQualityResu
|
|
|
12997
13134
|
checkingConfig?: ListDataQualityResultsResponseBodyPagingInfoDataQualityResultsRuleCheckingConfig;
|
|
12998
13135
|
/**
|
|
12999
13136
|
* @remarks
|
|
13000
|
-
* The description of the rule.
|
|
13137
|
+
* The description of the rule. The description can be up to 500 characters in length.
|
|
13001
13138
|
*
|
|
13002
13139
|
* @example
|
|
13003
13140
|
* this is a odps _sql task
|
|
@@ -13005,7 +13142,7 @@ export declare class ListDataQualityResultsResponseBodyPagingInfoDataQualityResu
|
|
|
13005
13142
|
description?: string;
|
|
13006
13143
|
/**
|
|
13007
13144
|
* @remarks
|
|
13008
|
-
*
|
|
13145
|
+
* Indicates whether the rule is enabled.
|
|
13009
13146
|
*
|
|
13010
13147
|
* @example
|
|
13011
13148
|
* true
|
|
@@ -13018,7 +13155,7 @@ export declare class ListDataQualityResultsResponseBodyPagingInfoDataQualityResu
|
|
|
13018
13155
|
errorHandlers?: ListDataQualityResultsResponseBodyPagingInfoDataQualityResultsRuleErrorHandlers[];
|
|
13019
13156
|
/**
|
|
13020
13157
|
* @remarks
|
|
13021
|
-
* The ID
|
|
13158
|
+
* The rule ID.
|
|
13022
13159
|
*
|
|
13023
13160
|
* @example
|
|
13024
13161
|
* 100001
|
|
@@ -13026,7 +13163,7 @@ export declare class ListDataQualityResultsResponseBodyPagingInfoDataQualityResu
|
|
|
13026
13163
|
id?: number;
|
|
13027
13164
|
/**
|
|
13028
13165
|
* @remarks
|
|
13029
|
-
* The
|
|
13166
|
+
* The name of the rule. The name can be up to 255 characters in length and can contain digits, letters, and punctuation marks.
|
|
13030
13167
|
*
|
|
13031
13168
|
* @example
|
|
13032
13169
|
* The table cannot be empty.
|
|
@@ -13034,7 +13171,7 @@ export declare class ListDataQualityResultsResponseBodyPagingInfoDataQualityResu
|
|
|
13034
13171
|
name?: string;
|
|
13035
13172
|
/**
|
|
13036
13173
|
* @remarks
|
|
13037
|
-
* DataWorks
|
|
13174
|
+
* The DataWorks workspace ID.
|
|
13038
13175
|
*
|
|
13039
13176
|
* @example
|
|
13040
13177
|
* 100
|
|
@@ -13083,7 +13220,7 @@ export declare class ListDataQualityResultsResponseBodyPagingInfoDataQualityResu
|
|
|
13083
13220
|
export declare class ListDataQualityResultsResponseBodyPagingInfoDataQualityResults extends $dara.Model {
|
|
13084
13221
|
/**
|
|
13085
13222
|
* @remarks
|
|
13086
|
-
* The time when the
|
|
13223
|
+
* The time when the data quality check result was generated.
|
|
13087
13224
|
*
|
|
13088
13225
|
* @example
|
|
13089
13226
|
* 1708284916414
|
|
@@ -13091,12 +13228,12 @@ export declare class ListDataQualityResultsResponseBodyPagingInfoDataQualityResu
|
|
|
13091
13228
|
createTime?: number;
|
|
13092
13229
|
/**
|
|
13093
13230
|
* @remarks
|
|
13094
|
-
* The check
|
|
13231
|
+
* The information about the data quality check.
|
|
13095
13232
|
*/
|
|
13096
13233
|
details?: ListDataQualityResultsResponseBodyPagingInfoDataQualityResultsDetails[];
|
|
13097
13234
|
/**
|
|
13098
13235
|
* @remarks
|
|
13099
|
-
* The ID of the
|
|
13236
|
+
* The ID of the check result.
|
|
13100
13237
|
*
|
|
13101
13238
|
* @example
|
|
13102
13239
|
* 16033
|
|
@@ -13109,7 +13246,7 @@ export declare class ListDataQualityResultsResponseBodyPagingInfoDataQualityResu
|
|
|
13109
13246
|
rule?: ListDataQualityResultsResponseBodyPagingInfoDataQualityResultsRule;
|
|
13110
13247
|
/**
|
|
13111
13248
|
* @remarks
|
|
13112
|
-
* The sample
|
|
13249
|
+
* The sample values used for the check.
|
|
13113
13250
|
*
|
|
13114
13251
|
* @example
|
|
13115
13252
|
* [
|
|
@@ -13139,7 +13276,7 @@ export declare class ListDataQualityResultsResponseBodyPagingInfoDataQualityResu
|
|
|
13139
13276
|
status?: string;
|
|
13140
13277
|
/**
|
|
13141
13278
|
* @remarks
|
|
13142
|
-
* The ID of the
|
|
13279
|
+
* The ID of the instance generated by the check.
|
|
13143
13280
|
*
|
|
13144
13281
|
* @example
|
|
13145
13282
|
* 200001
|
|
@@ -13172,7 +13309,7 @@ export declare class ListDataQualityResultsResponseBodyPagingInfo extends $dara.
|
|
|
13172
13309
|
pageNumber?: number;
|
|
13173
13310
|
/**
|
|
13174
13311
|
* @remarks
|
|
13175
|
-
* The page
|
|
13312
|
+
* The number of entries per page.
|
|
13176
13313
|
*
|
|
13177
13314
|
* @example
|
|
13178
13315
|
* 10
|
|
@@ -13180,7 +13317,7 @@ export declare class ListDataQualityResultsResponseBodyPagingInfo extends $dara.
|
|
|
13180
13317
|
pageSize?: number;
|
|
13181
13318
|
/**
|
|
13182
13319
|
* @remarks
|
|
13183
|
-
* The total number of entries.
|
|
13320
|
+
* The total number of entries returned.
|
|
13184
13321
|
*
|
|
13185
13322
|
* @example
|
|
13186
13323
|
* 219
|
|
@@ -13393,13 +13530,13 @@ export declare class ListDataQualityRulesResponseBodyPagingInfoDataQualityRulesC
|
|
|
13393
13530
|
* @remarks
|
|
13394
13531
|
* The threshold expression.
|
|
13395
13532
|
*
|
|
13396
|
-
*
|
|
13533
|
+
* If the template specified by the TemplateCode parameter is about fluctuation, you must use an expression to represent the threshold for fluctuation. Examples:
|
|
13397
13534
|
*
|
|
13398
|
-
*
|
|
13399
|
-
*
|
|
13400
|
-
*
|
|
13535
|
+
* * $checkValue > 0.01
|
|
13536
|
+
* * $checkValue < -0.01
|
|
13537
|
+
* * abs($checkValue) > 0.01
|
|
13401
13538
|
*
|
|
13402
|
-
*
|
|
13539
|
+
* If the template specified by the TemplateCode parameter is about fixed value, you can also use an expression to represent the threshold. If you configure the Expression, Operator, and Value parameters for the threshold at the same time, the Expression parameter takes precedence over the Operator and Value parameters.
|
|
13403
13540
|
*
|
|
13404
13541
|
* @example
|
|
13405
13542
|
* $checkValue > 0.01
|
|
@@ -13444,13 +13581,13 @@ export declare class ListDataQualityRulesResponseBodyPagingInfoDataQualityRulesC
|
|
|
13444
13581
|
* @remarks
|
|
13445
13582
|
* The threshold expression.
|
|
13446
13583
|
*
|
|
13447
|
-
*
|
|
13584
|
+
* If the template specified by the TemplateCode parameter is about fluctuation, you must use an expression to represent the threshold for fluctuation. Examples:
|
|
13448
13585
|
*
|
|
13449
|
-
*
|
|
13450
|
-
*
|
|
13451
|
-
*
|
|
13586
|
+
* * $checkValue > 0.01
|
|
13587
|
+
* * $checkValue < -0.01
|
|
13588
|
+
* * abs($checkValue) > 0.01
|
|
13452
13589
|
*
|
|
13453
|
-
*
|
|
13590
|
+
* If the template specified by the TemplateCode parameter is about fixed value, you can also use an expression to represent the threshold. If you configure the Expression, Operator, and Value parameters for the threshold at the same time, the Expression parameter takes precedence over the Operator and Value parameters.
|
|
13454
13591
|
*
|
|
13455
13592
|
* @example
|
|
13456
13593
|
* $checkValue > 0.01
|
|
@@ -13495,13 +13632,13 @@ export declare class ListDataQualityRulesResponseBodyPagingInfoDataQualityRulesC
|
|
|
13495
13632
|
* @remarks
|
|
13496
13633
|
* The threshold expression.
|
|
13497
13634
|
*
|
|
13498
|
-
*
|
|
13635
|
+
* If the template specified by the TemplateCode parameter is about fluctuation, you must use an expression to represent the threshold for fluctuation. Examples:
|
|
13499
13636
|
*
|
|
13500
|
-
*
|
|
13501
|
-
*
|
|
13502
|
-
*
|
|
13637
|
+
* * $checkValue > 0.01
|
|
13638
|
+
* * $checkValue < -0.01
|
|
13639
|
+
* * abs($checkValue) > 0.01
|
|
13503
13640
|
*
|
|
13504
|
-
*
|
|
13641
|
+
* If the template specified by the TemplateCode parameter is about fixed value, you can also use an expression to represent the threshold. If you configure the Expression, Operator, and Value parameters for the threshold at the same time, the Expression parameter takes precedence over the Operator and Value parameters.
|
|
13505
13642
|
*
|
|
13506
13643
|
* @example
|
|
13507
13644
|
* $checkValue > 0.01
|
|
@@ -13987,7 +14124,10 @@ export declare class ListDataSourcesResponseBodyPagingInfoDataSourcesDataSource
|
|
|
13987
14124
|
connectionProperties?: any;
|
|
13988
14125
|
/**
|
|
13989
14126
|
* @remarks
|
|
13990
|
-
* The mode in which the data source is added. The mode varies based on the data source type. Valid values:
|
|
14127
|
+
* The mode in which the data source is added. The mode varies based on the data source type. Valid values:
|
|
14128
|
+
*
|
|
14129
|
+
* * InstanceMode: instance mode
|
|
14130
|
+
* * UrlMode: connection string mode
|
|
13991
14131
|
*
|
|
13992
14132
|
* @example
|
|
13993
14133
|
* UrlMode
|
|
@@ -14949,9 +15089,6 @@ export declare class ListDownstreamTaskInstancesResponseBodyPagingInfoTaskInstan
|
|
|
14949
15089
|
* @remarks
|
|
14950
15090
|
* The environment of the workspace. This parameter is deprecated and replaced by the EnvType parameter. Valid values:
|
|
14951
15091
|
*
|
|
14952
|
-
* * Prod: production environment
|
|
14953
|
-
* * Dev: development environment
|
|
14954
|
-
*
|
|
14955
15092
|
* @example
|
|
14956
15093
|
* Prod
|
|
14957
15094
|
*
|
|
@@ -17428,7 +17565,7 @@ export declare class ListNodesResponseBodyPagingInfoNodesOutputsVariables extend
|
|
|
17428
17565
|
node?: ListNodesResponseBodyPagingInfoNodesOutputsVariablesNode;
|
|
17429
17566
|
/**
|
|
17430
17567
|
* @remarks
|
|
17431
|
-
* The scope of the variable. Valid
|
|
17568
|
+
* The scope of the variable. Valid values:
|
|
17432
17569
|
*
|
|
17433
17570
|
* * NodeParameter
|
|
17434
17571
|
* * NodeContext
|
|
@@ -17441,7 +17578,7 @@ export declare class ListNodesResponseBodyPagingInfoNodesOutputsVariables extend
|
|
|
17441
17578
|
scope?: string;
|
|
17442
17579
|
/**
|
|
17443
17580
|
* @remarks
|
|
17444
|
-
* The type of the variable. Valid
|
|
17581
|
+
* The type of the variable. Valid values:
|
|
17445
17582
|
*
|
|
17446
17583
|
* * NoKvVariableExpression
|
|
17447
17584
|
* * Constant
|
|
@@ -17642,7 +17779,7 @@ export declare class ListNodesResponseBodyPagingInfoNodesTags extends $dara.Mode
|
|
|
17642
17779
|
key?: string;
|
|
17643
17780
|
/**
|
|
17644
17781
|
* @remarks
|
|
17645
|
-
* The tag value
|
|
17782
|
+
* The tag value
|
|
17646
17783
|
*
|
|
17647
17784
|
* @example
|
|
17648
17785
|
* null
|
|
@@ -17917,8 +18054,8 @@ export declare class ListProjectMembersResponseBodyPagingInfoProjectMembersRoles
|
|
|
17917
18054
|
* @remarks
|
|
17918
18055
|
* The type of the role. Valid values:
|
|
17919
18056
|
*
|
|
17920
|
-
* * UserCustom:
|
|
17921
|
-
* * System:
|
|
18057
|
+
* * UserCustom: user-defined role
|
|
18058
|
+
* * System: system role
|
|
17922
18059
|
*
|
|
17923
18060
|
* @example
|
|
17924
18061
|
* System
|
|
@@ -18346,6 +18483,34 @@ export declare class ListResourceGroupsRequestAliyunResourceTags extends $dara.M
|
|
|
18346
18483
|
[key: string]: any;
|
|
18347
18484
|
});
|
|
18348
18485
|
}
|
|
18486
|
+
export declare class ListResourceGroupsResponseBodyPagingInfoResourceGroupListAliyunResourceTags extends $dara.Model {
|
|
18487
|
+
/**
|
|
18488
|
+
* @remarks
|
|
18489
|
+
* Tag Key
|
|
18490
|
+
*
|
|
18491
|
+
* @example
|
|
18492
|
+
* Key
|
|
18493
|
+
*/
|
|
18494
|
+
key?: string;
|
|
18495
|
+
/**
|
|
18496
|
+
* @remarks
|
|
18497
|
+
* Tag Value
|
|
18498
|
+
*
|
|
18499
|
+
* @example
|
|
18500
|
+
* Value
|
|
18501
|
+
*/
|
|
18502
|
+
value?: string;
|
|
18503
|
+
static names(): {
|
|
18504
|
+
[key: string]: string;
|
|
18505
|
+
};
|
|
18506
|
+
static types(): {
|
|
18507
|
+
[key: string]: any;
|
|
18508
|
+
};
|
|
18509
|
+
validate(): void;
|
|
18510
|
+
constructor(map?: {
|
|
18511
|
+
[key: string]: any;
|
|
18512
|
+
});
|
|
18513
|
+
}
|
|
18349
18514
|
export declare class ListResourceGroupsResponseBodyPagingInfoResourceGroupListSpec extends $dara.Model {
|
|
18350
18515
|
/**
|
|
18351
18516
|
* @remarks
|
|
@@ -18383,6 +18548,11 @@ export declare class ListResourceGroupsResponseBodyPagingInfoResourceGroupList e
|
|
|
18383
18548
|
* rg-aek2kqofrgXXXXX
|
|
18384
18549
|
*/
|
|
18385
18550
|
aliyunResourceGroupId?: string;
|
|
18551
|
+
/**
|
|
18552
|
+
* @remarks
|
|
18553
|
+
* Alibaba Cloud tag list
|
|
18554
|
+
*/
|
|
18555
|
+
aliyunResourceTags?: ListResourceGroupsResponseBodyPagingInfoResourceGroupListAliyunResourceTags[];
|
|
18386
18556
|
/**
|
|
18387
18557
|
* @remarks
|
|
18388
18558
|
* The creation time, which is a 64-bit timestamp.
|
|
@@ -18457,7 +18627,7 @@ export declare class ListResourceGroupsResponseBodyPagingInfoResourceGroupList e
|
|
|
18457
18627
|
remark?: string;
|
|
18458
18628
|
/**
|
|
18459
18629
|
* @remarks
|
|
18460
|
-
* The type of resource group. Valid values:
|
|
18630
|
+
* The type of the resource group. Valid values:
|
|
18461
18631
|
*
|
|
18462
18632
|
* * CommonV2: serverless resource group
|
|
18463
18633
|
* * ExclusiveDataIntegration: exclusive resource group for Data Integration
|
|
@@ -18480,13 +18650,15 @@ export declare class ListResourceGroupsResponseBodyPagingInfoResourceGroupList e
|
|
|
18480
18650
|
* * Normal: The resource group is running or in use.
|
|
18481
18651
|
* * Stop: The resource group is expired.
|
|
18482
18652
|
* * Deleted: The resource group is released or destroyed.
|
|
18483
|
-
* * Creating: The resource group is being
|
|
18484
|
-
* * CreateFailed: The resource group fails to be
|
|
18653
|
+
* * Creating: The resource group is being created.
|
|
18654
|
+
* * CreateFailed: The resource group fails to be created.
|
|
18485
18655
|
* * Updating: The resource group is being scaled in or out, or the configurations of the resource group are being changed.
|
|
18486
18656
|
* * UpdateFailed: The resource group fails to be scaled out or upgraded.
|
|
18487
18657
|
* * Deleting: The resource group is being released or destroyed.
|
|
18488
18658
|
* * DeleteFailed: The resource group fails to be released or destroyed.
|
|
18489
18659
|
* * Timeout: The operations that are performed on the resource group time out.
|
|
18660
|
+
* * Freezed: The resource group is frozen.
|
|
18661
|
+
* * Starting: The resource group is being started.
|
|
18490
18662
|
*
|
|
18491
18663
|
* @example
|
|
18492
18664
|
* Normal
|
|
@@ -20004,8 +20176,8 @@ export declare class ListUpstreamTaskInstancesResponseBodyPagingInfoTaskInstance
|
|
|
20004
20176
|
* @remarks
|
|
20005
20177
|
* The environment of the workspace. Valid values:
|
|
20006
20178
|
*
|
|
20007
|
-
* * Prod
|
|
20008
|
-
* * Dev
|
|
20179
|
+
* * Prod
|
|
20180
|
+
* * Dev
|
|
20009
20181
|
*
|
|
20010
20182
|
* @example
|
|
20011
20183
|
* Prod
|
|
@@ -20912,9 +21084,8 @@ export declare class ListUpstreamTasksResponseBodyPagingInfoTasks extends $dara.
|
|
|
20912
21084
|
* @remarks
|
|
20913
21085
|
* The instance generation mode. Valid values:
|
|
20914
21086
|
*
|
|
20915
|
-
* T+1
|
|
20916
|
-
*
|
|
20917
|
-
* Immediately
|
|
21087
|
+
* * T+1
|
|
21088
|
+
* * Immediately
|
|
20918
21089
|
*
|
|
20919
21090
|
* @example
|
|
20920
21091
|
* T+1
|
|
@@ -21022,9 +21193,8 @@ export declare class ListUpstreamTasksResponseBodyPagingInfoTasks extends $dara.
|
|
|
21022
21193
|
* @remarks
|
|
21023
21194
|
* The scheduling dependency type. Valid values:
|
|
21024
21195
|
*
|
|
21025
|
-
* Normal: same-cycle scheduling dependency
|
|
21026
|
-
*
|
|
21027
|
-
* CrossCycle: cross-cycle scheduling dependency
|
|
21196
|
+
* * Normal: same-cycle scheduling dependency
|
|
21197
|
+
* * CrossCycle: cross-cycle scheduling dependency
|
|
21028
21198
|
*
|
|
21029
21199
|
* @example
|
|
21030
21200
|
* Normal
|
|
@@ -21536,7 +21706,7 @@ export declare class ListWorkflowDefinitionsResponseBodyPagingInfoWorkflowDefini
|
|
|
21536
21706
|
id?: number;
|
|
21537
21707
|
/**
|
|
21538
21708
|
* @remarks
|
|
21539
|
-
* The
|
|
21709
|
+
* The time when the workflow was last modified. This value is a UNIX timestamp.
|
|
21540
21710
|
*
|
|
21541
21711
|
* @example
|
|
21542
21712
|
* 1698057323000
|
|
@@ -22125,6 +22295,77 @@ export declare class TagDataAssetsRequestTags extends $dara.Model {
|
|
|
22125
22295
|
[key: string]: any;
|
|
22126
22296
|
});
|
|
22127
22297
|
}
|
|
22298
|
+
export declare class TestDataSourceConnectivityResponseBodyConnectivityDetailLogs extends $dara.Model {
|
|
22299
|
+
/**
|
|
22300
|
+
* @remarks
|
|
22301
|
+
* The code of the test item.
|
|
22302
|
+
*
|
|
22303
|
+
* @example
|
|
22304
|
+
* validate_input_parameters
|
|
22305
|
+
*/
|
|
22306
|
+
code?: string;
|
|
22307
|
+
/**
|
|
22308
|
+
* @remarks
|
|
22309
|
+
* The end time of a step.
|
|
22310
|
+
*
|
|
22311
|
+
* @example
|
|
22312
|
+
* 1730217604002
|
|
22313
|
+
*/
|
|
22314
|
+
endTime?: number;
|
|
22315
|
+
/**
|
|
22316
|
+
* @remarks
|
|
22317
|
+
* The name of the step.
|
|
22318
|
+
*/
|
|
22319
|
+
message?: string;
|
|
22320
|
+
/**
|
|
22321
|
+
* @remarks
|
|
22322
|
+
* The start time of a step.
|
|
22323
|
+
*
|
|
22324
|
+
* @example
|
|
22325
|
+
* 1730217600001
|
|
22326
|
+
*/
|
|
22327
|
+
startTime?: number;
|
|
22328
|
+
static names(): {
|
|
22329
|
+
[key: string]: string;
|
|
22330
|
+
};
|
|
22331
|
+
static types(): {
|
|
22332
|
+
[key: string]: any;
|
|
22333
|
+
};
|
|
22334
|
+
validate(): void;
|
|
22335
|
+
constructor(map?: {
|
|
22336
|
+
[key: string]: any;
|
|
22337
|
+
});
|
|
22338
|
+
}
|
|
22339
|
+
export declare class TestDataSourceConnectivityResponseBodyConnectivity extends $dara.Model {
|
|
22340
|
+
/**
|
|
22341
|
+
* @remarks
|
|
22342
|
+
* The error message returned if the connectivity test fails. No such a message is returned if the connectivity test is successful.
|
|
22343
|
+
*/
|
|
22344
|
+
connectMessage?: string;
|
|
22345
|
+
/**
|
|
22346
|
+
* @remarks
|
|
22347
|
+
* The result of the connectivity test. Valid values: Connectable: The network can be connected. ConfigError: The network can be connected, but the configurations are incorrect. Unreachable: The network cannot be connected. Unsupport: An error is reported due to other causes. For example, the desired resource group is being initialized.
|
|
22348
|
+
*
|
|
22349
|
+
* @example
|
|
22350
|
+
* Connectable
|
|
22351
|
+
*/
|
|
22352
|
+
connectState?: string;
|
|
22353
|
+
/**
|
|
22354
|
+
* @remarks
|
|
22355
|
+
* The detailed logs of each step in the connectivity test.
|
|
22356
|
+
*/
|
|
22357
|
+
detailLogs?: TestDataSourceConnectivityResponseBodyConnectivityDetailLogs[];
|
|
22358
|
+
static names(): {
|
|
22359
|
+
[key: string]: string;
|
|
22360
|
+
};
|
|
22361
|
+
static types(): {
|
|
22362
|
+
[key: string]: any;
|
|
22363
|
+
};
|
|
22364
|
+
validate(): void;
|
|
22365
|
+
constructor(map?: {
|
|
22366
|
+
[key: string]: any;
|
|
22367
|
+
});
|
|
22368
|
+
}
|
|
22128
22369
|
export declare class UnTagDataAssetsRequestTags extends $dara.Model {
|
|
22129
22370
|
/**
|
|
22130
22371
|
* @remarks
|
|
@@ -22623,7 +22864,7 @@ export declare class UpdateDIAlarmRuleRequestNotificationSettingsNotificationRec
|
|
|
22623
22864
|
export declare class UpdateDIAlarmRuleRequestNotificationSettings extends $dara.Model {
|
|
22624
22865
|
/**
|
|
22625
22866
|
* @remarks
|
|
22626
|
-
*
|
|
22867
|
+
* This parameter is deprecated and replaced by the MuteInterval parameter.
|
|
22627
22868
|
*
|
|
22628
22869
|
* @example
|
|
22629
22870
|
* 5
|
|
@@ -22663,7 +22904,7 @@ export declare class UpdateDIAlarmRuleRequestNotificationSettings extends $dara.
|
|
|
22663
22904
|
export declare class UpdateDIAlarmRuleRequestTriggerConditions extends $dara.Model {
|
|
22664
22905
|
/**
|
|
22665
22906
|
* @remarks
|
|
22666
|
-
*
|
|
22907
|
+
* This parameter is deprecated and replaced by the DdlTypes parameter.
|
|
22667
22908
|
*
|
|
22668
22909
|
* @deprecated
|
|
22669
22910
|
*/
|
|
@@ -22718,7 +22959,7 @@ export declare class UpdateDIAlarmRuleRequestTriggerConditions extends $dara.Mod
|
|
|
22718
22959
|
export declare class UpdateDIJobRequestJobSettingsColumnDataTypeSettings extends $dara.Model {
|
|
22719
22960
|
/**
|
|
22720
22961
|
* @remarks
|
|
22721
|
-
* The data type of the destination field.
|
|
22962
|
+
* The data type of the destination field. Valid values: bigint, boolean, string, text, datetime, timestamp, decimal, and binary. Different types of data sources support different data types.
|
|
22722
22963
|
*
|
|
22723
22964
|
* @example
|
|
22724
22965
|
* text
|
|
@@ -22726,7 +22967,7 @@ export declare class UpdateDIJobRequestJobSettingsColumnDataTypeSettings extends
|
|
|
22726
22967
|
destinationDataType?: string;
|
|
22727
22968
|
/**
|
|
22728
22969
|
* @remarks
|
|
22729
|
-
* The data type of the source field.
|
|
22970
|
+
* The data type of the source field. Valid values: Valid values: bigint, boolean, string, text, datetime, timestamp, decimal, and binary. Different types of data sources support different data types.
|
|
22730
22971
|
*
|
|
22731
22972
|
* @example
|
|
22732
22973
|
* bigint
|
|
@@ -22808,14 +23049,14 @@ export declare class UpdateDIJobRequestJobSettingsRuntimeSettings extends $dara.
|
|
|
22808
23049
|
* @remarks
|
|
22809
23050
|
* The name of the configuration item. Valid values:
|
|
22810
23051
|
*
|
|
22811
|
-
* *
|
|
22812
|
-
* *
|
|
22813
|
-
* *
|
|
22814
|
-
* * runtime.offline.concurrent:
|
|
22815
|
-
* *
|
|
22816
|
-
* * runtime.
|
|
22817
|
-
* *
|
|
22818
|
-
* * runtime.realtime.
|
|
23052
|
+
* * src.offline.datasource.max.connection: specifies the maximum number of connections that are allowed for reading data from the source of a batch synchronization task.
|
|
23053
|
+
* * dst.offline.truncate: specifies whether to clear the destination table before data writing.
|
|
23054
|
+
* * runtime.offline.speed.limit.enable: specifies whether throttling is enabled for a batch synchronization task.
|
|
23055
|
+
* * runtime.offline.concurrent: specifies the maximum number of parallel threads that are allowed for a batch synchronization task.
|
|
23056
|
+
* * runtime.enable.auto.create.schema: specifies whether schemas are automatically created in the destination of a synchronization task.
|
|
23057
|
+
* * runtime.realtime.concurrent: specifies the maximum number of parallel threads that are allowed for a real-time synchronization task.
|
|
23058
|
+
* * runtime.realtime.failover.minute.dataxcdc: specifies the maximum waiting duration before a synchronization task retries the next restart if the previous restart fails after failover occurs. Unit: minutes.
|
|
23059
|
+
* * runtime.realtime.failover.times.dataxcdc: specifies the maximum number of failures that are allowed for restarting a synchronization task after failovers occur.
|
|
22819
23060
|
*
|
|
22820
23061
|
* @example
|
|
22821
23062
|
* runtime.offline.concurrent
|
|
@@ -22843,7 +23084,21 @@ export declare class UpdateDIJobRequestJobSettingsRuntimeSettings extends $dara.
|
|
|
22843
23084
|
export declare class UpdateDIJobRequestJobSettings extends $dara.Model {
|
|
22844
23085
|
/**
|
|
22845
23086
|
* @remarks
|
|
22846
|
-
* The channel control settings for the synchronization task.
|
|
23087
|
+
* The channel control settings for the synchronization task. You can configure special channel control settings for the following synchronization links: data synchronization between Hologres data sources and data synchronization from Hologres to Kafka.
|
|
23088
|
+
*
|
|
23089
|
+
* 1. Holo2Kafka
|
|
23090
|
+
*
|
|
23091
|
+
* * Example: {"destinationChannelSettings":{"kafkaClientProperties":[{"key":"linger.ms","value":"100"}],"keyColumns":["col3"],"writeMode":"canal"}}
|
|
23092
|
+
* * kafkaClientProperties: the parameters related to a Kafka producer, which are used when you read data from a Kafka data source.
|
|
23093
|
+
* * keyColumns: the names of Kafka columns to which you want to write data.
|
|
23094
|
+
* * writeMode: the writing format. Valid values: json and canal.
|
|
23095
|
+
*
|
|
23096
|
+
* 2. Holo2Holo
|
|
23097
|
+
*
|
|
23098
|
+
* * Example: {"destinationChannelSettings":{"conflictMode":"replace","dynamicColumnAction":"replay","writeMode":"replay"}}
|
|
23099
|
+
* * conflictMode: the policy used to handle a conflict that occurs during data writing to Hologres. Valid values: replace and ignore.
|
|
23100
|
+
* * writeMode: the mode in which you want to write data to Hologres. Valid values: replay and insert.
|
|
23101
|
+
* * dynamicColumnAction: the mode in which you want to write data to dynamic columns in a Hologres table. Valid values: replay, insert, and ignore.
|
|
22847
23102
|
*
|
|
22848
23103
|
* @example
|
|
22849
23104
|
* {"structInfo":"MANAGED","storageType":"TEXTFILE","writeMode":"APPEND","partitionColumns":[{"columnName":"pt","columnType":"STRING","comment":""}],"fieldDelimiter":""}
|
|
@@ -22852,6 +23107,8 @@ export declare class UpdateDIJobRequestJobSettings extends $dara.Model {
|
|
|
22852
23107
|
/**
|
|
22853
23108
|
* @remarks
|
|
22854
23109
|
* The data type mappings between source fields and destination fields.
|
|
23110
|
+
*
|
|
23111
|
+
* > "ColumnDataTypeSettings":[ { "SourceDataType":"Bigint", "DestinationDataType":"Text" } ]
|
|
22855
23112
|
*/
|
|
22856
23113
|
columnDataTypeSettings?: UpdateDIJobRequestJobSettingsColumnDataTypeSettings[];
|
|
22857
23114
|
/**
|
|
@@ -22862,6 +23119,8 @@ export declare class UpdateDIJobRequestJobSettings extends $dara.Model {
|
|
|
22862
23119
|
/**
|
|
22863
23120
|
* @remarks
|
|
22864
23121
|
* The processing settings for DDL messages.
|
|
23122
|
+
*
|
|
23123
|
+
* > "DDLHandlingSettings":[ { "Type":"Insert", "Action":"Normal" } ]
|
|
22865
23124
|
*/
|
|
22866
23125
|
ddlHandlingSettings?: UpdateDIJobRequestJobSettingsDdlHandlingSettings[];
|
|
22867
23126
|
/**
|
|
@@ -23021,6 +23280,7 @@ export declare class UpdateDIJobRequestTableMappingsSourceObjectSelectionRules e
|
|
|
23021
23280
|
* The object type. Valid values:
|
|
23022
23281
|
*
|
|
23023
23282
|
* * Table
|
|
23283
|
+
* * Schema
|
|
23024
23284
|
* * Database
|
|
23025
23285
|
*
|
|
23026
23286
|
* @example
|
|
@@ -23066,6 +23326,7 @@ export declare class UpdateDIJobRequestTableMappingsTransformationRules extends
|
|
|
23066
23326
|
*
|
|
23067
23327
|
* * Table
|
|
23068
23328
|
* * Schema
|
|
23329
|
+
* * Database
|
|
23069
23330
|
*
|
|
23070
23331
|
* @example
|
|
23071
23332
|
* Table
|
|
@@ -23085,12 +23346,12 @@ export declare class UpdateDIJobRequestTableMappingsTransformationRules extends
|
|
|
23085
23346
|
export declare class UpdateDIJobRequestTableMappings extends $dara.Model {
|
|
23086
23347
|
/**
|
|
23087
23348
|
* @remarks
|
|
23088
|
-
* The list of rules
|
|
23349
|
+
* The list of rules that you want to use to select synchronization objects in the source.
|
|
23089
23350
|
*/
|
|
23090
23351
|
sourceObjectSelectionRules?: UpdateDIJobRequestTableMappingsSourceObjectSelectionRules[];
|
|
23091
23352
|
/**
|
|
23092
23353
|
* @remarks
|
|
23093
|
-
* The
|
|
23354
|
+
* The transformation rules that you want to apply to the synchronization objects selected from the source.
|
|
23094
23355
|
*/
|
|
23095
23356
|
transformationRules?: UpdateDIJobRequestTableMappingsTransformationRules[];
|
|
23096
23357
|
static names(): {
|
|
@@ -23113,6 +23374,9 @@ export declare class UpdateDIJobRequestTransformationRules extends $dara.Model {
|
|
|
23113
23374
|
* * Rename
|
|
23114
23375
|
* * AddColumn
|
|
23115
23376
|
* * HandleDml
|
|
23377
|
+
* * DefineIncrementalCondition
|
|
23378
|
+
* * DefineCycleScheduleSettings
|
|
23379
|
+
* * DefinePartitionKey
|
|
23116
23380
|
*
|
|
23117
23381
|
* @example
|
|
23118
23382
|
* Rename
|
|
@@ -23122,15 +23386,48 @@ export declare class UpdateDIJobRequestTransformationRules extends $dara.Model {
|
|
|
23122
23386
|
* @remarks
|
|
23123
23387
|
* The expression of the rule. The expression must be a JSON string.
|
|
23124
23388
|
*
|
|
23125
|
-
* Example of a renaming rule
|
|
23389
|
+
* 1. Example of a renaming rule
|
|
23390
|
+
*
|
|
23391
|
+
* * Example: {"expression":"${srcDatasourceName}_${srcDatabaseName}_0922" }
|
|
23392
|
+
* * expression: the expression of the renaming rule. You can use the following variables in an expression: ${srcDatasourceName}, ${srcDatabaseName}, and ${srcTableName}. ${srcDatasourceName} specifies the name of the source. ${srcDatabaseName} specifies the name of a source database. ${srcTableName} specifies the name of a source table.
|
|
23393
|
+
*
|
|
23394
|
+
* 2. Example of a column addition rule
|
|
23395
|
+
*
|
|
23396
|
+
* * Example: {"columns":[{"columnName":"my_add_column","columnValueType":"Constant","columnValue":"123"}]}
|
|
23397
|
+
* * If you do not configure such a rule, no fields are added to the destination and no values are assigned by default.
|
|
23398
|
+
* * columnName: the name of the field that is added.
|
|
23399
|
+
* * columnValueType: the value type of the field. Valid values: Constant and Variable.
|
|
23400
|
+
* * columnValue: the value of the field. If the columnValueType parameter is set to Constant, set the columnValue parameter to a constant of the STRING data type. If the columnValueType parameter is set to Variable, set the columnValue parameter to a built-in variable. The following built-in variables are supported: EXECUTE_TIME (LONG data type), DB_NAME_SRC (STRING data type), DATASOURCE_NAME_SRC (STRING data type), TABLE_NAME_SRC (STRING data type), DB_NAME_DEST (STRING data type), DATASOURCE_NAME_DEST (STRING data type), TABLE_NAME_DEST (STRING data type), and DB_NAME_SRC_TRANSED (STRING data type). EXECUTE_TIME specifies the execution time. DB_NAME_SRC specifies the name of a source database. DATASOURCE_NAME_SRC specifies the name of the source. TABLE_NAME_SRC specifies the name of a source table. DB_NAME_DEST specifies the name of a destination database. DATASOURCE_NAME_DEST specifies the name of the destination. TABLE_NAME_DEST specifies the name of a destination table. DB_NAME_SRC_TRANSED specifies the database name obtained after a transformation.
|
|
23401
|
+
*
|
|
23402
|
+
* 3. Example of a rule used to specify primary key fields for a destination table
|
|
23403
|
+
*
|
|
23404
|
+
* * Example: {"columns":["ukcolumn1","ukcolumn2"]}
|
|
23405
|
+
* * If you do not configure such a rule, the primary key fields in the mapped source table are used for the destination table by default.
|
|
23406
|
+
* * If the destination table is an existing table, Data Integration does not modify the schema of the destination table. If the specified primary key fields do not exist in the destination table, an error is reported when the synchronization task starts to run.
|
|
23407
|
+
* * If the destination table is automatically created by the system, Data Integration automatically creates the schema of the destination table. The schema contains the primary key fields that you specify. If the specified primary key fields do not exist in the destination table, an error is reported when the synchronization task starts to run.
|
|
23408
|
+
*
|
|
23409
|
+
* 4. Example of a rule used to process DML messages
|
|
23410
|
+
*
|
|
23411
|
+
* * Example: {"dmlPolicies":[{"dmlType":"Delete","dmlAction":"Filter","filterCondition":"id > 1"}]}
|
|
23412
|
+
* * If you do not configure such a rule, the default processing policy for messages generated for insert, update, and delete operations is Normal.
|
|
23413
|
+
* * dmlType: the DML operation. Valid values: Insert, Update, and Delete.
|
|
23414
|
+
* * dmlAction: the processing policy for DML messages. Valid values: Normal, Ignore, Filter, and LogicalDelete. Filter indicates conditional processing. You can set the dmlAction parameter to Filter only when the dmlType parameter is set to Update or Delete.
|
|
23415
|
+
* * filterCondition: the condition used to filter DML messages. This parameter is required only when the dmlAction parameter is set to Filter.
|
|
23416
|
+
*
|
|
23417
|
+
* 5. Example of a rule used to perform incremental synchronization
|
|
23126
23418
|
*
|
|
23127
|
-
*
|
|
23419
|
+
* * Example: {"where":"id > 0"}
|
|
23420
|
+
* * You can configure such a rule to perform incremental synchronization.
|
|
23128
23421
|
*
|
|
23129
|
-
*
|
|
23422
|
+
* 6. Example of a rule used to configure scheduling parameters for an auto triggered task
|
|
23130
23423
|
*
|
|
23131
|
-
*
|
|
23424
|
+
* * Example: {"cronExpress":" \\* \\* \\* \\* \\* \\*", "cycleType":"1"}
|
|
23425
|
+
* * You can configure such a rule to configure scheduling parameters for an auto triggered task.
|
|
23132
23426
|
*
|
|
23133
|
-
*
|
|
23427
|
+
* 7. Example of a rule used to specify a partition key
|
|
23428
|
+
*
|
|
23429
|
+
* * Example: {"columns":["id"]}
|
|
23430
|
+
* * You can configure such a rule to specify a partition key.
|
|
23134
23431
|
*
|
|
23135
23432
|
* @example
|
|
23136
23433
|
* {"expression":"${srcDatasoureName}_${srcDatabaseName}"}
|
|
@@ -23150,6 +23447,7 @@ export declare class UpdateDIJobRequestTransformationRules extends $dara.Model {
|
|
|
23150
23447
|
*
|
|
23151
23448
|
* * Table
|
|
23152
23449
|
* * Schema
|
|
23450
|
+
* * Database
|
|
23153
23451
|
*
|
|
23154
23452
|
* @example
|
|
23155
23453
|
* Table
|
|
@@ -23169,15 +23467,15 @@ export declare class UpdateDIJobRequestTransformationRules extends $dara.Model {
|
|
|
23169
23467
|
export declare class UpdateDataQualityEvaluationTaskRequestDataQualityRulesCheckingConfigThresholdsCritical extends $dara.Model {
|
|
23170
23468
|
/**
|
|
23171
23469
|
* @remarks
|
|
23172
|
-
*
|
|
23470
|
+
* The threshold expression.
|
|
23173
23471
|
*
|
|
23174
|
-
*
|
|
23472
|
+
* If the template specified by the TemplateCode parameter is about fluctuation, you must use an expression to represent the threshold for fluctuation. Examples:
|
|
23175
23473
|
*
|
|
23176
|
-
*
|
|
23177
|
-
*
|
|
23178
|
-
*
|
|
23474
|
+
* * $checkValue > 0.01
|
|
23475
|
+
* * $checkValue < -0.01
|
|
23476
|
+
* * abs($checkValue) > 0.01
|
|
23179
23477
|
*
|
|
23180
|
-
*
|
|
23478
|
+
* If the template specified by the TemplateCode parameter is about fixed value, you can also use an expression to represent the threshold. If you configure the Expression, Operator, and Value parameters for the threshold at the same time, the Expression parameter takes precedence over the Operator and Value parameters.
|
|
23181
23479
|
*
|
|
23182
23480
|
* @example
|
|
23183
23481
|
* $checkValue > 0.01
|
|
@@ -23220,15 +23518,15 @@ export declare class UpdateDataQualityEvaluationTaskRequestDataQualityRulesCheck
|
|
|
23220
23518
|
export declare class UpdateDataQualityEvaluationTaskRequestDataQualityRulesCheckingConfigThresholdsExpected extends $dara.Model {
|
|
23221
23519
|
/**
|
|
23222
23520
|
* @remarks
|
|
23223
|
-
*
|
|
23521
|
+
* The threshold expression.
|
|
23224
23522
|
*
|
|
23225
|
-
*
|
|
23523
|
+
* If the template specified by the TemplateCode parameter is about fluctuation, you must use an expression to represent the threshold for fluctuation. Examples:
|
|
23226
23524
|
*
|
|
23227
|
-
*
|
|
23228
|
-
*
|
|
23229
|
-
*
|
|
23525
|
+
* * $checkValue > 0.01
|
|
23526
|
+
* * $checkValue < -0.01
|
|
23527
|
+
* * abs($checkValue) > 0.01
|
|
23230
23528
|
*
|
|
23231
|
-
*
|
|
23529
|
+
* If the template specified by the TemplateCode parameter is about fixed value, you can also use an expression to represent the threshold. If you configure the Expression, Operator, and Value parameters for the threshold at the same time, the Expression parameter takes precedence over the Operator and Value parameters.
|
|
23232
23530
|
*
|
|
23233
23531
|
* @example
|
|
23234
23532
|
* $checkValue > 0.01
|
|
@@ -23271,15 +23569,15 @@ export declare class UpdateDataQualityEvaluationTaskRequestDataQualityRulesCheck
|
|
|
23271
23569
|
export declare class UpdateDataQualityEvaluationTaskRequestDataQualityRulesCheckingConfigThresholdsWarned extends $dara.Model {
|
|
23272
23570
|
/**
|
|
23273
23571
|
* @remarks
|
|
23274
|
-
*
|
|
23572
|
+
* The threshold expression.
|
|
23275
23573
|
*
|
|
23276
|
-
*
|
|
23574
|
+
* If the template specified by the TemplateCode parameter is about fluctuation, you must use an expression to represent the threshold for fluctuation. Examples:
|
|
23277
23575
|
*
|
|
23278
|
-
*
|
|
23279
|
-
*
|
|
23280
|
-
*
|
|
23576
|
+
* * $checkValue > 0.01
|
|
23577
|
+
* * $checkValue < -0.01
|
|
23578
|
+
* * abs($checkValue) > 0.01
|
|
23281
23579
|
*
|
|
23282
|
-
*
|
|
23580
|
+
* If the template specified by the TemplateCode parameter is about fixed value, you can also use an expression to represent the threshold. If you configure the Expression, Operator, and Value parameters for the threshold at the same time, the Expression parameter takes precedence over the Operator and Value parameters.
|
|
23283
23581
|
*
|
|
23284
23582
|
* @example
|
|
23285
23583
|
* $checkValue > 0.01
|
|
@@ -23364,7 +23662,7 @@ export declare class UpdateDataQualityEvaluationTaskRequestDataQualityRulesCheck
|
|
|
23364
23662
|
* @remarks
|
|
23365
23663
|
* The threshold calculation method. Valid values:
|
|
23366
23664
|
*
|
|
23367
|
-
* *
|
|
23665
|
+
* * Fluctation
|
|
23368
23666
|
* * Auto
|
|
23369
23667
|
* * FluctationDiscreate
|
|
23370
23668
|
* * Average
|
|
@@ -23418,24 +23716,23 @@ export declare class UpdateDataQualityEvaluationTaskRequestDataQualityRulesError
|
|
|
23418
23716
|
export declare class UpdateDataQualityEvaluationTaskRequestDataQualityRulesSamplingConfig extends $dara.Model {
|
|
23419
23717
|
/**
|
|
23420
23718
|
* @remarks
|
|
23421
|
-
* The metrics used for sampling.
|
|
23422
|
-
* Valid values:
|
|
23719
|
+
* The metrics used for sampling. Valid values:
|
|
23423
23720
|
*
|
|
23424
|
-
* * DuplicatedPercent: the proportion of the number of duplicated values of the field to the number of rows in the table.
|
|
23425
|
-
* * DuplicatedCount: the number of duplicated values of the field.
|
|
23426
|
-
* * TableSize: the table size.
|
|
23427
|
-
* * CountNotIn: the number of rows in which the field values are different from the referenced values that you specified in the rule.
|
|
23428
|
-
* * Max: the maximum value of the field.
|
|
23429
|
-
* * GroupCount: the field value and the number of rows for each field value.
|
|
23430
23721
|
* * Count: the number of rows in the table.
|
|
23431
|
-
* * CountDistinctNotIn: the number of unique values that are different from the referenced values that you specified in the rule after deduplication.
|
|
23432
23722
|
* * Min: the minimum value of the field.
|
|
23723
|
+
* * Max: the maximum value of the field.
|
|
23433
23724
|
* * Avg: the average value of the field.
|
|
23434
23725
|
* * DistinctCount: the number of unique values of the field after deduplication.
|
|
23726
|
+
* * DistinctPercent: the proportion of the number of unique values of the field after deduplication to the number of rows in the table.
|
|
23727
|
+
* * DuplicatedCount: the number of duplicated values of the field.
|
|
23728
|
+
* * DuplicatedPercent: the proportion of the number of duplicated values of the field to the number of rows in the table.
|
|
23729
|
+
* * TableSize: the table size.
|
|
23435
23730
|
* * NullValueCount: the number of rows in which the field value is null.
|
|
23436
|
-
* * UserDefinedSql: specifies that data is sampled by executing custom SQL statements.
|
|
23437
23731
|
* * NullValuePercent: the proportion of the number of rows in which the field value is null to the number of rows in the table.
|
|
23438
|
-
* *
|
|
23732
|
+
* * GroupCount: the field value and the number of rows for each field value.
|
|
23733
|
+
* * CountNotIn: the number of rows in which the field values are different from the referenced values that you specified in the rule.
|
|
23734
|
+
* * CountDistinctNotIn: the number of unique values that are different from the referenced values that you specified in the rule after deduplication.
|
|
23735
|
+
* * UserDefinedSql: specifies that data is sampled by executing custom SQL statements.
|
|
23439
23736
|
*
|
|
23440
23737
|
* @example
|
|
23441
23738
|
* CountNotIn
|
|
@@ -24186,11 +24483,12 @@ export declare class UpdateTaskRequestDataSource extends $dara.Model {
|
|
|
24186
24483
|
export declare class UpdateTaskRequestDependencies extends $dara.Model {
|
|
24187
24484
|
/**
|
|
24188
24485
|
* @remarks
|
|
24189
|
-
* The type
|
|
24190
|
-
*
|
|
24191
|
-
*
|
|
24192
|
-
*
|
|
24193
|
-
*
|
|
24486
|
+
* The dependency type. Valid values:
|
|
24487
|
+
*
|
|
24488
|
+
* * CrossCycleDependsOnChildren: cross-cycle dependency on level-1 descendant nodes
|
|
24489
|
+
* * CrossCycleDependsOnSelf: cross-cycle dependency on the current node
|
|
24490
|
+
* * CrossCycleDependsOnOtherNode: cross-cycle dependency on other nodes
|
|
24491
|
+
* * Normal: same-cycle scheduling dependency
|
|
24194
24492
|
*
|
|
24195
24493
|
* This parameter is required.
|
|
24196
24494
|
*
|
|
@@ -24200,7 +24498,7 @@ export declare class UpdateTaskRequestDependencies extends $dara.Model {
|
|
|
24200
24498
|
type?: string;
|
|
24201
24499
|
/**
|
|
24202
24500
|
* @remarks
|
|
24203
|
-
* The
|
|
24501
|
+
* The identifier of the output of the ancestor task. This parameter is returned only if `same-cycle scheduling dependencies` and the node input are configured.
|
|
24204
24502
|
*
|
|
24205
24503
|
* @example
|
|
24206
24504
|
* pre.odps_sql_demo_0
|
|
@@ -24208,7 +24506,7 @@ export declare class UpdateTaskRequestDependencies extends $dara.Model {
|
|
|
24208
24506
|
upstreamOutput?: string;
|
|
24209
24507
|
/**
|
|
24210
24508
|
* @remarks
|
|
24211
|
-
* The
|
|
24509
|
+
* The ancestor task ID. This parameter is returned only if `cross-cycle scheduling dependencies` or `same-cycle scheduling dependencies` and the node input are not configured.
|
|
24212
24510
|
*
|
|
24213
24511
|
* @example
|
|
24214
24512
|
* 1234
|
|
@@ -24236,11 +24534,12 @@ export declare class UpdateTaskRequestInputsVariables extends $dara.Model {
|
|
|
24236
24534
|
name?: string;
|
|
24237
24535
|
/**
|
|
24238
24536
|
* @remarks
|
|
24239
|
-
*
|
|
24240
|
-
*
|
|
24241
|
-
*
|
|
24242
|
-
*
|
|
24243
|
-
*
|
|
24537
|
+
* The type. Valid values:
|
|
24538
|
+
*
|
|
24539
|
+
* * Constant: constant
|
|
24540
|
+
* * PassThrough: node output
|
|
24541
|
+
* * System: variable
|
|
24542
|
+
* * NodeOutput: script output
|
|
24244
24543
|
*
|
|
24245
24544
|
* This parameter is required.
|
|
24246
24545
|
*
|
|
@@ -24270,7 +24569,7 @@ export declare class UpdateTaskRequestInputsVariables extends $dara.Model {
|
|
|
24270
24569
|
export declare class UpdateTaskRequestInputs extends $dara.Model {
|
|
24271
24570
|
/**
|
|
24272
24571
|
* @remarks
|
|
24273
|
-
* The
|
|
24572
|
+
* The variables.
|
|
24274
24573
|
*/
|
|
24275
24574
|
variables?: UpdateTaskRequestInputsVariables[];
|
|
24276
24575
|
static names(): {
|
|
@@ -24287,7 +24586,7 @@ export declare class UpdateTaskRequestInputs extends $dara.Model {
|
|
|
24287
24586
|
export declare class UpdateTaskRequestOutputsTaskOutputs extends $dara.Model {
|
|
24288
24587
|
/**
|
|
24289
24588
|
* @remarks
|
|
24290
|
-
* The output
|
|
24589
|
+
* The identifier of the output.
|
|
24291
24590
|
*
|
|
24292
24591
|
* @example
|
|
24293
24592
|
* pre.odps_sql_demo_0
|
|
@@ -24315,11 +24614,12 @@ export declare class UpdateTaskRequestOutputsVariables extends $dara.Model {
|
|
|
24315
24614
|
name?: string;
|
|
24316
24615
|
/**
|
|
24317
24616
|
* @remarks
|
|
24318
|
-
*
|
|
24319
|
-
*
|
|
24320
|
-
*
|
|
24321
|
-
*
|
|
24322
|
-
*
|
|
24617
|
+
* The type. Valid values:
|
|
24618
|
+
*
|
|
24619
|
+
* * Constant: constant
|
|
24620
|
+
* * PassThrough: node output
|
|
24621
|
+
* * System: variable
|
|
24622
|
+
* * NodeOutput: script output
|
|
24323
24623
|
*
|
|
24324
24624
|
* This parameter is required.
|
|
24325
24625
|
*
|
|
@@ -24349,12 +24649,12 @@ export declare class UpdateTaskRequestOutputsVariables extends $dara.Model {
|
|
|
24349
24649
|
export declare class UpdateTaskRequestOutputs extends $dara.Model {
|
|
24350
24650
|
/**
|
|
24351
24651
|
* @remarks
|
|
24352
|
-
* The
|
|
24652
|
+
* The task outputs.
|
|
24353
24653
|
*/
|
|
24354
24654
|
taskOutputs?: UpdateTaskRequestOutputsTaskOutputs[];
|
|
24355
24655
|
/**
|
|
24356
24656
|
* @remarks
|
|
24357
|
-
* The
|
|
24657
|
+
* The variables.
|
|
24358
24658
|
*/
|
|
24359
24659
|
variables?: UpdateTaskRequestOutputsVariables[];
|
|
24360
24660
|
static names(): {
|
|
@@ -24371,7 +24671,7 @@ export declare class UpdateTaskRequestOutputs extends $dara.Model {
|
|
|
24371
24671
|
export declare class UpdateTaskRequestRuntimeResource extends $dara.Model {
|
|
24372
24672
|
/**
|
|
24373
24673
|
* @remarks
|
|
24374
|
-
*
|
|
24674
|
+
* The default number of compute units (CUs) configured for task running.
|
|
24375
24675
|
*
|
|
24376
24676
|
* @example
|
|
24377
24677
|
* 0.25
|
|
@@ -24379,7 +24679,7 @@ export declare class UpdateTaskRequestRuntimeResource extends $dara.Model {
|
|
|
24379
24679
|
cu?: string;
|
|
24380
24680
|
/**
|
|
24381
24681
|
* @remarks
|
|
24382
|
-
* The ID of the image configured for
|
|
24682
|
+
* The ID of the image configured for task running.
|
|
24383
24683
|
*
|
|
24384
24684
|
* @example
|
|
24385
24685
|
* i-xxxxxx
|
|
@@ -24387,7 +24687,7 @@ export declare class UpdateTaskRequestRuntimeResource extends $dara.Model {
|
|
|
24387
24687
|
image?: string;
|
|
24388
24688
|
/**
|
|
24389
24689
|
* @remarks
|
|
24390
|
-
* The
|
|
24690
|
+
* The ID of the resource group for scheduling configured for task running.
|
|
24391
24691
|
*
|
|
24392
24692
|
* This parameter is required.
|
|
24393
24693
|
*
|
|
@@ -24417,7 +24717,7 @@ export declare class UpdateTaskRequestScript extends $dara.Model {
|
|
|
24417
24717
|
content?: string;
|
|
24418
24718
|
/**
|
|
24419
24719
|
* @remarks
|
|
24420
|
-
* The
|
|
24720
|
+
* The script parameters.
|
|
24421
24721
|
*
|
|
24422
24722
|
* @example
|
|
24423
24723
|
* para1=$bizdate
|
|
@@ -24447,7 +24747,7 @@ export declare class UpdateTaskRequestTags extends $dara.Model {
|
|
|
24447
24747
|
key?: string;
|
|
24448
24748
|
/**
|
|
24449
24749
|
* @remarks
|
|
24450
|
-
* The value
|
|
24750
|
+
* The tag value.
|
|
24451
24751
|
*
|
|
24452
24752
|
* @example
|
|
24453
24753
|
* value1
|
|
@@ -24467,7 +24767,7 @@ export declare class UpdateTaskRequestTags extends $dara.Model {
|
|
|
24467
24767
|
export declare class UpdateTaskRequestTrigger extends $dara.Model {
|
|
24468
24768
|
/**
|
|
24469
24769
|
* @remarks
|
|
24470
|
-
*
|
|
24770
|
+
* The CRON expression. This parameter takes effect only if the Type parameter is set to Scheduler.
|
|
24471
24771
|
*
|
|
24472
24772
|
* @example
|
|
24473
24773
|
* 00 00 00 * * ?
|
|
@@ -24475,7 +24775,7 @@ export declare class UpdateTaskRequestTrigger extends $dara.Model {
|
|
|
24475
24775
|
cron?: string;
|
|
24476
24776
|
/**
|
|
24477
24777
|
* @remarks
|
|
24478
|
-
* The
|
|
24778
|
+
* The end time of the time range during which the task is periodically scheduled. This parameter takes effect only if the Type parameter is set to Scheduler.
|
|
24479
24779
|
*
|
|
24480
24780
|
* @example
|
|
24481
24781
|
* 9999-01-01 00:00:00
|
|
@@ -24483,10 +24783,11 @@ export declare class UpdateTaskRequestTrigger extends $dara.Model {
|
|
|
24483
24783
|
endTime?: string;
|
|
24484
24784
|
/**
|
|
24485
24785
|
* @remarks
|
|
24486
|
-
* The
|
|
24487
|
-
*
|
|
24488
|
-
*
|
|
24489
|
-
*
|
|
24786
|
+
* The running mode of the task after it is triggered. This parameter takes effect only if the Type parameter is set to Scheduler. Valid values:
|
|
24787
|
+
*
|
|
24788
|
+
* * Pause
|
|
24789
|
+
* * Skip
|
|
24790
|
+
* * Normal
|
|
24490
24791
|
*
|
|
24491
24792
|
* @example
|
|
24492
24793
|
* Normal
|
|
@@ -24494,7 +24795,7 @@ export declare class UpdateTaskRequestTrigger extends $dara.Model {
|
|
|
24494
24795
|
recurrence?: string;
|
|
24495
24796
|
/**
|
|
24496
24797
|
* @remarks
|
|
24497
|
-
* The time
|
|
24798
|
+
* The start time of the time range during which the task is periodically scheduled. This parameter takes effect only if the Type parameter is set to Scheduler.
|
|
24498
24799
|
*
|
|
24499
24800
|
* @example
|
|
24500
24801
|
* 1970-01-01 00:00:00
|
|
@@ -24502,9 +24803,10 @@ export declare class UpdateTaskRequestTrigger extends $dara.Model {
|
|
|
24502
24803
|
startTime?: string;
|
|
24503
24804
|
/**
|
|
24504
24805
|
* @remarks
|
|
24505
|
-
* The type
|
|
24506
|
-
*
|
|
24507
|
-
*
|
|
24806
|
+
* The trigger type. Valid values:
|
|
24807
|
+
*
|
|
24808
|
+
* * Scheduler: periodic scheduling
|
|
24809
|
+
* * Manual: manual scheduling
|
|
24508
24810
|
*
|
|
24509
24811
|
* This parameter is required.
|
|
24510
24812
|
*
|
|
@@ -24591,11 +24893,12 @@ export declare class UpdateTaskInstancesRequestTaskInstances extends $dara.Model
|
|
|
24591
24893
|
export declare class UpdateWorkflowRequestDependencies extends $dara.Model {
|
|
24592
24894
|
/**
|
|
24593
24895
|
* @remarks
|
|
24594
|
-
* The type
|
|
24595
|
-
*
|
|
24596
|
-
*
|
|
24597
|
-
*
|
|
24598
|
-
*
|
|
24896
|
+
* The dependency type. Valid values:
|
|
24897
|
+
*
|
|
24898
|
+
* * CrossCycleDependsOnChildren: cross-cycle dependency on level-1 descendant nodes
|
|
24899
|
+
* * CrossCycleDependsOnSelf: cross-cycle dependency on the current node
|
|
24900
|
+
* * CrossCycleDependsOnOtherNode: cross-cycle dependency on other nodes
|
|
24901
|
+
* * Normal: same-cycle scheduling dependency
|
|
24599
24902
|
*
|
|
24600
24903
|
* This parameter is required.
|
|
24601
24904
|
*
|
|
@@ -24605,7 +24908,7 @@ export declare class UpdateWorkflowRequestDependencies extends $dara.Model {
|
|
|
24605
24908
|
type?: string;
|
|
24606
24909
|
/**
|
|
24607
24910
|
* @remarks
|
|
24608
|
-
* The
|
|
24911
|
+
* The identifier of the output of the ancestor task. This parameter is returned only if `same-cycle scheduling dependencies` and the node input are configured.
|
|
24609
24912
|
*
|
|
24610
24913
|
* @example
|
|
24611
24914
|
* pre.odps_sql_demo_0
|
|
@@ -24613,7 +24916,7 @@ export declare class UpdateWorkflowRequestDependencies extends $dara.Model {
|
|
|
24613
24916
|
upstreamOutput?: string;
|
|
24614
24917
|
/**
|
|
24615
24918
|
* @remarks
|
|
24616
|
-
* The
|
|
24919
|
+
* The ancestor task ID. This parameter is returned only if `cross-cycle scheduling dependencies` or `same-cycle scheduling dependencies` and the node input are not configured.
|
|
24617
24920
|
*
|
|
24618
24921
|
* @example
|
|
24619
24922
|
* 1234
|
|
@@ -24633,7 +24936,7 @@ export declare class UpdateWorkflowRequestDependencies extends $dara.Model {
|
|
|
24633
24936
|
export declare class UpdateWorkflowRequestOutputsTaskOutputs extends $dara.Model {
|
|
24634
24937
|
/**
|
|
24635
24938
|
* @remarks
|
|
24636
|
-
* The output
|
|
24939
|
+
* The identifier of the output.
|
|
24637
24940
|
*
|
|
24638
24941
|
* @example
|
|
24639
24942
|
* pre.odps_sql_demo_0
|
|
@@ -24653,7 +24956,7 @@ export declare class UpdateWorkflowRequestOutputsTaskOutputs extends $dara.Model
|
|
|
24653
24956
|
export declare class UpdateWorkflowRequestOutputs extends $dara.Model {
|
|
24654
24957
|
/**
|
|
24655
24958
|
* @remarks
|
|
24656
|
-
* The
|
|
24959
|
+
* The task outputs.
|
|
24657
24960
|
*/
|
|
24658
24961
|
taskOutputs?: UpdateWorkflowRequestOutputsTaskOutputs[];
|
|
24659
24962
|
static names(): {
|
|
@@ -24680,7 +24983,7 @@ export declare class UpdateWorkflowRequestTags extends $dara.Model {
|
|
|
24680
24983
|
key?: string;
|
|
24681
24984
|
/**
|
|
24682
24985
|
* @remarks
|
|
24683
|
-
* The value
|
|
24986
|
+
* The tag value.
|
|
24684
24987
|
*
|
|
24685
24988
|
* @example
|
|
24686
24989
|
* value1
|
|
@@ -24720,11 +25023,12 @@ export declare class UpdateWorkflowRequestTasksDataSource extends $dara.Model {
|
|
|
24720
25023
|
export declare class UpdateWorkflowRequestTasksDependencies extends $dara.Model {
|
|
24721
25024
|
/**
|
|
24722
25025
|
* @remarks
|
|
24723
|
-
* The type
|
|
24724
|
-
*
|
|
24725
|
-
*
|
|
24726
|
-
*
|
|
24727
|
-
*
|
|
25026
|
+
* The dependency type. Valid values:
|
|
25027
|
+
*
|
|
25028
|
+
* * CrossCycleDependsOnChildren: cross-cycle dependency on level-1 descendant nodes
|
|
25029
|
+
* * CrossCycleDependsOnSelf: cross-cycle dependency on the current node
|
|
25030
|
+
* * CrossCycleDependsOnOtherNode: cross-cycle dependency on other nodes
|
|
25031
|
+
* * Normal: same-cycle scheduling dependency
|
|
24728
25032
|
*
|
|
24729
25033
|
* This parameter is required.
|
|
24730
25034
|
*
|
|
@@ -24734,7 +25038,7 @@ export declare class UpdateWorkflowRequestTasksDependencies extends $dara.Model
|
|
|
24734
25038
|
type?: string;
|
|
24735
25039
|
/**
|
|
24736
25040
|
* @remarks
|
|
24737
|
-
* The
|
|
25041
|
+
* The identifier of the output of the ancestor task. This parameter is returned only if `same-cycle scheduling dependencies` and the node input are configured.
|
|
24738
25042
|
*
|
|
24739
25043
|
* @example
|
|
24740
25044
|
* pre.odps_sql_demo_0
|
|
@@ -24742,7 +25046,7 @@ export declare class UpdateWorkflowRequestTasksDependencies extends $dara.Model
|
|
|
24742
25046
|
upstreamOutput?: string;
|
|
24743
25047
|
/**
|
|
24744
25048
|
* @remarks
|
|
24745
|
-
* The
|
|
25049
|
+
* The ancestor task ID. This parameter is returned only if `cross-cycle scheduling dependencies` or `same-cycle scheduling dependencies` and the node input are not configured.
|
|
24746
25050
|
*
|
|
24747
25051
|
* @example
|
|
24748
25052
|
* 1234
|
|
@@ -24770,11 +25074,12 @@ export declare class UpdateWorkflowRequestTasksInputsVariables extends $dara.Mod
|
|
|
24770
25074
|
name?: string;
|
|
24771
25075
|
/**
|
|
24772
25076
|
* @remarks
|
|
24773
|
-
*
|
|
24774
|
-
*
|
|
24775
|
-
*
|
|
24776
|
-
*
|
|
24777
|
-
*
|
|
25077
|
+
* The type. Valid values:
|
|
25078
|
+
*
|
|
25079
|
+
* * Constant: constant
|
|
25080
|
+
* * PassThrough: node output
|
|
25081
|
+
* * System: variable
|
|
25082
|
+
* * NodeOutput: script output
|
|
24778
25083
|
*
|
|
24779
25084
|
* This parameter is required.
|
|
24780
25085
|
*
|
|
@@ -24804,7 +25109,7 @@ export declare class UpdateWorkflowRequestTasksInputsVariables extends $dara.Mod
|
|
|
24804
25109
|
export declare class UpdateWorkflowRequestTasksInputs extends $dara.Model {
|
|
24805
25110
|
/**
|
|
24806
25111
|
* @remarks
|
|
24807
|
-
* The
|
|
25112
|
+
* The variables.
|
|
24808
25113
|
*/
|
|
24809
25114
|
variables?: UpdateWorkflowRequestTasksInputsVariables[];
|
|
24810
25115
|
static names(): {
|
|
@@ -24821,7 +25126,7 @@ export declare class UpdateWorkflowRequestTasksInputs extends $dara.Model {
|
|
|
24821
25126
|
export declare class UpdateWorkflowRequestTasksOutputsTaskOutputs extends $dara.Model {
|
|
24822
25127
|
/**
|
|
24823
25128
|
* @remarks
|
|
24824
|
-
* The output
|
|
25129
|
+
* The identifier of the output.
|
|
24825
25130
|
*
|
|
24826
25131
|
* @example
|
|
24827
25132
|
* pre.odps_sql_demo_0
|
|
@@ -24849,11 +25154,12 @@ export declare class UpdateWorkflowRequestTasksOutputsVariables extends $dara.Mo
|
|
|
24849
25154
|
name?: string;
|
|
24850
25155
|
/**
|
|
24851
25156
|
* @remarks
|
|
24852
|
-
*
|
|
24853
|
-
*
|
|
24854
|
-
*
|
|
24855
|
-
*
|
|
24856
|
-
*
|
|
25157
|
+
* The type. Valid values:
|
|
25158
|
+
*
|
|
25159
|
+
* * Constant: constant
|
|
25160
|
+
* * PassThrough: node output
|
|
25161
|
+
* * System: variable
|
|
25162
|
+
* * NodeOutput: script output
|
|
24857
25163
|
*
|
|
24858
25164
|
* This parameter is required.
|
|
24859
25165
|
*
|
|
@@ -24883,12 +25189,12 @@ export declare class UpdateWorkflowRequestTasksOutputsVariables extends $dara.Mo
|
|
|
24883
25189
|
export declare class UpdateWorkflowRequestTasksOutputs extends $dara.Model {
|
|
24884
25190
|
/**
|
|
24885
25191
|
* @remarks
|
|
24886
|
-
* The
|
|
25192
|
+
* The task outputs.
|
|
24887
25193
|
*/
|
|
24888
25194
|
taskOutputs?: UpdateWorkflowRequestTasksOutputsTaskOutputs[];
|
|
24889
25195
|
/**
|
|
24890
25196
|
* @remarks
|
|
24891
|
-
* The
|
|
25197
|
+
* The variables.
|
|
24892
25198
|
*/
|
|
24893
25199
|
variables?: UpdateWorkflowRequestTasksOutputsVariables[];
|
|
24894
25200
|
static names(): {
|
|
@@ -24905,7 +25211,7 @@ export declare class UpdateWorkflowRequestTasksOutputs extends $dara.Model {
|
|
|
24905
25211
|
export declare class UpdateWorkflowRequestTasksRuntimeResource extends $dara.Model {
|
|
24906
25212
|
/**
|
|
24907
25213
|
* @remarks
|
|
24908
|
-
*
|
|
25214
|
+
* The default number of compute units (CUs) configured for task running.
|
|
24909
25215
|
*
|
|
24910
25216
|
* @example
|
|
24911
25217
|
* 0.25
|
|
@@ -24913,7 +25219,7 @@ export declare class UpdateWorkflowRequestTasksRuntimeResource extends $dara.Mod
|
|
|
24913
25219
|
cu?: string;
|
|
24914
25220
|
/**
|
|
24915
25221
|
* @remarks
|
|
24916
|
-
* The ID of the image configured for
|
|
25222
|
+
* The ID of the image configured for task running.
|
|
24917
25223
|
*
|
|
24918
25224
|
* @example
|
|
24919
25225
|
* i-xxxxxx
|
|
@@ -24921,7 +25227,7 @@ export declare class UpdateWorkflowRequestTasksRuntimeResource extends $dara.Mod
|
|
|
24921
25227
|
image?: string;
|
|
24922
25228
|
/**
|
|
24923
25229
|
* @remarks
|
|
24924
|
-
* The
|
|
25230
|
+
* The ID of the resource group for scheduling configured for task running.
|
|
24925
25231
|
*
|
|
24926
25232
|
* This parameter is required.
|
|
24927
25233
|
*
|
|
@@ -24951,7 +25257,7 @@ export declare class UpdateWorkflowRequestTasksScript extends $dara.Model {
|
|
|
24951
25257
|
content?: string;
|
|
24952
25258
|
/**
|
|
24953
25259
|
* @remarks
|
|
24954
|
-
* The
|
|
25260
|
+
* The script parameters.
|
|
24955
25261
|
*
|
|
24956
25262
|
* @example
|
|
24957
25263
|
* para1=$bizdate
|
|
@@ -24981,7 +25287,7 @@ export declare class UpdateWorkflowRequestTasksTags extends $dara.Model {
|
|
|
24981
25287
|
key?: string;
|
|
24982
25288
|
/**
|
|
24983
25289
|
* @remarks
|
|
24984
|
-
* The value
|
|
25290
|
+
* The tag value.
|
|
24985
25291
|
*
|
|
24986
25292
|
* @example
|
|
24987
25293
|
* value1
|
|
@@ -25001,10 +25307,11 @@ export declare class UpdateWorkflowRequestTasksTags extends $dara.Model {
|
|
|
25001
25307
|
export declare class UpdateWorkflowRequestTasksTrigger extends $dara.Model {
|
|
25002
25308
|
/**
|
|
25003
25309
|
* @remarks
|
|
25004
|
-
* The
|
|
25005
|
-
*
|
|
25006
|
-
*
|
|
25007
|
-
*
|
|
25310
|
+
* The running mode of the task after it is triggered. This parameter takes effect only if the Type parameter is set to Scheduler. Valid values:
|
|
25311
|
+
*
|
|
25312
|
+
* * Pause
|
|
25313
|
+
* * Skip
|
|
25314
|
+
* * Normal
|
|
25008
25315
|
*
|
|
25009
25316
|
* This parameter is required.
|
|
25010
25317
|
*
|
|
@@ -25014,9 +25321,10 @@ export declare class UpdateWorkflowRequestTasksTrigger extends $dara.Model {
|
|
|
25014
25321
|
recurrence?: string;
|
|
25015
25322
|
/**
|
|
25016
25323
|
* @remarks
|
|
25017
|
-
* The type
|
|
25018
|
-
*
|
|
25019
|
-
*
|
|
25324
|
+
* The trigger type. Valid values:
|
|
25325
|
+
*
|
|
25326
|
+
* * Scheduler: scheduling cycle-based trigger
|
|
25327
|
+
* * Manual: manual trigger
|
|
25020
25328
|
*
|
|
25021
25329
|
* @example
|
|
25022
25330
|
* Scheduler
|
|
@@ -25044,7 +25352,7 @@ export declare class UpdateWorkflowRequestTasks extends $dara.Model {
|
|
|
25044
25352
|
baseLineId?: number;
|
|
25045
25353
|
/**
|
|
25046
25354
|
* @remarks
|
|
25047
|
-
* The
|
|
25355
|
+
* The unique code of the client. This parameter is used to create a task asynchronously and implement the idempotence of the task. If you do not specify this parameter when you create the task, the system automatically generates a unique code. The unique code is uniquely associated with the task ID. If you specify this parameter when you update or delete the task, the value of this parameter must be the unique code that is used to create the task.
|
|
25048
25356
|
*
|
|
25049
25357
|
* @example
|
|
25050
25358
|
* Task_0bc5213917368545132902xxxxxxxx
|
|
@@ -25052,12 +25360,12 @@ export declare class UpdateWorkflowRequestTasks extends $dara.Model {
|
|
|
25052
25360
|
clientUniqueCode?: string;
|
|
25053
25361
|
/**
|
|
25054
25362
|
* @remarks
|
|
25055
|
-
* The associated data source
|
|
25363
|
+
* The information about the associated data source.
|
|
25056
25364
|
*/
|
|
25057
25365
|
dataSource?: UpdateWorkflowRequestTasksDataSource;
|
|
25058
25366
|
/**
|
|
25059
25367
|
* @remarks
|
|
25060
|
-
*
|
|
25368
|
+
* The dependency information.
|
|
25061
25369
|
*/
|
|
25062
25370
|
dependencies?: UpdateWorkflowRequestTasksDependencies[];
|
|
25063
25371
|
/**
|
|
@@ -25070,9 +25378,10 @@ export declare class UpdateWorkflowRequestTasks extends $dara.Model {
|
|
|
25070
25378
|
description?: string;
|
|
25071
25379
|
/**
|
|
25072
25380
|
* @remarks
|
|
25073
|
-
* The
|
|
25074
|
-
*
|
|
25075
|
-
*
|
|
25381
|
+
* The environment of the workspace. Valid values:
|
|
25382
|
+
*
|
|
25383
|
+
* * Prod
|
|
25384
|
+
* * Dev
|
|
25076
25385
|
*
|
|
25077
25386
|
* @example
|
|
25078
25387
|
* Prod
|
|
@@ -25080,7 +25389,7 @@ export declare class UpdateWorkflowRequestTasks extends $dara.Model {
|
|
|
25080
25389
|
envType?: string;
|
|
25081
25390
|
/**
|
|
25082
25391
|
* @remarks
|
|
25083
|
-
* The ID
|
|
25392
|
+
* The task ID. If you configure this parameter, full update is performed on the task. If you do not configure this parameter, another task is created.
|
|
25084
25393
|
*
|
|
25085
25394
|
* This parameter is required.
|
|
25086
25395
|
*
|
|
@@ -25090,7 +25399,7 @@ export declare class UpdateWorkflowRequestTasks extends $dara.Model {
|
|
|
25090
25399
|
id?: number;
|
|
25091
25400
|
/**
|
|
25092
25401
|
* @remarks
|
|
25093
|
-
*
|
|
25402
|
+
* The input information.
|
|
25094
25403
|
*/
|
|
25095
25404
|
inputs?: UpdateWorkflowRequestTasksInputs;
|
|
25096
25405
|
/**
|
|
@@ -25120,7 +25429,7 @@ export declare class UpdateWorkflowRequestTasks extends $dara.Model {
|
|
|
25120
25429
|
owner?: string;
|
|
25121
25430
|
/**
|
|
25122
25431
|
* @remarks
|
|
25123
|
-
* The
|
|
25432
|
+
* The rerun interval. Unit: seconds.
|
|
25124
25433
|
*
|
|
25125
25434
|
* @example
|
|
25126
25435
|
* 60
|
|
@@ -25128,10 +25437,11 @@ export declare class UpdateWorkflowRequestTasks extends $dara.Model {
|
|
|
25128
25437
|
rerunInterval?: number;
|
|
25129
25438
|
/**
|
|
25130
25439
|
* @remarks
|
|
25131
|
-
* The
|
|
25132
|
-
*
|
|
25133
|
-
*
|
|
25134
|
-
*
|
|
25440
|
+
* The rerun mode. Valid values:
|
|
25441
|
+
*
|
|
25442
|
+
* * AllDenied: The task cannot be rerun regardless of whether the task is successfully run or fails to run.
|
|
25443
|
+
* * FailureAllowed: The task can be rerun only after it fails to run.
|
|
25444
|
+
* * AllAllowed: The task can be rerun regardless of whether the task is successfully run or fails to run.
|
|
25135
25445
|
*
|
|
25136
25446
|
* This parameter is required.
|
|
25137
25447
|
*
|
|
@@ -25141,7 +25451,7 @@ export declare class UpdateWorkflowRequestTasks extends $dara.Model {
|
|
|
25141
25451
|
rerunMode?: string;
|
|
25142
25452
|
/**
|
|
25143
25453
|
* @remarks
|
|
25144
|
-
* The number of
|
|
25454
|
+
* The number of times that the task is rerun. This parameter takes effect only if the RerunMode parameter is set to AllAllowed or FailureAllowed.
|
|
25145
25455
|
*
|
|
25146
25456
|
* @example
|
|
25147
25457
|
* 3
|
|
@@ -25149,24 +25459,24 @@ export declare class UpdateWorkflowRequestTasks extends $dara.Model {
|
|
|
25149
25459
|
rerunTimes?: number;
|
|
25150
25460
|
/**
|
|
25151
25461
|
* @remarks
|
|
25152
|
-
*
|
|
25462
|
+
* The configurations of the runtime environment, such as the resource group information.
|
|
25153
25463
|
*
|
|
25154
25464
|
* This parameter is required.
|
|
25155
25465
|
*/
|
|
25156
25466
|
runtimeResource?: UpdateWorkflowRequestTasksRuntimeResource;
|
|
25157
25467
|
/**
|
|
25158
25468
|
* @remarks
|
|
25159
|
-
*
|
|
25469
|
+
* The script information.
|
|
25160
25470
|
*/
|
|
25161
25471
|
script?: UpdateWorkflowRequestTasksScript;
|
|
25162
25472
|
/**
|
|
25163
25473
|
* @remarks
|
|
25164
|
-
* The
|
|
25474
|
+
* The tags.
|
|
25165
25475
|
*/
|
|
25166
25476
|
tags?: UpdateWorkflowRequestTasksTags[];
|
|
25167
25477
|
/**
|
|
25168
25478
|
* @remarks
|
|
25169
|
-
* The timeout period of
|
|
25479
|
+
* The timeout period of task running. Unit: seconds.
|
|
25170
25480
|
*
|
|
25171
25481
|
* @example
|
|
25172
25482
|
* 3600
|
|
@@ -25174,7 +25484,7 @@ export declare class UpdateWorkflowRequestTasks extends $dara.Model {
|
|
|
25174
25484
|
timeout?: number;
|
|
25175
25485
|
/**
|
|
25176
25486
|
* @remarks
|
|
25177
|
-
* The trigger method
|
|
25487
|
+
* The trigger method.
|
|
25178
25488
|
*
|
|
25179
25489
|
* This parameter is required.
|
|
25180
25490
|
*/
|
|
@@ -25203,7 +25513,7 @@ export declare class UpdateWorkflowRequestTasks extends $dara.Model {
|
|
|
25203
25513
|
export declare class UpdateWorkflowRequestTrigger extends $dara.Model {
|
|
25204
25514
|
/**
|
|
25205
25515
|
* @remarks
|
|
25206
|
-
*
|
|
25516
|
+
* The CRON expression. This parameter takes effect only if the Type parameter is set to Scheduler.
|
|
25207
25517
|
*
|
|
25208
25518
|
* @example
|
|
25209
25519
|
* 00 00 00 * * ?
|
|
@@ -25211,7 +25521,7 @@ export declare class UpdateWorkflowRequestTrigger extends $dara.Model {
|
|
|
25211
25521
|
cron?: string;
|
|
25212
25522
|
/**
|
|
25213
25523
|
* @remarks
|
|
25214
|
-
* The
|
|
25524
|
+
* The end time of the time range during which the workflow is periodically scheduled. This parameter takes effect only if the Type parameter is set to Scheduler.
|
|
25215
25525
|
*
|
|
25216
25526
|
* @example
|
|
25217
25527
|
* 9999-01-01 00:00:00
|
|
@@ -25219,7 +25529,7 @@ export declare class UpdateWorkflowRequestTrigger extends $dara.Model {
|
|
|
25219
25529
|
endTime?: string;
|
|
25220
25530
|
/**
|
|
25221
25531
|
* @remarks
|
|
25222
|
-
* The time
|
|
25532
|
+
* The start time of the time range during which the workflow is periodically scheduled. This parameter takes effect only if the Type parameter is set to Scheduler.
|
|
25223
25533
|
*
|
|
25224
25534
|
* @example
|
|
25225
25535
|
* 1970-01-01 00:00:00
|
|
@@ -25227,9 +25537,10 @@ export declare class UpdateWorkflowRequestTrigger extends $dara.Model {
|
|
|
25227
25537
|
startTime?: string;
|
|
25228
25538
|
/**
|
|
25229
25539
|
* @remarks
|
|
25230
|
-
* The type
|
|
25231
|
-
*
|
|
25232
|
-
*
|
|
25540
|
+
* The trigger type. Valid values:
|
|
25541
|
+
*
|
|
25542
|
+
* * Scheduler: periodic scheduling
|
|
25543
|
+
* * Manual: manual scheduling
|
|
25233
25544
|
*
|
|
25234
25545
|
* This parameter is required.
|
|
25235
25546
|
*
|
|
@@ -25493,7 +25804,7 @@ export declare class AbolishDeploymentRequest extends $dara.Model {
|
|
|
25493
25804
|
* @remarks
|
|
25494
25805
|
* The DataWorks workspace ID. You can log on to the [DataWorks console](https://workbench.data.aliyun.com/console) and go to the Workspace page to query the ID.
|
|
25495
25806
|
*
|
|
25496
|
-
* You
|
|
25807
|
+
* You can use this parameter to specify the DataWorks workspace on which you want to perform the API operation.
|
|
25497
25808
|
*
|
|
25498
25809
|
* This parameter is required.
|
|
25499
25810
|
*
|
|
@@ -26354,6 +26665,7 @@ export declare class CreateDIJobRequest extends $dara.Model {
|
|
|
26354
26665
|
* The settings for the dimension of the synchronization task. The settings include processing policies for DDL messages, policies for data type mappings between source fields and destination fields, and runtime parameters of the synchronization task.
|
|
26355
26666
|
*/
|
|
26356
26667
|
jobSettings?: CreateDIJobRequestJobSettings;
|
|
26668
|
+
jobType?: string;
|
|
26357
26669
|
/**
|
|
26358
26670
|
* @remarks
|
|
26359
26671
|
* The synchronization type. Valid values:
|
|
@@ -26480,6 +26792,7 @@ export declare class CreateDIJobShrinkRequest extends $dara.Model {
|
|
|
26480
26792
|
* The settings for the dimension of the synchronization task. The settings include processing policies for DDL messages, policies for data type mappings between source fields and destination fields, and runtime parameters of the synchronization task.
|
|
26481
26793
|
*/
|
|
26482
26794
|
jobSettingsShrink?: string;
|
|
26795
|
+
jobType?: string;
|
|
26483
26796
|
/**
|
|
26484
26797
|
* @remarks
|
|
26485
26798
|
* The synchronization type. Valid values:
|
|
@@ -26781,6 +27094,8 @@ export declare class CreateDataQualityEvaluationTaskRequest extends $dara.Model
|
|
|
26781
27094
|
* @remarks
|
|
26782
27095
|
* The data source ID. You can call the [ListDataSources](https://help.aliyun.com/document_detail/211431.html) operation to query the ID.
|
|
26783
27096
|
*
|
|
27097
|
+
* This parameter is required.
|
|
27098
|
+
*
|
|
26784
27099
|
* @example
|
|
26785
27100
|
* 1
|
|
26786
27101
|
*/
|
|
@@ -26819,6 +27134,8 @@ export declare class CreateDataQualityEvaluationTaskRequest extends $dara.Model
|
|
|
26819
27134
|
*
|
|
26820
27135
|
* You can use this parameter to specify the DataWorks workspace on which you want to perform the API operation.
|
|
26821
27136
|
*
|
|
27137
|
+
* This parameter is required.
|
|
27138
|
+
*
|
|
26822
27139
|
* @example
|
|
26823
27140
|
* 10000
|
|
26824
27141
|
*/
|
|
@@ -26841,6 +27158,8 @@ export declare class CreateDataQualityEvaluationTaskRequest extends $dara.Model
|
|
|
26841
27158
|
/**
|
|
26842
27159
|
* @remarks
|
|
26843
27160
|
* The monitored object of the monitor.
|
|
27161
|
+
*
|
|
27162
|
+
* This parameter is required.
|
|
26844
27163
|
*/
|
|
26845
27164
|
target?: CreateDataQualityEvaluationTaskRequestTarget;
|
|
26846
27165
|
/**
|
|
@@ -26869,6 +27188,8 @@ export declare class CreateDataQualityEvaluationTaskShrinkRequest extends $dara.
|
|
|
26869
27188
|
* @remarks
|
|
26870
27189
|
* The data source ID. You can call the [ListDataSources](https://help.aliyun.com/document_detail/211431.html) operation to query the ID.
|
|
26871
27190
|
*
|
|
27191
|
+
* This parameter is required.
|
|
27192
|
+
*
|
|
26872
27193
|
* @example
|
|
26873
27194
|
* 1
|
|
26874
27195
|
*/
|
|
@@ -26907,6 +27228,8 @@ export declare class CreateDataQualityEvaluationTaskShrinkRequest extends $dara.
|
|
|
26907
27228
|
*
|
|
26908
27229
|
* You can use this parameter to specify the DataWorks workspace on which you want to perform the API operation.
|
|
26909
27230
|
*
|
|
27231
|
+
* This parameter is required.
|
|
27232
|
+
*
|
|
26910
27233
|
* @example
|
|
26911
27234
|
* 10000
|
|
26912
27235
|
*/
|
|
@@ -26929,6 +27252,8 @@ export declare class CreateDataQualityEvaluationTaskShrinkRequest extends $dara.
|
|
|
26929
27252
|
/**
|
|
26930
27253
|
* @remarks
|
|
26931
27254
|
* The monitored object of the monitor.
|
|
27255
|
+
*
|
|
27256
|
+
* This parameter is required.
|
|
26932
27257
|
*/
|
|
26933
27258
|
targetShrink?: string;
|
|
26934
27259
|
/**
|
|
@@ -28755,7 +29080,7 @@ export declare class CreateResourceResponse extends $dara.Model {
|
|
|
28755
29080
|
export declare class CreateResourceGroupRequest extends $dara.Model {
|
|
28756
29081
|
/**
|
|
28757
29082
|
* @remarks
|
|
28758
|
-
* The ID of the resource group.
|
|
29083
|
+
* The ID of the Alibaba Cloud resource group.
|
|
28759
29084
|
*
|
|
28760
29085
|
* @example
|
|
28761
29086
|
* rg-aek2kqofrgXXXXX
|
|
@@ -28773,7 +29098,7 @@ export declare class CreateResourceGroupRequest extends $dara.Model {
|
|
|
28773
29098
|
autoRenewEnabled?: boolean;
|
|
28774
29099
|
/**
|
|
28775
29100
|
* @remarks
|
|
28776
|
-
* The
|
|
29101
|
+
* The client token that is used to ensure the idempotence of the request.
|
|
28777
29102
|
*
|
|
28778
29103
|
* This parameter is required.
|
|
28779
29104
|
*
|
|
@@ -28783,7 +29108,7 @@ export declare class CreateResourceGroupRequest extends $dara.Model {
|
|
|
28783
29108
|
clientToken?: string;
|
|
28784
29109
|
/**
|
|
28785
29110
|
* @remarks
|
|
28786
|
-
* The name of
|
|
29111
|
+
* The name of the serverless resource group. The name can be a maximum of 128 characters in length and can contain letters, digits, and underscores (_). The name must start with a letter.
|
|
28787
29112
|
*
|
|
28788
29113
|
* This parameter is required.
|
|
28789
29114
|
*
|
|
@@ -28793,7 +29118,7 @@ export declare class CreateResourceGroupRequest extends $dara.Model {
|
|
|
28793
29118
|
name?: string;
|
|
28794
29119
|
/**
|
|
28795
29120
|
* @remarks
|
|
28796
|
-
* The duration
|
|
29121
|
+
* The subscription duration.
|
|
28797
29122
|
*
|
|
28798
29123
|
* @example
|
|
28799
29124
|
* 1
|
|
@@ -28819,7 +29144,7 @@ export declare class CreateResourceGroupRequest extends $dara.Model {
|
|
|
28819
29144
|
paymentType?: string;
|
|
28820
29145
|
/**
|
|
28821
29146
|
* @remarks
|
|
28822
|
-
*
|
|
29147
|
+
* The description of the serverless resource group. The description can be a maximum of 128 characters in length and can contain letters, digits, and underscores (_).
|
|
28823
29148
|
*
|
|
28824
29149
|
* @example
|
|
28825
29150
|
* Create a serverless resource group for common tasks
|
|
@@ -28827,7 +29152,7 @@ export declare class CreateResourceGroupRequest extends $dara.Model {
|
|
|
28827
29152
|
remark?: string;
|
|
28828
29153
|
/**
|
|
28829
29154
|
* @remarks
|
|
28830
|
-
* The specifications of the resource group. Unit:
|
|
29155
|
+
* The specifications of the serverless resource group. Unit: CU. This parameter is required only if you set the PaymentType parameter to PrePaid.
|
|
28831
29156
|
*
|
|
28832
29157
|
* @example
|
|
28833
29158
|
* 2
|
|
@@ -28867,7 +29192,7 @@ export declare class CreateResourceGroupRequest extends $dara.Model {
|
|
|
28867
29192
|
export declare class CreateResourceGroupShrinkRequest extends $dara.Model {
|
|
28868
29193
|
/**
|
|
28869
29194
|
* @remarks
|
|
28870
|
-
* The ID of the resource group.
|
|
29195
|
+
* The ID of the Alibaba Cloud resource group.
|
|
28871
29196
|
*
|
|
28872
29197
|
* @example
|
|
28873
29198
|
* rg-aek2kqofrgXXXXX
|
|
@@ -28885,7 +29210,7 @@ export declare class CreateResourceGroupShrinkRequest extends $dara.Model {
|
|
|
28885
29210
|
autoRenewEnabled?: boolean;
|
|
28886
29211
|
/**
|
|
28887
29212
|
* @remarks
|
|
28888
|
-
* The
|
|
29213
|
+
* The client token that is used to ensure the idempotence of the request.
|
|
28889
29214
|
*
|
|
28890
29215
|
* This parameter is required.
|
|
28891
29216
|
*
|
|
@@ -28895,7 +29220,7 @@ export declare class CreateResourceGroupShrinkRequest extends $dara.Model {
|
|
|
28895
29220
|
clientToken?: string;
|
|
28896
29221
|
/**
|
|
28897
29222
|
* @remarks
|
|
28898
|
-
* The name of
|
|
29223
|
+
* The name of the serverless resource group. The name can be a maximum of 128 characters in length and can contain letters, digits, and underscores (_). The name must start with a letter.
|
|
28899
29224
|
*
|
|
28900
29225
|
* This parameter is required.
|
|
28901
29226
|
*
|
|
@@ -28905,7 +29230,7 @@ export declare class CreateResourceGroupShrinkRequest extends $dara.Model {
|
|
|
28905
29230
|
name?: string;
|
|
28906
29231
|
/**
|
|
28907
29232
|
* @remarks
|
|
28908
|
-
* The duration
|
|
29233
|
+
* The subscription duration.
|
|
28909
29234
|
*
|
|
28910
29235
|
* @example
|
|
28911
29236
|
* 1
|
|
@@ -28931,7 +29256,7 @@ export declare class CreateResourceGroupShrinkRequest extends $dara.Model {
|
|
|
28931
29256
|
paymentType?: string;
|
|
28932
29257
|
/**
|
|
28933
29258
|
* @remarks
|
|
28934
|
-
*
|
|
29259
|
+
* The description of the serverless resource group. The description can be a maximum of 128 characters in length and can contain letters, digits, and underscores (_).
|
|
28935
29260
|
*
|
|
28936
29261
|
* @example
|
|
28937
29262
|
* Create a serverless resource group for common tasks
|
|
@@ -28939,7 +29264,7 @@ export declare class CreateResourceGroupShrinkRequest extends $dara.Model {
|
|
|
28939
29264
|
remark?: string;
|
|
28940
29265
|
/**
|
|
28941
29266
|
* @remarks
|
|
28942
|
-
* The specifications of the resource group. Unit:
|
|
29267
|
+
* The specifications of the serverless resource group. Unit: CU. This parameter is required only if you set the PaymentType parameter to PrePaid.
|
|
28943
29268
|
*
|
|
28944
29269
|
* @example
|
|
28945
29270
|
* 2
|
|
@@ -28979,7 +29304,7 @@ export declare class CreateResourceGroupShrinkRequest extends $dara.Model {
|
|
|
28979
29304
|
export declare class CreateResourceGroupResponseBody extends $dara.Model {
|
|
28980
29305
|
/**
|
|
28981
29306
|
* @remarks
|
|
28982
|
-
* The
|
|
29307
|
+
* The request ID.
|
|
28983
29308
|
*
|
|
28984
29309
|
* @example
|
|
28985
29310
|
* 6A6CBE87-9F91-1323-B680-E7A7065XXXXX
|
|
@@ -28987,12 +29312,12 @@ export declare class CreateResourceGroupResponseBody extends $dara.Model {
|
|
|
28987
29312
|
requestId?: string;
|
|
28988
29313
|
/**
|
|
28989
29314
|
* @remarks
|
|
28990
|
-
* The order
|
|
29315
|
+
* The information about the order that is used to create the serverless resource group.
|
|
28991
29316
|
*/
|
|
28992
29317
|
resourceGroupOrder?: CreateResourceGroupResponseBodyResourceGroupOrder;
|
|
28993
29318
|
/**
|
|
28994
29319
|
* @remarks
|
|
28995
|
-
*
|
|
29320
|
+
* Indicates whether the request was successful.
|
|
28996
29321
|
*
|
|
28997
29322
|
* @example
|
|
28998
29323
|
* true
|
|
@@ -29047,6 +29372,14 @@ export declare class CreateRouteRequest extends $dara.Model {
|
|
|
29047
29372
|
* 1000
|
|
29048
29373
|
*/
|
|
29049
29374
|
networkId?: number;
|
|
29375
|
+
/**
|
|
29376
|
+
* @remarks
|
|
29377
|
+
* Unique identifier of the serverless resource group.
|
|
29378
|
+
*
|
|
29379
|
+
* @example
|
|
29380
|
+
* Serverless_res_group_524257424564736_6831777003XXXXX
|
|
29381
|
+
*/
|
|
29382
|
+
resourceGroupId?: string;
|
|
29050
29383
|
static names(): {
|
|
29051
29384
|
[key: string]: string;
|
|
29052
29385
|
};
|
|
@@ -29253,14 +29586,15 @@ export declare class CreateWorkflowInstancesRequest extends $dara.Model {
|
|
|
29253
29586
|
comment?: string;
|
|
29254
29587
|
/**
|
|
29255
29588
|
* @remarks
|
|
29256
|
-
*
|
|
29589
|
+
* The runtime configuration.
|
|
29257
29590
|
*/
|
|
29258
29591
|
defaultRunProperties?: CreateWorkflowInstancesRequestDefaultRunProperties;
|
|
29259
29592
|
/**
|
|
29260
29593
|
* @remarks
|
|
29261
|
-
* The
|
|
29262
|
-
*
|
|
29263
|
-
*
|
|
29594
|
+
* The environment of the workspace. Valid values:
|
|
29595
|
+
*
|
|
29596
|
+
* * Prod: production environment
|
|
29597
|
+
* * Dev: development environment
|
|
29264
29598
|
*
|
|
29265
29599
|
* @example
|
|
29266
29600
|
* Prod
|
|
@@ -29293,7 +29627,7 @@ export declare class CreateWorkflowInstancesRequest extends $dara.Model {
|
|
|
29293
29627
|
projectId?: number;
|
|
29294
29628
|
/**
|
|
29295
29629
|
* @remarks
|
|
29296
|
-
*
|
|
29630
|
+
* The task-specific parameters. The value is in the JSON format. The key specifies the task ID. You can call the GetTask operation to obtain the format of the value by querying the script parameters.
|
|
29297
29631
|
*
|
|
29298
29632
|
* @example
|
|
29299
29633
|
* {
|
|
@@ -29304,10 +29638,10 @@ export declare class CreateWorkflowInstancesRequest extends $dara.Model {
|
|
|
29304
29638
|
taskParameters?: string;
|
|
29305
29639
|
/**
|
|
29306
29640
|
* @remarks
|
|
29307
|
-
* The type of the workflow instance.
|
|
29641
|
+
* The type of the workflow instance. Valid values:
|
|
29308
29642
|
*
|
|
29309
|
-
*
|
|
29310
|
-
*
|
|
29643
|
+
* * SupplementData
|
|
29644
|
+
* * ManualWorkflow
|
|
29311
29645
|
*
|
|
29312
29646
|
* This parameter is required.
|
|
29313
29647
|
*
|
|
@@ -29317,7 +29651,7 @@ export declare class CreateWorkflowInstancesRequest extends $dara.Model {
|
|
|
29317
29651
|
type?: string;
|
|
29318
29652
|
/**
|
|
29319
29653
|
* @remarks
|
|
29320
|
-
* The ID of the workflow to which the
|
|
29654
|
+
* The ID of the workflow to which the instance belongs. This parameter is set to 1 for auto triggered tasks.
|
|
29321
29655
|
*
|
|
29322
29656
|
* This parameter is required.
|
|
29323
29657
|
*
|
|
@@ -29327,7 +29661,7 @@ export declare class CreateWorkflowInstancesRequest extends $dara.Model {
|
|
|
29327
29661
|
workflowId?: number;
|
|
29328
29662
|
/**
|
|
29329
29663
|
* @remarks
|
|
29330
|
-
*
|
|
29664
|
+
* The workflow parameters. The priority of workflow parameters is higher than that of task parameters. You can call the GetTask operation to obtain the format of the workflow parameters by querying the Parameters parameter.
|
|
29331
29665
|
*
|
|
29332
29666
|
* @example
|
|
29333
29667
|
* {
|
|
@@ -29366,14 +29700,15 @@ export declare class CreateWorkflowInstancesShrinkRequest extends $dara.Model {
|
|
|
29366
29700
|
comment?: string;
|
|
29367
29701
|
/**
|
|
29368
29702
|
* @remarks
|
|
29369
|
-
*
|
|
29703
|
+
* The runtime configuration.
|
|
29370
29704
|
*/
|
|
29371
29705
|
defaultRunPropertiesShrink?: string;
|
|
29372
29706
|
/**
|
|
29373
29707
|
* @remarks
|
|
29374
|
-
* The
|
|
29375
|
-
*
|
|
29376
|
-
*
|
|
29708
|
+
* The environment of the workspace. Valid values:
|
|
29709
|
+
*
|
|
29710
|
+
* * Prod: production environment
|
|
29711
|
+
* * Dev: development environment
|
|
29377
29712
|
*
|
|
29378
29713
|
* @example
|
|
29379
29714
|
* Prod
|
|
@@ -29406,7 +29741,7 @@ export declare class CreateWorkflowInstancesShrinkRequest extends $dara.Model {
|
|
|
29406
29741
|
projectId?: number;
|
|
29407
29742
|
/**
|
|
29408
29743
|
* @remarks
|
|
29409
|
-
*
|
|
29744
|
+
* The task-specific parameters. The value is in the JSON format. The key specifies the task ID. You can call the GetTask operation to obtain the format of the value by querying the script parameters.
|
|
29410
29745
|
*
|
|
29411
29746
|
* @example
|
|
29412
29747
|
* {
|
|
@@ -29417,10 +29752,10 @@ export declare class CreateWorkflowInstancesShrinkRequest extends $dara.Model {
|
|
|
29417
29752
|
taskParameters?: string;
|
|
29418
29753
|
/**
|
|
29419
29754
|
* @remarks
|
|
29420
|
-
* The type of the workflow instance.
|
|
29755
|
+
* The type of the workflow instance. Valid values:
|
|
29421
29756
|
*
|
|
29422
|
-
*
|
|
29423
|
-
*
|
|
29757
|
+
* * SupplementData
|
|
29758
|
+
* * ManualWorkflow
|
|
29424
29759
|
*
|
|
29425
29760
|
* This parameter is required.
|
|
29426
29761
|
*
|
|
@@ -29430,7 +29765,7 @@ export declare class CreateWorkflowInstancesShrinkRequest extends $dara.Model {
|
|
|
29430
29765
|
type?: string;
|
|
29431
29766
|
/**
|
|
29432
29767
|
* @remarks
|
|
29433
|
-
* The ID of the workflow to which the
|
|
29768
|
+
* The ID of the workflow to which the instance belongs. This parameter is set to 1 for auto triggered tasks.
|
|
29434
29769
|
*
|
|
29435
29770
|
* This parameter is required.
|
|
29436
29771
|
*
|
|
@@ -29440,7 +29775,7 @@ export declare class CreateWorkflowInstancesShrinkRequest extends $dara.Model {
|
|
|
29440
29775
|
workflowId?: number;
|
|
29441
29776
|
/**
|
|
29442
29777
|
* @remarks
|
|
29443
|
-
*
|
|
29778
|
+
* The workflow parameters. The priority of workflow parameters is higher than that of task parameters. You can call the GetTask operation to obtain the format of the workflow parameters by querying the Parameters parameter.
|
|
29444
29779
|
*
|
|
29445
29780
|
* @example
|
|
29446
29781
|
* {
|
|
@@ -29570,6 +29905,81 @@ export declare class DeleteAlertRuleResponse extends $dara.Model {
|
|
|
29570
29905
|
[key: string]: any;
|
|
29571
29906
|
});
|
|
29572
29907
|
}
|
|
29908
|
+
export declare class DeleteCertificateRequest extends $dara.Model {
|
|
29909
|
+
/**
|
|
29910
|
+
* @remarks
|
|
29911
|
+
* The ID of the certificate file.
|
|
29912
|
+
*
|
|
29913
|
+
* This parameter is required.
|
|
29914
|
+
*
|
|
29915
|
+
* @example
|
|
29916
|
+
* 676303114031776
|
|
29917
|
+
*/
|
|
29918
|
+
id?: number;
|
|
29919
|
+
/**
|
|
29920
|
+
* @remarks
|
|
29921
|
+
* The ID of the workspace to which the certificate file belongs.
|
|
29922
|
+
*
|
|
29923
|
+
* @example
|
|
29924
|
+
* 106560
|
|
29925
|
+
*/
|
|
29926
|
+
projectId?: number;
|
|
29927
|
+
static names(): {
|
|
29928
|
+
[key: string]: string;
|
|
29929
|
+
};
|
|
29930
|
+
static types(): {
|
|
29931
|
+
[key: string]: any;
|
|
29932
|
+
};
|
|
29933
|
+
validate(): void;
|
|
29934
|
+
constructor(map?: {
|
|
29935
|
+
[key: string]: any;
|
|
29936
|
+
});
|
|
29937
|
+
}
|
|
29938
|
+
export declare class DeleteCertificateResponseBody extends $dara.Model {
|
|
29939
|
+
/**
|
|
29940
|
+
* @remarks
|
|
29941
|
+
* The request ID.
|
|
29942
|
+
*
|
|
29943
|
+
* @example
|
|
29944
|
+
* D9A61DC0-B922-421B-B706
|
|
29945
|
+
*/
|
|
29946
|
+
requestId?: string;
|
|
29947
|
+
/**
|
|
29948
|
+
* @remarks
|
|
29949
|
+
* Indicates whether the request was successful.
|
|
29950
|
+
*
|
|
29951
|
+
* @example
|
|
29952
|
+
* true
|
|
29953
|
+
*/
|
|
29954
|
+
success?: boolean;
|
|
29955
|
+
static names(): {
|
|
29956
|
+
[key: string]: string;
|
|
29957
|
+
};
|
|
29958
|
+
static types(): {
|
|
29959
|
+
[key: string]: any;
|
|
29960
|
+
};
|
|
29961
|
+
validate(): void;
|
|
29962
|
+
constructor(map?: {
|
|
29963
|
+
[key: string]: any;
|
|
29964
|
+
});
|
|
29965
|
+
}
|
|
29966
|
+
export declare class DeleteCertificateResponse extends $dara.Model {
|
|
29967
|
+
headers?: {
|
|
29968
|
+
[key: string]: string;
|
|
29969
|
+
};
|
|
29970
|
+
statusCode?: number;
|
|
29971
|
+
body?: DeleteCertificateResponseBody;
|
|
29972
|
+
static names(): {
|
|
29973
|
+
[key: string]: string;
|
|
29974
|
+
};
|
|
29975
|
+
static types(): {
|
|
29976
|
+
[key: string]: any;
|
|
29977
|
+
};
|
|
29978
|
+
validate(): void;
|
|
29979
|
+
constructor(map?: {
|
|
29980
|
+
[key: string]: any;
|
|
29981
|
+
});
|
|
29982
|
+
}
|
|
29573
29983
|
export declare class DeleteDIAlarmRuleRequest extends $dara.Model {
|
|
29574
29984
|
/**
|
|
29575
29985
|
* @remarks
|
|
@@ -30216,7 +30626,7 @@ export declare class DeleteFunctionRequest extends $dara.Model {
|
|
|
30216
30626
|
id?: number;
|
|
30217
30627
|
/**
|
|
30218
30628
|
* @remarks
|
|
30219
|
-
* The DataWorks workspace ID. You can log on to the [DataWorks console](https://workbench.data.aliyun.com/console) and go to the Workspace page to
|
|
30629
|
+
* The DataWorks workspace ID. You can log on to the [DataWorks console](https://workbench.data.aliyun.com/console) and go to the Workspace page to obtain the ID. You can use this parameter to specify the DataWorks workspace on which you want to perform the API operation.
|
|
30220
30630
|
*
|
|
30221
30631
|
* This parameter is required.
|
|
30222
30632
|
*
|
|
@@ -30363,9 +30773,9 @@ export declare class DeleteNodeRequest extends $dara.Model {
|
|
|
30363
30773
|
id?: number;
|
|
30364
30774
|
/**
|
|
30365
30775
|
* @remarks
|
|
30366
|
-
* The DataWorks workspace ID. You can log on to the [DataWorks console](https://workbench.data.aliyun.com/console) and go to the Workspace page to
|
|
30776
|
+
* The DataWorks workspace ID. You can log on to the [DataWorks console](https://workbench.data.aliyun.com/console) and go to the Workspace page to obtain the ID.
|
|
30367
30777
|
*
|
|
30368
|
-
* You
|
|
30778
|
+
* You can use this parameter to specify the DataWorks workspace on which you want to perform the API operation.
|
|
30369
30779
|
*
|
|
30370
30780
|
* This parameter is required.
|
|
30371
30781
|
*
|
|
@@ -30506,7 +30916,7 @@ export declare class DeleteProjectMemberRequest extends $dara.Model {
|
|
|
30506
30916
|
projectId?: number;
|
|
30507
30917
|
/**
|
|
30508
30918
|
* @remarks
|
|
30509
|
-
* The ID of the account used by the member in the workspace. You can log on to the [DataWorks console](https://dataworks.console.aliyun.com/product/ms_menu), choose More > Management Center in the left-side navigation pane, select the desired workspace on the Management Center page, and then click Go to Management Center. In the left-side navigation pane of the SettingCenter page, click Tenant Members and Roles. On the Tenant Members and Roles page, view the ID of the account used by the member in the workspace.
|
|
30919
|
+
* The ID of the account used by the member in the workspace. You can log on to the [DataWorks console](https://dataworks.console.aliyun.com/product/ms_menu), choose More > Management Center in the left-side navigation pane, select the desired workspace on the Management Center page, and then click Go to Management Center. In the left-side navigation pane of the SettingCenter page, click Tenant Members and Roles. On the **Tenant Members and Roles** page, view the ID of the account used by the member in the workspace.
|
|
30510
30920
|
*
|
|
30511
30921
|
* This parameter is required.
|
|
30512
30922
|
*
|
|
@@ -30575,7 +30985,7 @@ export declare class DeleteResourceRequest extends $dara.Model {
|
|
|
30575
30985
|
id?: number;
|
|
30576
30986
|
/**
|
|
30577
30987
|
* @remarks
|
|
30578
|
-
* The DataWorks workspace ID. You can log on to the [DataWorks console](https://workbench.data.aliyun.com/console) and go to the Workspace page to
|
|
30988
|
+
* The DataWorks workspace ID. You can log on to the [DataWorks console](https://workbench.data.aliyun.com/console) and go to the Workspace page to obtain the ID. You can use this parameter to specify the DataWorks workspace on which you want to perform the API operation.
|
|
30579
30989
|
*
|
|
30580
30990
|
* This parameter is required.
|
|
30581
30991
|
*
|
|
@@ -31247,9 +31657,9 @@ export declare class ExecDeploymentStageRequest extends $dara.Model {
|
|
|
31247
31657
|
id?: string;
|
|
31248
31658
|
/**
|
|
31249
31659
|
* @remarks
|
|
31250
|
-
* The DataWorks workspace ID. You can log on to the [DataWorks console](https://workbench.data.aliyun.com/console) and go to the Workspace page to
|
|
31660
|
+
* The DataWorks workspace ID. You can log on to the [DataWorks console](https://workbench.data.aliyun.com/console) and go to the Workspace page to obtain the ID.
|
|
31251
31661
|
*
|
|
31252
|
-
* You
|
|
31662
|
+
* You can use this parameter to specify the DataWorks workspace on which you want to perform the API operation.
|
|
31253
31663
|
*
|
|
31254
31664
|
* This parameter is required.
|
|
31255
31665
|
*
|
|
@@ -31324,9 +31734,7 @@ export declare class ExecDeploymentStageResponse extends $dara.Model {
|
|
|
31324
31734
|
export declare class ExecuteAdhocWorkflowInstanceRequest extends $dara.Model {
|
|
31325
31735
|
/**
|
|
31326
31736
|
* @remarks
|
|
31327
|
-
*
|
|
31328
|
-
*
|
|
31329
|
-
* This parameter is required.
|
|
31737
|
+
* The data timestamp.
|
|
31330
31738
|
*
|
|
31331
31739
|
* @example
|
|
31332
31740
|
* 1710239005403
|
|
@@ -31394,9 +31802,7 @@ export declare class ExecuteAdhocWorkflowInstanceRequest extends $dara.Model {
|
|
|
31394
31802
|
export declare class ExecuteAdhocWorkflowInstanceShrinkRequest extends $dara.Model {
|
|
31395
31803
|
/**
|
|
31396
31804
|
* @remarks
|
|
31397
|
-
*
|
|
31398
|
-
*
|
|
31399
|
-
* This parameter is required.
|
|
31805
|
+
* The data timestamp.
|
|
31400
31806
|
*
|
|
31401
31807
|
* @example
|
|
31402
31808
|
* 1710239005403
|
|
@@ -31568,6 +31974,66 @@ export declare class GetAlertRuleResponse extends $dara.Model {
|
|
|
31568
31974
|
[key: string]: any;
|
|
31569
31975
|
});
|
|
31570
31976
|
}
|
|
31977
|
+
export declare class GetCertificateRequest extends $dara.Model {
|
|
31978
|
+
/**
|
|
31979
|
+
* @remarks
|
|
31980
|
+
* This parameter is required.
|
|
31981
|
+
*
|
|
31982
|
+
* @example
|
|
31983
|
+
* 676303114031776
|
|
31984
|
+
*/
|
|
31985
|
+
id?: number;
|
|
31986
|
+
/**
|
|
31987
|
+
* @example
|
|
31988
|
+
* 1065601
|
|
31989
|
+
*/
|
|
31990
|
+
projectId?: number;
|
|
31991
|
+
static names(): {
|
|
31992
|
+
[key: string]: string;
|
|
31993
|
+
};
|
|
31994
|
+
static types(): {
|
|
31995
|
+
[key: string]: any;
|
|
31996
|
+
};
|
|
31997
|
+
validate(): void;
|
|
31998
|
+
constructor(map?: {
|
|
31999
|
+
[key: string]: any;
|
|
32000
|
+
});
|
|
32001
|
+
}
|
|
32002
|
+
export declare class GetCertificateResponseBody extends $dara.Model {
|
|
32003
|
+
certificate?: GetCertificateResponseBodyCertificate;
|
|
32004
|
+
/**
|
|
32005
|
+
* @example
|
|
32006
|
+
* 0000-ABCD-EFG****
|
|
32007
|
+
*/
|
|
32008
|
+
requestId?: string;
|
|
32009
|
+
static names(): {
|
|
32010
|
+
[key: string]: string;
|
|
32011
|
+
};
|
|
32012
|
+
static types(): {
|
|
32013
|
+
[key: string]: any;
|
|
32014
|
+
};
|
|
32015
|
+
validate(): void;
|
|
32016
|
+
constructor(map?: {
|
|
32017
|
+
[key: string]: any;
|
|
32018
|
+
});
|
|
32019
|
+
}
|
|
32020
|
+
export declare class GetCertificateResponse extends $dara.Model {
|
|
32021
|
+
headers?: {
|
|
32022
|
+
[key: string]: string;
|
|
32023
|
+
};
|
|
32024
|
+
statusCode?: number;
|
|
32025
|
+
body?: GetCertificateResponseBody;
|
|
32026
|
+
static names(): {
|
|
32027
|
+
[key: string]: string;
|
|
32028
|
+
};
|
|
32029
|
+
static types(): {
|
|
32030
|
+
[key: string]: any;
|
|
32031
|
+
};
|
|
32032
|
+
validate(): void;
|
|
32033
|
+
constructor(map?: {
|
|
32034
|
+
[key: string]: any;
|
|
32035
|
+
});
|
|
32036
|
+
}
|
|
31571
32037
|
export declare class GetCreateWorkflowInstancesResultRequest extends $dara.Model {
|
|
31572
32038
|
/**
|
|
31573
32039
|
* @remarks
|
|
@@ -31757,7 +32223,24 @@ export declare class GetDIJobLogRequest extends $dara.Model {
|
|
|
31757
32223
|
* 6153616438
|
|
31758
32224
|
*/
|
|
31759
32225
|
instanceId?: number;
|
|
32226
|
+
/**
|
|
32227
|
+
* @remarks
|
|
32228
|
+
* The type of the node. This parameter is applicable only to the tasks that are run on serverless resource groups. Valid values:
|
|
32229
|
+
*
|
|
32230
|
+
* * **MASTER**: the master node, which is used to query the logs of JobManagers.
|
|
32231
|
+
* * **WORKER**: the worker node, which is used to query the logs of TaskManagers.
|
|
32232
|
+
*
|
|
32233
|
+
* @example
|
|
32234
|
+
* MASTER
|
|
32235
|
+
*/
|
|
31760
32236
|
nodeType?: string;
|
|
32237
|
+
/**
|
|
32238
|
+
* @remarks
|
|
32239
|
+
* The page number of the pagination query. The value is a positive integer greater than or equal to 1.
|
|
32240
|
+
*
|
|
32241
|
+
* @example
|
|
32242
|
+
* 1
|
|
32243
|
+
*/
|
|
31761
32244
|
pageNumber?: number;
|
|
31762
32245
|
static names(): {
|
|
31763
32246
|
[key: string]: string;
|
|
@@ -32574,7 +33057,7 @@ export declare class GetProjectMemberRequest extends $dara.Model {
|
|
|
32574
33057
|
projectId?: number;
|
|
32575
33058
|
/**
|
|
32576
33059
|
* @remarks
|
|
32577
|
-
* The ID of the account used by the member. You can log on to the [DataWorks console](https://dataworks.console.aliyun.com/product/ms_menu), choose More > Management Center in the left-side navigation pane, select the desired workspace on the Management Center page, and then click Go to Management Center. In the left-side navigation pane of the SettingCenter page, click Tenant Members and Roles. On the Tenant Members and Roles page, view the
|
|
33060
|
+
* The ID of the account used by the member in the workspace. You can log on to the [DataWorks console](https://dataworks.console.aliyun.com/product/ms_menu), choose More > Management Center in the left-side navigation pane, select the desired workspace on the Management Center page, and then click Go to Management Center. In the left-side navigation pane of the SettingCenter page, click Tenant Members and Roles. On the Tenant Members and Roles page, view the ID of the account used by the member in the workspace.
|
|
32578
33061
|
*
|
|
32579
33062
|
* This parameter is required.
|
|
32580
33063
|
*
|
|
@@ -33239,6 +33722,9 @@ export declare class GetWorkflowDefinitionRequest extends $dara.Model {
|
|
|
33239
33722
|
*/
|
|
33240
33723
|
id?: number;
|
|
33241
33724
|
/**
|
|
33725
|
+
* @remarks
|
|
33726
|
+
* 查询结果是否包含工作流内部节点的脚本内容(对于内容较多的节点,可能存在较长的网络传输延时)。
|
|
33727
|
+
*
|
|
33242
33728
|
* @example
|
|
33243
33729
|
* false
|
|
33244
33730
|
*/
|
|
@@ -33489,6 +33975,127 @@ export declare class GrantMemberProjectRolesResponse extends $dara.Model {
|
|
|
33489
33975
|
[key: string]: any;
|
|
33490
33976
|
});
|
|
33491
33977
|
}
|
|
33978
|
+
export declare class ImportCertificateRequest extends $dara.Model {
|
|
33979
|
+
/**
|
|
33980
|
+
* @remarks
|
|
33981
|
+
* This parameter is required.
|
|
33982
|
+
*
|
|
33983
|
+
* @example
|
|
33984
|
+
* -
|
|
33985
|
+
*/
|
|
33986
|
+
certificateFile?: string;
|
|
33987
|
+
/**
|
|
33988
|
+
* @example
|
|
33989
|
+
* This is a file
|
|
33990
|
+
*/
|
|
33991
|
+
description?: string;
|
|
33992
|
+
/**
|
|
33993
|
+
* @remarks
|
|
33994
|
+
* This parameter is required.
|
|
33995
|
+
*
|
|
33996
|
+
* @example
|
|
33997
|
+
* ca1.crt
|
|
33998
|
+
*/
|
|
33999
|
+
name?: string;
|
|
34000
|
+
/**
|
|
34001
|
+
* @remarks
|
|
34002
|
+
* This parameter is required.
|
|
34003
|
+
*
|
|
34004
|
+
* @example
|
|
34005
|
+
* 106560
|
|
34006
|
+
*/
|
|
34007
|
+
projectId?: number;
|
|
34008
|
+
static names(): {
|
|
34009
|
+
[key: string]: string;
|
|
34010
|
+
};
|
|
34011
|
+
static types(): {
|
|
34012
|
+
[key: string]: any;
|
|
34013
|
+
};
|
|
34014
|
+
validate(): void;
|
|
34015
|
+
constructor(map?: {
|
|
34016
|
+
[key: string]: any;
|
|
34017
|
+
});
|
|
34018
|
+
}
|
|
34019
|
+
export declare class ImportCertificateAdvanceRequest extends $dara.Model {
|
|
34020
|
+
/**
|
|
34021
|
+
* @remarks
|
|
34022
|
+
* This parameter is required.
|
|
34023
|
+
*
|
|
34024
|
+
* @example
|
|
34025
|
+
* -
|
|
34026
|
+
*/
|
|
34027
|
+
certificateFileObject?: Readable;
|
|
34028
|
+
/**
|
|
34029
|
+
* @example
|
|
34030
|
+
* This is a file
|
|
34031
|
+
*/
|
|
34032
|
+
description?: string;
|
|
34033
|
+
/**
|
|
34034
|
+
* @remarks
|
|
34035
|
+
* This parameter is required.
|
|
34036
|
+
*
|
|
34037
|
+
* @example
|
|
34038
|
+
* ca1.crt
|
|
34039
|
+
*/
|
|
34040
|
+
name?: string;
|
|
34041
|
+
/**
|
|
34042
|
+
* @remarks
|
|
34043
|
+
* This parameter is required.
|
|
34044
|
+
*
|
|
34045
|
+
* @example
|
|
34046
|
+
* 106560
|
|
34047
|
+
*/
|
|
34048
|
+
projectId?: number;
|
|
34049
|
+
static names(): {
|
|
34050
|
+
[key: string]: string;
|
|
34051
|
+
};
|
|
34052
|
+
static types(): {
|
|
34053
|
+
[key: string]: any;
|
|
34054
|
+
};
|
|
34055
|
+
validate(): void;
|
|
34056
|
+
constructor(map?: {
|
|
34057
|
+
[key: string]: any;
|
|
34058
|
+
});
|
|
34059
|
+
}
|
|
34060
|
+
export declare class ImportCertificateResponseBody extends $dara.Model {
|
|
34061
|
+
/**
|
|
34062
|
+
* @example
|
|
34063
|
+
* 676303114031776
|
|
34064
|
+
*/
|
|
34065
|
+
id?: number;
|
|
34066
|
+
/**
|
|
34067
|
+
* @example
|
|
34068
|
+
* 7C352CB7-CD88-50CF-9D0D-E81BDF020E7F
|
|
34069
|
+
*/
|
|
34070
|
+
requestId?: string;
|
|
34071
|
+
static names(): {
|
|
34072
|
+
[key: string]: string;
|
|
34073
|
+
};
|
|
34074
|
+
static types(): {
|
|
34075
|
+
[key: string]: any;
|
|
34076
|
+
};
|
|
34077
|
+
validate(): void;
|
|
34078
|
+
constructor(map?: {
|
|
34079
|
+
[key: string]: any;
|
|
34080
|
+
});
|
|
34081
|
+
}
|
|
34082
|
+
export declare class ImportCertificateResponse extends $dara.Model {
|
|
34083
|
+
headers?: {
|
|
34084
|
+
[key: string]: string;
|
|
34085
|
+
};
|
|
34086
|
+
statusCode?: number;
|
|
34087
|
+
body?: ImportCertificateResponseBody;
|
|
34088
|
+
static names(): {
|
|
34089
|
+
[key: string]: string;
|
|
34090
|
+
};
|
|
34091
|
+
static types(): {
|
|
34092
|
+
[key: string]: any;
|
|
34093
|
+
};
|
|
34094
|
+
validate(): void;
|
|
34095
|
+
constructor(map?: {
|
|
34096
|
+
[key: string]: any;
|
|
34097
|
+
});
|
|
34098
|
+
}
|
|
33492
34099
|
export declare class ImportWorkflowDefinitionRequest extends $dara.Model {
|
|
33493
34100
|
/**
|
|
33494
34101
|
* @remarks
|
|
@@ -33869,6 +34476,101 @@ export declare class ListAlertRulesResponse extends $dara.Model {
|
|
|
33869
34476
|
[key: string]: any;
|
|
33870
34477
|
});
|
|
33871
34478
|
}
|
|
34479
|
+
export declare class ListCertificatesRequest extends $dara.Model {
|
|
34480
|
+
/**
|
|
34481
|
+
* @example
|
|
34482
|
+
* 1107550004253538
|
|
34483
|
+
*/
|
|
34484
|
+
createUser?: string;
|
|
34485
|
+
/**
|
|
34486
|
+
* @example
|
|
34487
|
+
* 1593877765000
|
|
34488
|
+
*/
|
|
34489
|
+
endCreateTime?: number;
|
|
34490
|
+
/**
|
|
34491
|
+
* @example
|
|
34492
|
+
* xm_create_test
|
|
34493
|
+
*/
|
|
34494
|
+
name?: string;
|
|
34495
|
+
/**
|
|
34496
|
+
* @example
|
|
34497
|
+
* Asc
|
|
34498
|
+
*/
|
|
34499
|
+
order?: string;
|
|
34500
|
+
/**
|
|
34501
|
+
* @example
|
|
34502
|
+
* 1
|
|
34503
|
+
*/
|
|
34504
|
+
pageNumber?: number;
|
|
34505
|
+
/**
|
|
34506
|
+
* @example
|
|
34507
|
+
* 10
|
|
34508
|
+
*/
|
|
34509
|
+
pageSize?: number;
|
|
34510
|
+
/**
|
|
34511
|
+
* @remarks
|
|
34512
|
+
* This parameter is required.
|
|
34513
|
+
*
|
|
34514
|
+
* @example
|
|
34515
|
+
* 10000
|
|
34516
|
+
*/
|
|
34517
|
+
projectId?: number;
|
|
34518
|
+
/**
|
|
34519
|
+
* @example
|
|
34520
|
+
* Id
|
|
34521
|
+
*/
|
|
34522
|
+
sortBy?: string;
|
|
34523
|
+
/**
|
|
34524
|
+
* @example
|
|
34525
|
+
* 1730217600000
|
|
34526
|
+
*/
|
|
34527
|
+
startCreateTime?: number;
|
|
34528
|
+
static names(): {
|
|
34529
|
+
[key: string]: string;
|
|
34530
|
+
};
|
|
34531
|
+
static types(): {
|
|
34532
|
+
[key: string]: any;
|
|
34533
|
+
};
|
|
34534
|
+
validate(): void;
|
|
34535
|
+
constructor(map?: {
|
|
34536
|
+
[key: string]: any;
|
|
34537
|
+
});
|
|
34538
|
+
}
|
|
34539
|
+
export declare class ListCertificatesResponseBody extends $dara.Model {
|
|
34540
|
+
pagingInfo?: ListCertificatesResponseBodyPagingInfo;
|
|
34541
|
+
/**
|
|
34542
|
+
* @example
|
|
34543
|
+
* ecb967ec-c137-48****
|
|
34544
|
+
*/
|
|
34545
|
+
requestId?: string;
|
|
34546
|
+
static names(): {
|
|
34547
|
+
[key: string]: string;
|
|
34548
|
+
};
|
|
34549
|
+
static types(): {
|
|
34550
|
+
[key: string]: any;
|
|
34551
|
+
};
|
|
34552
|
+
validate(): void;
|
|
34553
|
+
constructor(map?: {
|
|
34554
|
+
[key: string]: any;
|
|
34555
|
+
});
|
|
34556
|
+
}
|
|
34557
|
+
export declare class ListCertificatesResponse extends $dara.Model {
|
|
34558
|
+
headers?: {
|
|
34559
|
+
[key: string]: string;
|
|
34560
|
+
};
|
|
34561
|
+
statusCode?: number;
|
|
34562
|
+
body?: ListCertificatesResponseBody;
|
|
34563
|
+
static names(): {
|
|
34564
|
+
[key: string]: string;
|
|
34565
|
+
};
|
|
34566
|
+
static types(): {
|
|
34567
|
+
[key: string]: any;
|
|
34568
|
+
};
|
|
34569
|
+
validate(): void;
|
|
34570
|
+
constructor(map?: {
|
|
34571
|
+
[key: string]: any;
|
|
34572
|
+
});
|
|
34573
|
+
}
|
|
33872
34574
|
export declare class ListDIAlarmRulesRequest extends $dara.Model {
|
|
33873
34575
|
/**
|
|
33874
34576
|
* @remarks
|
|
@@ -34973,7 +35675,7 @@ export declare class ListDataQualityResultsRequest extends $dara.Model {
|
|
|
34973
35675
|
bizdateTo?: string;
|
|
34974
35676
|
/**
|
|
34975
35677
|
* @remarks
|
|
34976
|
-
* The earliest time when data quality
|
|
35678
|
+
* The earliest time when the data quality check result was generated.
|
|
34977
35679
|
*
|
|
34978
35680
|
* @example
|
|
34979
35681
|
* 1710239005403
|
|
@@ -34981,7 +35683,7 @@ export declare class ListDataQualityResultsRequest extends $dara.Model {
|
|
|
34981
35683
|
createTimeFrom?: number;
|
|
34982
35684
|
/**
|
|
34983
35685
|
* @remarks
|
|
34984
|
-
* The latest
|
|
35686
|
+
* The latest time when the data quality check result was generated.
|
|
34985
35687
|
*
|
|
34986
35688
|
* @example
|
|
34987
35689
|
* 1710239005403
|
|
@@ -34989,7 +35691,7 @@ export declare class ListDataQualityResultsRequest extends $dara.Model {
|
|
|
34989
35691
|
createTimeTo?: number;
|
|
34990
35692
|
/**
|
|
34991
35693
|
* @remarks
|
|
34992
|
-
* The ID of the data quality
|
|
35694
|
+
* The ID of the data quality monitoring task.
|
|
34993
35695
|
*
|
|
34994
35696
|
* @example
|
|
34995
35697
|
* 200001
|
|
@@ -34997,7 +35699,7 @@ export declare class ListDataQualityResultsRequest extends $dara.Model {
|
|
|
34997
35699
|
dataQualityEvaluationTaskId?: number;
|
|
34998
35700
|
/**
|
|
34999
35701
|
* @remarks
|
|
35000
|
-
* The ID of the
|
|
35702
|
+
* The ID of the instance generated by the check.
|
|
35001
35703
|
*
|
|
35002
35704
|
* @example
|
|
35003
35705
|
* 10001
|
|
@@ -35005,7 +35707,7 @@ export declare class ListDataQualityResultsRequest extends $dara.Model {
|
|
|
35005
35707
|
dataQualityEvaluationTaskInstanceId?: number;
|
|
35006
35708
|
/**
|
|
35007
35709
|
* @remarks
|
|
35008
|
-
* The ID of the data quality rule.
|
|
35710
|
+
* The ID of the data quality monitoring rule.
|
|
35009
35711
|
*
|
|
35010
35712
|
* @example
|
|
35011
35713
|
* 100001
|
|
@@ -35395,7 +36097,7 @@ export declare class ListDataSourcesRequest extends $dara.Model {
|
|
|
35395
36097
|
* * Desc: descending order
|
|
35396
36098
|
* * Asc: ascending order
|
|
35397
36099
|
*
|
|
35398
|
-
* Default value:
|
|
36100
|
+
* Default value: Desc
|
|
35399
36101
|
*
|
|
35400
36102
|
* @example
|
|
35401
36103
|
* Asc
|
|
@@ -35437,7 +36139,7 @@ export declare class ListDataSourcesRequest extends $dara.Model {
|
|
|
35437
36139
|
* * Id
|
|
35438
36140
|
* * Name
|
|
35439
36141
|
*
|
|
35440
|
-
* Default value:
|
|
36142
|
+
* Default value: CreateTime
|
|
35441
36143
|
*
|
|
35442
36144
|
* @example
|
|
35443
36145
|
* Id
|
|
@@ -35448,7 +36150,7 @@ export declare class ListDataSourcesRequest extends $dara.Model {
|
|
|
35448
36150
|
* The tag of the data source. This parameter specifies a filter condition.
|
|
35449
36151
|
*
|
|
35450
36152
|
* * You can specify multiple tags, which are in the logical AND relation. For example, you can query the data sources that contain the following tags: `["tag1", "tag2", "tag3"]`.
|
|
35451
|
-
* * If you do not configure this parameter, tag-based filtering is not performed.
|
|
36153
|
+
* * If you do not configure this parameter, tag-based filtering is not performed. You can specify up to 10 tags.
|
|
35452
36154
|
*
|
|
35453
36155
|
* @example
|
|
35454
36156
|
* ["tag1", "tag2", "tag3"]
|
|
@@ -35497,7 +36199,7 @@ export declare class ListDataSourcesShrinkRequest extends $dara.Model {
|
|
|
35497
36199
|
* * Desc: descending order
|
|
35498
36200
|
* * Asc: ascending order
|
|
35499
36201
|
*
|
|
35500
|
-
* Default value:
|
|
36202
|
+
* Default value: Desc
|
|
35501
36203
|
*
|
|
35502
36204
|
* @example
|
|
35503
36205
|
* Asc
|
|
@@ -35539,7 +36241,7 @@ export declare class ListDataSourcesShrinkRequest extends $dara.Model {
|
|
|
35539
36241
|
* * Id
|
|
35540
36242
|
* * Name
|
|
35541
36243
|
*
|
|
35542
|
-
* Default value:
|
|
36244
|
+
* Default value: CreateTime
|
|
35543
36245
|
*
|
|
35544
36246
|
* @example
|
|
35545
36247
|
* Id
|
|
@@ -35550,7 +36252,7 @@ export declare class ListDataSourcesShrinkRequest extends $dara.Model {
|
|
|
35550
36252
|
* The tag of the data source. This parameter specifies a filter condition.
|
|
35551
36253
|
*
|
|
35552
36254
|
* * You can specify multiple tags, which are in the logical AND relation. For example, you can query the data sources that contain the following tags: `["tag1", "tag2", "tag3"]`.
|
|
35553
|
-
* * If you do not configure this parameter, tag-based filtering is not performed.
|
|
36255
|
+
* * If you do not configure this parameter, tag-based filtering is not performed. You can specify up to 10 tags.
|
|
35554
36256
|
*
|
|
35555
36257
|
* @example
|
|
35556
36258
|
* ["tag1", "tag2", "tag3"]
|
|
@@ -36719,18 +37421,6 @@ export declare class ListProjectsRequest extends $dara.Model {
|
|
|
36719
37421
|
* * Updating
|
|
36720
37422
|
* * UpdateFailed
|
|
36721
37423
|
*
|
|
36722
|
-
* <!---->
|
|
36723
|
-
*
|
|
36724
|
-
* *
|
|
36725
|
-
* *
|
|
36726
|
-
* *
|
|
36727
|
-
* *
|
|
36728
|
-
* *
|
|
36729
|
-
* *
|
|
36730
|
-
* *
|
|
36731
|
-
* *
|
|
36732
|
-
* *
|
|
36733
|
-
*
|
|
36734
37424
|
* @example
|
|
36735
37425
|
* Available
|
|
36736
37426
|
*/
|
|
@@ -36835,18 +37525,6 @@ export declare class ListProjectsShrinkRequest extends $dara.Model {
|
|
|
36835
37525
|
* * Updating
|
|
36836
37526
|
* * UpdateFailed
|
|
36837
37527
|
*
|
|
36838
|
-
* <!---->
|
|
36839
|
-
*
|
|
36840
|
-
* *
|
|
36841
|
-
* *
|
|
36842
|
-
* *
|
|
36843
|
-
* *
|
|
36844
|
-
* *
|
|
36845
|
-
* *
|
|
36846
|
-
* *
|
|
36847
|
-
* *
|
|
36848
|
-
* *
|
|
36849
|
-
*
|
|
36850
37528
|
* @example
|
|
36851
37529
|
* Available
|
|
36852
37530
|
*/
|
|
@@ -36968,16 +37646,16 @@ export declare class ListResourceGroupsRequest extends $dara.Model {
|
|
|
36968
37646
|
resourceGroupTypes?: string[];
|
|
36969
37647
|
/**
|
|
36970
37648
|
* @remarks
|
|
36971
|
-
* The
|
|
37649
|
+
* The fields used for sorting. Fields such as TriggerTime and StartedTime are supported. The value of this parameter is in the Sort field + Sort by (Desc/Asc) format. By default, results are sorted in ascending order. Valid values:
|
|
36972
37650
|
*
|
|
36973
|
-
* * Id (Desc/Asc): resource group ID
|
|
36974
|
-
* * Name (Desc/Asc): resource group
|
|
36975
|
-
* * Remark (Desc/Asc): resource group
|
|
36976
|
-
* * Type (Desc/Asc): resource group
|
|
36977
|
-
* * Status (Desc/Asc): status of
|
|
36978
|
-
* * Spec (Desc/Asc): resource group
|
|
36979
|
-
* * CreateUser (Desc/Asc): creator
|
|
36980
|
-
* * CreateTime (Desc/Asc):
|
|
37651
|
+
* * Id (Desc/Asc): the resource group ID
|
|
37652
|
+
* * Name (Desc/Asc): the name of the resource group
|
|
37653
|
+
* * Remark (Desc/Asc): the remarks of the resource group
|
|
37654
|
+
* * Type (Desc/Asc): the type of the resource group
|
|
37655
|
+
* * Status (Desc/Asc): the status of the resource group
|
|
37656
|
+
* * Spec (Desc/Asc): the specifications of the resource group
|
|
37657
|
+
* * CreateUser (Desc/Asc): the creator of the resource group
|
|
37658
|
+
* * CreateTime (Desc/Asc): the time when the route is created
|
|
36981
37659
|
*
|
|
36982
37660
|
* Default value: CreateTime Asc
|
|
36983
37661
|
*
|
|
@@ -37065,16 +37743,16 @@ export declare class ListResourceGroupsShrinkRequest extends $dara.Model {
|
|
|
37065
37743
|
resourceGroupTypesShrink?: string;
|
|
37066
37744
|
/**
|
|
37067
37745
|
* @remarks
|
|
37068
|
-
* The
|
|
37746
|
+
* The fields used for sorting. Fields such as TriggerTime and StartedTime are supported. The value of this parameter is in the Sort field + Sort by (Desc/Asc) format. By default, results are sorted in ascending order. Valid values:
|
|
37069
37747
|
*
|
|
37070
|
-
* * Id (Desc/Asc): resource group ID
|
|
37071
|
-
* * Name (Desc/Asc): resource group
|
|
37072
|
-
* * Remark (Desc/Asc): resource group
|
|
37073
|
-
* * Type (Desc/Asc): resource group
|
|
37074
|
-
* * Status (Desc/Asc): status of
|
|
37075
|
-
* * Spec (Desc/Asc): resource group
|
|
37076
|
-
* * CreateUser (Desc/Asc): creator
|
|
37077
|
-
* * CreateTime (Desc/Asc):
|
|
37748
|
+
* * Id (Desc/Asc): the resource group ID
|
|
37749
|
+
* * Name (Desc/Asc): the name of the resource group
|
|
37750
|
+
* * Remark (Desc/Asc): the remarks of the resource group
|
|
37751
|
+
* * Type (Desc/Asc): the type of the resource group
|
|
37752
|
+
* * Status (Desc/Asc): the status of the resource group
|
|
37753
|
+
* * Spec (Desc/Asc): the specifications of the resource group
|
|
37754
|
+
* * CreateUser (Desc/Asc): the creator of the resource group
|
|
37755
|
+
* * CreateTime (Desc/Asc): the time when the route is created
|
|
37078
37756
|
*
|
|
37079
37757
|
* Default value: CreateTime Asc
|
|
37080
37758
|
*
|
|
@@ -38059,7 +38737,28 @@ export declare class ListTasksRequest extends $dara.Model {
|
|
|
38059
38737
|
sortBy?: string;
|
|
38060
38738
|
/**
|
|
38061
38739
|
* @remarks
|
|
38062
|
-
* The type of the task.
|
|
38740
|
+
* The type of the task. Valid values:
|
|
38741
|
+
*
|
|
38742
|
+
* * ODPS_SQL
|
|
38743
|
+
* * SPARK
|
|
38744
|
+
* * PY_ODPS
|
|
38745
|
+
* * PY_ODPS3
|
|
38746
|
+
* * ODPS_SCRIPT
|
|
38747
|
+
* * ODPS_MR
|
|
38748
|
+
* * COMPONENT_SQL
|
|
38749
|
+
* * EMR_HIVE
|
|
38750
|
+
* * EMR_MR
|
|
38751
|
+
* * EMR_SPARK_SQL
|
|
38752
|
+
* * EMR_SPARK
|
|
38753
|
+
* * EMR_SHELL
|
|
38754
|
+
* * EMR_PRESTO
|
|
38755
|
+
* * EMR_IMPALA
|
|
38756
|
+
* * SPARK_STREAMING
|
|
38757
|
+
* * EMR_KYUUBI
|
|
38758
|
+
* * EMR_TRINO
|
|
38759
|
+
* * HOLOGRES_SQL
|
|
38760
|
+
* * HOLOGRES_SYNC_DDL
|
|
38761
|
+
* * HOLOGRES_SYNC_DATA
|
|
38063
38762
|
*
|
|
38064
38763
|
* @example
|
|
38065
38764
|
* ODPS_SQL
|
|
@@ -38198,7 +38897,28 @@ export declare class ListTasksShrinkRequest extends $dara.Model {
|
|
|
38198
38897
|
sortBy?: string;
|
|
38199
38898
|
/**
|
|
38200
38899
|
* @remarks
|
|
38201
|
-
* The type of the task.
|
|
38900
|
+
* The type of the task. Valid values:
|
|
38901
|
+
*
|
|
38902
|
+
* * ODPS_SQL
|
|
38903
|
+
* * SPARK
|
|
38904
|
+
* * PY_ODPS
|
|
38905
|
+
* * PY_ODPS3
|
|
38906
|
+
* * ODPS_SCRIPT
|
|
38907
|
+
* * ODPS_MR
|
|
38908
|
+
* * COMPONENT_SQL
|
|
38909
|
+
* * EMR_HIVE
|
|
38910
|
+
* * EMR_MR
|
|
38911
|
+
* * EMR_SPARK_SQL
|
|
38912
|
+
* * EMR_SPARK
|
|
38913
|
+
* * EMR_SHELL
|
|
38914
|
+
* * EMR_PRESTO
|
|
38915
|
+
* * EMR_IMPALA
|
|
38916
|
+
* * SPARK_STREAMING
|
|
38917
|
+
* * EMR_KYUUBI
|
|
38918
|
+
* * EMR_TRINO
|
|
38919
|
+
* * HOLOGRES_SQL
|
|
38920
|
+
* * HOLOGRES_SYNC_DDL
|
|
38921
|
+
* * HOLOGRES_SYNC_DATA
|
|
38202
38922
|
*
|
|
38203
38923
|
* @example
|
|
38204
38924
|
* ODPS_SQL
|
|
@@ -38401,9 +39121,7 @@ export declare class ListUpstreamTasksRequest extends $dara.Model {
|
|
|
38401
39121
|
pageSize?: number;
|
|
38402
39122
|
/**
|
|
38403
39123
|
* @remarks
|
|
38404
|
-
* The environment of the workspace.
|
|
38405
|
-
*
|
|
38406
|
-
* Valid values:
|
|
39124
|
+
* The environment of the workspace. Valid values:
|
|
38407
39125
|
*
|
|
38408
39126
|
* * Prod: production environment
|
|
38409
39127
|
* * Dev: development environment
|
|
@@ -39079,9 +39797,9 @@ export declare class MoveFunctionRequest extends $dara.Model {
|
|
|
39079
39797
|
path?: string;
|
|
39080
39798
|
/**
|
|
39081
39799
|
* @remarks
|
|
39082
|
-
* The DataWorks workspace ID. You can log on to the [DataWorks console](https://workbench.data.aliyun.com/console) and go to the Workspace page to
|
|
39800
|
+
* The DataWorks workspace ID. You can log on to the [DataWorks console](https://workbench.data.aliyun.com/console) and go to the Workspace page to obtain the ID.
|
|
39083
39801
|
*
|
|
39084
|
-
*
|
|
39802
|
+
* This parameter indicates the DataWorks workspace to which the API operation is applied.
|
|
39085
39803
|
*
|
|
39086
39804
|
* This parameter is required.
|
|
39087
39805
|
*
|
|
@@ -39175,7 +39893,7 @@ export declare class MoveNodeRequest extends $dara.Model {
|
|
|
39175
39893
|
* @remarks
|
|
39176
39894
|
* The DataWorks workspace ID. You can log on to the [DataWorks console](https://workbench.data.aliyun.com/console) and go to the Workspace page to query the ID.
|
|
39177
39895
|
*
|
|
39178
|
-
* You
|
|
39896
|
+
* You can use this parameter to specify the DataWorks workspace on which you want to perform the API operation.
|
|
39179
39897
|
*
|
|
39180
39898
|
* This parameter is required.
|
|
39181
39899
|
*
|
|
@@ -39267,9 +39985,9 @@ export declare class MoveResourceRequest extends $dara.Model {
|
|
|
39267
39985
|
path?: string;
|
|
39268
39986
|
/**
|
|
39269
39987
|
* @remarks
|
|
39270
|
-
* The DataWorks workspace ID. You can log on to the [DataWorks console](https://workbench.data.aliyun.com/console) and go to the Workspace page to
|
|
39988
|
+
* The DataWorks workspace ID. You can log on to the [DataWorks console](https://workbench.data.aliyun.com/console) and go to the Workspace page to obtain the ID.
|
|
39271
39989
|
*
|
|
39272
|
-
* You
|
|
39990
|
+
* You can use this parameter to specify the DataWorks workspace on which you want to perform the API operation.
|
|
39273
39991
|
*
|
|
39274
39992
|
* This parameter is required.
|
|
39275
39993
|
*
|
|
@@ -39361,7 +40079,7 @@ export declare class MoveWorkflowDefinitionRequest extends $dara.Model {
|
|
|
39361
40079
|
path?: string;
|
|
39362
40080
|
/**
|
|
39363
40081
|
* @remarks
|
|
39364
|
-
* The DataWorks workspace ID. You can log on to the [DataWorks console](https://workbench.data.aliyun.com/console) and go to the Workspace page to
|
|
40082
|
+
* The DataWorks workspace ID. You can log on to the [DataWorks console](https://workbench.data.aliyun.com/console) and go to the Workspace page to obtain the ID. This parameter indicates the DataWorks workspace to which the API operation is applied.
|
|
39365
40083
|
*
|
|
39366
40084
|
* This parameter is required.
|
|
39367
40085
|
*
|
|
@@ -41090,6 +41808,90 @@ export declare class TagDataAssetsResponse extends $dara.Model {
|
|
|
41090
41808
|
[key: string]: any;
|
|
41091
41809
|
});
|
|
41092
41810
|
}
|
|
41811
|
+
export declare class TestDataSourceConnectivityRequest extends $dara.Model {
|
|
41812
|
+
/**
|
|
41813
|
+
* @remarks
|
|
41814
|
+
* The ID of the data source for which you want to test the network connectivity.
|
|
41815
|
+
*
|
|
41816
|
+
* This parameter is required.
|
|
41817
|
+
*
|
|
41818
|
+
* @example
|
|
41819
|
+
* 144544
|
|
41820
|
+
*/
|
|
41821
|
+
dataSourceId?: number;
|
|
41822
|
+
/**
|
|
41823
|
+
* @remarks
|
|
41824
|
+
* The DataWorks workspace ID.
|
|
41825
|
+
*
|
|
41826
|
+
* This parameter is required.
|
|
41827
|
+
*
|
|
41828
|
+
* @example
|
|
41829
|
+
* 10001
|
|
41830
|
+
*/
|
|
41831
|
+
projectId?: number;
|
|
41832
|
+
/**
|
|
41833
|
+
* @remarks
|
|
41834
|
+
* The resource group ID.
|
|
41835
|
+
*
|
|
41836
|
+
* This parameter is required.
|
|
41837
|
+
*
|
|
41838
|
+
* @example
|
|
41839
|
+
* Serverless_res_group_524257424564736_6831777003XXXXX
|
|
41840
|
+
*/
|
|
41841
|
+
resourceGroupId?: string;
|
|
41842
|
+
static names(): {
|
|
41843
|
+
[key: string]: string;
|
|
41844
|
+
};
|
|
41845
|
+
static types(): {
|
|
41846
|
+
[key: string]: any;
|
|
41847
|
+
};
|
|
41848
|
+
validate(): void;
|
|
41849
|
+
constructor(map?: {
|
|
41850
|
+
[key: string]: any;
|
|
41851
|
+
});
|
|
41852
|
+
}
|
|
41853
|
+
export declare class TestDataSourceConnectivityResponseBody extends $dara.Model {
|
|
41854
|
+
/**
|
|
41855
|
+
* @remarks
|
|
41856
|
+
* The details of the connectivity test.
|
|
41857
|
+
*/
|
|
41858
|
+
connectivity?: TestDataSourceConnectivityResponseBodyConnectivity;
|
|
41859
|
+
/**
|
|
41860
|
+
* @remarks
|
|
41861
|
+
* The request ID.
|
|
41862
|
+
*
|
|
41863
|
+
* @example
|
|
41864
|
+
* 4CDF7B72-020B-542A-8465-21CFFA81****
|
|
41865
|
+
*/
|
|
41866
|
+
requestId?: string;
|
|
41867
|
+
static names(): {
|
|
41868
|
+
[key: string]: string;
|
|
41869
|
+
};
|
|
41870
|
+
static types(): {
|
|
41871
|
+
[key: string]: any;
|
|
41872
|
+
};
|
|
41873
|
+
validate(): void;
|
|
41874
|
+
constructor(map?: {
|
|
41875
|
+
[key: string]: any;
|
|
41876
|
+
});
|
|
41877
|
+
}
|
|
41878
|
+
export declare class TestDataSourceConnectivityResponse extends $dara.Model {
|
|
41879
|
+
headers?: {
|
|
41880
|
+
[key: string]: string;
|
|
41881
|
+
};
|
|
41882
|
+
statusCode?: number;
|
|
41883
|
+
body?: TestDataSourceConnectivityResponseBody;
|
|
41884
|
+
static names(): {
|
|
41885
|
+
[key: string]: string;
|
|
41886
|
+
};
|
|
41887
|
+
static types(): {
|
|
41888
|
+
[key: string]: any;
|
|
41889
|
+
};
|
|
41890
|
+
validate(): void;
|
|
41891
|
+
constructor(map?: {
|
|
41892
|
+
[key: string]: any;
|
|
41893
|
+
});
|
|
41894
|
+
}
|
|
41093
41895
|
export declare class TriggerSchedulerTaskInstanceRequest extends $dara.Model {
|
|
41094
41896
|
/**
|
|
41095
41897
|
* @remarks
|
|
@@ -41765,11 +42567,15 @@ export declare class UpdateDIJobRequest extends $dara.Model {
|
|
|
41765
42567
|
/**
|
|
41766
42568
|
* @remarks
|
|
41767
42569
|
* The list of mappings between rules used to select synchronization objects in the source and transformation rules applied to the selected synchronization objects. Each entry in the list displays a mapping between a rule used to select synchronization objects and a transformation rule applied to the selected synchronization objects.
|
|
42570
|
+
*
|
|
42571
|
+
* > [ { "SourceObjectSelectionRules":[ { "ObjectType":"Database", "Action":"Include", "ExpressionType":"Exact", "Expression":"biz_db" }, { "ObjectType":"Schema", "Action":"Include", "ExpressionType":"Exact", "Expression":"s1" }, { "ObjectType":"Table", "Action":"Include", "ExpressionType":"Exact", "Expression":"table1" } ], "TransformationRuleNames":[ { "RuleName":"my_database_rename_rule", "RuleActionType":"Rename", "RuleTargetType":"Schema" } ] } ]
|
|
41768
42572
|
*/
|
|
41769
42573
|
tableMappings?: UpdateDIJobRequestTableMappings[];
|
|
41770
42574
|
/**
|
|
41771
42575
|
* @remarks
|
|
41772
|
-
* The list of transformation rules for objects involved in the synchronization task.
|
|
42576
|
+
* The list of transformation rules for objects involved in the synchronization task.
|
|
42577
|
+
*
|
|
42578
|
+
* > [ { "RuleName":"my_database_rename_rule", "RuleActionType":"Rename", "RuleTargetType":"Schema", "RuleExpression":"{"expression":"${srcDatasoureName}_${srcDatabaseName}"}" } ]
|
|
41773
42579
|
*/
|
|
41774
42580
|
transformationRules?: UpdateDIJobRequestTransformationRules[];
|
|
41775
42581
|
static names(): {
|
|
@@ -41833,11 +42639,15 @@ export declare class UpdateDIJobShrinkRequest extends $dara.Model {
|
|
|
41833
42639
|
/**
|
|
41834
42640
|
* @remarks
|
|
41835
42641
|
* The list of mappings between rules used to select synchronization objects in the source and transformation rules applied to the selected synchronization objects. Each entry in the list displays a mapping between a rule used to select synchronization objects and a transformation rule applied to the selected synchronization objects.
|
|
42642
|
+
*
|
|
42643
|
+
* > [ { "SourceObjectSelectionRules":[ { "ObjectType":"Database", "Action":"Include", "ExpressionType":"Exact", "Expression":"biz_db" }, { "ObjectType":"Schema", "Action":"Include", "ExpressionType":"Exact", "Expression":"s1" }, { "ObjectType":"Table", "Action":"Include", "ExpressionType":"Exact", "Expression":"table1" } ], "TransformationRuleNames":[ { "RuleName":"my_database_rename_rule", "RuleActionType":"Rename", "RuleTargetType":"Schema" } ] } ]
|
|
41836
42644
|
*/
|
|
41837
42645
|
tableMappingsShrink?: string;
|
|
41838
42646
|
/**
|
|
41839
42647
|
* @remarks
|
|
41840
|
-
* The list of transformation rules for objects involved in the synchronization task.
|
|
42648
|
+
* The list of transformation rules for objects involved in the synchronization task.
|
|
42649
|
+
*
|
|
42650
|
+
* > [ { "RuleName":"my_database_rename_rule", "RuleActionType":"Rename", "RuleTargetType":"Schema", "RuleExpression":"{"expression":"${srcDatasoureName}_${srcDatabaseName}"}" } ]
|
|
41841
42651
|
*/
|
|
41842
42652
|
transformationRulesShrink?: string;
|
|
41843
42653
|
static names(): {
|
|
@@ -42318,7 +43128,7 @@ export declare class UpdateDataQualityRuleRequest extends $dara.Model {
|
|
|
42318
43128
|
samplingConfig?: UpdateDataQualityRuleRequestSamplingConfig;
|
|
42319
43129
|
/**
|
|
42320
43130
|
* @remarks
|
|
42321
|
-
* The strength of the rule.
|
|
43131
|
+
* The strength of the rule. Valid values:
|
|
42322
43132
|
*
|
|
42323
43133
|
* * Normal
|
|
42324
43134
|
* * High
|
|
@@ -42403,7 +43213,7 @@ export declare class UpdateDataQualityRuleShrinkRequest extends $dara.Model {
|
|
|
42403
43213
|
samplingConfigShrink?: string;
|
|
42404
43214
|
/**
|
|
42405
43215
|
* @remarks
|
|
42406
|
-
* The strength of the rule.
|
|
43216
|
+
* The strength of the rule. Valid values:
|
|
42407
43217
|
*
|
|
42408
43218
|
* * Normal
|
|
42409
43219
|
* * High
|
|
@@ -43431,7 +44241,7 @@ export declare class UpdateRouteResponse extends $dara.Model {
|
|
|
43431
44241
|
export declare class UpdateTaskRequest extends $dara.Model {
|
|
43432
44242
|
/**
|
|
43433
44243
|
* @remarks
|
|
43434
|
-
* The
|
|
44244
|
+
* The unique code of the client. This code uniquely identifies a task. This parameter is used to create a task asynchronously and implement the idempotence of the task. If you do not specify this parameter when you create the task, the system automatically generates a unique code. The unique code is uniquely associated with the task ID. If you specify this parameter when you update or delete the task, the value of this parameter must be the unique code that is used to create the task.
|
|
43435
44245
|
*
|
|
43436
44246
|
* @example
|
|
43437
44247
|
* Task_0bc5213917368545132902xxxxxxxx
|
|
@@ -43439,17 +44249,17 @@ export declare class UpdateTaskRequest extends $dara.Model {
|
|
|
43439
44249
|
clientUniqueCode?: string;
|
|
43440
44250
|
/**
|
|
43441
44251
|
* @remarks
|
|
43442
|
-
* The associated data source
|
|
44252
|
+
* The information about the associated data source.
|
|
43443
44253
|
*/
|
|
43444
44254
|
dataSource?: UpdateTaskRequestDataSource;
|
|
43445
44255
|
/**
|
|
43446
44256
|
* @remarks
|
|
43447
|
-
*
|
|
44257
|
+
* The dependency information.
|
|
43448
44258
|
*/
|
|
43449
44259
|
dependencies?: UpdateTaskRequestDependencies[];
|
|
43450
44260
|
/**
|
|
43451
44261
|
* @remarks
|
|
43452
|
-
* The description.
|
|
44262
|
+
* The description of the task.
|
|
43453
44263
|
*
|
|
43454
44264
|
* @example
|
|
43455
44265
|
* test
|
|
@@ -43457,9 +44267,10 @@ export declare class UpdateTaskRequest extends $dara.Model {
|
|
|
43457
44267
|
description?: string;
|
|
43458
44268
|
/**
|
|
43459
44269
|
* @remarks
|
|
43460
|
-
* The
|
|
43461
|
-
*
|
|
43462
|
-
*
|
|
44270
|
+
* The environment of the workspace. Valid values:
|
|
44271
|
+
*
|
|
44272
|
+
* * Prod: production environment
|
|
44273
|
+
* * Dev: development environment
|
|
43463
44274
|
*
|
|
43464
44275
|
* @example
|
|
43465
44276
|
* Prod
|
|
@@ -43467,7 +44278,7 @@ export declare class UpdateTaskRequest extends $dara.Model {
|
|
|
43467
44278
|
envType?: string;
|
|
43468
44279
|
/**
|
|
43469
44280
|
* @remarks
|
|
43470
|
-
* The ID
|
|
44281
|
+
* The task ID.
|
|
43471
44282
|
*
|
|
43472
44283
|
* This parameter is required.
|
|
43473
44284
|
*
|
|
@@ -43477,14 +44288,15 @@ export declare class UpdateTaskRequest extends $dara.Model {
|
|
|
43477
44288
|
id?: number;
|
|
43478
44289
|
/**
|
|
43479
44290
|
* @remarks
|
|
43480
|
-
*
|
|
44291
|
+
* The input information.
|
|
43481
44292
|
*/
|
|
43482
44293
|
inputs?: UpdateTaskRequestInputs;
|
|
43483
44294
|
/**
|
|
43484
44295
|
* @remarks
|
|
43485
|
-
* The instance generation mode.
|
|
43486
|
-
*
|
|
43487
|
-
*
|
|
44296
|
+
* The instance generation mode. Valid values:
|
|
44297
|
+
*
|
|
44298
|
+
* * T+1
|
|
44299
|
+
* * Immediately
|
|
43488
44300
|
*
|
|
43489
44301
|
* @example
|
|
43490
44302
|
* T+1
|
|
@@ -43492,7 +44304,7 @@ export declare class UpdateTaskRequest extends $dara.Model {
|
|
|
43492
44304
|
instanceMode?: string;
|
|
43493
44305
|
/**
|
|
43494
44306
|
* @remarks
|
|
43495
|
-
* The name.
|
|
44307
|
+
* The name of the task.
|
|
43496
44308
|
*
|
|
43497
44309
|
* This parameter is required.
|
|
43498
44310
|
*
|
|
@@ -43507,7 +44319,7 @@ export declare class UpdateTaskRequest extends $dara.Model {
|
|
|
43507
44319
|
outputs?: UpdateTaskRequestOutputs;
|
|
43508
44320
|
/**
|
|
43509
44321
|
* @remarks
|
|
43510
|
-
* The account ID of the owner
|
|
44322
|
+
* The account ID of the task owner.
|
|
43511
44323
|
*
|
|
43512
44324
|
* This parameter is required.
|
|
43513
44325
|
*
|
|
@@ -43517,7 +44329,7 @@ export declare class UpdateTaskRequest extends $dara.Model {
|
|
|
43517
44329
|
owner?: string;
|
|
43518
44330
|
/**
|
|
43519
44331
|
* @remarks
|
|
43520
|
-
* The
|
|
44332
|
+
* The rerun interval. Unit: seconds.
|
|
43521
44333
|
*
|
|
43522
44334
|
* @example
|
|
43523
44335
|
* 60
|
|
@@ -43525,10 +44337,11 @@ export declare class UpdateTaskRequest extends $dara.Model {
|
|
|
43525
44337
|
rerunInterval?: number;
|
|
43526
44338
|
/**
|
|
43527
44339
|
* @remarks
|
|
43528
|
-
* The
|
|
43529
|
-
*
|
|
43530
|
-
*
|
|
43531
|
-
*
|
|
44340
|
+
* The rerun mode. Valid values:
|
|
44341
|
+
*
|
|
44342
|
+
* * AllDenied: The task cannot be rerun regardless of whether the task is successfully run or fails to run.
|
|
44343
|
+
* * FailureAllowed: The task can be rerun only after it fails to run.
|
|
44344
|
+
* * AllAllowed: The task can be rerun regardless of whether the task is successfully run or fails to run.
|
|
43532
44345
|
*
|
|
43533
44346
|
* This parameter is required.
|
|
43534
44347
|
*
|
|
@@ -43538,7 +44351,7 @@ export declare class UpdateTaskRequest extends $dara.Model {
|
|
|
43538
44351
|
rerunMode?: string;
|
|
43539
44352
|
/**
|
|
43540
44353
|
* @remarks
|
|
43541
|
-
* The number of
|
|
44354
|
+
* The number of times that the task is rerun. This parameter takes effect only if the RerunMode parameter is set to AllAllowed or FailureAllowed.
|
|
43542
44355
|
*
|
|
43543
44356
|
* @example
|
|
43544
44357
|
* 3
|
|
@@ -43546,24 +44359,24 @@ export declare class UpdateTaskRequest extends $dara.Model {
|
|
|
43546
44359
|
rerunTimes?: number;
|
|
43547
44360
|
/**
|
|
43548
44361
|
* @remarks
|
|
43549
|
-
*
|
|
44362
|
+
* The configurations of the runtime environment, such as the resource group information.
|
|
43550
44363
|
*
|
|
43551
44364
|
* This parameter is required.
|
|
43552
44365
|
*/
|
|
43553
44366
|
runtimeResource?: UpdateTaskRequestRuntimeResource;
|
|
43554
44367
|
/**
|
|
43555
44368
|
* @remarks
|
|
43556
|
-
*
|
|
44369
|
+
* The script information.
|
|
43557
44370
|
*/
|
|
43558
44371
|
script?: UpdateTaskRequestScript;
|
|
43559
44372
|
/**
|
|
43560
44373
|
* @remarks
|
|
43561
|
-
* The
|
|
44374
|
+
* The tags.
|
|
43562
44375
|
*/
|
|
43563
44376
|
tags?: UpdateTaskRequestTags[];
|
|
43564
44377
|
/**
|
|
43565
44378
|
* @remarks
|
|
43566
|
-
* The timeout period of
|
|
44379
|
+
* The timeout period of task running. Unit: seconds.
|
|
43567
44380
|
*
|
|
43568
44381
|
* @example
|
|
43569
44382
|
* 3600
|
|
@@ -43571,7 +44384,7 @@ export declare class UpdateTaskRequest extends $dara.Model {
|
|
|
43571
44384
|
timeout?: number;
|
|
43572
44385
|
/**
|
|
43573
44386
|
* @remarks
|
|
43574
|
-
* The trigger method
|
|
44387
|
+
* The trigger method.
|
|
43575
44388
|
*
|
|
43576
44389
|
* This parameter is required.
|
|
43577
44390
|
*/
|
|
@@ -43590,7 +44403,7 @@ export declare class UpdateTaskRequest extends $dara.Model {
|
|
|
43590
44403
|
export declare class UpdateTaskShrinkRequest extends $dara.Model {
|
|
43591
44404
|
/**
|
|
43592
44405
|
* @remarks
|
|
43593
|
-
* The
|
|
44406
|
+
* The unique code of the client. This code uniquely identifies a task. This parameter is used to create a task asynchronously and implement the idempotence of the task. If you do not specify this parameter when you create the task, the system automatically generates a unique code. The unique code is uniquely associated with the task ID. If you specify this parameter when you update or delete the task, the value of this parameter must be the unique code that is used to create the task.
|
|
43594
44407
|
*
|
|
43595
44408
|
* @example
|
|
43596
44409
|
* Task_0bc5213917368545132902xxxxxxxx
|
|
@@ -43598,17 +44411,17 @@ export declare class UpdateTaskShrinkRequest extends $dara.Model {
|
|
|
43598
44411
|
clientUniqueCode?: string;
|
|
43599
44412
|
/**
|
|
43600
44413
|
* @remarks
|
|
43601
|
-
* The associated data source
|
|
44414
|
+
* The information about the associated data source.
|
|
43602
44415
|
*/
|
|
43603
44416
|
dataSourceShrink?: string;
|
|
43604
44417
|
/**
|
|
43605
44418
|
* @remarks
|
|
43606
|
-
*
|
|
44419
|
+
* The dependency information.
|
|
43607
44420
|
*/
|
|
43608
44421
|
dependenciesShrink?: string;
|
|
43609
44422
|
/**
|
|
43610
44423
|
* @remarks
|
|
43611
|
-
* The description.
|
|
44424
|
+
* The description of the task.
|
|
43612
44425
|
*
|
|
43613
44426
|
* @example
|
|
43614
44427
|
* test
|
|
@@ -43616,9 +44429,10 @@ export declare class UpdateTaskShrinkRequest extends $dara.Model {
|
|
|
43616
44429
|
description?: string;
|
|
43617
44430
|
/**
|
|
43618
44431
|
* @remarks
|
|
43619
|
-
* The
|
|
43620
|
-
*
|
|
43621
|
-
*
|
|
44432
|
+
* The environment of the workspace. Valid values:
|
|
44433
|
+
*
|
|
44434
|
+
* * Prod: production environment
|
|
44435
|
+
* * Dev: development environment
|
|
43622
44436
|
*
|
|
43623
44437
|
* @example
|
|
43624
44438
|
* Prod
|
|
@@ -43626,7 +44440,7 @@ export declare class UpdateTaskShrinkRequest extends $dara.Model {
|
|
|
43626
44440
|
envType?: string;
|
|
43627
44441
|
/**
|
|
43628
44442
|
* @remarks
|
|
43629
|
-
* The ID
|
|
44443
|
+
* The task ID.
|
|
43630
44444
|
*
|
|
43631
44445
|
* This parameter is required.
|
|
43632
44446
|
*
|
|
@@ -43636,14 +44450,15 @@ export declare class UpdateTaskShrinkRequest extends $dara.Model {
|
|
|
43636
44450
|
id?: number;
|
|
43637
44451
|
/**
|
|
43638
44452
|
* @remarks
|
|
43639
|
-
*
|
|
44453
|
+
* The input information.
|
|
43640
44454
|
*/
|
|
43641
44455
|
inputsShrink?: string;
|
|
43642
44456
|
/**
|
|
43643
44457
|
* @remarks
|
|
43644
|
-
* The instance generation mode.
|
|
43645
|
-
*
|
|
43646
|
-
*
|
|
44458
|
+
* The instance generation mode. Valid values:
|
|
44459
|
+
*
|
|
44460
|
+
* * T+1
|
|
44461
|
+
* * Immediately
|
|
43647
44462
|
*
|
|
43648
44463
|
* @example
|
|
43649
44464
|
* T+1
|
|
@@ -43651,7 +44466,7 @@ export declare class UpdateTaskShrinkRequest extends $dara.Model {
|
|
|
43651
44466
|
instanceMode?: string;
|
|
43652
44467
|
/**
|
|
43653
44468
|
* @remarks
|
|
43654
|
-
* The name.
|
|
44469
|
+
* The name of the task.
|
|
43655
44470
|
*
|
|
43656
44471
|
* This parameter is required.
|
|
43657
44472
|
*
|
|
@@ -43666,7 +44481,7 @@ export declare class UpdateTaskShrinkRequest extends $dara.Model {
|
|
|
43666
44481
|
outputsShrink?: string;
|
|
43667
44482
|
/**
|
|
43668
44483
|
* @remarks
|
|
43669
|
-
* The account ID of the owner
|
|
44484
|
+
* The account ID of the task owner.
|
|
43670
44485
|
*
|
|
43671
44486
|
* This parameter is required.
|
|
43672
44487
|
*
|
|
@@ -43676,7 +44491,7 @@ export declare class UpdateTaskShrinkRequest extends $dara.Model {
|
|
|
43676
44491
|
owner?: string;
|
|
43677
44492
|
/**
|
|
43678
44493
|
* @remarks
|
|
43679
|
-
* The
|
|
44494
|
+
* The rerun interval. Unit: seconds.
|
|
43680
44495
|
*
|
|
43681
44496
|
* @example
|
|
43682
44497
|
* 60
|
|
@@ -43684,10 +44499,11 @@ export declare class UpdateTaskShrinkRequest extends $dara.Model {
|
|
|
43684
44499
|
rerunInterval?: number;
|
|
43685
44500
|
/**
|
|
43686
44501
|
* @remarks
|
|
43687
|
-
* The
|
|
43688
|
-
*
|
|
43689
|
-
*
|
|
43690
|
-
*
|
|
44502
|
+
* The rerun mode. Valid values:
|
|
44503
|
+
*
|
|
44504
|
+
* * AllDenied: The task cannot be rerun regardless of whether the task is successfully run or fails to run.
|
|
44505
|
+
* * FailureAllowed: The task can be rerun only after it fails to run.
|
|
44506
|
+
* * AllAllowed: The task can be rerun regardless of whether the task is successfully run or fails to run.
|
|
43691
44507
|
*
|
|
43692
44508
|
* This parameter is required.
|
|
43693
44509
|
*
|
|
@@ -43697,7 +44513,7 @@ export declare class UpdateTaskShrinkRequest extends $dara.Model {
|
|
|
43697
44513
|
rerunMode?: string;
|
|
43698
44514
|
/**
|
|
43699
44515
|
* @remarks
|
|
43700
|
-
* The number of
|
|
44516
|
+
* The number of times that the task is rerun. This parameter takes effect only if the RerunMode parameter is set to AllAllowed or FailureAllowed.
|
|
43701
44517
|
*
|
|
43702
44518
|
* @example
|
|
43703
44519
|
* 3
|
|
@@ -43705,24 +44521,24 @@ export declare class UpdateTaskShrinkRequest extends $dara.Model {
|
|
|
43705
44521
|
rerunTimes?: number;
|
|
43706
44522
|
/**
|
|
43707
44523
|
* @remarks
|
|
43708
|
-
*
|
|
44524
|
+
* The configurations of the runtime environment, such as the resource group information.
|
|
43709
44525
|
*
|
|
43710
44526
|
* This parameter is required.
|
|
43711
44527
|
*/
|
|
43712
44528
|
runtimeResourceShrink?: string;
|
|
43713
44529
|
/**
|
|
43714
44530
|
* @remarks
|
|
43715
|
-
*
|
|
44531
|
+
* The script information.
|
|
43716
44532
|
*/
|
|
43717
44533
|
scriptShrink?: string;
|
|
43718
44534
|
/**
|
|
43719
44535
|
* @remarks
|
|
43720
|
-
* The
|
|
44536
|
+
* The tags.
|
|
43721
44537
|
*/
|
|
43722
44538
|
tagsShrink?: string;
|
|
43723
44539
|
/**
|
|
43724
44540
|
* @remarks
|
|
43725
|
-
* The timeout period of
|
|
44541
|
+
* The timeout period of task running. Unit: seconds.
|
|
43726
44542
|
*
|
|
43727
44543
|
* @example
|
|
43728
44544
|
* 3600
|
|
@@ -43730,7 +44546,7 @@ export declare class UpdateTaskShrinkRequest extends $dara.Model {
|
|
|
43730
44546
|
timeout?: number;
|
|
43731
44547
|
/**
|
|
43732
44548
|
* @remarks
|
|
43733
|
-
* The trigger method
|
|
44549
|
+
* The trigger method.
|
|
43734
44550
|
*
|
|
43735
44551
|
* This parameter is required.
|
|
43736
44552
|
*/
|
|
@@ -43749,7 +44565,7 @@ export declare class UpdateTaskShrinkRequest extends $dara.Model {
|
|
|
43749
44565
|
export declare class UpdateTaskResponseBody extends $dara.Model {
|
|
43750
44566
|
/**
|
|
43751
44567
|
* @remarks
|
|
43752
|
-
* The
|
|
44568
|
+
* The request ID.
|
|
43753
44569
|
*
|
|
43754
44570
|
* @example
|
|
43755
44571
|
* 22C97E95-F023-56B5-8852-B1A77A17XXXX
|
|
@@ -43757,7 +44573,7 @@ export declare class UpdateTaskResponseBody extends $dara.Model {
|
|
|
43757
44573
|
requestId?: string;
|
|
43758
44574
|
/**
|
|
43759
44575
|
* @remarks
|
|
43760
|
-
*
|
|
44576
|
+
* Indicates whether the request was successful.
|
|
43761
44577
|
*
|
|
43762
44578
|
* @example
|
|
43763
44579
|
* true
|
|
@@ -43888,7 +44704,7 @@ export declare class UpdateTaskInstancesResponse extends $dara.Model {
|
|
|
43888
44704
|
export declare class UpdateWorkflowRequest extends $dara.Model {
|
|
43889
44705
|
/**
|
|
43890
44706
|
* @remarks
|
|
43891
|
-
* The
|
|
44707
|
+
* The unique code of the client. This parameter is used to create a workflow asynchronously and implement the idempotence of the workflow. If you do not specify this parameter when you create the workflow, the system automatically generates a unique code. The unique code is uniquely associated with the workflow ID. If you specify this parameter when you update or delete the workflow, the value of this parameter must be the unique code that is used to create the workflow.
|
|
43892
44708
|
*
|
|
43893
44709
|
* @example
|
|
43894
44710
|
* Workflow_0bc5213917368545132902xxxxxxxx
|
|
@@ -43896,7 +44712,7 @@ export declare class UpdateWorkflowRequest extends $dara.Model {
|
|
|
43896
44712
|
clientUniqueCode?: string;
|
|
43897
44713
|
/**
|
|
43898
44714
|
* @remarks
|
|
43899
|
-
*
|
|
44715
|
+
* The dependency information.
|
|
43900
44716
|
*/
|
|
43901
44717
|
dependencies?: UpdateWorkflowRequestDependencies[];
|
|
43902
44718
|
/**
|
|
@@ -43909,10 +44725,10 @@ export declare class UpdateWorkflowRequest extends $dara.Model {
|
|
|
43909
44725
|
description?: string;
|
|
43910
44726
|
/**
|
|
43911
44727
|
* @remarks
|
|
43912
|
-
* The
|
|
44728
|
+
* The environment of the workspace. Valid values:
|
|
43913
44729
|
*
|
|
43914
|
-
*
|
|
43915
|
-
*
|
|
44730
|
+
* * Prod: production environment
|
|
44731
|
+
* * Dev: development environment
|
|
43916
44732
|
*
|
|
43917
44733
|
* @example
|
|
43918
44734
|
* Prod
|
|
@@ -43920,7 +44736,7 @@ export declare class UpdateWorkflowRequest extends $dara.Model {
|
|
|
43920
44736
|
envType?: string;
|
|
43921
44737
|
/**
|
|
43922
44738
|
* @remarks
|
|
43923
|
-
* The ID
|
|
44739
|
+
* The workflow ID.
|
|
43924
44740
|
*
|
|
43925
44741
|
* This parameter is required.
|
|
43926
44742
|
*
|
|
@@ -43930,7 +44746,7 @@ export declare class UpdateWorkflowRequest extends $dara.Model {
|
|
|
43930
44746
|
id?: number;
|
|
43931
44747
|
/**
|
|
43932
44748
|
* @remarks
|
|
43933
|
-
* The name.
|
|
44749
|
+
* The name of the workflow.
|
|
43934
44750
|
*
|
|
43935
44751
|
* This parameter is required.
|
|
43936
44752
|
*
|
|
@@ -43955,7 +44771,7 @@ export declare class UpdateWorkflowRequest extends $dara.Model {
|
|
|
43955
44771
|
owner?: string;
|
|
43956
44772
|
/**
|
|
43957
44773
|
* @remarks
|
|
43958
|
-
* The
|
|
44774
|
+
* The parameters.
|
|
43959
44775
|
*
|
|
43960
44776
|
* @example
|
|
43961
44777
|
* para1=$bizdate para2=$[yyyymmdd]
|
|
@@ -43963,12 +44779,12 @@ export declare class UpdateWorkflowRequest extends $dara.Model {
|
|
|
43963
44779
|
parameters?: string;
|
|
43964
44780
|
/**
|
|
43965
44781
|
* @remarks
|
|
43966
|
-
* The
|
|
44782
|
+
* The tags.
|
|
43967
44783
|
*/
|
|
43968
44784
|
tags?: UpdateWorkflowRequestTags[];
|
|
43969
44785
|
/**
|
|
43970
44786
|
* @remarks
|
|
43971
|
-
* The
|
|
44787
|
+
* The tasks.
|
|
43972
44788
|
*/
|
|
43973
44789
|
tasks?: UpdateWorkflowRequestTasks[];
|
|
43974
44790
|
/**
|
|
@@ -43992,7 +44808,7 @@ export declare class UpdateWorkflowRequest extends $dara.Model {
|
|
|
43992
44808
|
export declare class UpdateWorkflowShrinkRequest extends $dara.Model {
|
|
43993
44809
|
/**
|
|
43994
44810
|
* @remarks
|
|
43995
|
-
* The
|
|
44811
|
+
* The unique code of the client. This parameter is used to create a workflow asynchronously and implement the idempotence of the workflow. If you do not specify this parameter when you create the workflow, the system automatically generates a unique code. The unique code is uniquely associated with the workflow ID. If you specify this parameter when you update or delete the workflow, the value of this parameter must be the unique code that is used to create the workflow.
|
|
43996
44812
|
*
|
|
43997
44813
|
* @example
|
|
43998
44814
|
* Workflow_0bc5213917368545132902xxxxxxxx
|
|
@@ -44000,7 +44816,7 @@ export declare class UpdateWorkflowShrinkRequest extends $dara.Model {
|
|
|
44000
44816
|
clientUniqueCode?: string;
|
|
44001
44817
|
/**
|
|
44002
44818
|
* @remarks
|
|
44003
|
-
*
|
|
44819
|
+
* The dependency information.
|
|
44004
44820
|
*/
|
|
44005
44821
|
dependenciesShrink?: string;
|
|
44006
44822
|
/**
|
|
@@ -44013,10 +44829,10 @@ export declare class UpdateWorkflowShrinkRequest extends $dara.Model {
|
|
|
44013
44829
|
description?: string;
|
|
44014
44830
|
/**
|
|
44015
44831
|
* @remarks
|
|
44016
|
-
* The
|
|
44832
|
+
* The environment of the workspace. Valid values:
|
|
44017
44833
|
*
|
|
44018
|
-
*
|
|
44019
|
-
*
|
|
44834
|
+
* * Prod: production environment
|
|
44835
|
+
* * Dev: development environment
|
|
44020
44836
|
*
|
|
44021
44837
|
* @example
|
|
44022
44838
|
* Prod
|
|
@@ -44024,7 +44840,7 @@ export declare class UpdateWorkflowShrinkRequest extends $dara.Model {
|
|
|
44024
44840
|
envType?: string;
|
|
44025
44841
|
/**
|
|
44026
44842
|
* @remarks
|
|
44027
|
-
* The ID
|
|
44843
|
+
* The workflow ID.
|
|
44028
44844
|
*
|
|
44029
44845
|
* This parameter is required.
|
|
44030
44846
|
*
|
|
@@ -44034,7 +44850,7 @@ export declare class UpdateWorkflowShrinkRequest extends $dara.Model {
|
|
|
44034
44850
|
id?: number;
|
|
44035
44851
|
/**
|
|
44036
44852
|
* @remarks
|
|
44037
|
-
* The name.
|
|
44853
|
+
* The name of the workflow.
|
|
44038
44854
|
*
|
|
44039
44855
|
* This parameter is required.
|
|
44040
44856
|
*
|
|
@@ -44059,7 +44875,7 @@ export declare class UpdateWorkflowShrinkRequest extends $dara.Model {
|
|
|
44059
44875
|
owner?: string;
|
|
44060
44876
|
/**
|
|
44061
44877
|
* @remarks
|
|
44062
|
-
* The
|
|
44878
|
+
* The parameters.
|
|
44063
44879
|
*
|
|
44064
44880
|
* @example
|
|
44065
44881
|
* para1=$bizdate para2=$[yyyymmdd]
|
|
@@ -44067,12 +44883,12 @@ export declare class UpdateWorkflowShrinkRequest extends $dara.Model {
|
|
|
44067
44883
|
parameters?: string;
|
|
44068
44884
|
/**
|
|
44069
44885
|
* @remarks
|
|
44070
|
-
* The
|
|
44886
|
+
* The tags.
|
|
44071
44887
|
*/
|
|
44072
44888
|
tagsShrink?: string;
|
|
44073
44889
|
/**
|
|
44074
44890
|
* @remarks
|
|
44075
|
-
* The
|
|
44891
|
+
* The tasks.
|
|
44076
44892
|
*/
|
|
44077
44893
|
tasksShrink?: string;
|
|
44078
44894
|
/**
|
|
@@ -44096,7 +44912,7 @@ export declare class UpdateWorkflowShrinkRequest extends $dara.Model {
|
|
|
44096
44912
|
export declare class UpdateWorkflowResponseBody extends $dara.Model {
|
|
44097
44913
|
/**
|
|
44098
44914
|
* @remarks
|
|
44099
|
-
* The
|
|
44915
|
+
* The request ID.
|
|
44100
44916
|
*
|
|
44101
44917
|
* @example
|
|
44102
44918
|
* 22C97E95-F023-56B5-8852-B1A77A17XXXX
|
|
@@ -44104,7 +44920,7 @@ export declare class UpdateWorkflowResponseBody extends $dara.Model {
|
|
|
44104
44920
|
requestId?: string;
|
|
44105
44921
|
/**
|
|
44106
44922
|
* @remarks
|
|
44107
|
-
*
|
|
44923
|
+
* Indicates whether the request was successful.
|
|
44108
44924
|
*
|
|
44109
44925
|
* @example
|
|
44110
44926
|
* true
|
|
@@ -44478,7 +45294,7 @@ export default class Client extends OpenApi {
|
|
|
44478
45294
|
*/
|
|
44479
45295
|
createDataQualityEvaluationTask(request: CreateDataQualityEvaluationTaskRequest): Promise<CreateDataQualityEvaluationTaskResponse>;
|
|
44480
45296
|
/**
|
|
44481
|
-
* Creates a monitor instance
|
|
45297
|
+
* Creates a monitor instance.
|
|
44482
45298
|
*
|
|
44483
45299
|
* @param tmpReq - CreateDataQualityEvaluationTaskInstanceRequest
|
|
44484
45300
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -44486,7 +45302,7 @@ export default class Client extends OpenApi {
|
|
|
44486
45302
|
*/
|
|
44487
45303
|
createDataQualityEvaluationTaskInstanceWithOptions(tmpReq: CreateDataQualityEvaluationTaskInstanceRequest, runtime: $dara.RuntimeOptions): Promise<CreateDataQualityEvaluationTaskInstanceResponse>;
|
|
44488
45304
|
/**
|
|
44489
|
-
* Creates a monitor instance
|
|
45305
|
+
* Creates a monitor instance.
|
|
44490
45306
|
*
|
|
44491
45307
|
* @param request - CreateDataQualityEvaluationTaskInstanceRequest
|
|
44492
45308
|
* @returns CreateDataQualityEvaluationTaskInstanceResponse
|
|
@@ -44790,7 +45606,7 @@ export default class Client extends OpenApi {
|
|
|
44790
45606
|
*/
|
|
44791
45607
|
createWorkflowInstances(request: CreateWorkflowInstancesRequest): Promise<CreateWorkflowInstancesResponse>;
|
|
44792
45608
|
/**
|
|
44793
|
-
* Deletes a custom alert
|
|
45609
|
+
* Deletes a custom monitoring alert rule.
|
|
44794
45610
|
*
|
|
44795
45611
|
* @param request - DeleteAlertRuleRequest
|
|
44796
45612
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -44798,12 +45614,35 @@ export default class Client extends OpenApi {
|
|
|
44798
45614
|
*/
|
|
44799
45615
|
deleteAlertRuleWithOptions(request: DeleteAlertRuleRequest, runtime: $dara.RuntimeOptions): Promise<DeleteAlertRuleResponse>;
|
|
44800
45616
|
/**
|
|
44801
|
-
* Deletes a custom alert
|
|
45617
|
+
* Deletes a custom monitoring alert rule.
|
|
44802
45618
|
*
|
|
44803
45619
|
* @param request - DeleteAlertRuleRequest
|
|
44804
45620
|
* @returns DeleteAlertRuleResponse
|
|
44805
45621
|
*/
|
|
44806
45622
|
deleteAlertRule(request: DeleteAlertRuleRequest): Promise<DeleteAlertRuleResponse>;
|
|
45623
|
+
/**
|
|
45624
|
+
* Deletes a certificate file.
|
|
45625
|
+
*
|
|
45626
|
+
* @remarks
|
|
45627
|
+
* 1. This API operation is available for all DataWorks editions.
|
|
45628
|
+
* 2. You can call this operation only if you are assigned one of the following roles in DataWorks: Tenant Owner, Workspace Administrator, Workspace Owner, and O\\&M.
|
|
45629
|
+
*
|
|
45630
|
+
* @param request - DeleteCertificateRequest
|
|
45631
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
45632
|
+
* @returns DeleteCertificateResponse
|
|
45633
|
+
*/
|
|
45634
|
+
deleteCertificateWithOptions(request: DeleteCertificateRequest, runtime: $dara.RuntimeOptions): Promise<DeleteCertificateResponse>;
|
|
45635
|
+
/**
|
|
45636
|
+
* Deletes a certificate file.
|
|
45637
|
+
*
|
|
45638
|
+
* @remarks
|
|
45639
|
+
* 1. This API operation is available for all DataWorks editions.
|
|
45640
|
+
* 2. You can call this operation only if you are assigned one of the following roles in DataWorks: Tenant Owner, Workspace Administrator, Workspace Owner, and O\\&M.
|
|
45641
|
+
*
|
|
45642
|
+
* @param request - DeleteCertificateRequest
|
|
45643
|
+
* @returns DeleteCertificateResponse
|
|
45644
|
+
*/
|
|
45645
|
+
deleteCertificate(request: DeleteCertificateRequest): Promise<DeleteCertificateResponse>;
|
|
44807
45646
|
/**
|
|
44808
45647
|
* Deletes an alert rule configured for a synchronization task.
|
|
44809
45648
|
*
|
|
@@ -45288,6 +46127,21 @@ export default class Client extends OpenApi {
|
|
|
45288
46127
|
* @returns GetAlertRuleResponse
|
|
45289
46128
|
*/
|
|
45290
46129
|
getAlertRule(request: GetAlertRuleRequest): Promise<GetAlertRuleResponse>;
|
|
46130
|
+
/**
|
|
46131
|
+
* 查看认证文件
|
|
46132
|
+
*
|
|
46133
|
+
* @param request - GetCertificateRequest
|
|
46134
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
46135
|
+
* @returns GetCertificateResponse
|
|
46136
|
+
*/
|
|
46137
|
+
getCertificateWithOptions(request: GetCertificateRequest, runtime: $dara.RuntimeOptions): Promise<GetCertificateResponse>;
|
|
46138
|
+
/**
|
|
46139
|
+
* 查看认证文件
|
|
46140
|
+
*
|
|
46141
|
+
* @param request - GetCertificateRequest
|
|
46142
|
+
* @returns GetCertificateResponse
|
|
46143
|
+
*/
|
|
46144
|
+
getCertificate(request: GetCertificateRequest): Promise<GetCertificateResponse>;
|
|
45291
46145
|
/**
|
|
45292
46146
|
* Queries the result of asynchronously creating a workflow instance.
|
|
45293
46147
|
*
|
|
@@ -45784,6 +46638,22 @@ export default class Client extends OpenApi {
|
|
|
45784
46638
|
* @returns GrantMemberProjectRolesResponse
|
|
45785
46639
|
*/
|
|
45786
46640
|
grantMemberProjectRoles(request: GrantMemberProjectRolesRequest): Promise<GrantMemberProjectRolesResponse>;
|
|
46641
|
+
/**
|
|
46642
|
+
* Imports a certificate file.
|
|
46643
|
+
*
|
|
46644
|
+
* @param request - ImportCertificateRequest
|
|
46645
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
46646
|
+
* @returns ImportCertificateResponse
|
|
46647
|
+
*/
|
|
46648
|
+
importCertificateWithOptions(request: ImportCertificateRequest, runtime: $dara.RuntimeOptions): Promise<ImportCertificateResponse>;
|
|
46649
|
+
/**
|
|
46650
|
+
* Imports a certificate file.
|
|
46651
|
+
*
|
|
46652
|
+
* @param request - ImportCertificateRequest
|
|
46653
|
+
* @returns ImportCertificateResponse
|
|
46654
|
+
*/
|
|
46655
|
+
importCertificate(request: ImportCertificateRequest): Promise<ImportCertificateResponse>;
|
|
46656
|
+
importCertificateAdvance(request: ImportCertificateAdvanceRequest, runtime: $dara.RuntimeOptions): Promise<ImportCertificateResponse>;
|
|
45787
46657
|
/**
|
|
45788
46658
|
* Imports a workflow and its child nodes that are specified by the FlowSpec field to DataStudio.
|
|
45789
46659
|
*
|
|
@@ -45824,6 +46694,21 @@ export default class Client extends OpenApi {
|
|
|
45824
46694
|
* @returns ListAlertRulesResponse
|
|
45825
46695
|
*/
|
|
45826
46696
|
listAlertRules(request: ListAlertRulesRequest): Promise<ListAlertRulesResponse>;
|
|
46697
|
+
/**
|
|
46698
|
+
* 查询认证文件列表
|
|
46699
|
+
*
|
|
46700
|
+
* @param request - ListCertificatesRequest
|
|
46701
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
46702
|
+
* @returns ListCertificatesResponse
|
|
46703
|
+
*/
|
|
46704
|
+
listCertificatesWithOptions(request: ListCertificatesRequest, runtime: $dara.RuntimeOptions): Promise<ListCertificatesResponse>;
|
|
46705
|
+
/**
|
|
46706
|
+
* 查询认证文件列表
|
|
46707
|
+
*
|
|
46708
|
+
* @param request - ListCertificatesRequest
|
|
46709
|
+
* @returns ListCertificatesResponse
|
|
46710
|
+
*/
|
|
46711
|
+
listCertificates(request: ListCertificatesRequest): Promise<ListCertificatesResponse>;
|
|
45827
46712
|
/**
|
|
45828
46713
|
* Views alert rules configured for a synchronization task.
|
|
45829
46714
|
*
|
|
@@ -46882,6 +47767,29 @@ export default class Client extends OpenApi {
|
|
|
46882
47767
|
* @returns TagDataAssetsResponse
|
|
46883
47768
|
*/
|
|
46884
47769
|
tagDataAssets(request: TagDataAssetsRequest): Promise<TagDataAssetsResponse>;
|
|
47770
|
+
/**
|
|
47771
|
+
* Tests the network connectivity between a resource group and a data source.
|
|
47772
|
+
*
|
|
47773
|
+
* @remarks
|
|
47774
|
+
* 1. This API operation is available for all DataWorks editions.
|
|
47775
|
+
* 2. Your account must be assigned one of the following roles of the desired workspace: Tenant Owner, Workspace Administrator, Deploy, Develop, Workspace Owner, and O\\&M
|
|
47776
|
+
*
|
|
47777
|
+
* @param request - TestDataSourceConnectivityRequest
|
|
47778
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
47779
|
+
* @returns TestDataSourceConnectivityResponse
|
|
47780
|
+
*/
|
|
47781
|
+
testDataSourceConnectivityWithOptions(request: TestDataSourceConnectivityRequest, runtime: $dara.RuntimeOptions): Promise<TestDataSourceConnectivityResponse>;
|
|
47782
|
+
/**
|
|
47783
|
+
* Tests the network connectivity between a resource group and a data source.
|
|
47784
|
+
*
|
|
47785
|
+
* @remarks
|
|
47786
|
+
* 1. This API operation is available for all DataWorks editions.
|
|
47787
|
+
* 2. Your account must be assigned one of the following roles of the desired workspace: Tenant Owner, Workspace Administrator, Deploy, Develop, Workspace Owner, and O\\&M
|
|
47788
|
+
*
|
|
47789
|
+
* @param request - TestDataSourceConnectivityRequest
|
|
47790
|
+
* @returns TestDataSourceConnectivityResponse
|
|
47791
|
+
*/
|
|
47792
|
+
testDataSourceConnectivity(request: TestDataSourceConnectivityRequest): Promise<TestDataSourceConnectivityResponse>;
|
|
46885
47793
|
/**
|
|
46886
47794
|
* Triggers a task to run by using an HTTP Trigger node at a specified time.
|
|
46887
47795
|
*
|
|
@@ -47175,12 +48083,16 @@ export default class Client extends OpenApi {
|
|
|
47175
48083
|
*/
|
|
47176
48084
|
updateRoute(request: UpdateRouteRequest): Promise<UpdateRouteResponse>;
|
|
47177
48085
|
/**
|
|
48086
|
+
* Updates a specified task in full update mode.
|
|
48087
|
+
*
|
|
47178
48088
|
* @param tmpReq - UpdateTaskRequest
|
|
47179
48089
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
47180
48090
|
* @returns UpdateTaskResponse
|
|
47181
48091
|
*/
|
|
47182
48092
|
updateTaskWithOptions(tmpReq: UpdateTaskRequest, runtime: $dara.RuntimeOptions): Promise<UpdateTaskResponse>;
|
|
47183
48093
|
/**
|
|
48094
|
+
* Updates a specified task in full update mode.
|
|
48095
|
+
*
|
|
47184
48096
|
* @param request - UpdateTaskRequest
|
|
47185
48097
|
* @returns UpdateTaskResponse
|
|
47186
48098
|
*/
|
|
@@ -47207,12 +48119,22 @@ export default class Client extends OpenApi {
|
|
|
47207
48119
|
*/
|
|
47208
48120
|
updateTaskInstances(request: UpdateTaskInstancesRequest): Promise<UpdateTaskInstancesResponse>;
|
|
47209
48121
|
/**
|
|
48122
|
+
* Updates a specified workflow in full update mode.
|
|
48123
|
+
*
|
|
48124
|
+
* @remarks
|
|
48125
|
+
* This API operation is available for all DataWorks editions.
|
|
48126
|
+
*
|
|
47210
48127
|
* @param tmpReq - UpdateWorkflowRequest
|
|
47211
48128
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
47212
48129
|
* @returns UpdateWorkflowResponse
|
|
47213
48130
|
*/
|
|
47214
48131
|
updateWorkflowWithOptions(tmpReq: UpdateWorkflowRequest, runtime: $dara.RuntimeOptions): Promise<UpdateWorkflowResponse>;
|
|
47215
48132
|
/**
|
|
48133
|
+
* Updates a specified workflow in full update mode.
|
|
48134
|
+
*
|
|
48135
|
+
* @remarks
|
|
48136
|
+
* This API operation is available for all DataWorks editions.
|
|
48137
|
+
*
|
|
47216
48138
|
* @param request - UpdateWorkflowRequest
|
|
47217
48139
|
* @returns UpdateWorkflowResponse
|
|
47218
48140
|
*/
|
|
@@ -47220,6 +48142,9 @@ export default class Client extends OpenApi {
|
|
|
47220
48142
|
/**
|
|
47221
48143
|
* Updates the basic information about a workflow in DataStudio. This API operation performs an incremental update. The update information is described by using FlowSpec.
|
|
47222
48144
|
*
|
|
48145
|
+
* @remarks
|
|
48146
|
+
* > You cannot use this API operation to create multiple workflows at a time. If you specify multiple workflows in the FlowSpec filed, only the first workflow is created. Other specified workflows and the nodes in the workflows are ignored. You can call the UpdateNode operation to update a node.
|
|
48147
|
+
*
|
|
47223
48148
|
* @param request - UpdateWorkflowDefinitionRequest
|
|
47224
48149
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
47225
48150
|
* @returns UpdateWorkflowDefinitionResponse
|
|
@@ -47228,6 +48153,9 @@ export default class Client extends OpenApi {
|
|
|
47228
48153
|
/**
|
|
47229
48154
|
* Updates the basic information about a workflow in DataStudio. This API operation performs an incremental update. The update information is described by using FlowSpec.
|
|
47230
48155
|
*
|
|
48156
|
+
* @remarks
|
|
48157
|
+
* > You cannot use this API operation to create multiple workflows at a time. If you specify multiple workflows in the FlowSpec filed, only the first workflow is created. Other specified workflows and the nodes in the workflows are ignored. You can call the UpdateNode operation to update a node.
|
|
48158
|
+
*
|
|
47231
48159
|
* @param request - UpdateWorkflowDefinitionRequest
|
|
47232
48160
|
* @returns UpdateWorkflowDefinitionResponse
|
|
47233
48161
|
*/
|