@alicloud/dataworks-public20240518 6.0.2 → 6.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/client.d.ts +1362 -603
- package/dist/client.js +926 -20
- package/dist/client.js.map +1 -1
- package/package.json +5 -1
- package/src/client.ts +1838 -451
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
|
/**
|
|
@@ -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
|
|
@@ -3314,7 +3313,7 @@ export declare class CreateDataQualityRuleTemplateRequestSamplingConfig extends
|
|
|
3314
3313
|
* * GroupCount: the field value and the number of rows for each field value.
|
|
3315
3314
|
* * CountNotIn: the number of rows in which the field values are different from the referenced values that you specified in the rule.
|
|
3316
3315
|
* * CountDistinctNotIn: the number of unique values that are different from the referenced values that you specified in the rule after deduplication.
|
|
3317
|
-
* * UserDefinedSql:
|
|
3316
|
+
* * UserDefinedSql: specifies that data is sampled by executing custom SQL statements.
|
|
3318
3317
|
*
|
|
3319
3318
|
* @example
|
|
3320
3319
|
* Count
|
|
@@ -3407,7 +3406,7 @@ export declare class CreateResourceGroupRequestAliyunResourceTags extends $dara.
|
|
|
3407
3406
|
export declare class CreateResourceGroupResponseBodyResourceGroupOrder extends $dara.Model {
|
|
3408
3407
|
/**
|
|
3409
3408
|
* @remarks
|
|
3410
|
-
* The
|
|
3409
|
+
* The ID of the serverless resource group.
|
|
3411
3410
|
*
|
|
3412
3411
|
* @example
|
|
3413
3412
|
* Serverless_res_group_524257424564736_6831777003XXXXX
|
|
@@ -3415,7 +3414,7 @@ export declare class CreateResourceGroupResponseBodyResourceGroupOrder extends $
|
|
|
3415
3414
|
id?: string;
|
|
3416
3415
|
/**
|
|
3417
3416
|
* @remarks
|
|
3418
|
-
* The ID of the order to create
|
|
3417
|
+
* The ID of the order that is used to create the serverless resource group.
|
|
3419
3418
|
*
|
|
3420
3419
|
* @example
|
|
3421
3420
|
* 2391982058XXXXX
|
|
@@ -3423,7 +3422,7 @@ export declare class CreateResourceGroupResponseBodyResourceGroupOrder extends $
|
|
|
3423
3422
|
orderId?: number;
|
|
3424
3423
|
/**
|
|
3425
3424
|
* @remarks
|
|
3426
|
-
* The ID of the order
|
|
3425
|
+
* The instance ID of the order that is used to create the serverless resource group.
|
|
3427
3426
|
*
|
|
3428
3427
|
* @example
|
|
3429
3428
|
* c442b330-3b10-4584-959e-736e4edXXXXX
|
|
@@ -3479,8 +3478,6 @@ export declare class CreateWorkflowInstancesRequestDefaultRunPropertiesAnalysis
|
|
|
3479
3478
|
* @remarks
|
|
3480
3479
|
* Whether to block the operation if the analysis fails.
|
|
3481
3480
|
*
|
|
3482
|
-
* This parameter is required.
|
|
3483
|
-
*
|
|
3484
3481
|
* @example
|
|
3485
3482
|
* true
|
|
3486
3483
|
*/
|
|
@@ -3489,8 +3486,6 @@ export declare class CreateWorkflowInstancesRequestDefaultRunPropertiesAnalysis
|
|
|
3489
3486
|
* @remarks
|
|
3490
3487
|
* Whether to enable analysis.
|
|
3491
3488
|
*
|
|
3492
|
-
* This parameter is required.
|
|
3493
|
-
*
|
|
3494
3489
|
* @example
|
|
3495
3490
|
* true
|
|
3496
3491
|
*/
|
|
@@ -3561,8 +3556,6 @@ export declare class CreateWorkflowInstancesRequestDefaultRunProperties extends
|
|
|
3561
3556
|
/**
|
|
3562
3557
|
* @remarks
|
|
3563
3558
|
* Analyze the configuration.
|
|
3564
|
-
*
|
|
3565
|
-
* This parameter is required.
|
|
3566
3559
|
*/
|
|
3567
3560
|
analysis?: CreateWorkflowInstancesRequestDefaultRunPropertiesAnalysis;
|
|
3568
3561
|
/**
|
|
@@ -3611,8 +3604,6 @@ export declare class CreateWorkflowInstancesRequestDefaultRunProperties extends
|
|
|
3611
3604
|
* @remarks
|
|
3612
3605
|
* The number of rows that the task has. Values from 2 to 10 are parallelism and 1 is serial.
|
|
3613
3606
|
*
|
|
3614
|
-
* This parameter is required.
|
|
3615
|
-
*
|
|
3616
3607
|
* @example
|
|
3617
3608
|
* 2
|
|
3618
3609
|
*/
|
|
@@ -3768,7 +3759,7 @@ export declare class ExecuteAdhocWorkflowInstanceRequestTasksInputsVariables ext
|
|
|
3768
3759
|
name?: string;
|
|
3769
3760
|
/**
|
|
3770
3761
|
* @remarks
|
|
3771
|
-
* The value of the variable.
|
|
3762
|
+
* 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
3763
|
*
|
|
3773
3764
|
* @example
|
|
3774
3765
|
* Value1
|
|
@@ -3833,7 +3824,7 @@ export declare class ExecuteAdhocWorkflowInstanceRequestTasksOutputsVariables ex
|
|
|
3833
3824
|
name?: string;
|
|
3834
3825
|
/**
|
|
3835
3826
|
* @remarks
|
|
3836
|
-
* The type
|
|
3827
|
+
* The type. Valid values:
|
|
3837
3828
|
*
|
|
3838
3829
|
* * System
|
|
3839
3830
|
* * Constant
|
|
@@ -4501,6 +4492,53 @@ export declare class GetAlertRuleResponseBodyAlertRule extends $dara.Model {
|
|
|
4501
4492
|
[key: string]: any;
|
|
4502
4493
|
});
|
|
4503
4494
|
}
|
|
4495
|
+
export declare class GetCertificateResponseBodyCertificate extends $dara.Model {
|
|
4496
|
+
/**
|
|
4497
|
+
* @example
|
|
4498
|
+
* 1730217600000
|
|
4499
|
+
*/
|
|
4500
|
+
createTime?: number;
|
|
4501
|
+
/**
|
|
4502
|
+
* @example
|
|
4503
|
+
* 1107550004253538
|
|
4504
|
+
*/
|
|
4505
|
+
createUser?: string;
|
|
4506
|
+
/**
|
|
4507
|
+
* @example
|
|
4508
|
+
* This is a file
|
|
4509
|
+
*/
|
|
4510
|
+
description?: string;
|
|
4511
|
+
/**
|
|
4512
|
+
* @example
|
|
4513
|
+
* 77549
|
|
4514
|
+
*/
|
|
4515
|
+
fileSizeInBytes?: number;
|
|
4516
|
+
/**
|
|
4517
|
+
* @example
|
|
4518
|
+
* 676303114031776
|
|
4519
|
+
*/
|
|
4520
|
+
id?: number;
|
|
4521
|
+
/**
|
|
4522
|
+
* @example
|
|
4523
|
+
* ca1.crt
|
|
4524
|
+
*/
|
|
4525
|
+
name?: string;
|
|
4526
|
+
/**
|
|
4527
|
+
* @example
|
|
4528
|
+
* 177161
|
|
4529
|
+
*/
|
|
4530
|
+
projectId?: number;
|
|
4531
|
+
static names(): {
|
|
4532
|
+
[key: string]: string;
|
|
4533
|
+
};
|
|
4534
|
+
static types(): {
|
|
4535
|
+
[key: string]: any;
|
|
4536
|
+
};
|
|
4537
|
+
validate(): void;
|
|
4538
|
+
constructor(map?: {
|
|
4539
|
+
[key: string]: any;
|
|
4540
|
+
});
|
|
4541
|
+
}
|
|
4504
4542
|
export declare class GetCreateWorkflowInstancesResultResponseBodyResult extends $dara.Model {
|
|
4505
4543
|
/**
|
|
4506
4544
|
* @remarks
|
|
@@ -5950,13 +5988,14 @@ export declare class GetDataQualityRuleResponseBodyDataQualityRuleCheckingConfig
|
|
|
5950
5988
|
expression?: string;
|
|
5951
5989
|
/**
|
|
5952
5990
|
* @remarks
|
|
5953
|
-
*
|
|
5954
|
-
*
|
|
5955
|
-
*
|
|
5956
|
-
*
|
|
5957
|
-
*
|
|
5958
|
-
*
|
|
5959
|
-
*
|
|
5991
|
+
* The comparison operator. Valid values:
|
|
5992
|
+
*
|
|
5993
|
+
* * \\>
|
|
5994
|
+
* * \\>=
|
|
5995
|
+
* * <
|
|
5996
|
+
* * <=
|
|
5997
|
+
* * !=
|
|
5998
|
+
* * \\=
|
|
5960
5999
|
*
|
|
5961
6000
|
* @example
|
|
5962
6001
|
* >
|
|
@@ -5992,13 +6031,14 @@ export declare class GetDataQualityRuleResponseBodyDataQualityRuleCheckingConfig
|
|
|
5992
6031
|
expression?: string;
|
|
5993
6032
|
/**
|
|
5994
6033
|
* @remarks
|
|
5995
|
-
*
|
|
5996
|
-
*
|
|
5997
|
-
*
|
|
5998
|
-
*
|
|
5999
|
-
*
|
|
6000
|
-
*
|
|
6001
|
-
*
|
|
6034
|
+
* The comparison operator. Valid values:
|
|
6035
|
+
*
|
|
6036
|
+
* * \\>
|
|
6037
|
+
* * \\>=
|
|
6038
|
+
* * <
|
|
6039
|
+
* * <=
|
|
6040
|
+
* * !=
|
|
6041
|
+
* * \\=
|
|
6002
6042
|
*
|
|
6003
6043
|
* @example
|
|
6004
6044
|
* >
|
|
@@ -6034,13 +6074,14 @@ export declare class GetDataQualityRuleResponseBodyDataQualityRuleCheckingConfig
|
|
|
6034
6074
|
expression?: string;
|
|
6035
6075
|
/**
|
|
6036
6076
|
* @remarks
|
|
6037
|
-
*
|
|
6038
|
-
*
|
|
6039
|
-
*
|
|
6040
|
-
*
|
|
6041
|
-
*
|
|
6042
|
-
*
|
|
6043
|
-
*
|
|
6077
|
+
* The comparison operator. Valid values:
|
|
6078
|
+
*
|
|
6079
|
+
* * \\>
|
|
6080
|
+
* * \\>=
|
|
6081
|
+
* * <
|
|
6082
|
+
* * <=
|
|
6083
|
+
* * !=
|
|
6084
|
+
* * \\=
|
|
6044
6085
|
*
|
|
6045
6086
|
* @example
|
|
6046
6087
|
* >
|
|
@@ -6095,7 +6136,7 @@ export declare class GetDataQualityRuleResponseBodyDataQualityRuleCheckingConfig
|
|
|
6095
6136
|
export declare class GetDataQualityRuleResponseBodyDataQualityRuleCheckingConfig extends $dara.Model {
|
|
6096
6137
|
/**
|
|
6097
6138
|
* @remarks
|
|
6098
|
-
*
|
|
6139
|
+
* 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
6140
|
*
|
|
6100
6141
|
* @example
|
|
6101
6142
|
* { "bizdate": [ "-1", "-7", "-1m" ] }
|
|
@@ -6108,13 +6149,14 @@ export declare class GetDataQualityRuleResponseBodyDataQualityRuleCheckingConfig
|
|
|
6108
6149
|
thresholds?: GetDataQualityRuleResponseBodyDataQualityRuleCheckingConfigThresholds;
|
|
6109
6150
|
/**
|
|
6110
6151
|
* @remarks
|
|
6111
|
-
*
|
|
6112
|
-
*
|
|
6113
|
-
*
|
|
6114
|
-
*
|
|
6115
|
-
*
|
|
6116
|
-
*
|
|
6117
|
-
*
|
|
6152
|
+
* The threshold calculation method. Valid values:
|
|
6153
|
+
*
|
|
6154
|
+
* * Fixed
|
|
6155
|
+
* * Fluctation
|
|
6156
|
+
* * FluctationDiscreate
|
|
6157
|
+
* * Auto
|
|
6158
|
+
* * Average
|
|
6159
|
+
* * Variance
|
|
6118
6160
|
*
|
|
6119
6161
|
* @example
|
|
6120
6162
|
* Fixed
|
|
@@ -6134,7 +6176,7 @@ export declare class GetDataQualityRuleResponseBodyDataQualityRuleCheckingConfig
|
|
|
6134
6176
|
export declare class GetDataQualityRuleResponseBodyDataQualityRuleErrorHandlers extends $dara.Model {
|
|
6135
6177
|
/**
|
|
6136
6178
|
* @remarks
|
|
6137
|
-
*
|
|
6179
|
+
* 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
6180
|
*
|
|
6139
6181
|
* @example
|
|
6140
6182
|
* SELECT * FROM tb_api_log WHERE id IS NULL
|
|
@@ -6163,22 +6205,23 @@ export declare class GetDataQualityRuleResponseBodyDataQualityRuleErrorHandlers
|
|
|
6163
6205
|
export declare class GetDataQualityRuleResponseBodyDataQualityRuleSamplingConfig extends $dara.Model {
|
|
6164
6206
|
/**
|
|
6165
6207
|
* @remarks
|
|
6166
|
-
* The
|
|
6167
|
-
*
|
|
6168
|
-
*
|
|
6169
|
-
*
|
|
6170
|
-
*
|
|
6171
|
-
*
|
|
6172
|
-
*
|
|
6173
|
-
*
|
|
6174
|
-
*
|
|
6175
|
-
*
|
|
6176
|
-
*
|
|
6177
|
-
*
|
|
6178
|
-
*
|
|
6179
|
-
*
|
|
6180
|
-
*
|
|
6181
|
-
*
|
|
6208
|
+
* The metrics used for sampling. Valid values:
|
|
6209
|
+
*
|
|
6210
|
+
* * Count: the number of rows in the table.
|
|
6211
|
+
* * Min: the minimum value of the field.
|
|
6212
|
+
* * Max: the maximum value of the field.
|
|
6213
|
+
* * Avg: the average value of the field.
|
|
6214
|
+
* * DistinctCount: the number of unique values of the field after deduplication.
|
|
6215
|
+
* * DistinctPercent: the proportion of the number of unique values of the field after deduplication to the number of rows in the table.
|
|
6216
|
+
* * DuplicatedCount: the number of duplicated values of the field.
|
|
6217
|
+
* * DuplicatedPercent: the proportion of the number of duplicated values of the field to the number of rows in the table.
|
|
6218
|
+
* * TableSize: the table size.
|
|
6219
|
+
* * NullValueCount: the number of rows in which the field value is null.
|
|
6220
|
+
* * NullValuePercent: the proportion of the number of rows in which the field value is null to the number of rows in the table.
|
|
6221
|
+
* * GroupCount: the field value and the number of rows for each field value.
|
|
6222
|
+
* * CountNotIn: the number of rows in which the field values are different from the referenced values that you specified in the rule.
|
|
6223
|
+
* * CountDistinctNotIn: the number of unique values that are different from the referenced values that you specified in the rule after deduplication.
|
|
6224
|
+
* * UserDefinedSql: indicates that data is sampled by executing custom SQL statements.
|
|
6182
6225
|
*
|
|
6183
6226
|
* @example
|
|
6184
6227
|
* Max
|
|
@@ -6186,7 +6229,7 @@ export declare class GetDataQualityRuleResponseBodyDataQualityRuleSamplingConfig
|
|
|
6186
6229
|
metric?: string;
|
|
6187
6230
|
/**
|
|
6188
6231
|
* @remarks
|
|
6189
|
-
*
|
|
6232
|
+
* The parameters required for sampling.
|
|
6190
6233
|
*
|
|
6191
6234
|
* @example
|
|
6192
6235
|
* { "Columns": [ "id", "name" ] , "SQL": "select count(1) from table;"}
|
|
@@ -6194,7 +6237,7 @@ export declare class GetDataQualityRuleResponseBodyDataQualityRuleSamplingConfig
|
|
|
6194
6237
|
metricParameters?: string;
|
|
6195
6238
|
/**
|
|
6196
6239
|
* @remarks
|
|
6197
|
-
* The
|
|
6240
|
+
* The statements that are used to filter unnecessary data during sampling. The statements can be up to 16,777,215 characters in length.
|
|
6198
6241
|
*
|
|
6199
6242
|
* @example
|
|
6200
6243
|
* id IS NULL
|
|
@@ -6202,7 +6245,7 @@ export declare class GetDataQualityRuleResponseBodyDataQualityRuleSamplingConfig
|
|
|
6202
6245
|
samplingFilter?: string;
|
|
6203
6246
|
/**
|
|
6204
6247
|
* @remarks
|
|
6205
|
-
*
|
|
6248
|
+
* 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
6249
|
*
|
|
6207
6250
|
* @example
|
|
6208
6251
|
* SET odps.sql.udf.timeout=600s;
|
|
@@ -6238,7 +6281,7 @@ export declare class GetDataQualityRuleResponseBodyDataQualityRuleTarget extends
|
|
|
6238
6281
|
databaseType?: string;
|
|
6239
6282
|
/**
|
|
6240
6283
|
* @remarks
|
|
6241
|
-
*
|
|
6284
|
+
* The configuration of the partitioned table.
|
|
6242
6285
|
*
|
|
6243
6286
|
* @example
|
|
6244
6287
|
* ds=$[yyyymmdd-1]
|
|
@@ -6246,7 +6289,7 @@ export declare class GetDataQualityRuleResponseBodyDataQualityRuleTarget extends
|
|
|
6246
6289
|
partitionSpec?: string;
|
|
6247
6290
|
/**
|
|
6248
6291
|
* @remarks
|
|
6249
|
-
* The
|
|
6292
|
+
* The ID of the table that is limited by the rule in Data Map.
|
|
6250
6293
|
*
|
|
6251
6294
|
* @example
|
|
6252
6295
|
* odps.unit_test.tb_unit_test
|
|
@@ -6281,7 +6324,7 @@ export declare class GetDataQualityRuleResponseBodyDataQualityRule extends $dara
|
|
|
6281
6324
|
checkingConfig?: GetDataQualityRuleResponseBodyDataQualityRuleCheckingConfig;
|
|
6282
6325
|
/**
|
|
6283
6326
|
* @remarks
|
|
6284
|
-
* The description of the rule.
|
|
6327
|
+
* The description of the rule. The description can be up to 500 characters in length.
|
|
6285
6328
|
*
|
|
6286
6329
|
* @example
|
|
6287
6330
|
* this is a odps _sql task
|
|
@@ -6289,7 +6332,7 @@ export declare class GetDataQualityRuleResponseBodyDataQualityRule extends $dara
|
|
|
6289
6332
|
description?: string;
|
|
6290
6333
|
/**
|
|
6291
6334
|
* @remarks
|
|
6292
|
-
*
|
|
6335
|
+
* Indicates whether the rule is enabled.
|
|
6293
6336
|
*
|
|
6294
6337
|
* @example
|
|
6295
6338
|
* true
|
|
@@ -6297,12 +6340,12 @@ export declare class GetDataQualityRuleResponseBodyDataQualityRule extends $dara
|
|
|
6297
6340
|
enabled?: boolean;
|
|
6298
6341
|
/**
|
|
6299
6342
|
* @remarks
|
|
6300
|
-
* The
|
|
6343
|
+
* The operations that you can perform after the rule-based check fails.
|
|
6301
6344
|
*/
|
|
6302
6345
|
errorHandlers?: GetDataQualityRuleResponseBodyDataQualityRuleErrorHandlers[];
|
|
6303
6346
|
/**
|
|
6304
6347
|
* @remarks
|
|
6305
|
-
* The ID
|
|
6348
|
+
* The rule ID.
|
|
6306
6349
|
*
|
|
6307
6350
|
* @example
|
|
6308
6351
|
* 16033
|
|
@@ -6310,7 +6353,7 @@ export declare class GetDataQualityRuleResponseBodyDataQualityRule extends $dara
|
|
|
6310
6353
|
id?: number;
|
|
6311
6354
|
/**
|
|
6312
6355
|
* @remarks
|
|
6313
|
-
* The name
|
|
6356
|
+
* The rule name.
|
|
6314
6357
|
*
|
|
6315
6358
|
* @example
|
|
6316
6359
|
* The table cannot be empty.
|
|
@@ -6318,7 +6361,7 @@ export declare class GetDataQualityRuleResponseBodyDataQualityRule extends $dara
|
|
|
6318
6361
|
name?: string;
|
|
6319
6362
|
/**
|
|
6320
6363
|
* @remarks
|
|
6321
|
-
* The
|
|
6364
|
+
* The DataWorks workspace ID.
|
|
6322
6365
|
*
|
|
6323
6366
|
* @example
|
|
6324
6367
|
* 1948
|
|
@@ -6326,7 +6369,7 @@ export declare class GetDataQualityRuleResponseBodyDataQualityRule extends $dara
|
|
|
6326
6369
|
projectId?: number;
|
|
6327
6370
|
/**
|
|
6328
6371
|
* @remarks
|
|
6329
|
-
* The settings
|
|
6372
|
+
* The sampling settings.
|
|
6330
6373
|
*/
|
|
6331
6374
|
samplingConfig?: GetDataQualityRuleResponseBodyDataQualityRuleSamplingConfig;
|
|
6332
6375
|
/**
|
|
@@ -6341,7 +6384,7 @@ export declare class GetDataQualityRuleResponseBodyDataQualityRule extends $dara
|
|
|
6341
6384
|
severity?: string;
|
|
6342
6385
|
/**
|
|
6343
6386
|
* @remarks
|
|
6344
|
-
* The object
|
|
6387
|
+
* The monitored object of the rule.
|
|
6345
6388
|
*/
|
|
6346
6389
|
target?: GetDataQualityRuleResponseBodyDataQualityRuleTarget;
|
|
6347
6390
|
/**
|
|
@@ -6366,7 +6409,7 @@ export declare class GetDataQualityRuleResponseBodyDataQualityRule extends $dara
|
|
|
6366
6409
|
export declare class GetDataQualityRuleTemplateResponseBodyDataQualityRuleTemplateCheckingConfig extends $dara.Model {
|
|
6367
6410
|
/**
|
|
6368
6411
|
* @remarks
|
|
6369
|
-
*
|
|
6412
|
+
* 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
6413
|
*
|
|
6371
6414
|
* @example
|
|
6372
6415
|
* { "bizdate": [ "-1", "-7", "-1m" ] }
|
|
@@ -6374,13 +6417,14 @@ export declare class GetDataQualityRuleTemplateResponseBodyDataQualityRuleTempla
|
|
|
6374
6417
|
referencedSamplesFilter?: string;
|
|
6375
6418
|
/**
|
|
6376
6419
|
* @remarks
|
|
6377
|
-
*
|
|
6378
|
-
*
|
|
6379
|
-
*
|
|
6380
|
-
*
|
|
6381
|
-
*
|
|
6382
|
-
*
|
|
6383
|
-
*
|
|
6420
|
+
* The threshold calculation method. Valid values:
|
|
6421
|
+
*
|
|
6422
|
+
* * Fixed
|
|
6423
|
+
* * Fluctation
|
|
6424
|
+
* * FluctationDiscreate
|
|
6425
|
+
* * Auto
|
|
6426
|
+
* * Average
|
|
6427
|
+
* * Variance
|
|
6384
6428
|
*
|
|
6385
6429
|
* @example
|
|
6386
6430
|
* Fixed
|
|
@@ -6400,22 +6444,23 @@ export declare class GetDataQualityRuleTemplateResponseBodyDataQualityRuleTempla
|
|
|
6400
6444
|
export declare class GetDataQualityRuleTemplateResponseBodyDataQualityRuleTemplateSamplingConfig extends $dara.Model {
|
|
6401
6445
|
/**
|
|
6402
6446
|
* @remarks
|
|
6403
|
-
* The
|
|
6404
|
-
*
|
|
6405
|
-
*
|
|
6406
|
-
*
|
|
6407
|
-
*
|
|
6408
|
-
*
|
|
6409
|
-
*
|
|
6410
|
-
*
|
|
6411
|
-
*
|
|
6412
|
-
*
|
|
6413
|
-
*
|
|
6414
|
-
*
|
|
6415
|
-
*
|
|
6416
|
-
*
|
|
6417
|
-
*
|
|
6418
|
-
*
|
|
6447
|
+
* The metrics used for sampling. Valid values:
|
|
6448
|
+
*
|
|
6449
|
+
* * Count: the number of rows in the table.
|
|
6450
|
+
* * Min: the minimum value of the field.
|
|
6451
|
+
* * Max: the maximum value of the field.
|
|
6452
|
+
* * Avg: the average value of the field.
|
|
6453
|
+
* * DistinctCount: the number of unique values of the field after deduplication.
|
|
6454
|
+
* * DistinctPercent: the proportion of the number of unique values of the field after deduplication to the number of rows in the table.
|
|
6455
|
+
* * DuplicatedCount: the number of duplicated values of the field.
|
|
6456
|
+
* * DuplicatedPercent: the proportion of the number of duplicated values of the field to the number of rows in the table.
|
|
6457
|
+
* * TableSize: the table size.
|
|
6458
|
+
* * NullValueCount: the number of rows in which the field value is null.
|
|
6459
|
+
* * NullValuePercent: the proportion of the number of rows in which the field value is null to the number of rows in the table.
|
|
6460
|
+
* * GroupCount: the field value and the number of rows for each field value.
|
|
6461
|
+
* * CountNotIn: the number of rows in which the field values are different from the referenced values that you specified in the rule.
|
|
6462
|
+
* * CountDistinctNotIn: the number of unique values that are different from the referenced values that you specified in the rule after deduplication.
|
|
6463
|
+
* * UserDefinedSql: indicates that data is sampled by executing custom SQL statements.
|
|
6419
6464
|
*
|
|
6420
6465
|
* @example
|
|
6421
6466
|
* Max
|
|
@@ -6423,7 +6468,7 @@ export declare class GetDataQualityRuleTemplateResponseBodyDataQualityRuleTempla
|
|
|
6423
6468
|
metric?: string;
|
|
6424
6469
|
/**
|
|
6425
6470
|
* @remarks
|
|
6426
|
-
*
|
|
6471
|
+
* The parameters required for sampling.
|
|
6427
6472
|
*
|
|
6428
6473
|
* @example
|
|
6429
6474
|
* {"SQL": "select count(1) from table;"}
|
|
@@ -6431,7 +6476,7 @@ export declare class GetDataQualityRuleTemplateResponseBodyDataQualityRuleTempla
|
|
|
6431
6476
|
metricParameters?: string;
|
|
6432
6477
|
/**
|
|
6433
6478
|
* @remarks
|
|
6434
|
-
*
|
|
6479
|
+
* 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
6480
|
*
|
|
6436
6481
|
* @example
|
|
6437
6482
|
* SET odps.sql.udf.timeout=600s;
|
|
@@ -6452,12 +6497,12 @@ export declare class GetDataQualityRuleTemplateResponseBodyDataQualityRuleTempla
|
|
|
6452
6497
|
export declare class GetDataQualityRuleTemplateResponseBodyDataQualityRuleTemplate extends $dara.Model {
|
|
6453
6498
|
/**
|
|
6454
6499
|
* @remarks
|
|
6455
|
-
*
|
|
6500
|
+
* The check settings for sample data.
|
|
6456
6501
|
*/
|
|
6457
6502
|
checkingConfig?: GetDataQualityRuleTemplateResponseBodyDataQualityRuleTemplateCheckingConfig;
|
|
6458
6503
|
/**
|
|
6459
6504
|
* @remarks
|
|
6460
|
-
* The
|
|
6505
|
+
* The code for the template.
|
|
6461
6506
|
*
|
|
6462
6507
|
* @example
|
|
6463
6508
|
* USER_DEFINED:123
|
|
@@ -6465,7 +6510,7 @@ export declare class GetDataQualityRuleTemplateResponseBodyDataQualityRuleTempla
|
|
|
6465
6510
|
code?: string;
|
|
6466
6511
|
/**
|
|
6467
6512
|
* @remarks
|
|
6468
|
-
* The
|
|
6513
|
+
* 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
6514
|
*
|
|
6470
6515
|
* @example
|
|
6471
6516
|
* /ods/order_data
|
|
@@ -6473,7 +6518,7 @@ export declare class GetDataQualityRuleTemplateResponseBodyDataQualityRuleTempla
|
|
|
6473
6518
|
directoryPath?: string;
|
|
6474
6519
|
/**
|
|
6475
6520
|
* @remarks
|
|
6476
|
-
* The name of the
|
|
6521
|
+
* The name of the template. The name can be up to 512 characters in length and can contain digits, letters, and punctuation marks.
|
|
6477
6522
|
*
|
|
6478
6523
|
* @example
|
|
6479
6524
|
* Table row Count Verification
|
|
@@ -6481,7 +6526,7 @@ export declare class GetDataQualityRuleTemplateResponseBodyDataQualityRuleTempla
|
|
|
6481
6526
|
name?: string;
|
|
6482
6527
|
/**
|
|
6483
6528
|
* @remarks
|
|
6484
|
-
* The
|
|
6529
|
+
* The DataWorks workspace ID.
|
|
6485
6530
|
*
|
|
6486
6531
|
* @example
|
|
6487
6532
|
* 4020
|
|
@@ -6489,7 +6534,7 @@ export declare class GetDataQualityRuleTemplateResponseBodyDataQualityRuleTempla
|
|
|
6489
6534
|
projectId?: number;
|
|
6490
6535
|
/**
|
|
6491
6536
|
* @remarks
|
|
6492
|
-
* The settings
|
|
6537
|
+
* The sampling settings.
|
|
6493
6538
|
*/
|
|
6494
6539
|
samplingConfig?: GetDataQualityRuleTemplateResponseBodyDataQualityRuleTemplateSamplingConfig;
|
|
6495
6540
|
/**
|
|
@@ -7202,6 +7247,9 @@ export declare class GetNodeResponseBodyNode extends $dara.Model {
|
|
|
7202
7247
|
*/
|
|
7203
7248
|
spec?: string;
|
|
7204
7249
|
/**
|
|
7250
|
+
* @remarks
|
|
7251
|
+
* The Id of the scheduled task after the node is published.
|
|
7252
|
+
*
|
|
7205
7253
|
* @example
|
|
7206
7254
|
* 700006680527
|
|
7207
7255
|
*/
|
|
@@ -10047,6 +10095,9 @@ export declare class GetWorkflowDefinitionResponseBodyWorkflowDefinition extends
|
|
|
10047
10095
|
*/
|
|
10048
10096
|
spec?: string;
|
|
10049
10097
|
/**
|
|
10098
|
+
* @remarks
|
|
10099
|
+
* The ID of the workflow on the scheduling side after publishing.
|
|
10100
|
+
*
|
|
10050
10101
|
* @example
|
|
10051
10102
|
* 700006657495
|
|
10052
10103
|
*/
|
|
@@ -10692,6 +10743,76 @@ export declare class ListAlertRulesResponseBodyPagingInfo extends $dara.Model {
|
|
|
10692
10743
|
[key: string]: any;
|
|
10693
10744
|
});
|
|
10694
10745
|
}
|
|
10746
|
+
export declare class ListCertificatesResponseBodyPagingInfoCertificates extends $dara.Model {
|
|
10747
|
+
/**
|
|
10748
|
+
* @example
|
|
10749
|
+
* 1730217600000
|
|
10750
|
+
*/
|
|
10751
|
+
createTime?: number;
|
|
10752
|
+
/**
|
|
10753
|
+
* @example
|
|
10754
|
+
* 1107550004253538
|
|
10755
|
+
*/
|
|
10756
|
+
createUser?: string;
|
|
10757
|
+
/**
|
|
10758
|
+
* @example
|
|
10759
|
+
* This is a file
|
|
10760
|
+
*/
|
|
10761
|
+
description?: string;
|
|
10762
|
+
/**
|
|
10763
|
+
* @example
|
|
10764
|
+
* 1024
|
|
10765
|
+
*/
|
|
10766
|
+
fileSizeInBytes?: number;
|
|
10767
|
+
/**
|
|
10768
|
+
* @example
|
|
10769
|
+
* 676303114031776
|
|
10770
|
+
*/
|
|
10771
|
+
id?: number;
|
|
10772
|
+
/**
|
|
10773
|
+
* @example
|
|
10774
|
+
* ca1.crt
|
|
10775
|
+
*/
|
|
10776
|
+
name?: string;
|
|
10777
|
+
static names(): {
|
|
10778
|
+
[key: string]: string;
|
|
10779
|
+
};
|
|
10780
|
+
static types(): {
|
|
10781
|
+
[key: string]: any;
|
|
10782
|
+
};
|
|
10783
|
+
validate(): void;
|
|
10784
|
+
constructor(map?: {
|
|
10785
|
+
[key: string]: any;
|
|
10786
|
+
});
|
|
10787
|
+
}
|
|
10788
|
+
export declare class ListCertificatesResponseBodyPagingInfo extends $dara.Model {
|
|
10789
|
+
certificates?: ListCertificatesResponseBodyPagingInfoCertificates[];
|
|
10790
|
+
/**
|
|
10791
|
+
* @example
|
|
10792
|
+
* 1
|
|
10793
|
+
*/
|
|
10794
|
+
pageNumber?: number;
|
|
10795
|
+
/**
|
|
10796
|
+
* @example
|
|
10797
|
+
* 10
|
|
10798
|
+
*/
|
|
10799
|
+
pageSize?: number;
|
|
10800
|
+
/**
|
|
10801
|
+
* @example
|
|
10802
|
+
* 100
|
|
10803
|
+
*/
|
|
10804
|
+
totalCount?: number;
|
|
10805
|
+
static names(): {
|
|
10806
|
+
[key: string]: string;
|
|
10807
|
+
};
|
|
10808
|
+
static types(): {
|
|
10809
|
+
[key: string]: any;
|
|
10810
|
+
};
|
|
10811
|
+
validate(): void;
|
|
10812
|
+
constructor(map?: {
|
|
10813
|
+
[key: string]: any;
|
|
10814
|
+
});
|
|
10815
|
+
}
|
|
10695
10816
|
export declare class ListDIAlarmRulesResponseBodyPagingInfoDIJobAlarmRulesNotificationSettingsNotificationChannels extends $dara.Model {
|
|
10696
10817
|
/**
|
|
10697
10818
|
* @remarks
|
|
@@ -12601,7 +12722,7 @@ export declare class ListDataQualityEvaluationTasksResponseBodyPagingInfo extend
|
|
|
12601
12722
|
export declare class ListDataQualityResultsResponseBodyPagingInfoDataQualityResultsDetails extends $dara.Model {
|
|
12602
12723
|
/**
|
|
12603
12724
|
* @remarks
|
|
12604
|
-
* The value used
|
|
12725
|
+
* The value that is used for comparison with the threshold.
|
|
12605
12726
|
*
|
|
12606
12727
|
* @example
|
|
12607
12728
|
* 100.0
|
|
@@ -12609,7 +12730,7 @@ export declare class ListDataQualityResultsResponseBodyPagingInfoDataQualityResu
|
|
|
12609
12730
|
checkedValue?: string;
|
|
12610
12731
|
/**
|
|
12611
12732
|
* @remarks
|
|
12612
|
-
*
|
|
12733
|
+
* 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
12734
|
*
|
|
12614
12735
|
* @example
|
|
12615
12736
|
* 0.0
|
|
@@ -12644,13 +12765,13 @@ export declare class ListDataQualityResultsResponseBodyPagingInfoDataQualityResu
|
|
|
12644
12765
|
* @remarks
|
|
12645
12766
|
* The threshold expression.
|
|
12646
12767
|
*
|
|
12647
|
-
*
|
|
12768
|
+
* If the template specified by the TemplateCode parameter is about fluctuation, you must use an expression to represent the threshold for fluctuation. Examples:
|
|
12648
12769
|
*
|
|
12649
|
-
*
|
|
12650
|
-
*
|
|
12651
|
-
*
|
|
12770
|
+
* * $checkValue > 0.01
|
|
12771
|
+
* * $checkValue < -0.01
|
|
12772
|
+
* * abs($checkValue) > 0.01
|
|
12652
12773
|
*
|
|
12653
|
-
*
|
|
12774
|
+
* 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
12775
|
*
|
|
12655
12776
|
* @example
|
|
12656
12777
|
* $checkValue > 0.01
|
|
@@ -12658,6 +12779,8 @@ export declare class ListDataQualityResultsResponseBodyPagingInfoDataQualityResu
|
|
|
12658
12779
|
expression?: string;
|
|
12659
12780
|
/**
|
|
12660
12781
|
* @remarks
|
|
12782
|
+
* The comparison operator. Valid values:
|
|
12783
|
+
*
|
|
12661
12784
|
* * \\>
|
|
12662
12785
|
* * \\>=
|
|
12663
12786
|
* * <
|
|
@@ -12693,13 +12816,13 @@ export declare class ListDataQualityResultsResponseBodyPagingInfoDataQualityResu
|
|
|
12693
12816
|
* @remarks
|
|
12694
12817
|
* The threshold expression.
|
|
12695
12818
|
*
|
|
12696
|
-
*
|
|
12819
|
+
* If the template specified by the TemplateCode parameter is about fluctuation, you must use an expression to represent the threshold for fluctuation. Examples:
|
|
12697
12820
|
*
|
|
12698
|
-
*
|
|
12699
|
-
*
|
|
12700
|
-
*
|
|
12821
|
+
* * $checkValue > 0.01
|
|
12822
|
+
* * $checkValue < -0.01
|
|
12823
|
+
* * abs($checkValue) > 0.01
|
|
12701
12824
|
*
|
|
12702
|
-
*
|
|
12825
|
+
* 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
12826
|
*
|
|
12704
12827
|
* @example
|
|
12705
12828
|
* $checkValue > 0.01
|
|
@@ -12707,6 +12830,8 @@ export declare class ListDataQualityResultsResponseBodyPagingInfoDataQualityResu
|
|
|
12707
12830
|
expression?: string;
|
|
12708
12831
|
/**
|
|
12709
12832
|
* @remarks
|
|
12833
|
+
* The comparison operator. Valid values:
|
|
12834
|
+
*
|
|
12710
12835
|
* * \\>
|
|
12711
12836
|
* * \\>=
|
|
12712
12837
|
* * <
|
|
@@ -12742,13 +12867,13 @@ export declare class ListDataQualityResultsResponseBodyPagingInfoDataQualityResu
|
|
|
12742
12867
|
* @remarks
|
|
12743
12868
|
* The threshold expression.
|
|
12744
12869
|
*
|
|
12745
|
-
*
|
|
12870
|
+
* If the template specified by the TemplateCode parameter is about fluctuation, you must use an expression to represent the threshold for fluctuation. Examples:
|
|
12746
12871
|
*
|
|
12747
|
-
*
|
|
12748
|
-
*
|
|
12749
|
-
*
|
|
12872
|
+
* * $checkValue > 0.01
|
|
12873
|
+
* * $checkValue < -0.01
|
|
12874
|
+
* * abs($checkValue) > 0.01
|
|
12750
12875
|
*
|
|
12751
|
-
*
|
|
12876
|
+
* 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
12877
|
*
|
|
12753
12878
|
* @example
|
|
12754
12879
|
* $checkValue > 0.01
|
|
@@ -12756,6 +12881,8 @@ export declare class ListDataQualityResultsResponseBodyPagingInfoDataQualityResu
|
|
|
12756
12881
|
expression?: string;
|
|
12757
12882
|
/**
|
|
12758
12883
|
* @remarks
|
|
12884
|
+
* The comparison operator. Valid values:
|
|
12885
|
+
*
|
|
12759
12886
|
* * \\>
|
|
12760
12887
|
* * \\>=
|
|
12761
12888
|
* * <
|
|
@@ -12816,7 +12943,7 @@ export declare class ListDataQualityResultsResponseBodyPagingInfoDataQualityResu
|
|
|
12816
12943
|
export declare class ListDataQualityResultsResponseBodyPagingInfoDataQualityResultsRuleCheckingConfig extends $dara.Model {
|
|
12817
12944
|
/**
|
|
12818
12945
|
* @remarks
|
|
12819
|
-
*
|
|
12946
|
+
* 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
12947
|
*
|
|
12821
12948
|
* @example
|
|
12822
12949
|
* { "bizdate": [ "-1", "-7", "-1m" ] }
|
|
@@ -12856,7 +12983,7 @@ export declare class ListDataQualityResultsResponseBodyPagingInfoDataQualityResu
|
|
|
12856
12983
|
export declare class ListDataQualityResultsResponseBodyPagingInfoDataQualityResultsRuleErrorHandlers extends $dara.Model {
|
|
12857
12984
|
/**
|
|
12858
12985
|
* @remarks
|
|
12859
|
-
*
|
|
12986
|
+
* 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
12987
|
*
|
|
12861
12988
|
* @example
|
|
12862
12989
|
* SELECT * FROM tb_api_log WHERE id IS NULL
|
|
@@ -12910,7 +13037,7 @@ export declare class ListDataQualityResultsResponseBodyPagingInfoDataQualityResu
|
|
|
12910
13037
|
metric?: string;
|
|
12911
13038
|
/**
|
|
12912
13039
|
* @remarks
|
|
12913
|
-
*
|
|
13040
|
+
* The parameters required for sampling.
|
|
12914
13041
|
*
|
|
12915
13042
|
* @example
|
|
12916
13043
|
* { "columns": [ "id", "name" ] }
|
|
@@ -12918,7 +13045,7 @@ export declare class ListDataQualityResultsResponseBodyPagingInfoDataQualityResu
|
|
|
12918
13045
|
metricParameters?: string;
|
|
12919
13046
|
/**
|
|
12920
13047
|
* @remarks
|
|
12921
|
-
* The
|
|
13048
|
+
* The statements that are used to filter unnecessary data during sampling. The statements can be up to 16,777,215 characters in length.
|
|
12922
13049
|
*
|
|
12923
13050
|
* @example
|
|
12924
13051
|
* id IS NULL
|
|
@@ -12926,7 +13053,7 @@ export declare class ListDataQualityResultsResponseBodyPagingInfoDataQualityResu
|
|
|
12926
13053
|
samplingFilter?: string;
|
|
12927
13054
|
/**
|
|
12928
13055
|
* @remarks
|
|
12929
|
-
*
|
|
13056
|
+
* 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
13057
|
*
|
|
12931
13058
|
* @example
|
|
12932
13059
|
* SET odps.sql.udf.timeout=600s;
|
|
@@ -12962,7 +13089,7 @@ export declare class ListDataQualityResultsResponseBodyPagingInfoDataQualityResu
|
|
|
12962
13089
|
databaseType?: string;
|
|
12963
13090
|
/**
|
|
12964
13091
|
* @remarks
|
|
12965
|
-
* The
|
|
13092
|
+
* The ID of the table in Data Map.
|
|
12966
13093
|
*
|
|
12967
13094
|
* @example
|
|
12968
13095
|
* odps.unit_test.tb_unit_test
|
|
@@ -12997,7 +13124,7 @@ export declare class ListDataQualityResultsResponseBodyPagingInfoDataQualityResu
|
|
|
12997
13124
|
checkingConfig?: ListDataQualityResultsResponseBodyPagingInfoDataQualityResultsRuleCheckingConfig;
|
|
12998
13125
|
/**
|
|
12999
13126
|
* @remarks
|
|
13000
|
-
* The description of the rule.
|
|
13127
|
+
* The description of the rule. The description can be up to 500 characters in length.
|
|
13001
13128
|
*
|
|
13002
13129
|
* @example
|
|
13003
13130
|
* this is a odps _sql task
|
|
@@ -13005,7 +13132,7 @@ export declare class ListDataQualityResultsResponseBodyPagingInfoDataQualityResu
|
|
|
13005
13132
|
description?: string;
|
|
13006
13133
|
/**
|
|
13007
13134
|
* @remarks
|
|
13008
|
-
*
|
|
13135
|
+
* Indicates whether the rule is enabled.
|
|
13009
13136
|
*
|
|
13010
13137
|
* @example
|
|
13011
13138
|
* true
|
|
@@ -13018,7 +13145,7 @@ export declare class ListDataQualityResultsResponseBodyPagingInfoDataQualityResu
|
|
|
13018
13145
|
errorHandlers?: ListDataQualityResultsResponseBodyPagingInfoDataQualityResultsRuleErrorHandlers[];
|
|
13019
13146
|
/**
|
|
13020
13147
|
* @remarks
|
|
13021
|
-
* The ID
|
|
13148
|
+
* The rule ID.
|
|
13022
13149
|
*
|
|
13023
13150
|
* @example
|
|
13024
13151
|
* 100001
|
|
@@ -13026,7 +13153,7 @@ export declare class ListDataQualityResultsResponseBodyPagingInfoDataQualityResu
|
|
|
13026
13153
|
id?: number;
|
|
13027
13154
|
/**
|
|
13028
13155
|
* @remarks
|
|
13029
|
-
* The
|
|
13156
|
+
* The name of the rule. The name can be up to 255 characters in length and can contain digits, letters, and punctuation marks.
|
|
13030
13157
|
*
|
|
13031
13158
|
* @example
|
|
13032
13159
|
* The table cannot be empty.
|
|
@@ -13034,7 +13161,7 @@ export declare class ListDataQualityResultsResponseBodyPagingInfoDataQualityResu
|
|
|
13034
13161
|
name?: string;
|
|
13035
13162
|
/**
|
|
13036
13163
|
* @remarks
|
|
13037
|
-
* DataWorks
|
|
13164
|
+
* The DataWorks workspace ID.
|
|
13038
13165
|
*
|
|
13039
13166
|
* @example
|
|
13040
13167
|
* 100
|
|
@@ -13083,7 +13210,7 @@ export declare class ListDataQualityResultsResponseBodyPagingInfoDataQualityResu
|
|
|
13083
13210
|
export declare class ListDataQualityResultsResponseBodyPagingInfoDataQualityResults extends $dara.Model {
|
|
13084
13211
|
/**
|
|
13085
13212
|
* @remarks
|
|
13086
|
-
* The time when the
|
|
13213
|
+
* The time when the data quality check result was generated.
|
|
13087
13214
|
*
|
|
13088
13215
|
* @example
|
|
13089
13216
|
* 1708284916414
|
|
@@ -13091,12 +13218,12 @@ export declare class ListDataQualityResultsResponseBodyPagingInfoDataQualityResu
|
|
|
13091
13218
|
createTime?: number;
|
|
13092
13219
|
/**
|
|
13093
13220
|
* @remarks
|
|
13094
|
-
* The check
|
|
13221
|
+
* The information about the data quality check.
|
|
13095
13222
|
*/
|
|
13096
13223
|
details?: ListDataQualityResultsResponseBodyPagingInfoDataQualityResultsDetails[];
|
|
13097
13224
|
/**
|
|
13098
13225
|
* @remarks
|
|
13099
|
-
* The ID of the
|
|
13226
|
+
* The ID of the check result.
|
|
13100
13227
|
*
|
|
13101
13228
|
* @example
|
|
13102
13229
|
* 16033
|
|
@@ -13109,7 +13236,7 @@ export declare class ListDataQualityResultsResponseBodyPagingInfoDataQualityResu
|
|
|
13109
13236
|
rule?: ListDataQualityResultsResponseBodyPagingInfoDataQualityResultsRule;
|
|
13110
13237
|
/**
|
|
13111
13238
|
* @remarks
|
|
13112
|
-
* The sample
|
|
13239
|
+
* The sample values used for the check.
|
|
13113
13240
|
*
|
|
13114
13241
|
* @example
|
|
13115
13242
|
* [
|
|
@@ -13139,7 +13266,7 @@ export declare class ListDataQualityResultsResponseBodyPagingInfoDataQualityResu
|
|
|
13139
13266
|
status?: string;
|
|
13140
13267
|
/**
|
|
13141
13268
|
* @remarks
|
|
13142
|
-
* The ID of the
|
|
13269
|
+
* The ID of the instance generated by the check.
|
|
13143
13270
|
*
|
|
13144
13271
|
* @example
|
|
13145
13272
|
* 200001
|
|
@@ -13172,7 +13299,7 @@ export declare class ListDataQualityResultsResponseBodyPagingInfo extends $dara.
|
|
|
13172
13299
|
pageNumber?: number;
|
|
13173
13300
|
/**
|
|
13174
13301
|
* @remarks
|
|
13175
|
-
* The page
|
|
13302
|
+
* The number of entries per page.
|
|
13176
13303
|
*
|
|
13177
13304
|
* @example
|
|
13178
13305
|
* 10
|
|
@@ -13180,7 +13307,7 @@ export declare class ListDataQualityResultsResponseBodyPagingInfo extends $dara.
|
|
|
13180
13307
|
pageSize?: number;
|
|
13181
13308
|
/**
|
|
13182
13309
|
* @remarks
|
|
13183
|
-
* The total number of entries.
|
|
13310
|
+
* The total number of entries returned.
|
|
13184
13311
|
*
|
|
13185
13312
|
* @example
|
|
13186
13313
|
* 219
|
|
@@ -13393,13 +13520,13 @@ export declare class ListDataQualityRulesResponseBodyPagingInfoDataQualityRulesC
|
|
|
13393
13520
|
* @remarks
|
|
13394
13521
|
* The threshold expression.
|
|
13395
13522
|
*
|
|
13396
|
-
*
|
|
13523
|
+
* If the template specified by the TemplateCode parameter is about fluctuation, you must use an expression to represent the threshold for fluctuation. Examples:
|
|
13397
13524
|
*
|
|
13398
|
-
*
|
|
13399
|
-
*
|
|
13400
|
-
*
|
|
13525
|
+
* * $checkValue > 0.01
|
|
13526
|
+
* * $checkValue < -0.01
|
|
13527
|
+
* * abs($checkValue) > 0.01
|
|
13401
13528
|
*
|
|
13402
|
-
*
|
|
13529
|
+
* 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
13530
|
*
|
|
13404
13531
|
* @example
|
|
13405
13532
|
* $checkValue > 0.01
|
|
@@ -13444,13 +13571,13 @@ export declare class ListDataQualityRulesResponseBodyPagingInfoDataQualityRulesC
|
|
|
13444
13571
|
* @remarks
|
|
13445
13572
|
* The threshold expression.
|
|
13446
13573
|
*
|
|
13447
|
-
*
|
|
13574
|
+
* If the template specified by the TemplateCode parameter is about fluctuation, you must use an expression to represent the threshold for fluctuation. Examples:
|
|
13448
13575
|
*
|
|
13449
|
-
*
|
|
13450
|
-
*
|
|
13451
|
-
*
|
|
13576
|
+
* * $checkValue > 0.01
|
|
13577
|
+
* * $checkValue < -0.01
|
|
13578
|
+
* * abs($checkValue) > 0.01
|
|
13452
13579
|
*
|
|
13453
|
-
*
|
|
13580
|
+
* 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
13581
|
*
|
|
13455
13582
|
* @example
|
|
13456
13583
|
* $checkValue > 0.01
|
|
@@ -13495,13 +13622,13 @@ export declare class ListDataQualityRulesResponseBodyPagingInfoDataQualityRulesC
|
|
|
13495
13622
|
* @remarks
|
|
13496
13623
|
* The threshold expression.
|
|
13497
13624
|
*
|
|
13498
|
-
*
|
|
13625
|
+
* If the template specified by the TemplateCode parameter is about fluctuation, you must use an expression to represent the threshold for fluctuation. Examples:
|
|
13499
13626
|
*
|
|
13500
|
-
*
|
|
13501
|
-
*
|
|
13502
|
-
*
|
|
13627
|
+
* * $checkValue > 0.01
|
|
13628
|
+
* * $checkValue < -0.01
|
|
13629
|
+
* * abs($checkValue) > 0.01
|
|
13503
13630
|
*
|
|
13504
|
-
*
|
|
13631
|
+
* 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
13632
|
*
|
|
13506
13633
|
* @example
|
|
13507
13634
|
* $checkValue > 0.01
|
|
@@ -17428,7 +17555,7 @@ export declare class ListNodesResponseBodyPagingInfoNodesOutputsVariables extend
|
|
|
17428
17555
|
node?: ListNodesResponseBodyPagingInfoNodesOutputsVariablesNode;
|
|
17429
17556
|
/**
|
|
17430
17557
|
* @remarks
|
|
17431
|
-
* The scope of the variable. Valid
|
|
17558
|
+
* The scope of the variable. Valid values:
|
|
17432
17559
|
*
|
|
17433
17560
|
* * NodeParameter
|
|
17434
17561
|
* * NodeContext
|
|
@@ -17441,7 +17568,7 @@ export declare class ListNodesResponseBodyPagingInfoNodesOutputsVariables extend
|
|
|
17441
17568
|
scope?: string;
|
|
17442
17569
|
/**
|
|
17443
17570
|
* @remarks
|
|
17444
|
-
* The type of the variable. Valid
|
|
17571
|
+
* The type of the variable. Valid values:
|
|
17445
17572
|
*
|
|
17446
17573
|
* * NoKvVariableExpression
|
|
17447
17574
|
* * Constant
|
|
@@ -17642,7 +17769,7 @@ export declare class ListNodesResponseBodyPagingInfoNodesTags extends $dara.Mode
|
|
|
17642
17769
|
key?: string;
|
|
17643
17770
|
/**
|
|
17644
17771
|
* @remarks
|
|
17645
|
-
* The tag value
|
|
17772
|
+
* The tag value
|
|
17646
17773
|
*
|
|
17647
17774
|
* @example
|
|
17648
17775
|
* null
|
|
@@ -18346,6 +18473,34 @@ export declare class ListResourceGroupsRequestAliyunResourceTags extends $dara.M
|
|
|
18346
18473
|
[key: string]: any;
|
|
18347
18474
|
});
|
|
18348
18475
|
}
|
|
18476
|
+
export declare class ListResourceGroupsResponseBodyPagingInfoResourceGroupListAliyunResourceTags extends $dara.Model {
|
|
18477
|
+
/**
|
|
18478
|
+
* @remarks
|
|
18479
|
+
* Tag Key
|
|
18480
|
+
*
|
|
18481
|
+
* @example
|
|
18482
|
+
* Key
|
|
18483
|
+
*/
|
|
18484
|
+
key?: string;
|
|
18485
|
+
/**
|
|
18486
|
+
* @remarks
|
|
18487
|
+
* Tag Value
|
|
18488
|
+
*
|
|
18489
|
+
* @example
|
|
18490
|
+
* Value
|
|
18491
|
+
*/
|
|
18492
|
+
value?: string;
|
|
18493
|
+
static names(): {
|
|
18494
|
+
[key: string]: string;
|
|
18495
|
+
};
|
|
18496
|
+
static types(): {
|
|
18497
|
+
[key: string]: any;
|
|
18498
|
+
};
|
|
18499
|
+
validate(): void;
|
|
18500
|
+
constructor(map?: {
|
|
18501
|
+
[key: string]: any;
|
|
18502
|
+
});
|
|
18503
|
+
}
|
|
18349
18504
|
export declare class ListResourceGroupsResponseBodyPagingInfoResourceGroupListSpec extends $dara.Model {
|
|
18350
18505
|
/**
|
|
18351
18506
|
* @remarks
|
|
@@ -18383,6 +18538,11 @@ export declare class ListResourceGroupsResponseBodyPagingInfoResourceGroupList e
|
|
|
18383
18538
|
* rg-aek2kqofrgXXXXX
|
|
18384
18539
|
*/
|
|
18385
18540
|
aliyunResourceGroupId?: string;
|
|
18541
|
+
/**
|
|
18542
|
+
* @remarks
|
|
18543
|
+
* Alibaba Cloud tag list
|
|
18544
|
+
*/
|
|
18545
|
+
aliyunResourceTags?: ListResourceGroupsResponseBodyPagingInfoResourceGroupListAliyunResourceTags[];
|
|
18386
18546
|
/**
|
|
18387
18547
|
* @remarks
|
|
18388
18548
|
* The creation time, which is a 64-bit timestamp.
|
|
@@ -18457,7 +18617,7 @@ export declare class ListResourceGroupsResponseBodyPagingInfoResourceGroupList e
|
|
|
18457
18617
|
remark?: string;
|
|
18458
18618
|
/**
|
|
18459
18619
|
* @remarks
|
|
18460
|
-
* The type of resource group. Valid values:
|
|
18620
|
+
* The type of the resource group. Valid values:
|
|
18461
18621
|
*
|
|
18462
18622
|
* * CommonV2: serverless resource group
|
|
18463
18623
|
* * ExclusiveDataIntegration: exclusive resource group for Data Integration
|
|
@@ -18480,13 +18640,15 @@ export declare class ListResourceGroupsResponseBodyPagingInfoResourceGroupList e
|
|
|
18480
18640
|
* * Normal: The resource group is running or in use.
|
|
18481
18641
|
* * Stop: The resource group is expired.
|
|
18482
18642
|
* * Deleted: The resource group is released or destroyed.
|
|
18483
|
-
* * Creating: The resource group is being
|
|
18484
|
-
* * CreateFailed: The resource group fails to be
|
|
18643
|
+
* * Creating: The resource group is being created.
|
|
18644
|
+
* * CreateFailed: The resource group fails to be created.
|
|
18485
18645
|
* * Updating: The resource group is being scaled in or out, or the configurations of the resource group are being changed.
|
|
18486
18646
|
* * UpdateFailed: The resource group fails to be scaled out or upgraded.
|
|
18487
18647
|
* * Deleting: The resource group is being released or destroyed.
|
|
18488
18648
|
* * DeleteFailed: The resource group fails to be released or destroyed.
|
|
18489
18649
|
* * Timeout: The operations that are performed on the resource group time out.
|
|
18650
|
+
* * Freezed: The resource group is frozen.
|
|
18651
|
+
* * Starting: The resource group is being started.
|
|
18490
18652
|
*
|
|
18491
18653
|
* @example
|
|
18492
18654
|
* Normal
|
|
@@ -21536,7 +21698,7 @@ export declare class ListWorkflowDefinitionsResponseBodyPagingInfoWorkflowDefini
|
|
|
21536
21698
|
id?: number;
|
|
21537
21699
|
/**
|
|
21538
21700
|
* @remarks
|
|
21539
|
-
* The
|
|
21701
|
+
* The time when the workflow was last modified. This value is a UNIX timestamp.
|
|
21540
21702
|
*
|
|
21541
21703
|
* @example
|
|
21542
21704
|
* 1698057323000
|
|
@@ -22125,6 +22287,53 @@ export declare class TagDataAssetsRequestTags extends $dara.Model {
|
|
|
22125
22287
|
[key: string]: any;
|
|
22126
22288
|
});
|
|
22127
22289
|
}
|
|
22290
|
+
export declare class TestDataSourceConnectivityResponseBodyConnectivityDetailLogs extends $dara.Model {
|
|
22291
|
+
/**
|
|
22292
|
+
* @example
|
|
22293
|
+
* validate_input_parameters
|
|
22294
|
+
*/
|
|
22295
|
+
code?: string;
|
|
22296
|
+
/**
|
|
22297
|
+
* @example
|
|
22298
|
+
* 1730217604002
|
|
22299
|
+
*/
|
|
22300
|
+
endTime?: number;
|
|
22301
|
+
message?: string;
|
|
22302
|
+
/**
|
|
22303
|
+
* @example
|
|
22304
|
+
* 1730217600001
|
|
22305
|
+
*/
|
|
22306
|
+
startTime?: number;
|
|
22307
|
+
static names(): {
|
|
22308
|
+
[key: string]: string;
|
|
22309
|
+
};
|
|
22310
|
+
static types(): {
|
|
22311
|
+
[key: string]: any;
|
|
22312
|
+
};
|
|
22313
|
+
validate(): void;
|
|
22314
|
+
constructor(map?: {
|
|
22315
|
+
[key: string]: any;
|
|
22316
|
+
});
|
|
22317
|
+
}
|
|
22318
|
+
export declare class TestDataSourceConnectivityResponseBodyConnectivity extends $dara.Model {
|
|
22319
|
+
connectMessage?: string;
|
|
22320
|
+
/**
|
|
22321
|
+
* @example
|
|
22322
|
+
* Connectable
|
|
22323
|
+
*/
|
|
22324
|
+
connectState?: string;
|
|
22325
|
+
detailLogs?: TestDataSourceConnectivityResponseBodyConnectivityDetailLogs[];
|
|
22326
|
+
static names(): {
|
|
22327
|
+
[key: string]: string;
|
|
22328
|
+
};
|
|
22329
|
+
static types(): {
|
|
22330
|
+
[key: string]: any;
|
|
22331
|
+
};
|
|
22332
|
+
validate(): void;
|
|
22333
|
+
constructor(map?: {
|
|
22334
|
+
[key: string]: any;
|
|
22335
|
+
});
|
|
22336
|
+
}
|
|
22128
22337
|
export declare class UnTagDataAssetsRequestTags extends $dara.Model {
|
|
22129
22338
|
/**
|
|
22130
22339
|
* @remarks
|
|
@@ -23169,15 +23378,15 @@ export declare class UpdateDIJobRequestTransformationRules extends $dara.Model {
|
|
|
23169
23378
|
export declare class UpdateDataQualityEvaluationTaskRequestDataQualityRulesCheckingConfigThresholdsCritical extends $dara.Model {
|
|
23170
23379
|
/**
|
|
23171
23380
|
* @remarks
|
|
23172
|
-
*
|
|
23381
|
+
* The threshold expression.
|
|
23173
23382
|
*
|
|
23174
|
-
*
|
|
23383
|
+
* If the template specified by the TemplateCode parameter is about fluctuation, you must use an expression to represent the threshold for fluctuation. Examples:
|
|
23175
23384
|
*
|
|
23176
|
-
*
|
|
23177
|
-
*
|
|
23178
|
-
*
|
|
23385
|
+
* * $checkValue > 0.01
|
|
23386
|
+
* * $checkValue < -0.01
|
|
23387
|
+
* * abs($checkValue) > 0.01
|
|
23179
23388
|
*
|
|
23180
|
-
*
|
|
23389
|
+
* 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
23390
|
*
|
|
23182
23391
|
* @example
|
|
23183
23392
|
* $checkValue > 0.01
|
|
@@ -23220,15 +23429,15 @@ export declare class UpdateDataQualityEvaluationTaskRequestDataQualityRulesCheck
|
|
|
23220
23429
|
export declare class UpdateDataQualityEvaluationTaskRequestDataQualityRulesCheckingConfigThresholdsExpected extends $dara.Model {
|
|
23221
23430
|
/**
|
|
23222
23431
|
* @remarks
|
|
23223
|
-
*
|
|
23432
|
+
* The threshold expression.
|
|
23224
23433
|
*
|
|
23225
|
-
*
|
|
23434
|
+
* If the template specified by the TemplateCode parameter is about fluctuation, you must use an expression to represent the threshold for fluctuation. Examples:
|
|
23226
23435
|
*
|
|
23227
|
-
*
|
|
23228
|
-
*
|
|
23229
|
-
*
|
|
23436
|
+
* * $checkValue > 0.01
|
|
23437
|
+
* * $checkValue < -0.01
|
|
23438
|
+
* * abs($checkValue) > 0.01
|
|
23230
23439
|
*
|
|
23231
|
-
*
|
|
23440
|
+
* 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
23441
|
*
|
|
23233
23442
|
* @example
|
|
23234
23443
|
* $checkValue > 0.01
|
|
@@ -23271,15 +23480,15 @@ export declare class UpdateDataQualityEvaluationTaskRequestDataQualityRulesCheck
|
|
|
23271
23480
|
export declare class UpdateDataQualityEvaluationTaskRequestDataQualityRulesCheckingConfigThresholdsWarned extends $dara.Model {
|
|
23272
23481
|
/**
|
|
23273
23482
|
* @remarks
|
|
23274
|
-
*
|
|
23483
|
+
* The threshold expression.
|
|
23275
23484
|
*
|
|
23276
|
-
*
|
|
23485
|
+
* If the template specified by the TemplateCode parameter is about fluctuation, you must use an expression to represent the threshold for fluctuation. Examples:
|
|
23277
23486
|
*
|
|
23278
|
-
*
|
|
23279
|
-
*
|
|
23280
|
-
*
|
|
23487
|
+
* * $checkValue > 0.01
|
|
23488
|
+
* * $checkValue < -0.01
|
|
23489
|
+
* * abs($checkValue) > 0.01
|
|
23281
23490
|
*
|
|
23282
|
-
*
|
|
23491
|
+
* 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
23492
|
*
|
|
23284
23493
|
* @example
|
|
23285
23494
|
* $checkValue > 0.01
|
|
@@ -23364,7 +23573,7 @@ export declare class UpdateDataQualityEvaluationTaskRequestDataQualityRulesCheck
|
|
|
23364
23573
|
* @remarks
|
|
23365
23574
|
* The threshold calculation method. Valid values:
|
|
23366
23575
|
*
|
|
23367
|
-
* *
|
|
23576
|
+
* * Fluctation
|
|
23368
23577
|
* * Auto
|
|
23369
23578
|
* * FluctationDiscreate
|
|
23370
23579
|
* * Average
|
|
@@ -23418,24 +23627,23 @@ export declare class UpdateDataQualityEvaluationTaskRequestDataQualityRulesError
|
|
|
23418
23627
|
export declare class UpdateDataQualityEvaluationTaskRequestDataQualityRulesSamplingConfig extends $dara.Model {
|
|
23419
23628
|
/**
|
|
23420
23629
|
* @remarks
|
|
23421
|
-
* The metrics used for sampling.
|
|
23422
|
-
* Valid values:
|
|
23630
|
+
* The metrics used for sampling. Valid values:
|
|
23423
23631
|
*
|
|
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
23632
|
* * 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
23633
|
* * Min: the minimum value of the field.
|
|
23634
|
+
* * Max: the maximum value of the field.
|
|
23433
23635
|
* * Avg: the average value of the field.
|
|
23434
23636
|
* * DistinctCount: the number of unique values of the field after deduplication.
|
|
23637
|
+
* * DistinctPercent: the proportion of the number of unique values of the field after deduplication to the number of rows in the table.
|
|
23638
|
+
* * DuplicatedCount: the number of duplicated values of the field.
|
|
23639
|
+
* * DuplicatedPercent: the proportion of the number of duplicated values of the field to the number of rows in the table.
|
|
23640
|
+
* * TableSize: the table size.
|
|
23435
23641
|
* * 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
23642
|
* * NullValuePercent: the proportion of the number of rows in which the field value is null to the number of rows in the table.
|
|
23438
|
-
* *
|
|
23643
|
+
* * GroupCount: the field value and the number of rows for each field value.
|
|
23644
|
+
* * CountNotIn: the number of rows in which the field values are different from the referenced values that you specified in the rule.
|
|
23645
|
+
* * CountDistinctNotIn: the number of unique values that are different from the referenced values that you specified in the rule after deduplication.
|
|
23646
|
+
* * UserDefinedSql: specifies that data is sampled by executing custom SQL statements.
|
|
23439
23647
|
*
|
|
23440
23648
|
* @example
|
|
23441
23649
|
* CountNotIn
|
|
@@ -24186,11 +24394,12 @@ export declare class UpdateTaskRequestDataSource extends $dara.Model {
|
|
|
24186
24394
|
export declare class UpdateTaskRequestDependencies extends $dara.Model {
|
|
24187
24395
|
/**
|
|
24188
24396
|
* @remarks
|
|
24189
|
-
* The type
|
|
24190
|
-
*
|
|
24191
|
-
*
|
|
24192
|
-
*
|
|
24193
|
-
*
|
|
24397
|
+
* The dependency type. Valid values:
|
|
24398
|
+
*
|
|
24399
|
+
* * CrossCycleDependsOnChildren: cross-cycle dependency on level-1 descendant nodes
|
|
24400
|
+
* * CrossCycleDependsOnSelf: cross-cycle dependency on the current node
|
|
24401
|
+
* * CrossCycleDependsOnOtherNode: cross-cycle dependency on other nodes
|
|
24402
|
+
* * Normal: same-cycle scheduling dependency
|
|
24194
24403
|
*
|
|
24195
24404
|
* This parameter is required.
|
|
24196
24405
|
*
|
|
@@ -24200,7 +24409,7 @@ export declare class UpdateTaskRequestDependencies extends $dara.Model {
|
|
|
24200
24409
|
type?: string;
|
|
24201
24410
|
/**
|
|
24202
24411
|
* @remarks
|
|
24203
|
-
* The
|
|
24412
|
+
* 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
24413
|
*
|
|
24205
24414
|
* @example
|
|
24206
24415
|
* pre.odps_sql_demo_0
|
|
@@ -24208,7 +24417,7 @@ export declare class UpdateTaskRequestDependencies extends $dara.Model {
|
|
|
24208
24417
|
upstreamOutput?: string;
|
|
24209
24418
|
/**
|
|
24210
24419
|
* @remarks
|
|
24211
|
-
* The
|
|
24420
|
+
* 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
24421
|
*
|
|
24213
24422
|
* @example
|
|
24214
24423
|
* 1234
|
|
@@ -24236,11 +24445,12 @@ export declare class UpdateTaskRequestInputsVariables extends $dara.Model {
|
|
|
24236
24445
|
name?: string;
|
|
24237
24446
|
/**
|
|
24238
24447
|
* @remarks
|
|
24239
|
-
*
|
|
24240
|
-
*
|
|
24241
|
-
*
|
|
24242
|
-
*
|
|
24243
|
-
*
|
|
24448
|
+
* The type. Valid values:
|
|
24449
|
+
*
|
|
24450
|
+
* * Constant: constant
|
|
24451
|
+
* * PassThrough: node output
|
|
24452
|
+
* * System: variable
|
|
24453
|
+
* * NodeOutput: script output
|
|
24244
24454
|
*
|
|
24245
24455
|
* This parameter is required.
|
|
24246
24456
|
*
|
|
@@ -24270,7 +24480,7 @@ export declare class UpdateTaskRequestInputsVariables extends $dara.Model {
|
|
|
24270
24480
|
export declare class UpdateTaskRequestInputs extends $dara.Model {
|
|
24271
24481
|
/**
|
|
24272
24482
|
* @remarks
|
|
24273
|
-
* The
|
|
24483
|
+
* The variables.
|
|
24274
24484
|
*/
|
|
24275
24485
|
variables?: UpdateTaskRequestInputsVariables[];
|
|
24276
24486
|
static names(): {
|
|
@@ -24287,7 +24497,7 @@ export declare class UpdateTaskRequestInputs extends $dara.Model {
|
|
|
24287
24497
|
export declare class UpdateTaskRequestOutputsTaskOutputs extends $dara.Model {
|
|
24288
24498
|
/**
|
|
24289
24499
|
* @remarks
|
|
24290
|
-
* The output
|
|
24500
|
+
* The identifier of the output.
|
|
24291
24501
|
*
|
|
24292
24502
|
* @example
|
|
24293
24503
|
* pre.odps_sql_demo_0
|
|
@@ -24315,11 +24525,12 @@ export declare class UpdateTaskRequestOutputsVariables extends $dara.Model {
|
|
|
24315
24525
|
name?: string;
|
|
24316
24526
|
/**
|
|
24317
24527
|
* @remarks
|
|
24318
|
-
*
|
|
24319
|
-
*
|
|
24320
|
-
*
|
|
24321
|
-
*
|
|
24322
|
-
*
|
|
24528
|
+
* The type. Valid values:
|
|
24529
|
+
*
|
|
24530
|
+
* * Constant: constant
|
|
24531
|
+
* * PassThrough: node output
|
|
24532
|
+
* * System: variable
|
|
24533
|
+
* * NodeOutput: script output
|
|
24323
24534
|
*
|
|
24324
24535
|
* This parameter is required.
|
|
24325
24536
|
*
|
|
@@ -24349,12 +24560,12 @@ export declare class UpdateTaskRequestOutputsVariables extends $dara.Model {
|
|
|
24349
24560
|
export declare class UpdateTaskRequestOutputs extends $dara.Model {
|
|
24350
24561
|
/**
|
|
24351
24562
|
* @remarks
|
|
24352
|
-
* The
|
|
24563
|
+
* The task outputs.
|
|
24353
24564
|
*/
|
|
24354
24565
|
taskOutputs?: UpdateTaskRequestOutputsTaskOutputs[];
|
|
24355
24566
|
/**
|
|
24356
24567
|
* @remarks
|
|
24357
|
-
* The
|
|
24568
|
+
* The variables.
|
|
24358
24569
|
*/
|
|
24359
24570
|
variables?: UpdateTaskRequestOutputsVariables[];
|
|
24360
24571
|
static names(): {
|
|
@@ -24371,7 +24582,7 @@ export declare class UpdateTaskRequestOutputs extends $dara.Model {
|
|
|
24371
24582
|
export declare class UpdateTaskRequestRuntimeResource extends $dara.Model {
|
|
24372
24583
|
/**
|
|
24373
24584
|
* @remarks
|
|
24374
|
-
*
|
|
24585
|
+
* The default number of compute units (CUs) configured for task running.
|
|
24375
24586
|
*
|
|
24376
24587
|
* @example
|
|
24377
24588
|
* 0.25
|
|
@@ -24379,7 +24590,7 @@ export declare class UpdateTaskRequestRuntimeResource extends $dara.Model {
|
|
|
24379
24590
|
cu?: string;
|
|
24380
24591
|
/**
|
|
24381
24592
|
* @remarks
|
|
24382
|
-
* The ID of the image configured for
|
|
24593
|
+
* The ID of the image configured for task running.
|
|
24383
24594
|
*
|
|
24384
24595
|
* @example
|
|
24385
24596
|
* i-xxxxxx
|
|
@@ -24387,7 +24598,7 @@ export declare class UpdateTaskRequestRuntimeResource extends $dara.Model {
|
|
|
24387
24598
|
image?: string;
|
|
24388
24599
|
/**
|
|
24389
24600
|
* @remarks
|
|
24390
|
-
* The
|
|
24601
|
+
* The ID of the resource group for scheduling configured for task running.
|
|
24391
24602
|
*
|
|
24392
24603
|
* This parameter is required.
|
|
24393
24604
|
*
|
|
@@ -24417,7 +24628,7 @@ export declare class UpdateTaskRequestScript extends $dara.Model {
|
|
|
24417
24628
|
content?: string;
|
|
24418
24629
|
/**
|
|
24419
24630
|
* @remarks
|
|
24420
|
-
* The
|
|
24631
|
+
* The script parameters.
|
|
24421
24632
|
*
|
|
24422
24633
|
* @example
|
|
24423
24634
|
* para1=$bizdate
|
|
@@ -24447,7 +24658,7 @@ export declare class UpdateTaskRequestTags extends $dara.Model {
|
|
|
24447
24658
|
key?: string;
|
|
24448
24659
|
/**
|
|
24449
24660
|
* @remarks
|
|
24450
|
-
* The value
|
|
24661
|
+
* The tag value.
|
|
24451
24662
|
*
|
|
24452
24663
|
* @example
|
|
24453
24664
|
* value1
|
|
@@ -24467,7 +24678,7 @@ export declare class UpdateTaskRequestTags extends $dara.Model {
|
|
|
24467
24678
|
export declare class UpdateTaskRequestTrigger extends $dara.Model {
|
|
24468
24679
|
/**
|
|
24469
24680
|
* @remarks
|
|
24470
|
-
*
|
|
24681
|
+
* The CRON expression. This parameter takes effect only if the Type parameter is set to Scheduler.
|
|
24471
24682
|
*
|
|
24472
24683
|
* @example
|
|
24473
24684
|
* 00 00 00 * * ?
|
|
@@ -24475,7 +24686,7 @@ export declare class UpdateTaskRequestTrigger extends $dara.Model {
|
|
|
24475
24686
|
cron?: string;
|
|
24476
24687
|
/**
|
|
24477
24688
|
* @remarks
|
|
24478
|
-
* The
|
|
24689
|
+
* 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
24690
|
*
|
|
24480
24691
|
* @example
|
|
24481
24692
|
* 9999-01-01 00:00:00
|
|
@@ -24483,10 +24694,11 @@ export declare class UpdateTaskRequestTrigger extends $dara.Model {
|
|
|
24483
24694
|
endTime?: string;
|
|
24484
24695
|
/**
|
|
24485
24696
|
* @remarks
|
|
24486
|
-
* The
|
|
24487
|
-
*
|
|
24488
|
-
*
|
|
24489
|
-
*
|
|
24697
|
+
* 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:
|
|
24698
|
+
*
|
|
24699
|
+
* * Pause
|
|
24700
|
+
* * Skip
|
|
24701
|
+
* * Normal
|
|
24490
24702
|
*
|
|
24491
24703
|
* @example
|
|
24492
24704
|
* Normal
|
|
@@ -24494,7 +24706,7 @@ export declare class UpdateTaskRequestTrigger extends $dara.Model {
|
|
|
24494
24706
|
recurrence?: string;
|
|
24495
24707
|
/**
|
|
24496
24708
|
* @remarks
|
|
24497
|
-
* The time
|
|
24709
|
+
* 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
24710
|
*
|
|
24499
24711
|
* @example
|
|
24500
24712
|
* 1970-01-01 00:00:00
|
|
@@ -24502,9 +24714,10 @@ export declare class UpdateTaskRequestTrigger extends $dara.Model {
|
|
|
24502
24714
|
startTime?: string;
|
|
24503
24715
|
/**
|
|
24504
24716
|
* @remarks
|
|
24505
|
-
* The type
|
|
24506
|
-
*
|
|
24507
|
-
*
|
|
24717
|
+
* The trigger type. Valid values:
|
|
24718
|
+
*
|
|
24719
|
+
* * Scheduler: periodic scheduling
|
|
24720
|
+
* * Manual: manual scheduling
|
|
24508
24721
|
*
|
|
24509
24722
|
* This parameter is required.
|
|
24510
24723
|
*
|
|
@@ -24591,11 +24804,12 @@ export declare class UpdateTaskInstancesRequestTaskInstances extends $dara.Model
|
|
|
24591
24804
|
export declare class UpdateWorkflowRequestDependencies extends $dara.Model {
|
|
24592
24805
|
/**
|
|
24593
24806
|
* @remarks
|
|
24594
|
-
* The type
|
|
24595
|
-
*
|
|
24596
|
-
*
|
|
24597
|
-
*
|
|
24598
|
-
*
|
|
24807
|
+
* The dependency type. Valid values:
|
|
24808
|
+
*
|
|
24809
|
+
* * CrossCycleDependsOnChildren: cross-cycle dependency on level-1 descendant nodes
|
|
24810
|
+
* * CrossCycleDependsOnSelf: cross-cycle dependency on the current node
|
|
24811
|
+
* * CrossCycleDependsOnOtherNode: cross-cycle dependency on other nodes
|
|
24812
|
+
* * Normal: same-cycle scheduling dependency
|
|
24599
24813
|
*
|
|
24600
24814
|
* This parameter is required.
|
|
24601
24815
|
*
|
|
@@ -24605,7 +24819,7 @@ export declare class UpdateWorkflowRequestDependencies extends $dara.Model {
|
|
|
24605
24819
|
type?: string;
|
|
24606
24820
|
/**
|
|
24607
24821
|
* @remarks
|
|
24608
|
-
* The
|
|
24822
|
+
* 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
24823
|
*
|
|
24610
24824
|
* @example
|
|
24611
24825
|
* pre.odps_sql_demo_0
|
|
@@ -24613,7 +24827,7 @@ export declare class UpdateWorkflowRequestDependencies extends $dara.Model {
|
|
|
24613
24827
|
upstreamOutput?: string;
|
|
24614
24828
|
/**
|
|
24615
24829
|
* @remarks
|
|
24616
|
-
* The
|
|
24830
|
+
* 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
24831
|
*
|
|
24618
24832
|
* @example
|
|
24619
24833
|
* 1234
|
|
@@ -24633,7 +24847,7 @@ export declare class UpdateWorkflowRequestDependencies extends $dara.Model {
|
|
|
24633
24847
|
export declare class UpdateWorkflowRequestOutputsTaskOutputs extends $dara.Model {
|
|
24634
24848
|
/**
|
|
24635
24849
|
* @remarks
|
|
24636
|
-
* The output
|
|
24850
|
+
* The identifier of the output.
|
|
24637
24851
|
*
|
|
24638
24852
|
* @example
|
|
24639
24853
|
* pre.odps_sql_demo_0
|
|
@@ -24653,7 +24867,7 @@ export declare class UpdateWorkflowRequestOutputsTaskOutputs extends $dara.Model
|
|
|
24653
24867
|
export declare class UpdateWorkflowRequestOutputs extends $dara.Model {
|
|
24654
24868
|
/**
|
|
24655
24869
|
* @remarks
|
|
24656
|
-
* The
|
|
24870
|
+
* The task outputs.
|
|
24657
24871
|
*/
|
|
24658
24872
|
taskOutputs?: UpdateWorkflowRequestOutputsTaskOutputs[];
|
|
24659
24873
|
static names(): {
|
|
@@ -24680,7 +24894,7 @@ export declare class UpdateWorkflowRequestTags extends $dara.Model {
|
|
|
24680
24894
|
key?: string;
|
|
24681
24895
|
/**
|
|
24682
24896
|
* @remarks
|
|
24683
|
-
* The value
|
|
24897
|
+
* The tag value.
|
|
24684
24898
|
*
|
|
24685
24899
|
* @example
|
|
24686
24900
|
* value1
|
|
@@ -24720,11 +24934,12 @@ export declare class UpdateWorkflowRequestTasksDataSource extends $dara.Model {
|
|
|
24720
24934
|
export declare class UpdateWorkflowRequestTasksDependencies extends $dara.Model {
|
|
24721
24935
|
/**
|
|
24722
24936
|
* @remarks
|
|
24723
|
-
* The type
|
|
24724
|
-
*
|
|
24725
|
-
*
|
|
24726
|
-
*
|
|
24727
|
-
*
|
|
24937
|
+
* The dependency type. Valid values:
|
|
24938
|
+
*
|
|
24939
|
+
* * CrossCycleDependsOnChildren: cross-cycle dependency on level-1 descendant nodes
|
|
24940
|
+
* * CrossCycleDependsOnSelf: cross-cycle dependency on the current node
|
|
24941
|
+
* * CrossCycleDependsOnOtherNode: cross-cycle dependency on other nodes
|
|
24942
|
+
* * Normal: same-cycle scheduling dependency
|
|
24728
24943
|
*
|
|
24729
24944
|
* This parameter is required.
|
|
24730
24945
|
*
|
|
@@ -24734,7 +24949,7 @@ export declare class UpdateWorkflowRequestTasksDependencies extends $dara.Model
|
|
|
24734
24949
|
type?: string;
|
|
24735
24950
|
/**
|
|
24736
24951
|
* @remarks
|
|
24737
|
-
* The
|
|
24952
|
+
* 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
24953
|
*
|
|
24739
24954
|
* @example
|
|
24740
24955
|
* pre.odps_sql_demo_0
|
|
@@ -24742,7 +24957,7 @@ export declare class UpdateWorkflowRequestTasksDependencies extends $dara.Model
|
|
|
24742
24957
|
upstreamOutput?: string;
|
|
24743
24958
|
/**
|
|
24744
24959
|
* @remarks
|
|
24745
|
-
* The
|
|
24960
|
+
* 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
24961
|
*
|
|
24747
24962
|
* @example
|
|
24748
24963
|
* 1234
|
|
@@ -24770,11 +24985,12 @@ export declare class UpdateWorkflowRequestTasksInputsVariables extends $dara.Mod
|
|
|
24770
24985
|
name?: string;
|
|
24771
24986
|
/**
|
|
24772
24987
|
* @remarks
|
|
24773
|
-
*
|
|
24774
|
-
*
|
|
24775
|
-
*
|
|
24776
|
-
*
|
|
24777
|
-
*
|
|
24988
|
+
* The type. Valid values:
|
|
24989
|
+
*
|
|
24990
|
+
* * Constant: constant
|
|
24991
|
+
* * PassThrough: node output
|
|
24992
|
+
* * System: variable
|
|
24993
|
+
* * NodeOutput: script output
|
|
24778
24994
|
*
|
|
24779
24995
|
* This parameter is required.
|
|
24780
24996
|
*
|
|
@@ -24804,7 +25020,7 @@ export declare class UpdateWorkflowRequestTasksInputsVariables extends $dara.Mod
|
|
|
24804
25020
|
export declare class UpdateWorkflowRequestTasksInputs extends $dara.Model {
|
|
24805
25021
|
/**
|
|
24806
25022
|
* @remarks
|
|
24807
|
-
* The
|
|
25023
|
+
* The variables.
|
|
24808
25024
|
*/
|
|
24809
25025
|
variables?: UpdateWorkflowRequestTasksInputsVariables[];
|
|
24810
25026
|
static names(): {
|
|
@@ -24821,7 +25037,7 @@ export declare class UpdateWorkflowRequestTasksInputs extends $dara.Model {
|
|
|
24821
25037
|
export declare class UpdateWorkflowRequestTasksOutputsTaskOutputs extends $dara.Model {
|
|
24822
25038
|
/**
|
|
24823
25039
|
* @remarks
|
|
24824
|
-
* The output
|
|
25040
|
+
* The identifier of the output.
|
|
24825
25041
|
*
|
|
24826
25042
|
* @example
|
|
24827
25043
|
* pre.odps_sql_demo_0
|
|
@@ -24849,11 +25065,12 @@ export declare class UpdateWorkflowRequestTasksOutputsVariables extends $dara.Mo
|
|
|
24849
25065
|
name?: string;
|
|
24850
25066
|
/**
|
|
24851
25067
|
* @remarks
|
|
24852
|
-
*
|
|
24853
|
-
*
|
|
24854
|
-
*
|
|
24855
|
-
*
|
|
24856
|
-
*
|
|
25068
|
+
* The type. Valid values:
|
|
25069
|
+
*
|
|
25070
|
+
* * Constant: constant
|
|
25071
|
+
* * PassThrough: node output
|
|
25072
|
+
* * System: variable
|
|
25073
|
+
* * NodeOutput: script output
|
|
24857
25074
|
*
|
|
24858
25075
|
* This parameter is required.
|
|
24859
25076
|
*
|
|
@@ -24883,12 +25100,12 @@ export declare class UpdateWorkflowRequestTasksOutputsVariables extends $dara.Mo
|
|
|
24883
25100
|
export declare class UpdateWorkflowRequestTasksOutputs extends $dara.Model {
|
|
24884
25101
|
/**
|
|
24885
25102
|
* @remarks
|
|
24886
|
-
* The
|
|
25103
|
+
* The task outputs.
|
|
24887
25104
|
*/
|
|
24888
25105
|
taskOutputs?: UpdateWorkflowRequestTasksOutputsTaskOutputs[];
|
|
24889
25106
|
/**
|
|
24890
25107
|
* @remarks
|
|
24891
|
-
* The
|
|
25108
|
+
* The variables.
|
|
24892
25109
|
*/
|
|
24893
25110
|
variables?: UpdateWorkflowRequestTasksOutputsVariables[];
|
|
24894
25111
|
static names(): {
|
|
@@ -24905,7 +25122,7 @@ export declare class UpdateWorkflowRequestTasksOutputs extends $dara.Model {
|
|
|
24905
25122
|
export declare class UpdateWorkflowRequestTasksRuntimeResource extends $dara.Model {
|
|
24906
25123
|
/**
|
|
24907
25124
|
* @remarks
|
|
24908
|
-
*
|
|
25125
|
+
* The default number of compute units (CUs) configured for task running.
|
|
24909
25126
|
*
|
|
24910
25127
|
* @example
|
|
24911
25128
|
* 0.25
|
|
@@ -24913,7 +25130,7 @@ export declare class UpdateWorkflowRequestTasksRuntimeResource extends $dara.Mod
|
|
|
24913
25130
|
cu?: string;
|
|
24914
25131
|
/**
|
|
24915
25132
|
* @remarks
|
|
24916
|
-
* The ID of the image configured for
|
|
25133
|
+
* The ID of the image configured for task running.
|
|
24917
25134
|
*
|
|
24918
25135
|
* @example
|
|
24919
25136
|
* i-xxxxxx
|
|
@@ -24921,7 +25138,7 @@ export declare class UpdateWorkflowRequestTasksRuntimeResource extends $dara.Mod
|
|
|
24921
25138
|
image?: string;
|
|
24922
25139
|
/**
|
|
24923
25140
|
* @remarks
|
|
24924
|
-
* The
|
|
25141
|
+
* The ID of the resource group for scheduling configured for task running.
|
|
24925
25142
|
*
|
|
24926
25143
|
* This parameter is required.
|
|
24927
25144
|
*
|
|
@@ -24951,7 +25168,7 @@ export declare class UpdateWorkflowRequestTasksScript extends $dara.Model {
|
|
|
24951
25168
|
content?: string;
|
|
24952
25169
|
/**
|
|
24953
25170
|
* @remarks
|
|
24954
|
-
* The
|
|
25171
|
+
* The script parameters.
|
|
24955
25172
|
*
|
|
24956
25173
|
* @example
|
|
24957
25174
|
* para1=$bizdate
|
|
@@ -24981,7 +25198,7 @@ export declare class UpdateWorkflowRequestTasksTags extends $dara.Model {
|
|
|
24981
25198
|
key?: string;
|
|
24982
25199
|
/**
|
|
24983
25200
|
* @remarks
|
|
24984
|
-
* The value
|
|
25201
|
+
* The tag value.
|
|
24985
25202
|
*
|
|
24986
25203
|
* @example
|
|
24987
25204
|
* value1
|
|
@@ -25001,10 +25218,11 @@ export declare class UpdateWorkflowRequestTasksTags extends $dara.Model {
|
|
|
25001
25218
|
export declare class UpdateWorkflowRequestTasksTrigger extends $dara.Model {
|
|
25002
25219
|
/**
|
|
25003
25220
|
* @remarks
|
|
25004
|
-
* The
|
|
25005
|
-
*
|
|
25006
|
-
*
|
|
25007
|
-
*
|
|
25221
|
+
* 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:
|
|
25222
|
+
*
|
|
25223
|
+
* * Pause
|
|
25224
|
+
* * Skip
|
|
25225
|
+
* * Normal
|
|
25008
25226
|
*
|
|
25009
25227
|
* This parameter is required.
|
|
25010
25228
|
*
|
|
@@ -25014,9 +25232,10 @@ export declare class UpdateWorkflowRequestTasksTrigger extends $dara.Model {
|
|
|
25014
25232
|
recurrence?: string;
|
|
25015
25233
|
/**
|
|
25016
25234
|
* @remarks
|
|
25017
|
-
* The type
|
|
25018
|
-
*
|
|
25019
|
-
*
|
|
25235
|
+
* The trigger type. Valid values:
|
|
25236
|
+
*
|
|
25237
|
+
* * Scheduler: periodic scheduling
|
|
25238
|
+
* * Manual: manual scheduling
|
|
25020
25239
|
*
|
|
25021
25240
|
* @example
|
|
25022
25241
|
* Scheduler
|
|
@@ -25044,7 +25263,7 @@ export declare class UpdateWorkflowRequestTasks extends $dara.Model {
|
|
|
25044
25263
|
baseLineId?: number;
|
|
25045
25264
|
/**
|
|
25046
25265
|
* @remarks
|
|
25047
|
-
* The
|
|
25266
|
+
* 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
25267
|
*
|
|
25049
25268
|
* @example
|
|
25050
25269
|
* Task_0bc5213917368545132902xxxxxxxx
|
|
@@ -25052,12 +25271,12 @@ export declare class UpdateWorkflowRequestTasks extends $dara.Model {
|
|
|
25052
25271
|
clientUniqueCode?: string;
|
|
25053
25272
|
/**
|
|
25054
25273
|
* @remarks
|
|
25055
|
-
* The associated data source
|
|
25274
|
+
* The information about the associated data source.
|
|
25056
25275
|
*/
|
|
25057
25276
|
dataSource?: UpdateWorkflowRequestTasksDataSource;
|
|
25058
25277
|
/**
|
|
25059
25278
|
* @remarks
|
|
25060
|
-
*
|
|
25279
|
+
* The dependency information.
|
|
25061
25280
|
*/
|
|
25062
25281
|
dependencies?: UpdateWorkflowRequestTasksDependencies[];
|
|
25063
25282
|
/**
|
|
@@ -25070,9 +25289,10 @@ export declare class UpdateWorkflowRequestTasks extends $dara.Model {
|
|
|
25070
25289
|
description?: string;
|
|
25071
25290
|
/**
|
|
25072
25291
|
* @remarks
|
|
25073
|
-
* The
|
|
25074
|
-
*
|
|
25075
|
-
*
|
|
25292
|
+
* The environment of the workspace. Valid values:
|
|
25293
|
+
*
|
|
25294
|
+
* * Prod
|
|
25295
|
+
* * Dev
|
|
25076
25296
|
*
|
|
25077
25297
|
* @example
|
|
25078
25298
|
* Prod
|
|
@@ -25080,7 +25300,7 @@ export declare class UpdateWorkflowRequestTasks extends $dara.Model {
|
|
|
25080
25300
|
envType?: string;
|
|
25081
25301
|
/**
|
|
25082
25302
|
* @remarks
|
|
25083
|
-
* The ID
|
|
25303
|
+
* 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
25304
|
*
|
|
25085
25305
|
* This parameter is required.
|
|
25086
25306
|
*
|
|
@@ -25090,7 +25310,7 @@ export declare class UpdateWorkflowRequestTasks extends $dara.Model {
|
|
|
25090
25310
|
id?: number;
|
|
25091
25311
|
/**
|
|
25092
25312
|
* @remarks
|
|
25093
|
-
*
|
|
25313
|
+
* The input information.
|
|
25094
25314
|
*/
|
|
25095
25315
|
inputs?: UpdateWorkflowRequestTasksInputs;
|
|
25096
25316
|
/**
|
|
@@ -25120,7 +25340,7 @@ export declare class UpdateWorkflowRequestTasks extends $dara.Model {
|
|
|
25120
25340
|
owner?: string;
|
|
25121
25341
|
/**
|
|
25122
25342
|
* @remarks
|
|
25123
|
-
* The
|
|
25343
|
+
* The rerun interval. Unit: seconds.
|
|
25124
25344
|
*
|
|
25125
25345
|
* @example
|
|
25126
25346
|
* 60
|
|
@@ -25128,10 +25348,11 @@ export declare class UpdateWorkflowRequestTasks extends $dara.Model {
|
|
|
25128
25348
|
rerunInterval?: number;
|
|
25129
25349
|
/**
|
|
25130
25350
|
* @remarks
|
|
25131
|
-
* The
|
|
25132
|
-
*
|
|
25133
|
-
*
|
|
25134
|
-
*
|
|
25351
|
+
* The rerun mode. Valid values:
|
|
25352
|
+
*
|
|
25353
|
+
* * AllDenied: The task cannot be rerun regardless of whether the task is successfully run or fails to run.
|
|
25354
|
+
* * FailureAllowed: The task can be rerun only after it fails to run.
|
|
25355
|
+
* * AllAllowed: The task can be rerun regardless of whether the task is successfully run or fails to run.
|
|
25135
25356
|
*
|
|
25136
25357
|
* This parameter is required.
|
|
25137
25358
|
*
|
|
@@ -25141,7 +25362,7 @@ export declare class UpdateWorkflowRequestTasks extends $dara.Model {
|
|
|
25141
25362
|
rerunMode?: string;
|
|
25142
25363
|
/**
|
|
25143
25364
|
* @remarks
|
|
25144
|
-
* The number of
|
|
25365
|
+
* 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
25366
|
*
|
|
25146
25367
|
* @example
|
|
25147
25368
|
* 3
|
|
@@ -25149,24 +25370,24 @@ export declare class UpdateWorkflowRequestTasks extends $dara.Model {
|
|
|
25149
25370
|
rerunTimes?: number;
|
|
25150
25371
|
/**
|
|
25151
25372
|
* @remarks
|
|
25152
|
-
*
|
|
25373
|
+
* The configurations of the runtime environment, such as the resource group information.
|
|
25153
25374
|
*
|
|
25154
25375
|
* This parameter is required.
|
|
25155
25376
|
*/
|
|
25156
25377
|
runtimeResource?: UpdateWorkflowRequestTasksRuntimeResource;
|
|
25157
25378
|
/**
|
|
25158
25379
|
* @remarks
|
|
25159
|
-
*
|
|
25380
|
+
* The script information.
|
|
25160
25381
|
*/
|
|
25161
25382
|
script?: UpdateWorkflowRequestTasksScript;
|
|
25162
25383
|
/**
|
|
25163
25384
|
* @remarks
|
|
25164
|
-
* The
|
|
25385
|
+
* The tags.
|
|
25165
25386
|
*/
|
|
25166
25387
|
tags?: UpdateWorkflowRequestTasksTags[];
|
|
25167
25388
|
/**
|
|
25168
25389
|
* @remarks
|
|
25169
|
-
* The timeout period of
|
|
25390
|
+
* The timeout period of task running. Unit: seconds.
|
|
25170
25391
|
*
|
|
25171
25392
|
* @example
|
|
25172
25393
|
* 3600
|
|
@@ -25174,7 +25395,7 @@ export declare class UpdateWorkflowRequestTasks extends $dara.Model {
|
|
|
25174
25395
|
timeout?: number;
|
|
25175
25396
|
/**
|
|
25176
25397
|
* @remarks
|
|
25177
|
-
* The trigger method
|
|
25398
|
+
* The trigger method.
|
|
25178
25399
|
*
|
|
25179
25400
|
* This parameter is required.
|
|
25180
25401
|
*/
|
|
@@ -25203,7 +25424,7 @@ export declare class UpdateWorkflowRequestTasks extends $dara.Model {
|
|
|
25203
25424
|
export declare class UpdateWorkflowRequestTrigger extends $dara.Model {
|
|
25204
25425
|
/**
|
|
25205
25426
|
* @remarks
|
|
25206
|
-
*
|
|
25427
|
+
* The CRON expression. This parameter takes effect only if the Type parameter is set to Scheduler.
|
|
25207
25428
|
*
|
|
25208
25429
|
* @example
|
|
25209
25430
|
* 00 00 00 * * ?
|
|
@@ -25211,7 +25432,7 @@ export declare class UpdateWorkflowRequestTrigger extends $dara.Model {
|
|
|
25211
25432
|
cron?: string;
|
|
25212
25433
|
/**
|
|
25213
25434
|
* @remarks
|
|
25214
|
-
* The
|
|
25435
|
+
* 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
25436
|
*
|
|
25216
25437
|
* @example
|
|
25217
25438
|
* 9999-01-01 00:00:00
|
|
@@ -25219,7 +25440,7 @@ export declare class UpdateWorkflowRequestTrigger extends $dara.Model {
|
|
|
25219
25440
|
endTime?: string;
|
|
25220
25441
|
/**
|
|
25221
25442
|
* @remarks
|
|
25222
|
-
* The time
|
|
25443
|
+
* 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
25444
|
*
|
|
25224
25445
|
* @example
|
|
25225
25446
|
* 1970-01-01 00:00:00
|
|
@@ -25227,9 +25448,10 @@ export declare class UpdateWorkflowRequestTrigger extends $dara.Model {
|
|
|
25227
25448
|
startTime?: string;
|
|
25228
25449
|
/**
|
|
25229
25450
|
* @remarks
|
|
25230
|
-
* The type
|
|
25231
|
-
*
|
|
25232
|
-
*
|
|
25451
|
+
* The trigger type. Valid values:
|
|
25452
|
+
*
|
|
25453
|
+
* * Scheduler: periodic scheduling
|
|
25454
|
+
* * Manual: manual scheduling
|
|
25233
25455
|
*
|
|
25234
25456
|
* This parameter is required.
|
|
25235
25457
|
*
|
|
@@ -25493,7 +25715,7 @@ export declare class AbolishDeploymentRequest extends $dara.Model {
|
|
|
25493
25715
|
* @remarks
|
|
25494
25716
|
* 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
25717
|
*
|
|
25496
|
-
* You
|
|
25718
|
+
* You can use this parameter to specify the DataWorks workspace on which you want to perform the API operation.
|
|
25497
25719
|
*
|
|
25498
25720
|
* This parameter is required.
|
|
25499
25721
|
*
|
|
@@ -28755,7 +28977,7 @@ export declare class CreateResourceResponse extends $dara.Model {
|
|
|
28755
28977
|
export declare class CreateResourceGroupRequest extends $dara.Model {
|
|
28756
28978
|
/**
|
|
28757
28979
|
* @remarks
|
|
28758
|
-
* The ID of the resource group.
|
|
28980
|
+
* The ID of the Alibaba Cloud resource group.
|
|
28759
28981
|
*
|
|
28760
28982
|
* @example
|
|
28761
28983
|
* rg-aek2kqofrgXXXXX
|
|
@@ -28773,7 +28995,7 @@ export declare class CreateResourceGroupRequest extends $dara.Model {
|
|
|
28773
28995
|
autoRenewEnabled?: boolean;
|
|
28774
28996
|
/**
|
|
28775
28997
|
* @remarks
|
|
28776
|
-
* The
|
|
28998
|
+
* The client token that is used to ensure the idempotence of the request.
|
|
28777
28999
|
*
|
|
28778
29000
|
* This parameter is required.
|
|
28779
29001
|
*
|
|
@@ -28783,7 +29005,7 @@ export declare class CreateResourceGroupRequest extends $dara.Model {
|
|
|
28783
29005
|
clientToken?: string;
|
|
28784
29006
|
/**
|
|
28785
29007
|
* @remarks
|
|
28786
|
-
* The name of
|
|
29008
|
+
* 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
29009
|
*
|
|
28788
29010
|
* This parameter is required.
|
|
28789
29011
|
*
|
|
@@ -28793,7 +29015,7 @@ export declare class CreateResourceGroupRequest extends $dara.Model {
|
|
|
28793
29015
|
name?: string;
|
|
28794
29016
|
/**
|
|
28795
29017
|
* @remarks
|
|
28796
|
-
* The duration
|
|
29018
|
+
* The subscription duration.
|
|
28797
29019
|
*
|
|
28798
29020
|
* @example
|
|
28799
29021
|
* 1
|
|
@@ -28819,7 +29041,7 @@ export declare class CreateResourceGroupRequest extends $dara.Model {
|
|
|
28819
29041
|
paymentType?: string;
|
|
28820
29042
|
/**
|
|
28821
29043
|
* @remarks
|
|
28822
|
-
*
|
|
29044
|
+
* 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
29045
|
*
|
|
28824
29046
|
* @example
|
|
28825
29047
|
* Create a serverless resource group for common tasks
|
|
@@ -28827,7 +29049,7 @@ export declare class CreateResourceGroupRequest extends $dara.Model {
|
|
|
28827
29049
|
remark?: string;
|
|
28828
29050
|
/**
|
|
28829
29051
|
* @remarks
|
|
28830
|
-
* The specifications of the resource group. Unit:
|
|
29052
|
+
* The specifications of the serverless resource group. Unit: CU. This parameter is required only if you set the PaymentType parameter to PrePaid.
|
|
28831
29053
|
*
|
|
28832
29054
|
* @example
|
|
28833
29055
|
* 2
|
|
@@ -28867,7 +29089,7 @@ export declare class CreateResourceGroupRequest extends $dara.Model {
|
|
|
28867
29089
|
export declare class CreateResourceGroupShrinkRequest extends $dara.Model {
|
|
28868
29090
|
/**
|
|
28869
29091
|
* @remarks
|
|
28870
|
-
* The ID of the resource group.
|
|
29092
|
+
* The ID of the Alibaba Cloud resource group.
|
|
28871
29093
|
*
|
|
28872
29094
|
* @example
|
|
28873
29095
|
* rg-aek2kqofrgXXXXX
|
|
@@ -28885,7 +29107,7 @@ export declare class CreateResourceGroupShrinkRequest extends $dara.Model {
|
|
|
28885
29107
|
autoRenewEnabled?: boolean;
|
|
28886
29108
|
/**
|
|
28887
29109
|
* @remarks
|
|
28888
|
-
* The
|
|
29110
|
+
* The client token that is used to ensure the idempotence of the request.
|
|
28889
29111
|
*
|
|
28890
29112
|
* This parameter is required.
|
|
28891
29113
|
*
|
|
@@ -28895,7 +29117,7 @@ export declare class CreateResourceGroupShrinkRequest extends $dara.Model {
|
|
|
28895
29117
|
clientToken?: string;
|
|
28896
29118
|
/**
|
|
28897
29119
|
* @remarks
|
|
28898
|
-
* The name of
|
|
29120
|
+
* 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
29121
|
*
|
|
28900
29122
|
* This parameter is required.
|
|
28901
29123
|
*
|
|
@@ -28905,7 +29127,7 @@ export declare class CreateResourceGroupShrinkRequest extends $dara.Model {
|
|
|
28905
29127
|
name?: string;
|
|
28906
29128
|
/**
|
|
28907
29129
|
* @remarks
|
|
28908
|
-
* The duration
|
|
29130
|
+
* The subscription duration.
|
|
28909
29131
|
*
|
|
28910
29132
|
* @example
|
|
28911
29133
|
* 1
|
|
@@ -28931,7 +29153,7 @@ export declare class CreateResourceGroupShrinkRequest extends $dara.Model {
|
|
|
28931
29153
|
paymentType?: string;
|
|
28932
29154
|
/**
|
|
28933
29155
|
* @remarks
|
|
28934
|
-
*
|
|
29156
|
+
* 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
29157
|
*
|
|
28936
29158
|
* @example
|
|
28937
29159
|
* Create a serverless resource group for common tasks
|
|
@@ -28939,7 +29161,7 @@ export declare class CreateResourceGroupShrinkRequest extends $dara.Model {
|
|
|
28939
29161
|
remark?: string;
|
|
28940
29162
|
/**
|
|
28941
29163
|
* @remarks
|
|
28942
|
-
* The specifications of the resource group. Unit:
|
|
29164
|
+
* The specifications of the serverless resource group. Unit: CU. This parameter is required only if you set the PaymentType parameter to PrePaid.
|
|
28943
29165
|
*
|
|
28944
29166
|
* @example
|
|
28945
29167
|
* 2
|
|
@@ -28979,7 +29201,7 @@ export declare class CreateResourceGroupShrinkRequest extends $dara.Model {
|
|
|
28979
29201
|
export declare class CreateResourceGroupResponseBody extends $dara.Model {
|
|
28980
29202
|
/**
|
|
28981
29203
|
* @remarks
|
|
28982
|
-
* The
|
|
29204
|
+
* The request ID.
|
|
28983
29205
|
*
|
|
28984
29206
|
* @example
|
|
28985
29207
|
* 6A6CBE87-9F91-1323-B680-E7A7065XXXXX
|
|
@@ -28987,12 +29209,12 @@ export declare class CreateResourceGroupResponseBody extends $dara.Model {
|
|
|
28987
29209
|
requestId?: string;
|
|
28988
29210
|
/**
|
|
28989
29211
|
* @remarks
|
|
28990
|
-
* The order
|
|
29212
|
+
* The information about the order that is used to create the serverless resource group.
|
|
28991
29213
|
*/
|
|
28992
29214
|
resourceGroupOrder?: CreateResourceGroupResponseBodyResourceGroupOrder;
|
|
28993
29215
|
/**
|
|
28994
29216
|
* @remarks
|
|
28995
|
-
*
|
|
29217
|
+
* Indicates whether the request was successful.
|
|
28996
29218
|
*
|
|
28997
29219
|
* @example
|
|
28998
29220
|
* true
|
|
@@ -29047,6 +29269,14 @@ export declare class CreateRouteRequest extends $dara.Model {
|
|
|
29047
29269
|
* 1000
|
|
29048
29270
|
*/
|
|
29049
29271
|
networkId?: number;
|
|
29272
|
+
/**
|
|
29273
|
+
* @remarks
|
|
29274
|
+
* Unique identifier of the serverless resource group.
|
|
29275
|
+
*
|
|
29276
|
+
* @example
|
|
29277
|
+
* Serverless_res_group_524257424564736_6831777003XXXXX
|
|
29278
|
+
*/
|
|
29279
|
+
resourceGroupId?: string;
|
|
29050
29280
|
static names(): {
|
|
29051
29281
|
[key: string]: string;
|
|
29052
29282
|
};
|
|
@@ -29293,7 +29523,7 @@ export declare class CreateWorkflowInstancesRequest extends $dara.Model {
|
|
|
29293
29523
|
projectId?: number;
|
|
29294
29524
|
/**
|
|
29295
29525
|
* @remarks
|
|
29296
|
-
*
|
|
29526
|
+
* 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
29527
|
*
|
|
29298
29528
|
* @example
|
|
29299
29529
|
* {
|
|
@@ -29317,7 +29547,7 @@ export declare class CreateWorkflowInstancesRequest extends $dara.Model {
|
|
|
29317
29547
|
type?: string;
|
|
29318
29548
|
/**
|
|
29319
29549
|
* @remarks
|
|
29320
|
-
* The ID of the workflow to which the
|
|
29550
|
+
* The ID of the workflow to which the instance belongs. This parameter is set to 1 for auto triggered tasks.
|
|
29321
29551
|
*
|
|
29322
29552
|
* This parameter is required.
|
|
29323
29553
|
*
|
|
@@ -29327,7 +29557,7 @@ export declare class CreateWorkflowInstancesRequest extends $dara.Model {
|
|
|
29327
29557
|
workflowId?: number;
|
|
29328
29558
|
/**
|
|
29329
29559
|
* @remarks
|
|
29330
|
-
*
|
|
29560
|
+
* 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
29561
|
*
|
|
29332
29562
|
* @example
|
|
29333
29563
|
* {
|
|
@@ -29406,7 +29636,7 @@ export declare class CreateWorkflowInstancesShrinkRequest extends $dara.Model {
|
|
|
29406
29636
|
projectId?: number;
|
|
29407
29637
|
/**
|
|
29408
29638
|
* @remarks
|
|
29409
|
-
*
|
|
29639
|
+
* 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
29640
|
*
|
|
29411
29641
|
* @example
|
|
29412
29642
|
* {
|
|
@@ -29430,7 +29660,7 @@ export declare class CreateWorkflowInstancesShrinkRequest extends $dara.Model {
|
|
|
29430
29660
|
type?: string;
|
|
29431
29661
|
/**
|
|
29432
29662
|
* @remarks
|
|
29433
|
-
* The ID of the workflow to which the
|
|
29663
|
+
* The ID of the workflow to which the instance belongs. This parameter is set to 1 for auto triggered tasks.
|
|
29434
29664
|
*
|
|
29435
29665
|
* This parameter is required.
|
|
29436
29666
|
*
|
|
@@ -29440,7 +29670,7 @@ export declare class CreateWorkflowInstancesShrinkRequest extends $dara.Model {
|
|
|
29440
29670
|
workflowId?: number;
|
|
29441
29671
|
/**
|
|
29442
29672
|
* @remarks
|
|
29443
|
-
*
|
|
29673
|
+
* 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
29674
|
*
|
|
29445
29675
|
* @example
|
|
29446
29676
|
* {
|
|
@@ -29570,33 +29800,20 @@ export declare class DeleteAlertRuleResponse extends $dara.Model {
|
|
|
29570
29800
|
[key: string]: any;
|
|
29571
29801
|
});
|
|
29572
29802
|
}
|
|
29573
|
-
export declare class
|
|
29574
|
-
/**
|
|
29575
|
-
* @remarks
|
|
29576
|
-
* This parameter is deprecated. Use the Id parameter instead.
|
|
29577
|
-
*
|
|
29578
|
-
* @example
|
|
29579
|
-
* 2
|
|
29580
|
-
*
|
|
29581
|
-
* @deprecated
|
|
29582
|
-
*/
|
|
29583
|
-
DIAlarmRuleId?: number;
|
|
29803
|
+
export declare class DeleteCertificateRequest extends $dara.Model {
|
|
29584
29804
|
/**
|
|
29585
29805
|
* @remarks
|
|
29586
|
-
*
|
|
29806
|
+
* This parameter is required.
|
|
29587
29807
|
*
|
|
29588
29808
|
* @example
|
|
29589
|
-
*
|
|
29809
|
+
* 676303114031776
|
|
29590
29810
|
*/
|
|
29591
|
-
|
|
29811
|
+
id?: number;
|
|
29592
29812
|
/**
|
|
29593
|
-
* @remarks
|
|
29594
|
-
* The ID of the synchronization task.
|
|
29595
|
-
*
|
|
29596
29813
|
* @example
|
|
29597
|
-
*
|
|
29814
|
+
* 106560
|
|
29598
29815
|
*/
|
|
29599
|
-
|
|
29816
|
+
projectId?: number;
|
|
29600
29817
|
static names(): {
|
|
29601
29818
|
[key: string]: string;
|
|
29602
29819
|
};
|
|
@@ -29608,22 +29825,13 @@ export declare class DeleteDIAlarmRuleRequest extends $dara.Model {
|
|
|
29608
29825
|
[key: string]: any;
|
|
29609
29826
|
});
|
|
29610
29827
|
}
|
|
29611
|
-
export declare class
|
|
29828
|
+
export declare class DeleteCertificateResponseBody extends $dara.Model {
|
|
29612
29829
|
/**
|
|
29613
|
-
* @remarks
|
|
29614
|
-
* The request ID. You can locate logs and troubleshoot issues based on the ID.
|
|
29615
|
-
*
|
|
29616
29830
|
* @example
|
|
29617
|
-
*
|
|
29831
|
+
* D9A61DC0-B922-421B-B706
|
|
29618
29832
|
*/
|
|
29619
29833
|
requestId?: string;
|
|
29620
29834
|
/**
|
|
29621
|
-
* @remarks
|
|
29622
|
-
* Indicates whether the request was successful. Valid values:
|
|
29623
|
-
*
|
|
29624
|
-
* * true
|
|
29625
|
-
* * false
|
|
29626
|
-
*
|
|
29627
29835
|
* @example
|
|
29628
29836
|
* true
|
|
29629
29837
|
*/
|
|
@@ -29639,12 +29847,12 @@ export declare class DeleteDIAlarmRuleResponseBody extends $dara.Model {
|
|
|
29639
29847
|
[key: string]: any;
|
|
29640
29848
|
});
|
|
29641
29849
|
}
|
|
29642
|
-
export declare class
|
|
29850
|
+
export declare class DeleteCertificateResponse extends $dara.Model {
|
|
29643
29851
|
headers?: {
|
|
29644
29852
|
[key: string]: string;
|
|
29645
29853
|
};
|
|
29646
29854
|
statusCode?: number;
|
|
29647
|
-
body?:
|
|
29855
|
+
body?: DeleteCertificateResponseBody;
|
|
29648
29856
|
static names(): {
|
|
29649
29857
|
[key: string]: string;
|
|
29650
29858
|
};
|
|
@@ -29656,33 +29864,33 @@ export declare class DeleteDIAlarmRuleResponse extends $dara.Model {
|
|
|
29656
29864
|
[key: string]: any;
|
|
29657
29865
|
});
|
|
29658
29866
|
}
|
|
29659
|
-
export declare class
|
|
29867
|
+
export declare class DeleteDIAlarmRuleRequest extends $dara.Model {
|
|
29660
29868
|
/**
|
|
29661
29869
|
* @remarks
|
|
29662
29870
|
* This parameter is deprecated. Use the Id parameter instead.
|
|
29663
29871
|
*
|
|
29664
29872
|
* @example
|
|
29665
|
-
*
|
|
29873
|
+
* 2
|
|
29666
29874
|
*
|
|
29667
29875
|
* @deprecated
|
|
29668
29876
|
*/
|
|
29669
|
-
|
|
29877
|
+
DIAlarmRuleId?: number;
|
|
29670
29878
|
/**
|
|
29671
29879
|
* @remarks
|
|
29672
29880
|
* The ID of the synchronization task.
|
|
29673
29881
|
*
|
|
29674
29882
|
* @example
|
|
29675
|
-
*
|
|
29883
|
+
* 1
|
|
29676
29884
|
*/
|
|
29677
|
-
|
|
29885
|
+
DIJobId?: number;
|
|
29678
29886
|
/**
|
|
29679
29887
|
* @remarks
|
|
29680
|
-
* The
|
|
29888
|
+
* The ID of the synchronization task.
|
|
29681
29889
|
*
|
|
29682
29890
|
* @example
|
|
29683
|
-
*
|
|
29891
|
+
* 2
|
|
29684
29892
|
*/
|
|
29685
|
-
|
|
29893
|
+
id?: number;
|
|
29686
29894
|
static names(): {
|
|
29687
29895
|
[key: string]: string;
|
|
29688
29896
|
};
|
|
@@ -29694,18 +29902,21 @@ export declare class DeleteDIJobRequest extends $dara.Model {
|
|
|
29694
29902
|
[key: string]: any;
|
|
29695
29903
|
});
|
|
29696
29904
|
}
|
|
29697
|
-
export declare class
|
|
29905
|
+
export declare class DeleteDIAlarmRuleResponseBody extends $dara.Model {
|
|
29698
29906
|
/**
|
|
29699
29907
|
* @remarks
|
|
29700
|
-
* The request ID. You can troubleshoot issues based on the ID.
|
|
29908
|
+
* The request ID. You can locate logs and troubleshoot issues based on the ID.
|
|
29701
29909
|
*
|
|
29702
29910
|
* @example
|
|
29703
|
-
*
|
|
29911
|
+
* C99E2BE6-9DEA-5C2E-8F51-1DDCFEADE490
|
|
29704
29912
|
*/
|
|
29705
29913
|
requestId?: string;
|
|
29706
29914
|
/**
|
|
29707
29915
|
* @remarks
|
|
29708
|
-
*
|
|
29916
|
+
* Indicates whether the request was successful. Valid values:
|
|
29917
|
+
*
|
|
29918
|
+
* * true
|
|
29919
|
+
* * false
|
|
29709
29920
|
*
|
|
29710
29921
|
* @example
|
|
29711
29922
|
* true
|
|
@@ -29722,12 +29933,12 @@ export declare class DeleteDIJobResponseBody extends $dara.Model {
|
|
|
29722
29933
|
[key: string]: any;
|
|
29723
29934
|
});
|
|
29724
29935
|
}
|
|
29725
|
-
export declare class
|
|
29936
|
+
export declare class DeleteDIAlarmRuleResponse extends $dara.Model {
|
|
29726
29937
|
headers?: {
|
|
29727
29938
|
[key: string]: string;
|
|
29728
29939
|
};
|
|
29729
29940
|
statusCode?: number;
|
|
29730
|
-
body?:
|
|
29941
|
+
body?: DeleteDIAlarmRuleResponseBody;
|
|
29731
29942
|
static names(): {
|
|
29732
29943
|
[key: string]: string;
|
|
29733
29944
|
};
|
|
@@ -29739,49 +29950,33 @@ export declare class DeleteDIJobResponse extends $dara.Model {
|
|
|
29739
29950
|
[key: string]: any;
|
|
29740
29951
|
});
|
|
29741
29952
|
}
|
|
29742
|
-
export declare class
|
|
29953
|
+
export declare class DeleteDIJobRequest extends $dara.Model {
|
|
29743
29954
|
/**
|
|
29744
29955
|
* @remarks
|
|
29745
|
-
*
|
|
29746
|
-
*
|
|
29747
|
-
* This parameter is required.
|
|
29956
|
+
* This parameter is deprecated. Use the Id parameter instead.
|
|
29748
29957
|
*
|
|
29749
29958
|
* @example
|
|
29750
|
-
*
|
|
29751
|
-
|
|
29752
|
-
|
|
29753
|
-
/**
|
|
29754
|
-
* @remarks
|
|
29755
|
-
* The tag values.
|
|
29959
|
+
* 11126
|
|
29960
|
+
*
|
|
29961
|
+
* @deprecated
|
|
29756
29962
|
*/
|
|
29757
|
-
|
|
29758
|
-
static names(): {
|
|
29759
|
-
[key: string]: string;
|
|
29760
|
-
};
|
|
29761
|
-
static types(): {
|
|
29762
|
-
[key: string]: any;
|
|
29763
|
-
};
|
|
29764
|
-
validate(): void;
|
|
29765
|
-
constructor(map?: {
|
|
29766
|
-
[key: string]: any;
|
|
29767
|
-
});
|
|
29768
|
-
}
|
|
29769
|
-
export declare class DeleteDataAssetTagShrinkRequest extends $dara.Model {
|
|
29963
|
+
DIJobId?: number;
|
|
29770
29964
|
/**
|
|
29771
29965
|
* @remarks
|
|
29772
|
-
* The
|
|
29773
|
-
*
|
|
29774
|
-
* This parameter is required.
|
|
29966
|
+
* The ID of the synchronization task.
|
|
29775
29967
|
*
|
|
29776
29968
|
* @example
|
|
29777
|
-
*
|
|
29969
|
+
* 11126
|
|
29778
29970
|
*/
|
|
29779
|
-
|
|
29971
|
+
id?: number;
|
|
29780
29972
|
/**
|
|
29781
29973
|
* @remarks
|
|
29782
|
-
* The
|
|
29974
|
+
* The DataWorks workspace ID.
|
|
29975
|
+
*
|
|
29976
|
+
* @example
|
|
29977
|
+
* 108864
|
|
29783
29978
|
*/
|
|
29784
|
-
|
|
29979
|
+
projectId?: number;
|
|
29785
29980
|
static names(): {
|
|
29786
29981
|
[key: string]: string;
|
|
29787
29982
|
};
|
|
@@ -29793,18 +29988,18 @@ export declare class DeleteDataAssetTagShrinkRequest extends $dara.Model {
|
|
|
29793
29988
|
[key: string]: any;
|
|
29794
29989
|
});
|
|
29795
29990
|
}
|
|
29796
|
-
export declare class
|
|
29991
|
+
export declare class DeleteDIJobResponseBody extends $dara.Model {
|
|
29797
29992
|
/**
|
|
29798
29993
|
* @remarks
|
|
29799
|
-
* The request ID.
|
|
29994
|
+
* The request ID. You can troubleshoot issues based on the ID.
|
|
29800
29995
|
*
|
|
29801
29996
|
* @example
|
|
29802
|
-
*
|
|
29997
|
+
* D33D4A51-5845-579A-B4BA-FAADD0F83D53
|
|
29803
29998
|
*/
|
|
29804
29999
|
requestId?: string;
|
|
29805
30000
|
/**
|
|
29806
30001
|
* @remarks
|
|
29807
|
-
*
|
|
30002
|
+
* true
|
|
29808
30003
|
*
|
|
29809
30004
|
* @example
|
|
29810
30005
|
* true
|
|
@@ -29821,12 +30016,12 @@ export declare class DeleteDataAssetTagResponseBody extends $dara.Model {
|
|
|
29821
30016
|
[key: string]: any;
|
|
29822
30017
|
});
|
|
29823
30018
|
}
|
|
29824
|
-
export declare class
|
|
30019
|
+
export declare class DeleteDIJobResponse extends $dara.Model {
|
|
29825
30020
|
headers?: {
|
|
29826
30021
|
[key: string]: string;
|
|
29827
30022
|
};
|
|
29828
30023
|
statusCode?: number;
|
|
29829
|
-
body?:
|
|
30024
|
+
body?: DeleteDIJobResponseBody;
|
|
29830
30025
|
static names(): {
|
|
29831
30026
|
[key: string]: string;
|
|
29832
30027
|
};
|
|
@@ -29838,72 +30033,22 @@ export declare class DeleteDataAssetTagResponse extends $dara.Model {
|
|
|
29838
30033
|
[key: string]: any;
|
|
29839
30034
|
});
|
|
29840
30035
|
}
|
|
29841
|
-
export declare class
|
|
29842
|
-
/**
|
|
29843
|
-
* @remarks
|
|
29844
|
-
* The ID of the data quality monitor.
|
|
29845
|
-
*
|
|
29846
|
-
* @example
|
|
29847
|
-
* 123123
|
|
29848
|
-
*/
|
|
29849
|
-
id?: number;
|
|
30036
|
+
export declare class DeleteDataAssetTagRequest extends $dara.Model {
|
|
29850
30037
|
/**
|
|
29851
30038
|
* @remarks
|
|
29852
|
-
* The
|
|
29853
|
-
*
|
|
29854
|
-
* This parameter is used to determine the DataWorks workspaces used for this API call.
|
|
30039
|
+
* The tag key.
|
|
29855
30040
|
*
|
|
29856
|
-
*
|
|
29857
|
-
* 10000
|
|
29858
|
-
*/
|
|
29859
|
-
projectId?: number;
|
|
29860
|
-
static names(): {
|
|
29861
|
-
[key: string]: string;
|
|
29862
|
-
};
|
|
29863
|
-
static types(): {
|
|
29864
|
-
[key: string]: any;
|
|
29865
|
-
};
|
|
29866
|
-
validate(): void;
|
|
29867
|
-
constructor(map?: {
|
|
29868
|
-
[key: string]: any;
|
|
29869
|
-
});
|
|
29870
|
-
}
|
|
29871
|
-
export declare class DeleteDataQualityEvaluationTaskResponseBody extends $dara.Model {
|
|
29872
|
-
/**
|
|
29873
|
-
* @remarks
|
|
29874
|
-
* Id of the request
|
|
30041
|
+
* This parameter is required.
|
|
29875
30042
|
*
|
|
29876
30043
|
* @example
|
|
29877
|
-
*
|
|
30044
|
+
* key1
|
|
29878
30045
|
*/
|
|
29879
|
-
|
|
30046
|
+
key?: string;
|
|
29880
30047
|
/**
|
|
29881
30048
|
* @remarks
|
|
29882
|
-
*
|
|
29883
|
-
* - true: Successful
|
|
29884
|
-
* - false: Failed
|
|
29885
|
-
*
|
|
29886
|
-
* @example
|
|
29887
|
-
* true
|
|
30049
|
+
* The tag values.
|
|
29888
30050
|
*/
|
|
29889
|
-
|
|
29890
|
-
static names(): {
|
|
29891
|
-
[key: string]: string;
|
|
29892
|
-
};
|
|
29893
|
-
static types(): {
|
|
29894
|
-
[key: string]: any;
|
|
29895
|
-
};
|
|
29896
|
-
validate(): void;
|
|
29897
|
-
constructor(map?: {
|
|
29898
|
-
[key: string]: any;
|
|
29899
|
-
});
|
|
29900
|
-
}
|
|
29901
|
-
export declare class DeleteDataQualityEvaluationTaskResponse extends $dara.Model {
|
|
29902
|
-
headers?: {
|
|
29903
|
-
[key: string]: string;
|
|
29904
|
-
};
|
|
29905
|
-
statusCode?: number;
|
|
29906
|
-
body?: DeleteDataQualityEvaluationTaskResponseBody;
|
|
30051
|
+
values?: string[];
|
|
29907
30052
|
static names(): {
|
|
29908
30053
|
[key: string]: string;
|
|
29909
30054
|
};
|
|
@@ -29915,25 +30060,22 @@ export declare class DeleteDataQualityEvaluationTaskResponse extends $dara.Model
|
|
|
29915
30060
|
[key: string]: any;
|
|
29916
30061
|
});
|
|
29917
30062
|
}
|
|
29918
|
-
export declare class
|
|
30063
|
+
export declare class DeleteDataAssetTagShrinkRequest extends $dara.Model {
|
|
29919
30064
|
/**
|
|
29920
30065
|
* @remarks
|
|
29921
|
-
* The
|
|
30066
|
+
* The tag key.
|
|
29922
30067
|
*
|
|
29923
30068
|
* This parameter is required.
|
|
29924
30069
|
*
|
|
29925
30070
|
* @example
|
|
29926
|
-
*
|
|
30071
|
+
* key1
|
|
29927
30072
|
*/
|
|
29928
|
-
|
|
30073
|
+
key?: string;
|
|
29929
30074
|
/**
|
|
29930
30075
|
* @remarks
|
|
29931
|
-
* The
|
|
29932
|
-
*
|
|
29933
|
-
* @example
|
|
29934
|
-
* 17302
|
|
30076
|
+
* The tag values.
|
|
29935
30077
|
*/
|
|
29936
|
-
|
|
30078
|
+
valuesShrink?: string;
|
|
29937
30079
|
static names(): {
|
|
29938
30080
|
[key: string]: string;
|
|
29939
30081
|
};
|
|
@@ -29945,13 +30087,165 @@ export declare class DeleteDataQualityRuleRequest extends $dara.Model {
|
|
|
29945
30087
|
[key: string]: any;
|
|
29946
30088
|
});
|
|
29947
30089
|
}
|
|
29948
|
-
export declare class
|
|
30090
|
+
export declare class DeleteDataAssetTagResponseBody extends $dara.Model {
|
|
29949
30091
|
/**
|
|
29950
30092
|
* @remarks
|
|
29951
30093
|
* The request ID.
|
|
29952
30094
|
*
|
|
29953
30095
|
* @example
|
|
29954
|
-
*
|
|
30096
|
+
* 0bc1411515937635973****
|
|
30097
|
+
*/
|
|
30098
|
+
requestId?: string;
|
|
30099
|
+
/**
|
|
30100
|
+
* @remarks
|
|
30101
|
+
* Indicates whether the request was successful.
|
|
30102
|
+
*
|
|
30103
|
+
* @example
|
|
30104
|
+
* true
|
|
30105
|
+
*/
|
|
30106
|
+
success?: boolean;
|
|
30107
|
+
static names(): {
|
|
30108
|
+
[key: string]: string;
|
|
30109
|
+
};
|
|
30110
|
+
static types(): {
|
|
30111
|
+
[key: string]: any;
|
|
30112
|
+
};
|
|
30113
|
+
validate(): void;
|
|
30114
|
+
constructor(map?: {
|
|
30115
|
+
[key: string]: any;
|
|
30116
|
+
});
|
|
30117
|
+
}
|
|
30118
|
+
export declare class DeleteDataAssetTagResponse extends $dara.Model {
|
|
30119
|
+
headers?: {
|
|
30120
|
+
[key: string]: string;
|
|
30121
|
+
};
|
|
30122
|
+
statusCode?: number;
|
|
30123
|
+
body?: DeleteDataAssetTagResponseBody;
|
|
30124
|
+
static names(): {
|
|
30125
|
+
[key: string]: string;
|
|
30126
|
+
};
|
|
30127
|
+
static types(): {
|
|
30128
|
+
[key: string]: any;
|
|
30129
|
+
};
|
|
30130
|
+
validate(): void;
|
|
30131
|
+
constructor(map?: {
|
|
30132
|
+
[key: string]: any;
|
|
30133
|
+
});
|
|
30134
|
+
}
|
|
30135
|
+
export declare class DeleteDataQualityEvaluationTaskRequest extends $dara.Model {
|
|
30136
|
+
/**
|
|
30137
|
+
* @remarks
|
|
30138
|
+
* The ID of the data quality monitor.
|
|
30139
|
+
*
|
|
30140
|
+
* @example
|
|
30141
|
+
* 123123
|
|
30142
|
+
*/
|
|
30143
|
+
id?: number;
|
|
30144
|
+
/**
|
|
30145
|
+
* @remarks
|
|
30146
|
+
* The ID of the DataWorks workspace. You can log on to the [DataWorks console](https://workbench.data.aliyun.com/console) and go to the workspace management page to obtain the ID.
|
|
30147
|
+
*
|
|
30148
|
+
* This parameter is used to determine the DataWorks workspaces used for this API call.
|
|
30149
|
+
*
|
|
30150
|
+
* @example
|
|
30151
|
+
* 10000
|
|
30152
|
+
*/
|
|
30153
|
+
projectId?: number;
|
|
30154
|
+
static names(): {
|
|
30155
|
+
[key: string]: string;
|
|
30156
|
+
};
|
|
30157
|
+
static types(): {
|
|
30158
|
+
[key: string]: any;
|
|
30159
|
+
};
|
|
30160
|
+
validate(): void;
|
|
30161
|
+
constructor(map?: {
|
|
30162
|
+
[key: string]: any;
|
|
30163
|
+
});
|
|
30164
|
+
}
|
|
30165
|
+
export declare class DeleteDataQualityEvaluationTaskResponseBody extends $dara.Model {
|
|
30166
|
+
/**
|
|
30167
|
+
* @remarks
|
|
30168
|
+
* Id of the request
|
|
30169
|
+
*
|
|
30170
|
+
* @example
|
|
30171
|
+
* 0bc1ec92159376****
|
|
30172
|
+
*/
|
|
30173
|
+
requestId?: string;
|
|
30174
|
+
/**
|
|
30175
|
+
* @remarks
|
|
30176
|
+
* Whether the deletion is successful.
|
|
30177
|
+
* - true: Successful
|
|
30178
|
+
* - false: Failed
|
|
30179
|
+
*
|
|
30180
|
+
* @example
|
|
30181
|
+
* true
|
|
30182
|
+
*/
|
|
30183
|
+
success?: boolean;
|
|
30184
|
+
static names(): {
|
|
30185
|
+
[key: string]: string;
|
|
30186
|
+
};
|
|
30187
|
+
static types(): {
|
|
30188
|
+
[key: string]: any;
|
|
30189
|
+
};
|
|
30190
|
+
validate(): void;
|
|
30191
|
+
constructor(map?: {
|
|
30192
|
+
[key: string]: any;
|
|
30193
|
+
});
|
|
30194
|
+
}
|
|
30195
|
+
export declare class DeleteDataQualityEvaluationTaskResponse extends $dara.Model {
|
|
30196
|
+
headers?: {
|
|
30197
|
+
[key: string]: string;
|
|
30198
|
+
};
|
|
30199
|
+
statusCode?: number;
|
|
30200
|
+
body?: DeleteDataQualityEvaluationTaskResponseBody;
|
|
30201
|
+
static names(): {
|
|
30202
|
+
[key: string]: string;
|
|
30203
|
+
};
|
|
30204
|
+
static types(): {
|
|
30205
|
+
[key: string]: any;
|
|
30206
|
+
};
|
|
30207
|
+
validate(): void;
|
|
30208
|
+
constructor(map?: {
|
|
30209
|
+
[key: string]: any;
|
|
30210
|
+
});
|
|
30211
|
+
}
|
|
30212
|
+
export declare class DeleteDataQualityRuleRequest extends $dara.Model {
|
|
30213
|
+
/**
|
|
30214
|
+
* @remarks
|
|
30215
|
+
* The rule ID.
|
|
30216
|
+
*
|
|
30217
|
+
* This parameter is required.
|
|
30218
|
+
*
|
|
30219
|
+
* @example
|
|
30220
|
+
* 19715
|
|
30221
|
+
*/
|
|
30222
|
+
id?: number;
|
|
30223
|
+
/**
|
|
30224
|
+
* @remarks
|
|
30225
|
+
* The DataWorks workspace ID.
|
|
30226
|
+
*
|
|
30227
|
+
* @example
|
|
30228
|
+
* 17302
|
|
30229
|
+
*/
|
|
30230
|
+
projectId?: number;
|
|
30231
|
+
static names(): {
|
|
30232
|
+
[key: string]: string;
|
|
30233
|
+
};
|
|
30234
|
+
static types(): {
|
|
30235
|
+
[key: string]: any;
|
|
30236
|
+
};
|
|
30237
|
+
validate(): void;
|
|
30238
|
+
constructor(map?: {
|
|
30239
|
+
[key: string]: any;
|
|
30240
|
+
});
|
|
30241
|
+
}
|
|
30242
|
+
export declare class DeleteDataQualityRuleResponseBody extends $dara.Model {
|
|
30243
|
+
/**
|
|
30244
|
+
* @remarks
|
|
30245
|
+
* The request ID.
|
|
30246
|
+
*
|
|
30247
|
+
* @example
|
|
30248
|
+
* 691CA452-D37A-4ED0-9441
|
|
29955
30249
|
*/
|
|
29956
30250
|
requestId?: string;
|
|
29957
30251
|
/**
|
|
@@ -30216,7 +30510,7 @@ export declare class DeleteFunctionRequest extends $dara.Model {
|
|
|
30216
30510
|
id?: number;
|
|
30217
30511
|
/**
|
|
30218
30512
|
* @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
|
|
30513
|
+
* 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
30514
|
*
|
|
30221
30515
|
* This parameter is required.
|
|
30222
30516
|
*
|
|
@@ -30363,9 +30657,9 @@ export declare class DeleteNodeRequest extends $dara.Model {
|
|
|
30363
30657
|
id?: number;
|
|
30364
30658
|
/**
|
|
30365
30659
|
* @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
|
|
30660
|
+
* 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
30661
|
*
|
|
30368
|
-
* You
|
|
30662
|
+
* You can use this parameter to specify the DataWorks workspace on which you want to perform the API operation.
|
|
30369
30663
|
*
|
|
30370
30664
|
* This parameter is required.
|
|
30371
30665
|
*
|
|
@@ -30575,7 +30869,7 @@ export declare class DeleteResourceRequest extends $dara.Model {
|
|
|
30575
30869
|
id?: number;
|
|
30576
30870
|
/**
|
|
30577
30871
|
* @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
|
|
30872
|
+
* 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
30873
|
*
|
|
30580
30874
|
* This parameter is required.
|
|
30581
30875
|
*
|
|
@@ -31247,9 +31541,9 @@ export declare class ExecDeploymentStageRequest extends $dara.Model {
|
|
|
31247
31541
|
id?: string;
|
|
31248
31542
|
/**
|
|
31249
31543
|
* @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
|
|
31544
|
+
* 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
31545
|
*
|
|
31252
|
-
* You
|
|
31546
|
+
* You can use this parameter to specify the DataWorks workspace on which you want to perform the API operation.
|
|
31253
31547
|
*
|
|
31254
31548
|
* This parameter is required.
|
|
31255
31549
|
*
|
|
@@ -31324,9 +31618,7 @@ export declare class ExecDeploymentStageResponse extends $dara.Model {
|
|
|
31324
31618
|
export declare class ExecuteAdhocWorkflowInstanceRequest extends $dara.Model {
|
|
31325
31619
|
/**
|
|
31326
31620
|
* @remarks
|
|
31327
|
-
*
|
|
31328
|
-
*
|
|
31329
|
-
* This parameter is required.
|
|
31621
|
+
* The data timestamp.
|
|
31330
31622
|
*
|
|
31331
31623
|
* @example
|
|
31332
31624
|
* 1710239005403
|
|
@@ -31394,9 +31686,7 @@ export declare class ExecuteAdhocWorkflowInstanceRequest extends $dara.Model {
|
|
|
31394
31686
|
export declare class ExecuteAdhocWorkflowInstanceShrinkRequest extends $dara.Model {
|
|
31395
31687
|
/**
|
|
31396
31688
|
* @remarks
|
|
31397
|
-
*
|
|
31398
|
-
*
|
|
31399
|
-
* This parameter is required.
|
|
31689
|
+
* The data timestamp.
|
|
31400
31690
|
*
|
|
31401
31691
|
* @example
|
|
31402
31692
|
* 1710239005403
|
|
@@ -31568,6 +31858,66 @@ export declare class GetAlertRuleResponse extends $dara.Model {
|
|
|
31568
31858
|
[key: string]: any;
|
|
31569
31859
|
});
|
|
31570
31860
|
}
|
|
31861
|
+
export declare class GetCertificateRequest extends $dara.Model {
|
|
31862
|
+
/**
|
|
31863
|
+
* @remarks
|
|
31864
|
+
* This parameter is required.
|
|
31865
|
+
*
|
|
31866
|
+
* @example
|
|
31867
|
+
* 676303114031776
|
|
31868
|
+
*/
|
|
31869
|
+
id?: number;
|
|
31870
|
+
/**
|
|
31871
|
+
* @example
|
|
31872
|
+
* 1065601
|
|
31873
|
+
*/
|
|
31874
|
+
projectId?: number;
|
|
31875
|
+
static names(): {
|
|
31876
|
+
[key: string]: string;
|
|
31877
|
+
};
|
|
31878
|
+
static types(): {
|
|
31879
|
+
[key: string]: any;
|
|
31880
|
+
};
|
|
31881
|
+
validate(): void;
|
|
31882
|
+
constructor(map?: {
|
|
31883
|
+
[key: string]: any;
|
|
31884
|
+
});
|
|
31885
|
+
}
|
|
31886
|
+
export declare class GetCertificateResponseBody extends $dara.Model {
|
|
31887
|
+
certificate?: GetCertificateResponseBodyCertificate;
|
|
31888
|
+
/**
|
|
31889
|
+
* @example
|
|
31890
|
+
* 0000-ABCD-EFG****
|
|
31891
|
+
*/
|
|
31892
|
+
requestId?: string;
|
|
31893
|
+
static names(): {
|
|
31894
|
+
[key: string]: string;
|
|
31895
|
+
};
|
|
31896
|
+
static types(): {
|
|
31897
|
+
[key: string]: any;
|
|
31898
|
+
};
|
|
31899
|
+
validate(): void;
|
|
31900
|
+
constructor(map?: {
|
|
31901
|
+
[key: string]: any;
|
|
31902
|
+
});
|
|
31903
|
+
}
|
|
31904
|
+
export declare class GetCertificateResponse extends $dara.Model {
|
|
31905
|
+
headers?: {
|
|
31906
|
+
[key: string]: string;
|
|
31907
|
+
};
|
|
31908
|
+
statusCode?: number;
|
|
31909
|
+
body?: GetCertificateResponseBody;
|
|
31910
|
+
static names(): {
|
|
31911
|
+
[key: string]: string;
|
|
31912
|
+
};
|
|
31913
|
+
static types(): {
|
|
31914
|
+
[key: string]: any;
|
|
31915
|
+
};
|
|
31916
|
+
validate(): void;
|
|
31917
|
+
constructor(map?: {
|
|
31918
|
+
[key: string]: any;
|
|
31919
|
+
});
|
|
31920
|
+
}
|
|
31571
31921
|
export declare class GetCreateWorkflowInstancesResultRequest extends $dara.Model {
|
|
31572
31922
|
/**
|
|
31573
31923
|
* @remarks
|
|
@@ -31757,7 +32107,24 @@ export declare class GetDIJobLogRequest extends $dara.Model {
|
|
|
31757
32107
|
* 6153616438
|
|
31758
32108
|
*/
|
|
31759
32109
|
instanceId?: number;
|
|
32110
|
+
/**
|
|
32111
|
+
* @remarks
|
|
32112
|
+
* Node type. Currently, it is only applicable in the view resource group 2.0 task:
|
|
32113
|
+
*
|
|
32114
|
+
* - MASTER: obtains logs of JobManager.
|
|
32115
|
+
* - WORKER: obtains logs of TaskManager.
|
|
32116
|
+
*
|
|
32117
|
+
* @example
|
|
32118
|
+
* MASTER
|
|
32119
|
+
*/
|
|
31760
32120
|
nodeType?: string;
|
|
32121
|
+
/**
|
|
32122
|
+
* @remarks
|
|
32123
|
+
* The page number of the pagination query. The value is a positive integer greater than or equal to 1.
|
|
32124
|
+
*
|
|
32125
|
+
* @example
|
|
32126
|
+
* 1
|
|
32127
|
+
*/
|
|
31761
32128
|
pageNumber?: number;
|
|
31762
32129
|
static names(): {
|
|
31763
32130
|
[key: string]: string;
|
|
@@ -33239,6 +33606,9 @@ export declare class GetWorkflowDefinitionRequest extends $dara.Model {
|
|
|
33239
33606
|
*/
|
|
33240
33607
|
id?: number;
|
|
33241
33608
|
/**
|
|
33609
|
+
* @remarks
|
|
33610
|
+
* 查询结果是否包含工作流内部节点的脚本内容(对于内容较多的节点,可能存在较长的网络传输延时)。
|
|
33611
|
+
*
|
|
33242
33612
|
* @example
|
|
33243
33613
|
* false
|
|
33244
33614
|
*/
|
|
@@ -33489,6 +33859,127 @@ export declare class GrantMemberProjectRolesResponse extends $dara.Model {
|
|
|
33489
33859
|
[key: string]: any;
|
|
33490
33860
|
});
|
|
33491
33861
|
}
|
|
33862
|
+
export declare class ImportCertificateRequest extends $dara.Model {
|
|
33863
|
+
/**
|
|
33864
|
+
* @remarks
|
|
33865
|
+
* This parameter is required.
|
|
33866
|
+
*
|
|
33867
|
+
* @example
|
|
33868
|
+
* -
|
|
33869
|
+
*/
|
|
33870
|
+
certificateFile?: string;
|
|
33871
|
+
/**
|
|
33872
|
+
* @example
|
|
33873
|
+
* This is a file
|
|
33874
|
+
*/
|
|
33875
|
+
description?: string;
|
|
33876
|
+
/**
|
|
33877
|
+
* @remarks
|
|
33878
|
+
* This parameter is required.
|
|
33879
|
+
*
|
|
33880
|
+
* @example
|
|
33881
|
+
* ca1.crt
|
|
33882
|
+
*/
|
|
33883
|
+
name?: string;
|
|
33884
|
+
/**
|
|
33885
|
+
* @remarks
|
|
33886
|
+
* This parameter is required.
|
|
33887
|
+
*
|
|
33888
|
+
* @example
|
|
33889
|
+
* 106560
|
|
33890
|
+
*/
|
|
33891
|
+
projectId?: number;
|
|
33892
|
+
static names(): {
|
|
33893
|
+
[key: string]: string;
|
|
33894
|
+
};
|
|
33895
|
+
static types(): {
|
|
33896
|
+
[key: string]: any;
|
|
33897
|
+
};
|
|
33898
|
+
validate(): void;
|
|
33899
|
+
constructor(map?: {
|
|
33900
|
+
[key: string]: any;
|
|
33901
|
+
});
|
|
33902
|
+
}
|
|
33903
|
+
export declare class ImportCertificateAdvanceRequest extends $dara.Model {
|
|
33904
|
+
/**
|
|
33905
|
+
* @remarks
|
|
33906
|
+
* This parameter is required.
|
|
33907
|
+
*
|
|
33908
|
+
* @example
|
|
33909
|
+
* -
|
|
33910
|
+
*/
|
|
33911
|
+
certificateFileObject?: Readable;
|
|
33912
|
+
/**
|
|
33913
|
+
* @example
|
|
33914
|
+
* This is a file
|
|
33915
|
+
*/
|
|
33916
|
+
description?: string;
|
|
33917
|
+
/**
|
|
33918
|
+
* @remarks
|
|
33919
|
+
* This parameter is required.
|
|
33920
|
+
*
|
|
33921
|
+
* @example
|
|
33922
|
+
* ca1.crt
|
|
33923
|
+
*/
|
|
33924
|
+
name?: string;
|
|
33925
|
+
/**
|
|
33926
|
+
* @remarks
|
|
33927
|
+
* This parameter is required.
|
|
33928
|
+
*
|
|
33929
|
+
* @example
|
|
33930
|
+
* 106560
|
|
33931
|
+
*/
|
|
33932
|
+
projectId?: number;
|
|
33933
|
+
static names(): {
|
|
33934
|
+
[key: string]: string;
|
|
33935
|
+
};
|
|
33936
|
+
static types(): {
|
|
33937
|
+
[key: string]: any;
|
|
33938
|
+
};
|
|
33939
|
+
validate(): void;
|
|
33940
|
+
constructor(map?: {
|
|
33941
|
+
[key: string]: any;
|
|
33942
|
+
});
|
|
33943
|
+
}
|
|
33944
|
+
export declare class ImportCertificateResponseBody extends $dara.Model {
|
|
33945
|
+
/**
|
|
33946
|
+
* @example
|
|
33947
|
+
* 676303114031776
|
|
33948
|
+
*/
|
|
33949
|
+
id?: number;
|
|
33950
|
+
/**
|
|
33951
|
+
* @example
|
|
33952
|
+
* 7C352CB7-CD88-50CF-9D0D-E81BDF020E7F
|
|
33953
|
+
*/
|
|
33954
|
+
requestId?: string;
|
|
33955
|
+
static names(): {
|
|
33956
|
+
[key: string]: string;
|
|
33957
|
+
};
|
|
33958
|
+
static types(): {
|
|
33959
|
+
[key: string]: any;
|
|
33960
|
+
};
|
|
33961
|
+
validate(): void;
|
|
33962
|
+
constructor(map?: {
|
|
33963
|
+
[key: string]: any;
|
|
33964
|
+
});
|
|
33965
|
+
}
|
|
33966
|
+
export declare class ImportCertificateResponse extends $dara.Model {
|
|
33967
|
+
headers?: {
|
|
33968
|
+
[key: string]: string;
|
|
33969
|
+
};
|
|
33970
|
+
statusCode?: number;
|
|
33971
|
+
body?: ImportCertificateResponseBody;
|
|
33972
|
+
static names(): {
|
|
33973
|
+
[key: string]: string;
|
|
33974
|
+
};
|
|
33975
|
+
static types(): {
|
|
33976
|
+
[key: string]: any;
|
|
33977
|
+
};
|
|
33978
|
+
validate(): void;
|
|
33979
|
+
constructor(map?: {
|
|
33980
|
+
[key: string]: any;
|
|
33981
|
+
});
|
|
33982
|
+
}
|
|
33492
33983
|
export declare class ImportWorkflowDefinitionRequest extends $dara.Model {
|
|
33493
33984
|
/**
|
|
33494
33985
|
* @remarks
|
|
@@ -33869,6 +34360,101 @@ export declare class ListAlertRulesResponse extends $dara.Model {
|
|
|
33869
34360
|
[key: string]: any;
|
|
33870
34361
|
});
|
|
33871
34362
|
}
|
|
34363
|
+
export declare class ListCertificatesRequest extends $dara.Model {
|
|
34364
|
+
/**
|
|
34365
|
+
* @example
|
|
34366
|
+
* 1107550004253538
|
|
34367
|
+
*/
|
|
34368
|
+
createUser?: string;
|
|
34369
|
+
/**
|
|
34370
|
+
* @example
|
|
34371
|
+
* 1593877765000
|
|
34372
|
+
*/
|
|
34373
|
+
endCreateTime?: number;
|
|
34374
|
+
/**
|
|
34375
|
+
* @example
|
|
34376
|
+
* xm_create_test
|
|
34377
|
+
*/
|
|
34378
|
+
name?: string;
|
|
34379
|
+
/**
|
|
34380
|
+
* @example
|
|
34381
|
+
* Asc
|
|
34382
|
+
*/
|
|
34383
|
+
order?: string;
|
|
34384
|
+
/**
|
|
34385
|
+
* @example
|
|
34386
|
+
* 1
|
|
34387
|
+
*/
|
|
34388
|
+
pageNumber?: number;
|
|
34389
|
+
/**
|
|
34390
|
+
* @example
|
|
34391
|
+
* 10
|
|
34392
|
+
*/
|
|
34393
|
+
pageSize?: number;
|
|
34394
|
+
/**
|
|
34395
|
+
* @remarks
|
|
34396
|
+
* This parameter is required.
|
|
34397
|
+
*
|
|
34398
|
+
* @example
|
|
34399
|
+
* 10000
|
|
34400
|
+
*/
|
|
34401
|
+
projectId?: number;
|
|
34402
|
+
/**
|
|
34403
|
+
* @example
|
|
34404
|
+
* Id
|
|
34405
|
+
*/
|
|
34406
|
+
sortBy?: string;
|
|
34407
|
+
/**
|
|
34408
|
+
* @example
|
|
34409
|
+
* 1730217600000
|
|
34410
|
+
*/
|
|
34411
|
+
startCreateTime?: number;
|
|
34412
|
+
static names(): {
|
|
34413
|
+
[key: string]: string;
|
|
34414
|
+
};
|
|
34415
|
+
static types(): {
|
|
34416
|
+
[key: string]: any;
|
|
34417
|
+
};
|
|
34418
|
+
validate(): void;
|
|
34419
|
+
constructor(map?: {
|
|
34420
|
+
[key: string]: any;
|
|
34421
|
+
});
|
|
34422
|
+
}
|
|
34423
|
+
export declare class ListCertificatesResponseBody extends $dara.Model {
|
|
34424
|
+
pagingInfo?: ListCertificatesResponseBodyPagingInfo;
|
|
34425
|
+
/**
|
|
34426
|
+
* @example
|
|
34427
|
+
* ecb967ec-c137-48****
|
|
34428
|
+
*/
|
|
34429
|
+
requestId?: string;
|
|
34430
|
+
static names(): {
|
|
34431
|
+
[key: string]: string;
|
|
34432
|
+
};
|
|
34433
|
+
static types(): {
|
|
34434
|
+
[key: string]: any;
|
|
34435
|
+
};
|
|
34436
|
+
validate(): void;
|
|
34437
|
+
constructor(map?: {
|
|
34438
|
+
[key: string]: any;
|
|
34439
|
+
});
|
|
34440
|
+
}
|
|
34441
|
+
export declare class ListCertificatesResponse extends $dara.Model {
|
|
34442
|
+
headers?: {
|
|
34443
|
+
[key: string]: string;
|
|
34444
|
+
};
|
|
34445
|
+
statusCode?: number;
|
|
34446
|
+
body?: ListCertificatesResponseBody;
|
|
34447
|
+
static names(): {
|
|
34448
|
+
[key: string]: string;
|
|
34449
|
+
};
|
|
34450
|
+
static types(): {
|
|
34451
|
+
[key: string]: any;
|
|
34452
|
+
};
|
|
34453
|
+
validate(): void;
|
|
34454
|
+
constructor(map?: {
|
|
34455
|
+
[key: string]: any;
|
|
34456
|
+
});
|
|
34457
|
+
}
|
|
33872
34458
|
export declare class ListDIAlarmRulesRequest extends $dara.Model {
|
|
33873
34459
|
/**
|
|
33874
34460
|
* @remarks
|
|
@@ -34973,7 +35559,7 @@ export declare class ListDataQualityResultsRequest extends $dara.Model {
|
|
|
34973
35559
|
bizdateTo?: string;
|
|
34974
35560
|
/**
|
|
34975
35561
|
* @remarks
|
|
34976
|
-
* The earliest time when data quality
|
|
35562
|
+
* The earliest time when the data quality check result was generated.
|
|
34977
35563
|
*
|
|
34978
35564
|
* @example
|
|
34979
35565
|
* 1710239005403
|
|
@@ -34981,7 +35567,7 @@ export declare class ListDataQualityResultsRequest extends $dara.Model {
|
|
|
34981
35567
|
createTimeFrom?: number;
|
|
34982
35568
|
/**
|
|
34983
35569
|
* @remarks
|
|
34984
|
-
* The latest
|
|
35570
|
+
* The latest time when the data quality check result was generated.
|
|
34985
35571
|
*
|
|
34986
35572
|
* @example
|
|
34987
35573
|
* 1710239005403
|
|
@@ -34989,7 +35575,7 @@ export declare class ListDataQualityResultsRequest extends $dara.Model {
|
|
|
34989
35575
|
createTimeTo?: number;
|
|
34990
35576
|
/**
|
|
34991
35577
|
* @remarks
|
|
34992
|
-
* The ID of the data quality
|
|
35578
|
+
* The ID of the data quality monitoring task.
|
|
34993
35579
|
*
|
|
34994
35580
|
* @example
|
|
34995
35581
|
* 200001
|
|
@@ -34997,7 +35583,7 @@ export declare class ListDataQualityResultsRequest extends $dara.Model {
|
|
|
34997
35583
|
dataQualityEvaluationTaskId?: number;
|
|
34998
35584
|
/**
|
|
34999
35585
|
* @remarks
|
|
35000
|
-
* The ID of the
|
|
35586
|
+
* The ID of the instance generated by the check.
|
|
35001
35587
|
*
|
|
35002
35588
|
* @example
|
|
35003
35589
|
* 10001
|
|
@@ -35005,7 +35591,7 @@ export declare class ListDataQualityResultsRequest extends $dara.Model {
|
|
|
35005
35591
|
dataQualityEvaluationTaskInstanceId?: number;
|
|
35006
35592
|
/**
|
|
35007
35593
|
* @remarks
|
|
35008
|
-
* The ID of the data quality rule.
|
|
35594
|
+
* The ID of the data quality monitoring rule.
|
|
35009
35595
|
*
|
|
35010
35596
|
* @example
|
|
35011
35597
|
* 100001
|
|
@@ -36968,16 +37554,16 @@ export declare class ListResourceGroupsRequest extends $dara.Model {
|
|
|
36968
37554
|
resourceGroupTypes?: string[];
|
|
36969
37555
|
/**
|
|
36970
37556
|
* @remarks
|
|
36971
|
-
* The
|
|
37557
|
+
* 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
37558
|
*
|
|
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):
|
|
37559
|
+
* * Id (Desc/Asc): the resource group ID
|
|
37560
|
+
* * Name (Desc/Asc): the name of the resource group
|
|
37561
|
+
* * Remark (Desc/Asc): the remarks of the resource group
|
|
37562
|
+
* * Type (Desc/Asc): the type of the resource group
|
|
37563
|
+
* * Status (Desc/Asc): the status of the resource group
|
|
37564
|
+
* * Spec (Desc/Asc): the specifications of the resource group
|
|
37565
|
+
* * CreateUser (Desc/Asc): the creator of the resource group
|
|
37566
|
+
* * CreateTime (Desc/Asc): the time when the route is created
|
|
36981
37567
|
*
|
|
36982
37568
|
* Default value: CreateTime Asc
|
|
36983
37569
|
*
|
|
@@ -37065,16 +37651,16 @@ export declare class ListResourceGroupsShrinkRequest extends $dara.Model {
|
|
|
37065
37651
|
resourceGroupTypesShrink?: string;
|
|
37066
37652
|
/**
|
|
37067
37653
|
* @remarks
|
|
37068
|
-
* The
|
|
37654
|
+
* 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
37655
|
*
|
|
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):
|
|
37656
|
+
* * Id (Desc/Asc): the resource group ID
|
|
37657
|
+
* * Name (Desc/Asc): the name of the resource group
|
|
37658
|
+
* * Remark (Desc/Asc): the remarks of the resource group
|
|
37659
|
+
* * Type (Desc/Asc): the type of the resource group
|
|
37660
|
+
* * Status (Desc/Asc): the status of the resource group
|
|
37661
|
+
* * Spec (Desc/Asc): the specifications of the resource group
|
|
37662
|
+
* * CreateUser (Desc/Asc): the creator of the resource group
|
|
37663
|
+
* * CreateTime (Desc/Asc): the time when the route is created
|
|
37078
37664
|
*
|
|
37079
37665
|
* Default value: CreateTime Asc
|
|
37080
37666
|
*
|
|
@@ -39079,9 +39665,9 @@ export declare class MoveFunctionRequest extends $dara.Model {
|
|
|
39079
39665
|
path?: string;
|
|
39080
39666
|
/**
|
|
39081
39667
|
* @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
|
|
39668
|
+
* 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
39669
|
*
|
|
39084
|
-
*
|
|
39670
|
+
* This parameter indicates the DataWorks workspace to which the API operation is applied.
|
|
39085
39671
|
*
|
|
39086
39672
|
* This parameter is required.
|
|
39087
39673
|
*
|
|
@@ -39175,7 +39761,7 @@ export declare class MoveNodeRequest extends $dara.Model {
|
|
|
39175
39761
|
* @remarks
|
|
39176
39762
|
* 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
39763
|
*
|
|
39178
|
-
* You
|
|
39764
|
+
* You can use this parameter to specify the DataWorks workspace on which you want to perform the API operation.
|
|
39179
39765
|
*
|
|
39180
39766
|
* This parameter is required.
|
|
39181
39767
|
*
|
|
@@ -39267,9 +39853,9 @@ export declare class MoveResourceRequest extends $dara.Model {
|
|
|
39267
39853
|
path?: string;
|
|
39268
39854
|
/**
|
|
39269
39855
|
* @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
|
|
39856
|
+
* 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
39857
|
*
|
|
39272
|
-
* You
|
|
39858
|
+
* You can use this parameter to specify the DataWorks workspace on which you want to perform the API operation.
|
|
39273
39859
|
*
|
|
39274
39860
|
* This parameter is required.
|
|
39275
39861
|
*
|
|
@@ -39361,7 +39947,7 @@ export declare class MoveWorkflowDefinitionRequest extends $dara.Model {
|
|
|
39361
39947
|
path?: string;
|
|
39362
39948
|
/**
|
|
39363
39949
|
* @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
|
|
39950
|
+
* 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
39951
|
*
|
|
39366
39952
|
* This parameter is required.
|
|
39367
39953
|
*
|
|
@@ -41090,6 +41676,77 @@ export declare class TagDataAssetsResponse extends $dara.Model {
|
|
|
41090
41676
|
[key: string]: any;
|
|
41091
41677
|
});
|
|
41092
41678
|
}
|
|
41679
|
+
export declare class TestDataSourceConnectivityRequest extends $dara.Model {
|
|
41680
|
+
/**
|
|
41681
|
+
* @remarks
|
|
41682
|
+
* This parameter is required.
|
|
41683
|
+
*
|
|
41684
|
+
* @example
|
|
41685
|
+
* 144544
|
|
41686
|
+
*/
|
|
41687
|
+
dataSourceId?: number;
|
|
41688
|
+
/**
|
|
41689
|
+
* @remarks
|
|
41690
|
+
* This parameter is required.
|
|
41691
|
+
*
|
|
41692
|
+
* @example
|
|
41693
|
+
* 10001
|
|
41694
|
+
*/
|
|
41695
|
+
projectId?: number;
|
|
41696
|
+
/**
|
|
41697
|
+
* @remarks
|
|
41698
|
+
* This parameter is required.
|
|
41699
|
+
*
|
|
41700
|
+
* @example
|
|
41701
|
+
* Serverless_res_group_524257424564736_6831777003XXXXX
|
|
41702
|
+
*/
|
|
41703
|
+
resourceGroupId?: string;
|
|
41704
|
+
static names(): {
|
|
41705
|
+
[key: string]: string;
|
|
41706
|
+
};
|
|
41707
|
+
static types(): {
|
|
41708
|
+
[key: string]: any;
|
|
41709
|
+
};
|
|
41710
|
+
validate(): void;
|
|
41711
|
+
constructor(map?: {
|
|
41712
|
+
[key: string]: any;
|
|
41713
|
+
});
|
|
41714
|
+
}
|
|
41715
|
+
export declare class TestDataSourceConnectivityResponseBody extends $dara.Model {
|
|
41716
|
+
connectivity?: TestDataSourceConnectivityResponseBodyConnectivity;
|
|
41717
|
+
/**
|
|
41718
|
+
* @example
|
|
41719
|
+
* 4CDF7B72-020B-542A-8465-21CFFA81****
|
|
41720
|
+
*/
|
|
41721
|
+
requestId?: string;
|
|
41722
|
+
static names(): {
|
|
41723
|
+
[key: string]: string;
|
|
41724
|
+
};
|
|
41725
|
+
static types(): {
|
|
41726
|
+
[key: string]: any;
|
|
41727
|
+
};
|
|
41728
|
+
validate(): void;
|
|
41729
|
+
constructor(map?: {
|
|
41730
|
+
[key: string]: any;
|
|
41731
|
+
});
|
|
41732
|
+
}
|
|
41733
|
+
export declare class TestDataSourceConnectivityResponse extends $dara.Model {
|
|
41734
|
+
headers?: {
|
|
41735
|
+
[key: string]: string;
|
|
41736
|
+
};
|
|
41737
|
+
statusCode?: number;
|
|
41738
|
+
body?: TestDataSourceConnectivityResponseBody;
|
|
41739
|
+
static names(): {
|
|
41740
|
+
[key: string]: string;
|
|
41741
|
+
};
|
|
41742
|
+
static types(): {
|
|
41743
|
+
[key: string]: any;
|
|
41744
|
+
};
|
|
41745
|
+
validate(): void;
|
|
41746
|
+
constructor(map?: {
|
|
41747
|
+
[key: string]: any;
|
|
41748
|
+
});
|
|
41749
|
+
}
|
|
41093
41750
|
export declare class TriggerSchedulerTaskInstanceRequest extends $dara.Model {
|
|
41094
41751
|
/**
|
|
41095
41752
|
* @remarks
|
|
@@ -43431,7 +44088,7 @@ export declare class UpdateRouteResponse extends $dara.Model {
|
|
|
43431
44088
|
export declare class UpdateTaskRequest extends $dara.Model {
|
|
43432
44089
|
/**
|
|
43433
44090
|
* @remarks
|
|
43434
|
-
* The
|
|
44091
|
+
* 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
44092
|
*
|
|
43436
44093
|
* @example
|
|
43437
44094
|
* Task_0bc5213917368545132902xxxxxxxx
|
|
@@ -43439,17 +44096,17 @@ export declare class UpdateTaskRequest extends $dara.Model {
|
|
|
43439
44096
|
clientUniqueCode?: string;
|
|
43440
44097
|
/**
|
|
43441
44098
|
* @remarks
|
|
43442
|
-
* The associated data source
|
|
44099
|
+
* The information about the associated data source.
|
|
43443
44100
|
*/
|
|
43444
44101
|
dataSource?: UpdateTaskRequestDataSource;
|
|
43445
44102
|
/**
|
|
43446
44103
|
* @remarks
|
|
43447
|
-
*
|
|
44104
|
+
* The dependency information.
|
|
43448
44105
|
*/
|
|
43449
44106
|
dependencies?: UpdateTaskRequestDependencies[];
|
|
43450
44107
|
/**
|
|
43451
44108
|
* @remarks
|
|
43452
|
-
* The description.
|
|
44109
|
+
* The description of the task.
|
|
43453
44110
|
*
|
|
43454
44111
|
* @example
|
|
43455
44112
|
* test
|
|
@@ -43457,9 +44114,10 @@ export declare class UpdateTaskRequest extends $dara.Model {
|
|
|
43457
44114
|
description?: string;
|
|
43458
44115
|
/**
|
|
43459
44116
|
* @remarks
|
|
43460
|
-
* The
|
|
43461
|
-
*
|
|
43462
|
-
*
|
|
44117
|
+
* The environment of the workspace. Valid values:
|
|
44118
|
+
*
|
|
44119
|
+
* * Prod: production environment
|
|
44120
|
+
* * Dev: development environment
|
|
43463
44121
|
*
|
|
43464
44122
|
* @example
|
|
43465
44123
|
* Prod
|
|
@@ -43467,7 +44125,7 @@ export declare class UpdateTaskRequest extends $dara.Model {
|
|
|
43467
44125
|
envType?: string;
|
|
43468
44126
|
/**
|
|
43469
44127
|
* @remarks
|
|
43470
|
-
* The ID
|
|
44128
|
+
* The task ID.
|
|
43471
44129
|
*
|
|
43472
44130
|
* This parameter is required.
|
|
43473
44131
|
*
|
|
@@ -43477,14 +44135,15 @@ export declare class UpdateTaskRequest extends $dara.Model {
|
|
|
43477
44135
|
id?: number;
|
|
43478
44136
|
/**
|
|
43479
44137
|
* @remarks
|
|
43480
|
-
*
|
|
44138
|
+
* The input information.
|
|
43481
44139
|
*/
|
|
43482
44140
|
inputs?: UpdateTaskRequestInputs;
|
|
43483
44141
|
/**
|
|
43484
44142
|
* @remarks
|
|
43485
|
-
* The instance generation mode.
|
|
43486
|
-
*
|
|
43487
|
-
*
|
|
44143
|
+
* The instance generation mode. Valid values:
|
|
44144
|
+
*
|
|
44145
|
+
* * T+1
|
|
44146
|
+
* * Immediately
|
|
43488
44147
|
*
|
|
43489
44148
|
* @example
|
|
43490
44149
|
* T+1
|
|
@@ -43492,7 +44151,7 @@ export declare class UpdateTaskRequest extends $dara.Model {
|
|
|
43492
44151
|
instanceMode?: string;
|
|
43493
44152
|
/**
|
|
43494
44153
|
* @remarks
|
|
43495
|
-
* The name.
|
|
44154
|
+
* The name of the task.
|
|
43496
44155
|
*
|
|
43497
44156
|
* This parameter is required.
|
|
43498
44157
|
*
|
|
@@ -43507,7 +44166,7 @@ export declare class UpdateTaskRequest extends $dara.Model {
|
|
|
43507
44166
|
outputs?: UpdateTaskRequestOutputs;
|
|
43508
44167
|
/**
|
|
43509
44168
|
* @remarks
|
|
43510
|
-
* The account ID of the owner
|
|
44169
|
+
* The account ID of the task owner.
|
|
43511
44170
|
*
|
|
43512
44171
|
* This parameter is required.
|
|
43513
44172
|
*
|
|
@@ -43517,7 +44176,7 @@ export declare class UpdateTaskRequest extends $dara.Model {
|
|
|
43517
44176
|
owner?: string;
|
|
43518
44177
|
/**
|
|
43519
44178
|
* @remarks
|
|
43520
|
-
* The
|
|
44179
|
+
* The rerun interval. Unit: seconds.
|
|
43521
44180
|
*
|
|
43522
44181
|
* @example
|
|
43523
44182
|
* 60
|
|
@@ -43525,10 +44184,11 @@ export declare class UpdateTaskRequest extends $dara.Model {
|
|
|
43525
44184
|
rerunInterval?: number;
|
|
43526
44185
|
/**
|
|
43527
44186
|
* @remarks
|
|
43528
|
-
* The
|
|
43529
|
-
*
|
|
43530
|
-
*
|
|
43531
|
-
*
|
|
44187
|
+
* The rerun mode. Valid values:
|
|
44188
|
+
*
|
|
44189
|
+
* * AllDenied: The task cannot be rerun regardless of whether the task is successfully run or fails to run.
|
|
44190
|
+
* * FailureAllowed: The task can be rerun only after it fails to run.
|
|
44191
|
+
* * AllAllowed: The task can be rerun regardless of whether the task is successfully run or fails to run.
|
|
43532
44192
|
*
|
|
43533
44193
|
* This parameter is required.
|
|
43534
44194
|
*
|
|
@@ -43538,7 +44198,7 @@ export declare class UpdateTaskRequest extends $dara.Model {
|
|
|
43538
44198
|
rerunMode?: string;
|
|
43539
44199
|
/**
|
|
43540
44200
|
* @remarks
|
|
43541
|
-
* The number of
|
|
44201
|
+
* 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
44202
|
*
|
|
43543
44203
|
* @example
|
|
43544
44204
|
* 3
|
|
@@ -43546,24 +44206,24 @@ export declare class UpdateTaskRequest extends $dara.Model {
|
|
|
43546
44206
|
rerunTimes?: number;
|
|
43547
44207
|
/**
|
|
43548
44208
|
* @remarks
|
|
43549
|
-
*
|
|
44209
|
+
* The configurations of the runtime environment, such as the resource group information.
|
|
43550
44210
|
*
|
|
43551
44211
|
* This parameter is required.
|
|
43552
44212
|
*/
|
|
43553
44213
|
runtimeResource?: UpdateTaskRequestRuntimeResource;
|
|
43554
44214
|
/**
|
|
43555
44215
|
* @remarks
|
|
43556
|
-
*
|
|
44216
|
+
* The script information.
|
|
43557
44217
|
*/
|
|
43558
44218
|
script?: UpdateTaskRequestScript;
|
|
43559
44219
|
/**
|
|
43560
44220
|
* @remarks
|
|
43561
|
-
* The
|
|
44221
|
+
* The tags.
|
|
43562
44222
|
*/
|
|
43563
44223
|
tags?: UpdateTaskRequestTags[];
|
|
43564
44224
|
/**
|
|
43565
44225
|
* @remarks
|
|
43566
|
-
* The timeout period of
|
|
44226
|
+
* The timeout period of task running. Unit: seconds.
|
|
43567
44227
|
*
|
|
43568
44228
|
* @example
|
|
43569
44229
|
* 3600
|
|
@@ -43571,7 +44231,7 @@ export declare class UpdateTaskRequest extends $dara.Model {
|
|
|
43571
44231
|
timeout?: number;
|
|
43572
44232
|
/**
|
|
43573
44233
|
* @remarks
|
|
43574
|
-
* The trigger method
|
|
44234
|
+
* The trigger method.
|
|
43575
44235
|
*
|
|
43576
44236
|
* This parameter is required.
|
|
43577
44237
|
*/
|
|
@@ -43590,7 +44250,7 @@ export declare class UpdateTaskRequest extends $dara.Model {
|
|
|
43590
44250
|
export declare class UpdateTaskShrinkRequest extends $dara.Model {
|
|
43591
44251
|
/**
|
|
43592
44252
|
* @remarks
|
|
43593
|
-
* The
|
|
44253
|
+
* 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
44254
|
*
|
|
43595
44255
|
* @example
|
|
43596
44256
|
* Task_0bc5213917368545132902xxxxxxxx
|
|
@@ -43598,17 +44258,17 @@ export declare class UpdateTaskShrinkRequest extends $dara.Model {
|
|
|
43598
44258
|
clientUniqueCode?: string;
|
|
43599
44259
|
/**
|
|
43600
44260
|
* @remarks
|
|
43601
|
-
* The associated data source
|
|
44261
|
+
* The information about the associated data source.
|
|
43602
44262
|
*/
|
|
43603
44263
|
dataSourceShrink?: string;
|
|
43604
44264
|
/**
|
|
43605
44265
|
* @remarks
|
|
43606
|
-
*
|
|
44266
|
+
* The dependency information.
|
|
43607
44267
|
*/
|
|
43608
44268
|
dependenciesShrink?: string;
|
|
43609
44269
|
/**
|
|
43610
44270
|
* @remarks
|
|
43611
|
-
* The description.
|
|
44271
|
+
* The description of the task.
|
|
43612
44272
|
*
|
|
43613
44273
|
* @example
|
|
43614
44274
|
* test
|
|
@@ -43616,9 +44276,10 @@ export declare class UpdateTaskShrinkRequest extends $dara.Model {
|
|
|
43616
44276
|
description?: string;
|
|
43617
44277
|
/**
|
|
43618
44278
|
* @remarks
|
|
43619
|
-
* The
|
|
43620
|
-
*
|
|
43621
|
-
*
|
|
44279
|
+
* The environment of the workspace. Valid values:
|
|
44280
|
+
*
|
|
44281
|
+
* * Prod: production environment
|
|
44282
|
+
* * Dev: development environment
|
|
43622
44283
|
*
|
|
43623
44284
|
* @example
|
|
43624
44285
|
* Prod
|
|
@@ -43626,7 +44287,7 @@ export declare class UpdateTaskShrinkRequest extends $dara.Model {
|
|
|
43626
44287
|
envType?: string;
|
|
43627
44288
|
/**
|
|
43628
44289
|
* @remarks
|
|
43629
|
-
* The ID
|
|
44290
|
+
* The task ID.
|
|
43630
44291
|
*
|
|
43631
44292
|
* This parameter is required.
|
|
43632
44293
|
*
|
|
@@ -43636,14 +44297,15 @@ export declare class UpdateTaskShrinkRequest extends $dara.Model {
|
|
|
43636
44297
|
id?: number;
|
|
43637
44298
|
/**
|
|
43638
44299
|
* @remarks
|
|
43639
|
-
*
|
|
44300
|
+
* The input information.
|
|
43640
44301
|
*/
|
|
43641
44302
|
inputsShrink?: string;
|
|
43642
44303
|
/**
|
|
43643
44304
|
* @remarks
|
|
43644
|
-
* The instance generation mode.
|
|
43645
|
-
*
|
|
43646
|
-
*
|
|
44305
|
+
* The instance generation mode. Valid values:
|
|
44306
|
+
*
|
|
44307
|
+
* * T+1
|
|
44308
|
+
* * Immediately
|
|
43647
44309
|
*
|
|
43648
44310
|
* @example
|
|
43649
44311
|
* T+1
|
|
@@ -43651,7 +44313,7 @@ export declare class UpdateTaskShrinkRequest extends $dara.Model {
|
|
|
43651
44313
|
instanceMode?: string;
|
|
43652
44314
|
/**
|
|
43653
44315
|
* @remarks
|
|
43654
|
-
* The name.
|
|
44316
|
+
* The name of the task.
|
|
43655
44317
|
*
|
|
43656
44318
|
* This parameter is required.
|
|
43657
44319
|
*
|
|
@@ -43666,7 +44328,7 @@ export declare class UpdateTaskShrinkRequest extends $dara.Model {
|
|
|
43666
44328
|
outputsShrink?: string;
|
|
43667
44329
|
/**
|
|
43668
44330
|
* @remarks
|
|
43669
|
-
* The account ID of the owner
|
|
44331
|
+
* The account ID of the task owner.
|
|
43670
44332
|
*
|
|
43671
44333
|
* This parameter is required.
|
|
43672
44334
|
*
|
|
@@ -43676,7 +44338,7 @@ export declare class UpdateTaskShrinkRequest extends $dara.Model {
|
|
|
43676
44338
|
owner?: string;
|
|
43677
44339
|
/**
|
|
43678
44340
|
* @remarks
|
|
43679
|
-
* The
|
|
44341
|
+
* The rerun interval. Unit: seconds.
|
|
43680
44342
|
*
|
|
43681
44343
|
* @example
|
|
43682
44344
|
* 60
|
|
@@ -43684,10 +44346,11 @@ export declare class UpdateTaskShrinkRequest extends $dara.Model {
|
|
|
43684
44346
|
rerunInterval?: number;
|
|
43685
44347
|
/**
|
|
43686
44348
|
* @remarks
|
|
43687
|
-
* The
|
|
43688
|
-
*
|
|
43689
|
-
*
|
|
43690
|
-
*
|
|
44349
|
+
* The rerun mode. Valid values:
|
|
44350
|
+
*
|
|
44351
|
+
* * AllDenied: The task cannot be rerun regardless of whether the task is successfully run or fails to run.
|
|
44352
|
+
* * FailureAllowed: The task can be rerun only after it fails to run.
|
|
44353
|
+
* * AllAllowed: The task can be rerun regardless of whether the task is successfully run or fails to run.
|
|
43691
44354
|
*
|
|
43692
44355
|
* This parameter is required.
|
|
43693
44356
|
*
|
|
@@ -43697,7 +44360,7 @@ export declare class UpdateTaskShrinkRequest extends $dara.Model {
|
|
|
43697
44360
|
rerunMode?: string;
|
|
43698
44361
|
/**
|
|
43699
44362
|
* @remarks
|
|
43700
|
-
* The number of
|
|
44363
|
+
* 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
44364
|
*
|
|
43702
44365
|
* @example
|
|
43703
44366
|
* 3
|
|
@@ -43705,24 +44368,24 @@ export declare class UpdateTaskShrinkRequest extends $dara.Model {
|
|
|
43705
44368
|
rerunTimes?: number;
|
|
43706
44369
|
/**
|
|
43707
44370
|
* @remarks
|
|
43708
|
-
*
|
|
44371
|
+
* The configurations of the runtime environment, such as the resource group information.
|
|
43709
44372
|
*
|
|
43710
44373
|
* This parameter is required.
|
|
43711
44374
|
*/
|
|
43712
44375
|
runtimeResourceShrink?: string;
|
|
43713
44376
|
/**
|
|
43714
44377
|
* @remarks
|
|
43715
|
-
*
|
|
44378
|
+
* The script information.
|
|
43716
44379
|
*/
|
|
43717
44380
|
scriptShrink?: string;
|
|
43718
44381
|
/**
|
|
43719
44382
|
* @remarks
|
|
43720
|
-
* The
|
|
44383
|
+
* The tags.
|
|
43721
44384
|
*/
|
|
43722
44385
|
tagsShrink?: string;
|
|
43723
44386
|
/**
|
|
43724
44387
|
* @remarks
|
|
43725
|
-
* The timeout period of
|
|
44388
|
+
* The timeout period of task running. Unit: seconds.
|
|
43726
44389
|
*
|
|
43727
44390
|
* @example
|
|
43728
44391
|
* 3600
|
|
@@ -43730,7 +44393,7 @@ export declare class UpdateTaskShrinkRequest extends $dara.Model {
|
|
|
43730
44393
|
timeout?: number;
|
|
43731
44394
|
/**
|
|
43732
44395
|
* @remarks
|
|
43733
|
-
* The trigger method
|
|
44396
|
+
* The trigger method.
|
|
43734
44397
|
*
|
|
43735
44398
|
* This parameter is required.
|
|
43736
44399
|
*/
|
|
@@ -43749,7 +44412,7 @@ export declare class UpdateTaskShrinkRequest extends $dara.Model {
|
|
|
43749
44412
|
export declare class UpdateTaskResponseBody extends $dara.Model {
|
|
43750
44413
|
/**
|
|
43751
44414
|
* @remarks
|
|
43752
|
-
* The
|
|
44415
|
+
* The request ID.
|
|
43753
44416
|
*
|
|
43754
44417
|
* @example
|
|
43755
44418
|
* 22C97E95-F023-56B5-8852-B1A77A17XXXX
|
|
@@ -43757,7 +44420,7 @@ export declare class UpdateTaskResponseBody extends $dara.Model {
|
|
|
43757
44420
|
requestId?: string;
|
|
43758
44421
|
/**
|
|
43759
44422
|
* @remarks
|
|
43760
|
-
*
|
|
44423
|
+
* Indicates whether the request was successful.
|
|
43761
44424
|
*
|
|
43762
44425
|
* @example
|
|
43763
44426
|
* true
|
|
@@ -43888,7 +44551,7 @@ export declare class UpdateTaskInstancesResponse extends $dara.Model {
|
|
|
43888
44551
|
export declare class UpdateWorkflowRequest extends $dara.Model {
|
|
43889
44552
|
/**
|
|
43890
44553
|
* @remarks
|
|
43891
|
-
* The
|
|
44554
|
+
* 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
44555
|
*
|
|
43893
44556
|
* @example
|
|
43894
44557
|
* Workflow_0bc5213917368545132902xxxxxxxx
|
|
@@ -43896,7 +44559,7 @@ export declare class UpdateWorkflowRequest extends $dara.Model {
|
|
|
43896
44559
|
clientUniqueCode?: string;
|
|
43897
44560
|
/**
|
|
43898
44561
|
* @remarks
|
|
43899
|
-
*
|
|
44562
|
+
* The dependency information.
|
|
43900
44563
|
*/
|
|
43901
44564
|
dependencies?: UpdateWorkflowRequestDependencies[];
|
|
43902
44565
|
/**
|
|
@@ -43909,10 +44572,10 @@ export declare class UpdateWorkflowRequest extends $dara.Model {
|
|
|
43909
44572
|
description?: string;
|
|
43910
44573
|
/**
|
|
43911
44574
|
* @remarks
|
|
43912
|
-
* The
|
|
44575
|
+
* The environment of the workspace. Valid values:
|
|
43913
44576
|
*
|
|
43914
|
-
*
|
|
43915
|
-
*
|
|
44577
|
+
* * Prod: production environment
|
|
44578
|
+
* * Dev: development environment
|
|
43916
44579
|
*
|
|
43917
44580
|
* @example
|
|
43918
44581
|
* Prod
|
|
@@ -43920,7 +44583,7 @@ export declare class UpdateWorkflowRequest extends $dara.Model {
|
|
|
43920
44583
|
envType?: string;
|
|
43921
44584
|
/**
|
|
43922
44585
|
* @remarks
|
|
43923
|
-
* The ID
|
|
44586
|
+
* The workflow ID.
|
|
43924
44587
|
*
|
|
43925
44588
|
* This parameter is required.
|
|
43926
44589
|
*
|
|
@@ -43930,7 +44593,7 @@ export declare class UpdateWorkflowRequest extends $dara.Model {
|
|
|
43930
44593
|
id?: number;
|
|
43931
44594
|
/**
|
|
43932
44595
|
* @remarks
|
|
43933
|
-
* The name.
|
|
44596
|
+
* The name of the workflow.
|
|
43934
44597
|
*
|
|
43935
44598
|
* This parameter is required.
|
|
43936
44599
|
*
|
|
@@ -43955,7 +44618,7 @@ export declare class UpdateWorkflowRequest extends $dara.Model {
|
|
|
43955
44618
|
owner?: string;
|
|
43956
44619
|
/**
|
|
43957
44620
|
* @remarks
|
|
43958
|
-
* The
|
|
44621
|
+
* The parameters.
|
|
43959
44622
|
*
|
|
43960
44623
|
* @example
|
|
43961
44624
|
* para1=$bizdate para2=$[yyyymmdd]
|
|
@@ -43963,12 +44626,12 @@ export declare class UpdateWorkflowRequest extends $dara.Model {
|
|
|
43963
44626
|
parameters?: string;
|
|
43964
44627
|
/**
|
|
43965
44628
|
* @remarks
|
|
43966
|
-
* The
|
|
44629
|
+
* The tags.
|
|
43967
44630
|
*/
|
|
43968
44631
|
tags?: UpdateWorkflowRequestTags[];
|
|
43969
44632
|
/**
|
|
43970
44633
|
* @remarks
|
|
43971
|
-
* The
|
|
44634
|
+
* The tasks.
|
|
43972
44635
|
*/
|
|
43973
44636
|
tasks?: UpdateWorkflowRequestTasks[];
|
|
43974
44637
|
/**
|
|
@@ -43992,7 +44655,7 @@ export declare class UpdateWorkflowRequest extends $dara.Model {
|
|
|
43992
44655
|
export declare class UpdateWorkflowShrinkRequest extends $dara.Model {
|
|
43993
44656
|
/**
|
|
43994
44657
|
* @remarks
|
|
43995
|
-
* The
|
|
44658
|
+
* 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
44659
|
*
|
|
43997
44660
|
* @example
|
|
43998
44661
|
* Workflow_0bc5213917368545132902xxxxxxxx
|
|
@@ -44000,7 +44663,7 @@ export declare class UpdateWorkflowShrinkRequest extends $dara.Model {
|
|
|
44000
44663
|
clientUniqueCode?: string;
|
|
44001
44664
|
/**
|
|
44002
44665
|
* @remarks
|
|
44003
|
-
*
|
|
44666
|
+
* The dependency information.
|
|
44004
44667
|
*/
|
|
44005
44668
|
dependenciesShrink?: string;
|
|
44006
44669
|
/**
|
|
@@ -44013,10 +44676,10 @@ export declare class UpdateWorkflowShrinkRequest extends $dara.Model {
|
|
|
44013
44676
|
description?: string;
|
|
44014
44677
|
/**
|
|
44015
44678
|
* @remarks
|
|
44016
|
-
* The
|
|
44679
|
+
* The environment of the workspace. Valid values:
|
|
44017
44680
|
*
|
|
44018
|
-
*
|
|
44019
|
-
*
|
|
44681
|
+
* * Prod: production environment
|
|
44682
|
+
* * Dev: development environment
|
|
44020
44683
|
*
|
|
44021
44684
|
* @example
|
|
44022
44685
|
* Prod
|
|
@@ -44024,7 +44687,7 @@ export declare class UpdateWorkflowShrinkRequest extends $dara.Model {
|
|
|
44024
44687
|
envType?: string;
|
|
44025
44688
|
/**
|
|
44026
44689
|
* @remarks
|
|
44027
|
-
* The ID
|
|
44690
|
+
* The workflow ID.
|
|
44028
44691
|
*
|
|
44029
44692
|
* This parameter is required.
|
|
44030
44693
|
*
|
|
@@ -44034,7 +44697,7 @@ export declare class UpdateWorkflowShrinkRequest extends $dara.Model {
|
|
|
44034
44697
|
id?: number;
|
|
44035
44698
|
/**
|
|
44036
44699
|
* @remarks
|
|
44037
|
-
* The name.
|
|
44700
|
+
* The name of the workflow.
|
|
44038
44701
|
*
|
|
44039
44702
|
* This parameter is required.
|
|
44040
44703
|
*
|
|
@@ -44059,7 +44722,7 @@ export declare class UpdateWorkflowShrinkRequest extends $dara.Model {
|
|
|
44059
44722
|
owner?: string;
|
|
44060
44723
|
/**
|
|
44061
44724
|
* @remarks
|
|
44062
|
-
* The
|
|
44725
|
+
* The parameters.
|
|
44063
44726
|
*
|
|
44064
44727
|
* @example
|
|
44065
44728
|
* para1=$bizdate para2=$[yyyymmdd]
|
|
@@ -44067,12 +44730,12 @@ export declare class UpdateWorkflowShrinkRequest extends $dara.Model {
|
|
|
44067
44730
|
parameters?: string;
|
|
44068
44731
|
/**
|
|
44069
44732
|
* @remarks
|
|
44070
|
-
* The
|
|
44733
|
+
* The tags.
|
|
44071
44734
|
*/
|
|
44072
44735
|
tagsShrink?: string;
|
|
44073
44736
|
/**
|
|
44074
44737
|
* @remarks
|
|
44075
|
-
* The
|
|
44738
|
+
* The tasks.
|
|
44076
44739
|
*/
|
|
44077
44740
|
tasksShrink?: string;
|
|
44078
44741
|
/**
|
|
@@ -44096,7 +44759,7 @@ export declare class UpdateWorkflowShrinkRequest extends $dara.Model {
|
|
|
44096
44759
|
export declare class UpdateWorkflowResponseBody extends $dara.Model {
|
|
44097
44760
|
/**
|
|
44098
44761
|
* @remarks
|
|
44099
|
-
* The
|
|
44762
|
+
* The request ID.
|
|
44100
44763
|
*
|
|
44101
44764
|
* @example
|
|
44102
44765
|
* 22C97E95-F023-56B5-8852-B1A77A17XXXX
|
|
@@ -44104,7 +44767,7 @@ export declare class UpdateWorkflowResponseBody extends $dara.Model {
|
|
|
44104
44767
|
requestId?: string;
|
|
44105
44768
|
/**
|
|
44106
44769
|
* @remarks
|
|
44107
|
-
*
|
|
44770
|
+
* Indicates whether the request was successful.
|
|
44108
44771
|
*
|
|
44109
44772
|
* @example
|
|
44110
44773
|
* true
|
|
@@ -44804,6 +45467,21 @@ export default class Client extends OpenApi {
|
|
|
44804
45467
|
* @returns DeleteAlertRuleResponse
|
|
44805
45468
|
*/
|
|
44806
45469
|
deleteAlertRule(request: DeleteAlertRuleRequest): Promise<DeleteAlertRuleResponse>;
|
|
45470
|
+
/**
|
|
45471
|
+
* 删除认证文件
|
|
45472
|
+
*
|
|
45473
|
+
* @param request - DeleteCertificateRequest
|
|
45474
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
45475
|
+
* @returns DeleteCertificateResponse
|
|
45476
|
+
*/
|
|
45477
|
+
deleteCertificateWithOptions(request: DeleteCertificateRequest, runtime: $dara.RuntimeOptions): Promise<DeleteCertificateResponse>;
|
|
45478
|
+
/**
|
|
45479
|
+
* 删除认证文件
|
|
45480
|
+
*
|
|
45481
|
+
* @param request - DeleteCertificateRequest
|
|
45482
|
+
* @returns DeleteCertificateResponse
|
|
45483
|
+
*/
|
|
45484
|
+
deleteCertificate(request: DeleteCertificateRequest): Promise<DeleteCertificateResponse>;
|
|
44807
45485
|
/**
|
|
44808
45486
|
* Deletes an alert rule configured for a synchronization task.
|
|
44809
45487
|
*
|
|
@@ -45288,6 +45966,21 @@ export default class Client extends OpenApi {
|
|
|
45288
45966
|
* @returns GetAlertRuleResponse
|
|
45289
45967
|
*/
|
|
45290
45968
|
getAlertRule(request: GetAlertRuleRequest): Promise<GetAlertRuleResponse>;
|
|
45969
|
+
/**
|
|
45970
|
+
* 查看认证文件
|
|
45971
|
+
*
|
|
45972
|
+
* @param request - GetCertificateRequest
|
|
45973
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
45974
|
+
* @returns GetCertificateResponse
|
|
45975
|
+
*/
|
|
45976
|
+
getCertificateWithOptions(request: GetCertificateRequest, runtime: $dara.RuntimeOptions): Promise<GetCertificateResponse>;
|
|
45977
|
+
/**
|
|
45978
|
+
* 查看认证文件
|
|
45979
|
+
*
|
|
45980
|
+
* @param request - GetCertificateRequest
|
|
45981
|
+
* @returns GetCertificateResponse
|
|
45982
|
+
*/
|
|
45983
|
+
getCertificate(request: GetCertificateRequest): Promise<GetCertificateResponse>;
|
|
45291
45984
|
/**
|
|
45292
45985
|
* Queries the result of asynchronously creating a workflow instance.
|
|
45293
45986
|
*
|
|
@@ -45784,6 +46477,22 @@ export default class Client extends OpenApi {
|
|
|
45784
46477
|
* @returns GrantMemberProjectRolesResponse
|
|
45785
46478
|
*/
|
|
45786
46479
|
grantMemberProjectRoles(request: GrantMemberProjectRolesRequest): Promise<GrantMemberProjectRolesResponse>;
|
|
46480
|
+
/**
|
|
46481
|
+
* 验证用
|
|
46482
|
+
*
|
|
46483
|
+
* @param request - ImportCertificateRequest
|
|
46484
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
46485
|
+
* @returns ImportCertificateResponse
|
|
46486
|
+
*/
|
|
46487
|
+
importCertificateWithOptions(request: ImportCertificateRequest, runtime: $dara.RuntimeOptions): Promise<ImportCertificateResponse>;
|
|
46488
|
+
/**
|
|
46489
|
+
* 验证用
|
|
46490
|
+
*
|
|
46491
|
+
* @param request - ImportCertificateRequest
|
|
46492
|
+
* @returns ImportCertificateResponse
|
|
46493
|
+
*/
|
|
46494
|
+
importCertificate(request: ImportCertificateRequest): Promise<ImportCertificateResponse>;
|
|
46495
|
+
importCertificateAdvance(request: ImportCertificateAdvanceRequest, runtime: $dara.RuntimeOptions): Promise<ImportCertificateResponse>;
|
|
45787
46496
|
/**
|
|
45788
46497
|
* Imports a workflow and its child nodes that are specified by the FlowSpec field to DataStudio.
|
|
45789
46498
|
*
|
|
@@ -45824,6 +46533,21 @@ export default class Client extends OpenApi {
|
|
|
45824
46533
|
* @returns ListAlertRulesResponse
|
|
45825
46534
|
*/
|
|
45826
46535
|
listAlertRules(request: ListAlertRulesRequest): Promise<ListAlertRulesResponse>;
|
|
46536
|
+
/**
|
|
46537
|
+
* 查询认证文件列表
|
|
46538
|
+
*
|
|
46539
|
+
* @param request - ListCertificatesRequest
|
|
46540
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
46541
|
+
* @returns ListCertificatesResponse
|
|
46542
|
+
*/
|
|
46543
|
+
listCertificatesWithOptions(request: ListCertificatesRequest, runtime: $dara.RuntimeOptions): Promise<ListCertificatesResponse>;
|
|
46544
|
+
/**
|
|
46545
|
+
* 查询认证文件列表
|
|
46546
|
+
*
|
|
46547
|
+
* @param request - ListCertificatesRequest
|
|
46548
|
+
* @returns ListCertificatesResponse
|
|
46549
|
+
*/
|
|
46550
|
+
listCertificates(request: ListCertificatesRequest): Promise<ListCertificatesResponse>;
|
|
45827
46551
|
/**
|
|
45828
46552
|
* Views alert rules configured for a synchronization task.
|
|
45829
46553
|
*
|
|
@@ -46882,6 +47606,21 @@ export default class Client extends OpenApi {
|
|
|
46882
47606
|
* @returns TagDataAssetsResponse
|
|
46883
47607
|
*/
|
|
46884
47608
|
tagDataAssets(request: TagDataAssetsRequest): Promise<TagDataAssetsResponse>;
|
|
47609
|
+
/**
|
|
47610
|
+
* 测试数据源在资源组上的连通性
|
|
47611
|
+
*
|
|
47612
|
+
* @param request - TestDataSourceConnectivityRequest
|
|
47613
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
47614
|
+
* @returns TestDataSourceConnectivityResponse
|
|
47615
|
+
*/
|
|
47616
|
+
testDataSourceConnectivityWithOptions(request: TestDataSourceConnectivityRequest, runtime: $dara.RuntimeOptions): Promise<TestDataSourceConnectivityResponse>;
|
|
47617
|
+
/**
|
|
47618
|
+
* 测试数据源在资源组上的连通性
|
|
47619
|
+
*
|
|
47620
|
+
* @param request - TestDataSourceConnectivityRequest
|
|
47621
|
+
* @returns TestDataSourceConnectivityResponse
|
|
47622
|
+
*/
|
|
47623
|
+
testDataSourceConnectivity(request: TestDataSourceConnectivityRequest): Promise<TestDataSourceConnectivityResponse>;
|
|
46885
47624
|
/**
|
|
46886
47625
|
* Triggers a task to run by using an HTTP Trigger node at a specified time.
|
|
46887
47626
|
*
|
|
@@ -47175,12 +47914,16 @@ export default class Client extends OpenApi {
|
|
|
47175
47914
|
*/
|
|
47176
47915
|
updateRoute(request: UpdateRouteRequest): Promise<UpdateRouteResponse>;
|
|
47177
47916
|
/**
|
|
47917
|
+
* Updates a specified task in full update mode.
|
|
47918
|
+
*
|
|
47178
47919
|
* @param tmpReq - UpdateTaskRequest
|
|
47179
47920
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
47180
47921
|
* @returns UpdateTaskResponse
|
|
47181
47922
|
*/
|
|
47182
47923
|
updateTaskWithOptions(tmpReq: UpdateTaskRequest, runtime: $dara.RuntimeOptions): Promise<UpdateTaskResponse>;
|
|
47183
47924
|
/**
|
|
47925
|
+
* Updates a specified task in full update mode.
|
|
47926
|
+
*
|
|
47184
47927
|
* @param request - UpdateTaskRequest
|
|
47185
47928
|
* @returns UpdateTaskResponse
|
|
47186
47929
|
*/
|
|
@@ -47207,12 +47950,22 @@ export default class Client extends OpenApi {
|
|
|
47207
47950
|
*/
|
|
47208
47951
|
updateTaskInstances(request: UpdateTaskInstancesRequest): Promise<UpdateTaskInstancesResponse>;
|
|
47209
47952
|
/**
|
|
47953
|
+
* Updates a specified workflow in full update mode.
|
|
47954
|
+
*
|
|
47955
|
+
* @remarks
|
|
47956
|
+
* This API operation is available for all DataWorks editions.
|
|
47957
|
+
*
|
|
47210
47958
|
* @param tmpReq - UpdateWorkflowRequest
|
|
47211
47959
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
47212
47960
|
* @returns UpdateWorkflowResponse
|
|
47213
47961
|
*/
|
|
47214
47962
|
updateWorkflowWithOptions(tmpReq: UpdateWorkflowRequest, runtime: $dara.RuntimeOptions): Promise<UpdateWorkflowResponse>;
|
|
47215
47963
|
/**
|
|
47964
|
+
* Updates a specified workflow in full update mode.
|
|
47965
|
+
*
|
|
47966
|
+
* @remarks
|
|
47967
|
+
* This API operation is available for all DataWorks editions.
|
|
47968
|
+
*
|
|
47216
47969
|
* @param request - UpdateWorkflowRequest
|
|
47217
47970
|
* @returns UpdateWorkflowResponse
|
|
47218
47971
|
*/
|
|
@@ -47220,6 +47973,9 @@ export default class Client extends OpenApi {
|
|
|
47220
47973
|
/**
|
|
47221
47974
|
* 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
47975
|
*
|
|
47976
|
+
* @remarks
|
|
47977
|
+
* > 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.
|
|
47978
|
+
*
|
|
47223
47979
|
* @param request - UpdateWorkflowDefinitionRequest
|
|
47224
47980
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
47225
47981
|
* @returns UpdateWorkflowDefinitionResponse
|
|
@@ -47228,6 +47984,9 @@ export default class Client extends OpenApi {
|
|
|
47228
47984
|
/**
|
|
47229
47985
|
* 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
47986
|
*
|
|
47987
|
+
* @remarks
|
|
47988
|
+
* > 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.
|
|
47989
|
+
*
|
|
47231
47990
|
* @param request - UpdateWorkflowDefinitionRequest
|
|
47232
47991
|
* @returns UpdateWorkflowDefinitionResponse
|
|
47233
47992
|
*/
|