@alicloud/dataworks-public20240518 2.2.1 → 3.0.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 +2756 -313
- package/dist/client.js +1969 -291
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +3684 -259
package/dist/client.d.ts
CHANGED
|
@@ -155,7 +155,7 @@ export declare class DataQualityRule extends $tea.Model {
|
|
|
155
155
|
target?: DataQualityRuleTarget;
|
|
156
156
|
/**
|
|
157
157
|
* @example
|
|
158
|
-
*
|
|
158
|
+
* SYSTEM:user_defined_sql
|
|
159
159
|
*/
|
|
160
160
|
templateCode?: string;
|
|
161
161
|
/**
|
|
@@ -401,6 +401,125 @@ export declare class CloneDataSourceResponse extends $tea.Model {
|
|
|
401
401
|
[key: string]: any;
|
|
402
402
|
});
|
|
403
403
|
}
|
|
404
|
+
export declare class CreateAlertRuleRequest extends $tea.Model {
|
|
405
|
+
/**
|
|
406
|
+
* @remarks
|
|
407
|
+
* This parameter is required.
|
|
408
|
+
*
|
|
409
|
+
* @example
|
|
410
|
+
* true
|
|
411
|
+
*/
|
|
412
|
+
enabled?: boolean;
|
|
413
|
+
/**
|
|
414
|
+
* @remarks
|
|
415
|
+
* This parameter is required.
|
|
416
|
+
*
|
|
417
|
+
* @example
|
|
418
|
+
* xm_create_test
|
|
419
|
+
*/
|
|
420
|
+
name?: string;
|
|
421
|
+
notification?: CreateAlertRuleRequestNotification;
|
|
422
|
+
/**
|
|
423
|
+
* @remarks
|
|
424
|
+
* This parameter is required.
|
|
425
|
+
*
|
|
426
|
+
* @example
|
|
427
|
+
* 279114181716147735
|
|
428
|
+
*/
|
|
429
|
+
owner?: string;
|
|
430
|
+
/**
|
|
431
|
+
* @remarks
|
|
432
|
+
* This parameter is required.
|
|
433
|
+
*/
|
|
434
|
+
triggerCondition?: CreateAlertRuleRequestTriggerCondition;
|
|
435
|
+
static names(): {
|
|
436
|
+
[key: string]: string;
|
|
437
|
+
};
|
|
438
|
+
static types(): {
|
|
439
|
+
[key: string]: any;
|
|
440
|
+
};
|
|
441
|
+
constructor(map?: {
|
|
442
|
+
[key: string]: any;
|
|
443
|
+
});
|
|
444
|
+
}
|
|
445
|
+
export declare class CreateAlertRuleShrinkRequest extends $tea.Model {
|
|
446
|
+
/**
|
|
447
|
+
* @remarks
|
|
448
|
+
* This parameter is required.
|
|
449
|
+
*
|
|
450
|
+
* @example
|
|
451
|
+
* true
|
|
452
|
+
*/
|
|
453
|
+
enabled?: boolean;
|
|
454
|
+
/**
|
|
455
|
+
* @remarks
|
|
456
|
+
* This parameter is required.
|
|
457
|
+
*
|
|
458
|
+
* @example
|
|
459
|
+
* xm_create_test
|
|
460
|
+
*/
|
|
461
|
+
name?: string;
|
|
462
|
+
notificationShrink?: string;
|
|
463
|
+
/**
|
|
464
|
+
* @remarks
|
|
465
|
+
* This parameter is required.
|
|
466
|
+
*
|
|
467
|
+
* @example
|
|
468
|
+
* 279114181716147735
|
|
469
|
+
*/
|
|
470
|
+
owner?: string;
|
|
471
|
+
/**
|
|
472
|
+
* @remarks
|
|
473
|
+
* This parameter is required.
|
|
474
|
+
*/
|
|
475
|
+
triggerConditionShrink?: string;
|
|
476
|
+
static names(): {
|
|
477
|
+
[key: string]: string;
|
|
478
|
+
};
|
|
479
|
+
static types(): {
|
|
480
|
+
[key: string]: any;
|
|
481
|
+
};
|
|
482
|
+
constructor(map?: {
|
|
483
|
+
[key: string]: any;
|
|
484
|
+
});
|
|
485
|
+
}
|
|
486
|
+
export declare class CreateAlertRuleResponseBody extends $tea.Model {
|
|
487
|
+
/**
|
|
488
|
+
* @example
|
|
489
|
+
* 123123
|
|
490
|
+
*/
|
|
491
|
+
id?: number;
|
|
492
|
+
/**
|
|
493
|
+
* @example
|
|
494
|
+
* A6C6B486-E3A2-5D52-9E76-D9380485D946
|
|
495
|
+
*/
|
|
496
|
+
requestId?: string;
|
|
497
|
+
static names(): {
|
|
498
|
+
[key: string]: string;
|
|
499
|
+
};
|
|
500
|
+
static types(): {
|
|
501
|
+
[key: string]: any;
|
|
502
|
+
};
|
|
503
|
+
constructor(map?: {
|
|
504
|
+
[key: string]: any;
|
|
505
|
+
});
|
|
506
|
+
}
|
|
507
|
+
export declare class CreateAlertRuleResponse extends $tea.Model {
|
|
508
|
+
headers?: {
|
|
509
|
+
[key: string]: string;
|
|
510
|
+
};
|
|
511
|
+
statusCode?: number;
|
|
512
|
+
body?: CreateAlertRuleResponseBody;
|
|
513
|
+
static names(): {
|
|
514
|
+
[key: string]: string;
|
|
515
|
+
};
|
|
516
|
+
static types(): {
|
|
517
|
+
[key: string]: any;
|
|
518
|
+
};
|
|
519
|
+
constructor(map?: {
|
|
520
|
+
[key: string]: any;
|
|
521
|
+
});
|
|
522
|
+
}
|
|
404
523
|
export declare class CreateDIAlarmRuleRequest extends $tea.Model {
|
|
405
524
|
/**
|
|
406
525
|
* @example
|
|
@@ -1886,6 +2005,59 @@ export declare class CreateWorkflowDefinitionResponse extends $tea.Model {
|
|
|
1886
2005
|
[key: string]: any;
|
|
1887
2006
|
});
|
|
1888
2007
|
}
|
|
2008
|
+
export declare class DeleteAlertRuleRequest extends $tea.Model {
|
|
2009
|
+
/**
|
|
2010
|
+
* @example
|
|
2011
|
+
* 105412
|
|
2012
|
+
*/
|
|
2013
|
+
id?: number;
|
|
2014
|
+
static names(): {
|
|
2015
|
+
[key: string]: string;
|
|
2016
|
+
};
|
|
2017
|
+
static types(): {
|
|
2018
|
+
[key: string]: any;
|
|
2019
|
+
};
|
|
2020
|
+
constructor(map?: {
|
|
2021
|
+
[key: string]: any;
|
|
2022
|
+
});
|
|
2023
|
+
}
|
|
2024
|
+
export declare class DeleteAlertRuleResponseBody extends $tea.Model {
|
|
2025
|
+
/**
|
|
2026
|
+
* @example
|
|
2027
|
+
* 8754EE08-4AA2-5F77-ADD7-754DBBDA9F75
|
|
2028
|
+
*/
|
|
2029
|
+
requestId?: string;
|
|
2030
|
+
/**
|
|
2031
|
+
* @example
|
|
2032
|
+
* true
|
|
2033
|
+
*/
|
|
2034
|
+
success?: boolean;
|
|
2035
|
+
static names(): {
|
|
2036
|
+
[key: string]: string;
|
|
2037
|
+
};
|
|
2038
|
+
static types(): {
|
|
2039
|
+
[key: string]: any;
|
|
2040
|
+
};
|
|
2041
|
+
constructor(map?: {
|
|
2042
|
+
[key: string]: any;
|
|
2043
|
+
});
|
|
2044
|
+
}
|
|
2045
|
+
export declare class DeleteAlertRuleResponse extends $tea.Model {
|
|
2046
|
+
headers?: {
|
|
2047
|
+
[key: string]: string;
|
|
2048
|
+
};
|
|
2049
|
+
statusCode?: number;
|
|
2050
|
+
body?: DeleteAlertRuleResponseBody;
|
|
2051
|
+
static names(): {
|
|
2052
|
+
[key: string]: string;
|
|
2053
|
+
};
|
|
2054
|
+
static types(): {
|
|
2055
|
+
[key: string]: any;
|
|
2056
|
+
};
|
|
2057
|
+
constructor(map?: {
|
|
2058
|
+
[key: string]: any;
|
|
2059
|
+
});
|
|
2060
|
+
}
|
|
1889
2061
|
export declare class DeleteDIAlarmRuleRequest extends $tea.Model {
|
|
1890
2062
|
/**
|
|
1891
2063
|
* @remarks
|
|
@@ -2391,6 +2563,8 @@ export declare class DeleteProjectResponse extends $tea.Model {
|
|
|
2391
2563
|
export declare class DeleteProjectMemberRequest extends $tea.Model {
|
|
2392
2564
|
/**
|
|
2393
2565
|
* @remarks
|
|
2566
|
+
* 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.
|
|
2567
|
+
*
|
|
2394
2568
|
* This parameter is required.
|
|
2395
2569
|
*
|
|
2396
2570
|
* @example
|
|
@@ -2399,6 +2573,8 @@ export declare class DeleteProjectMemberRequest extends $tea.Model {
|
|
|
2399
2573
|
projectId?: number;
|
|
2400
2574
|
/**
|
|
2401
2575
|
* @remarks
|
|
2576
|
+
* The ID of the account used by the member in the workspace. You can log on to the [DataWorks console](https://workbench.data.aliyun.com/console?spm=openapi-amp.newDocPublishment.0.0.51d7281fjgBRmo), choose More > Management Center in the left-side navigation pane, select the desired workspace on the Management Center page, and then click Go to Management Center. In the left-side navigation pane of the SettingCenter page, click Tenant Members and Roles. On the Tenant Members and Roles page, view the ID of the account used by the member in the workspace.
|
|
2577
|
+
*
|
|
2402
2578
|
* This parameter is required.
|
|
2403
2579
|
*
|
|
2404
2580
|
* @example
|
|
@@ -2417,6 +2593,9 @@ export declare class DeleteProjectMemberRequest extends $tea.Model {
|
|
|
2417
2593
|
}
|
|
2418
2594
|
export declare class DeleteProjectMemberResponseBody extends $tea.Model {
|
|
2419
2595
|
/**
|
|
2596
|
+
* @remarks
|
|
2597
|
+
* The request ID. You can use the ID to query logs and troubleshoot issues.
|
|
2598
|
+
*
|
|
2420
2599
|
* @example
|
|
2421
2600
|
* 1FF0465F-209C-5964-8F30-FAF21B677CC6
|
|
2422
2601
|
*/
|
|
@@ -2950,6 +3129,55 @@ export declare class ExecDeploymentStageResponse extends $tea.Model {
|
|
|
2950
3129
|
[key: string]: any;
|
|
2951
3130
|
});
|
|
2952
3131
|
}
|
|
3132
|
+
export declare class GetAlertRuleRequest extends $tea.Model {
|
|
3133
|
+
/**
|
|
3134
|
+
* @example
|
|
3135
|
+
* 28547072
|
|
3136
|
+
*/
|
|
3137
|
+
id?: string;
|
|
3138
|
+
static names(): {
|
|
3139
|
+
[key: string]: string;
|
|
3140
|
+
};
|
|
3141
|
+
static types(): {
|
|
3142
|
+
[key: string]: any;
|
|
3143
|
+
};
|
|
3144
|
+
constructor(map?: {
|
|
3145
|
+
[key: string]: any;
|
|
3146
|
+
});
|
|
3147
|
+
}
|
|
3148
|
+
export declare class GetAlertRuleResponseBody extends $tea.Model {
|
|
3149
|
+
alertRule?: GetAlertRuleResponseBodyAlertRule;
|
|
3150
|
+
/**
|
|
3151
|
+
* @example
|
|
3152
|
+
* 8abcb91f-d266-4073-b907-2ed670378ed1
|
|
3153
|
+
*/
|
|
3154
|
+
requestId?: string;
|
|
3155
|
+
static names(): {
|
|
3156
|
+
[key: string]: string;
|
|
3157
|
+
};
|
|
3158
|
+
static types(): {
|
|
3159
|
+
[key: string]: any;
|
|
3160
|
+
};
|
|
3161
|
+
constructor(map?: {
|
|
3162
|
+
[key: string]: any;
|
|
3163
|
+
});
|
|
3164
|
+
}
|
|
3165
|
+
export declare class GetAlertRuleResponse extends $tea.Model {
|
|
3166
|
+
headers?: {
|
|
3167
|
+
[key: string]: string;
|
|
3168
|
+
};
|
|
3169
|
+
statusCode?: number;
|
|
3170
|
+
body?: GetAlertRuleResponseBody;
|
|
3171
|
+
static names(): {
|
|
3172
|
+
[key: string]: string;
|
|
3173
|
+
};
|
|
3174
|
+
static types(): {
|
|
3175
|
+
[key: string]: any;
|
|
3176
|
+
};
|
|
3177
|
+
constructor(map?: {
|
|
3178
|
+
[key: string]: any;
|
|
3179
|
+
});
|
|
3180
|
+
}
|
|
2953
3181
|
export declare class GetDIJobRequest extends $tea.Model {
|
|
2954
3182
|
/**
|
|
2955
3183
|
* @example
|
|
@@ -3535,6 +3763,10 @@ export declare class GetProjectResponse extends $tea.Model {
|
|
|
3535
3763
|
export declare class GetProjectMemberRequest extends $tea.Model {
|
|
3536
3764
|
/**
|
|
3537
3765
|
* @remarks
|
|
3766
|
+
* The DataWorks workspace ID. You can log on to the [DataWorks console](https://dataworks.console.aliyun.com/workspace/list) and go to the Workspace page to query the ID.
|
|
3767
|
+
*
|
|
3768
|
+
* You must configure this parameter to specify the DataWorks workspace to which the API operation is applied.
|
|
3769
|
+
*
|
|
3538
3770
|
* This parameter is required.
|
|
3539
3771
|
*
|
|
3540
3772
|
* @example
|
|
@@ -3543,6 +3775,8 @@ export declare class GetProjectMemberRequest extends $tea.Model {
|
|
|
3543
3775
|
projectId?: number;
|
|
3544
3776
|
/**
|
|
3545
3777
|
* @remarks
|
|
3778
|
+
* The ID of the account used by the member in the workspace. You can log on to the [DataWorks console](https://workbench.data.aliyun.com/console?spm=openapi-amp.newDocPublishment.0.0.39e9281f3mhq4J), choose More > Management Center in the left-side navigation pane, select the desired workspace on the Management Center page, and then click Go to Management Center. In the left-side navigation pane of the SettingCenter page, click Tenant Members and Roles. On the Tenant Members and Roles page, view the ID of the account used by the member in the workspace.
|
|
3779
|
+
*
|
|
3546
3780
|
* This parameter is required.
|
|
3547
3781
|
*
|
|
3548
3782
|
* @example
|
|
@@ -3560,8 +3794,15 @@ export declare class GetProjectMemberRequest extends $tea.Model {
|
|
|
3560
3794
|
});
|
|
3561
3795
|
}
|
|
3562
3796
|
export declare class GetProjectMemberResponseBody extends $tea.Model {
|
|
3797
|
+
/**
|
|
3798
|
+
* @remarks
|
|
3799
|
+
* The details about the member in the workspace.
|
|
3800
|
+
*/
|
|
3563
3801
|
projectMember?: GetProjectMemberResponseBodyProjectMember;
|
|
3564
3802
|
/**
|
|
3803
|
+
* @remarks
|
|
3804
|
+
* The request ID. You can use the ID to query logs and troubleshoot issues.
|
|
3805
|
+
*
|
|
3565
3806
|
* @example
|
|
3566
3807
|
* 8abcb91f-d266-4073-b907-2ed670378ed1
|
|
3567
3808
|
*/
|
|
@@ -3897,6 +4138,8 @@ export declare class GetTaskResponse extends $tea.Model {
|
|
|
3897
4138
|
export declare class GetTaskInstanceRequest extends $tea.Model {
|
|
3898
4139
|
/**
|
|
3899
4140
|
* @remarks
|
|
4141
|
+
* The instance ID.
|
|
4142
|
+
*
|
|
3900
4143
|
* This parameter is required.
|
|
3901
4144
|
*
|
|
3902
4145
|
* @example
|
|
@@ -3915,10 +4158,17 @@ export declare class GetTaskInstanceRequest extends $tea.Model {
|
|
|
3915
4158
|
}
|
|
3916
4159
|
export declare class GetTaskInstanceResponseBody extends $tea.Model {
|
|
3917
4160
|
/**
|
|
4161
|
+
* @remarks
|
|
4162
|
+
* The request ID.
|
|
4163
|
+
*
|
|
3918
4164
|
* @example
|
|
3919
4165
|
* 22C97E95-F023-56B5-8852-B1A77A17XXXX
|
|
3920
4166
|
*/
|
|
3921
4167
|
requestId?: string;
|
|
4168
|
+
/**
|
|
4169
|
+
* @remarks
|
|
4170
|
+
* The details of the instance.
|
|
4171
|
+
*/
|
|
3922
4172
|
taskInstance?: GetTaskInstanceResponseBodyTaskInstance;
|
|
3923
4173
|
static names(): {
|
|
3924
4174
|
[key: string]: string;
|
|
@@ -4081,6 +4331,8 @@ export declare class GetWorkflowDefinitionResponse extends $tea.Model {
|
|
|
4081
4331
|
export declare class GrantMemberProjectRolesRequest extends $tea.Model {
|
|
4082
4332
|
/**
|
|
4083
4333
|
* @remarks
|
|
4334
|
+
* 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.
|
|
4335
|
+
*
|
|
4084
4336
|
* This parameter is required.
|
|
4085
4337
|
*
|
|
4086
4338
|
* @example
|
|
@@ -4089,11 +4341,17 @@ export declare class GrantMemberProjectRolesRequest extends $tea.Model {
|
|
|
4089
4341
|
projectId?: number;
|
|
4090
4342
|
/**
|
|
4091
4343
|
* @remarks
|
|
4344
|
+
* The codes of the roles in the workspace. You can call the [ListProjectRoles](https://help.aliyun.com/zh/dataworks/developer-reference/api-dataworks-public-2024-05-18-listprojectroles?spm=a2c4g.11186623.0.0.43841daeywTtF3) operation to query the codes of all roles in the workspace.
|
|
4345
|
+
*
|
|
4346
|
+
* You must configure this parameter to specify the roles that you want to assign to members in the workspace.
|
|
4347
|
+
*
|
|
4092
4348
|
* This parameter is required.
|
|
4093
4349
|
*/
|
|
4094
4350
|
roleCodes?: string[];
|
|
4095
4351
|
/**
|
|
4096
4352
|
* @remarks
|
|
4353
|
+
* The IDs of the accounts used by the members in the workspace. You can log on to the [DataWorks console](https://workbench.data.aliyun.com/console?spm=openapi-amp.newDocPublishment.0.0.51d7281fjgBRmo), choose More > Management Center in the left-side navigation pane, select the desired workspace on the Management Center page, and then click Go to Management Center. In the left-side navigation pane of the SettingCenter page, click Tenant Members and Roles. On the Tenant Members and Roles page, view the IDs of the accounts used by the members in the workspace.
|
|
4354
|
+
*
|
|
4097
4355
|
* This parameter is required.
|
|
4098
4356
|
*
|
|
4099
4357
|
* @example
|
|
@@ -4113,6 +4371,8 @@ export declare class GrantMemberProjectRolesRequest extends $tea.Model {
|
|
|
4113
4371
|
export declare class GrantMemberProjectRolesShrinkRequest extends $tea.Model {
|
|
4114
4372
|
/**
|
|
4115
4373
|
* @remarks
|
|
4374
|
+
* 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.
|
|
4375
|
+
*
|
|
4116
4376
|
* This parameter is required.
|
|
4117
4377
|
*
|
|
4118
4378
|
* @example
|
|
@@ -4121,11 +4381,17 @@ export declare class GrantMemberProjectRolesShrinkRequest extends $tea.Model {
|
|
|
4121
4381
|
projectId?: number;
|
|
4122
4382
|
/**
|
|
4123
4383
|
* @remarks
|
|
4384
|
+
* The codes of the roles in the workspace. You can call the [ListProjectRoles](https://help.aliyun.com/zh/dataworks/developer-reference/api-dataworks-public-2024-05-18-listprojectroles?spm=a2c4g.11186623.0.0.43841daeywTtF3) operation to query the codes of all roles in the workspace.
|
|
4385
|
+
*
|
|
4386
|
+
* You must configure this parameter to specify the roles that you want to assign to members in the workspace.
|
|
4387
|
+
*
|
|
4124
4388
|
* This parameter is required.
|
|
4125
4389
|
*/
|
|
4126
4390
|
roleCodesShrink?: string;
|
|
4127
4391
|
/**
|
|
4128
4392
|
* @remarks
|
|
4393
|
+
* The IDs of the accounts used by the members in the workspace. You can log on to the [DataWorks console](https://workbench.data.aliyun.com/console?spm=openapi-amp.newDocPublishment.0.0.51d7281fjgBRmo), choose More > Management Center in the left-side navigation pane, select the desired workspace on the Management Center page, and then click Go to Management Center. In the left-side navigation pane of the SettingCenter page, click Tenant Members and Roles. On the Tenant Members and Roles page, view the IDs of the accounts used by the members in the workspace.
|
|
4394
|
+
*
|
|
4129
4395
|
* This parameter is required.
|
|
4130
4396
|
*
|
|
4131
4397
|
* @example
|
|
@@ -4144,6 +4410,9 @@ export declare class GrantMemberProjectRolesShrinkRequest extends $tea.Model {
|
|
|
4144
4410
|
}
|
|
4145
4411
|
export declare class GrantMemberProjectRolesResponseBody extends $tea.Model {
|
|
4146
4412
|
/**
|
|
4413
|
+
* @remarks
|
|
4414
|
+
* The request ID. You can use the ID to query logs and troubleshoot issues.
|
|
4415
|
+
*
|
|
4147
4416
|
* @example
|
|
4148
4417
|
* 2d9ced66-38ef-4923-baf6-391dd3a7e656
|
|
4149
4418
|
*/
|
|
@@ -4231,27 +4500,40 @@ export declare class ImportWorkflowDefinitionResponse extends $tea.Model {
|
|
|
4231
4500
|
[key: string]: any;
|
|
4232
4501
|
});
|
|
4233
4502
|
}
|
|
4234
|
-
export declare class
|
|
4503
|
+
export declare class ListAlertRulesRequest extends $tea.Model {
|
|
4235
4504
|
/**
|
|
4236
4505
|
* @example
|
|
4237
|
-
*
|
|
4506
|
+
* error_rule
|
|
4238
4507
|
*/
|
|
4239
|
-
|
|
4508
|
+
name?: string;
|
|
4240
4509
|
/**
|
|
4241
4510
|
* @example
|
|
4242
|
-
*
|
|
4511
|
+
* 1933790683****
|
|
4243
4512
|
*/
|
|
4244
|
-
|
|
4513
|
+
owner?: string;
|
|
4245
4514
|
/**
|
|
4515
|
+
* @remarks
|
|
4516
|
+
* This parameter is required.
|
|
4517
|
+
*
|
|
4246
4518
|
* @example
|
|
4247
4519
|
* 1
|
|
4248
4520
|
*/
|
|
4249
4521
|
pageNumber?: number;
|
|
4250
4522
|
/**
|
|
4523
|
+
* @remarks
|
|
4524
|
+
* This parameter is required.
|
|
4525
|
+
*
|
|
4251
4526
|
* @example
|
|
4252
4527
|
* 10
|
|
4253
4528
|
*/
|
|
4254
4529
|
pageSize?: number;
|
|
4530
|
+
/**
|
|
4531
|
+
* @example
|
|
4532
|
+
* 1933790683****
|
|
4533
|
+
*/
|
|
4534
|
+
receiver?: string;
|
|
4535
|
+
taskIds?: number[];
|
|
4536
|
+
types?: string[];
|
|
4255
4537
|
static names(): {
|
|
4256
4538
|
[key: string]: string;
|
|
4257
4539
|
};
|
|
@@ -4262,11 +4544,119 @@ export declare class ListDIAlarmRulesRequest extends $tea.Model {
|
|
|
4262
4544
|
[key: string]: any;
|
|
4263
4545
|
});
|
|
4264
4546
|
}
|
|
4265
|
-
export declare class
|
|
4266
|
-
pagingInfo?: ListDIAlarmRulesResponseBodyPagingInfo;
|
|
4547
|
+
export declare class ListAlertRulesShrinkRequest extends $tea.Model {
|
|
4267
4548
|
/**
|
|
4268
4549
|
* @example
|
|
4269
|
-
*
|
|
4550
|
+
* error_rule
|
|
4551
|
+
*/
|
|
4552
|
+
name?: string;
|
|
4553
|
+
/**
|
|
4554
|
+
* @example
|
|
4555
|
+
* 1933790683****
|
|
4556
|
+
*/
|
|
4557
|
+
owner?: string;
|
|
4558
|
+
/**
|
|
4559
|
+
* @remarks
|
|
4560
|
+
* This parameter is required.
|
|
4561
|
+
*
|
|
4562
|
+
* @example
|
|
4563
|
+
* 1
|
|
4564
|
+
*/
|
|
4565
|
+
pageNumber?: number;
|
|
4566
|
+
/**
|
|
4567
|
+
* @remarks
|
|
4568
|
+
* This parameter is required.
|
|
4569
|
+
*
|
|
4570
|
+
* @example
|
|
4571
|
+
* 10
|
|
4572
|
+
*/
|
|
4573
|
+
pageSize?: number;
|
|
4574
|
+
/**
|
|
4575
|
+
* @example
|
|
4576
|
+
* 1933790683****
|
|
4577
|
+
*/
|
|
4578
|
+
receiver?: string;
|
|
4579
|
+
taskIdsShrink?: string;
|
|
4580
|
+
typesShrink?: string;
|
|
4581
|
+
static names(): {
|
|
4582
|
+
[key: string]: string;
|
|
4583
|
+
};
|
|
4584
|
+
static types(): {
|
|
4585
|
+
[key: string]: any;
|
|
4586
|
+
};
|
|
4587
|
+
constructor(map?: {
|
|
4588
|
+
[key: string]: any;
|
|
4589
|
+
});
|
|
4590
|
+
}
|
|
4591
|
+
export declare class ListAlertRulesResponseBody extends $tea.Model {
|
|
4592
|
+
pagingInfo?: ListAlertRulesResponseBodyPagingInfo;
|
|
4593
|
+
/**
|
|
4594
|
+
* @example
|
|
4595
|
+
* A6C6B486-E3A2-5D52-9E76-D9380485D946
|
|
4596
|
+
*/
|
|
4597
|
+
requestId?: string;
|
|
4598
|
+
static names(): {
|
|
4599
|
+
[key: string]: string;
|
|
4600
|
+
};
|
|
4601
|
+
static types(): {
|
|
4602
|
+
[key: string]: any;
|
|
4603
|
+
};
|
|
4604
|
+
constructor(map?: {
|
|
4605
|
+
[key: string]: any;
|
|
4606
|
+
});
|
|
4607
|
+
}
|
|
4608
|
+
export declare class ListAlertRulesResponse extends $tea.Model {
|
|
4609
|
+
headers?: {
|
|
4610
|
+
[key: string]: string;
|
|
4611
|
+
};
|
|
4612
|
+
statusCode?: number;
|
|
4613
|
+
body?: ListAlertRulesResponseBody;
|
|
4614
|
+
static names(): {
|
|
4615
|
+
[key: string]: string;
|
|
4616
|
+
};
|
|
4617
|
+
static types(): {
|
|
4618
|
+
[key: string]: any;
|
|
4619
|
+
};
|
|
4620
|
+
constructor(map?: {
|
|
4621
|
+
[key: string]: any;
|
|
4622
|
+
});
|
|
4623
|
+
}
|
|
4624
|
+
export declare class ListDIAlarmRulesRequest extends $tea.Model {
|
|
4625
|
+
/**
|
|
4626
|
+
* @example
|
|
4627
|
+
* 34988
|
|
4628
|
+
*/
|
|
4629
|
+
DIAlarmRuleId?: number;
|
|
4630
|
+
/**
|
|
4631
|
+
* @example
|
|
4632
|
+
* 1000001
|
|
4633
|
+
*/
|
|
4634
|
+
jobId?: number;
|
|
4635
|
+
/**
|
|
4636
|
+
* @example
|
|
4637
|
+
* 1
|
|
4638
|
+
*/
|
|
4639
|
+
pageNumber?: number;
|
|
4640
|
+
/**
|
|
4641
|
+
* @example
|
|
4642
|
+
* 10
|
|
4643
|
+
*/
|
|
4644
|
+
pageSize?: number;
|
|
4645
|
+
static names(): {
|
|
4646
|
+
[key: string]: string;
|
|
4647
|
+
};
|
|
4648
|
+
static types(): {
|
|
4649
|
+
[key: string]: any;
|
|
4650
|
+
};
|
|
4651
|
+
constructor(map?: {
|
|
4652
|
+
[key: string]: any;
|
|
4653
|
+
});
|
|
4654
|
+
}
|
|
4655
|
+
export declare class ListDIAlarmRulesResponseBody extends $tea.Model {
|
|
4656
|
+
pagingInfo?: ListDIAlarmRulesResponseBodyPagingInfo;
|
|
4657
|
+
/**
|
|
4658
|
+
* @example
|
|
4659
|
+
* 74C2FECD-5B3A-554A-BCF5-351A36DE9815
|
|
4270
4660
|
*/
|
|
4271
4661
|
requestId?: string;
|
|
4272
4662
|
static names(): {
|
|
@@ -4691,56 +5081,89 @@ export declare class ListDIJobsResponse extends $tea.Model {
|
|
|
4691
5081
|
}
|
|
4692
5082
|
export declare class ListDataQualityEvaluationTaskInstancesRequest extends $tea.Model {
|
|
4693
5083
|
/**
|
|
5084
|
+
* @remarks
|
|
5085
|
+
* The start time of the data quality monitoring task.
|
|
5086
|
+
*
|
|
4694
5087
|
* @example
|
|
4695
5088
|
* 2024-04-01
|
|
4696
5089
|
*/
|
|
4697
5090
|
bizdateFrom?: string;
|
|
4698
5091
|
/**
|
|
5092
|
+
* @remarks
|
|
5093
|
+
* The end time of the data quality monitoring task.
|
|
5094
|
+
*
|
|
4699
5095
|
* @example
|
|
4700
5096
|
* 2024-05-01
|
|
4701
5097
|
*/
|
|
4702
5098
|
bizdateTo?: string;
|
|
4703
5099
|
/**
|
|
5100
|
+
* @remarks
|
|
5101
|
+
* The earliest start time at which the instances are generated.
|
|
5102
|
+
*
|
|
4704
5103
|
* @example
|
|
4705
5104
|
* 1710239005403
|
|
4706
5105
|
*/
|
|
4707
5106
|
createTimeFrom?: number;
|
|
4708
5107
|
/**
|
|
5108
|
+
* @remarks
|
|
5109
|
+
* The latest start time at which the instances are generated.
|
|
5110
|
+
*
|
|
4709
5111
|
* @example
|
|
4710
5112
|
* 1710239005403
|
|
4711
5113
|
*/
|
|
4712
5114
|
createTimeTo?: number;
|
|
4713
5115
|
/**
|
|
5116
|
+
* @remarks
|
|
5117
|
+
* The ID of the data quality monitoring task.
|
|
5118
|
+
*
|
|
4714
5119
|
* @example
|
|
4715
5120
|
* 10000
|
|
4716
5121
|
*/
|
|
4717
5122
|
dataQualityEvaluationTaskId?: number;
|
|
4718
5123
|
/**
|
|
5124
|
+
* @remarks
|
|
5125
|
+
* The page number. Default value: 1.
|
|
5126
|
+
*
|
|
4719
5127
|
* @example
|
|
4720
5128
|
* 1
|
|
4721
5129
|
*/
|
|
4722
5130
|
pageNumber?: number;
|
|
4723
5131
|
/**
|
|
5132
|
+
* @remarks
|
|
5133
|
+
* The number of entries per page. Default value: 10.
|
|
5134
|
+
*
|
|
4724
5135
|
* @example
|
|
4725
5136
|
* 10
|
|
4726
5137
|
*/
|
|
4727
5138
|
pageSize?: number;
|
|
4728
5139
|
/**
|
|
5140
|
+
* @remarks
|
|
5141
|
+
* The DataWorks workspace ID.
|
|
5142
|
+
*
|
|
4729
5143
|
* @example
|
|
4730
5144
|
* 100
|
|
4731
5145
|
*/
|
|
4732
5146
|
projectId?: number;
|
|
4733
5147
|
/**
|
|
5148
|
+
* @remarks
|
|
5149
|
+
* The ID of the table in Data Map.
|
|
5150
|
+
*
|
|
4734
5151
|
* @example
|
|
4735
5152
|
* odps.unit_test.tb_unit_test
|
|
4736
5153
|
*/
|
|
4737
5154
|
tableGuid?: string;
|
|
4738
5155
|
/**
|
|
5156
|
+
* @remarks
|
|
5157
|
+
* The name of the trigger module of the instance.
|
|
5158
|
+
*
|
|
4739
5159
|
* @example
|
|
4740
5160
|
* CWF2
|
|
4741
5161
|
*/
|
|
4742
5162
|
triggerClient?: string;
|
|
4743
5163
|
/**
|
|
5164
|
+
* @remarks
|
|
5165
|
+
* The ID of the instance that is generated by the task.
|
|
5166
|
+
*
|
|
4744
5167
|
* @example
|
|
4745
5168
|
* 1001
|
|
4746
5169
|
*/
|
|
@@ -4757,13 +5180,14 @@ export declare class ListDataQualityEvaluationTaskInstancesRequest extends $tea.
|
|
|
4757
5180
|
}
|
|
4758
5181
|
export declare class ListDataQualityEvaluationTaskInstancesResponseBody extends $tea.Model {
|
|
4759
5182
|
/**
|
|
4760
|
-
* @
|
|
4761
|
-
*
|
|
5183
|
+
* @remarks
|
|
5184
|
+
* The pagination information.
|
|
4762
5185
|
*/
|
|
4763
|
-
code?: string;
|
|
4764
|
-
message?: string;
|
|
4765
5186
|
pagingInfo?: ListDataQualityEvaluationTaskInstancesResponseBodyPagingInfo;
|
|
4766
5187
|
/**
|
|
5188
|
+
* @remarks
|
|
5189
|
+
* The request ID.
|
|
5190
|
+
*
|
|
4767
5191
|
* @example
|
|
4768
5192
|
* 691CA452-D37A-4ED0-9441
|
|
4769
5193
|
*/
|
|
@@ -4795,23 +5219,39 @@ export declare class ListDataQualityEvaluationTaskInstancesResponse extends $tea
|
|
|
4795
5219
|
});
|
|
4796
5220
|
}
|
|
4797
5221
|
export declare class ListDataQualityEvaluationTasksRequest extends $tea.Model {
|
|
5222
|
+
/**
|
|
5223
|
+
* @remarks
|
|
5224
|
+
* The name of the data quality monitoring task. Fuzzy match is supported.
|
|
5225
|
+
*/
|
|
4798
5226
|
name?: string;
|
|
4799
5227
|
/**
|
|
5228
|
+
* @remarks
|
|
5229
|
+
* The page number. Default value: 1.
|
|
5230
|
+
*
|
|
4800
5231
|
* @example
|
|
4801
5232
|
* 1
|
|
4802
5233
|
*/
|
|
4803
5234
|
pageNumber?: number;
|
|
4804
5235
|
/**
|
|
5236
|
+
* @remarks
|
|
5237
|
+
* The number of entries per page. Default value: 10.
|
|
5238
|
+
*
|
|
4805
5239
|
* @example
|
|
4806
5240
|
* 10
|
|
4807
5241
|
*/
|
|
4808
5242
|
pageSize?: number;
|
|
4809
5243
|
/**
|
|
5244
|
+
* @remarks
|
|
5245
|
+
* The DataWorks workspace ID.
|
|
5246
|
+
*
|
|
4810
5247
|
* @example
|
|
4811
5248
|
* 100
|
|
4812
5249
|
*/
|
|
4813
5250
|
projectId?: number;
|
|
4814
5251
|
/**
|
|
5252
|
+
* @remarks
|
|
5253
|
+
* The ID of the table in Data Map.
|
|
5254
|
+
*
|
|
4815
5255
|
* @example
|
|
4816
5256
|
* odps.unit_test.tb_unit_test
|
|
4817
5257
|
*/
|
|
@@ -4828,13 +5268,14 @@ export declare class ListDataQualityEvaluationTasksRequest extends $tea.Model {
|
|
|
4828
5268
|
}
|
|
4829
5269
|
export declare class ListDataQualityEvaluationTasksResponseBody extends $tea.Model {
|
|
4830
5270
|
/**
|
|
4831
|
-
* @
|
|
4832
|
-
*
|
|
5271
|
+
* @remarks
|
|
5272
|
+
* The pagination information.
|
|
4833
5273
|
*/
|
|
4834
|
-
code?: string;
|
|
4835
|
-
message?: string;
|
|
4836
5274
|
pagingInfo?: ListDataQualityEvaluationTasksResponseBodyPagingInfo;
|
|
4837
5275
|
/**
|
|
5276
|
+
* @remarks
|
|
5277
|
+
* The request ID.
|
|
5278
|
+
*
|
|
4838
5279
|
* @example
|
|
4839
5280
|
* 691CA452-D37A-4ED0-9441
|
|
4840
5281
|
*/
|
|
@@ -4867,11 +5308,17 @@ export declare class ListDataQualityEvaluationTasksResponse extends $tea.Model {
|
|
|
4867
5308
|
}
|
|
4868
5309
|
export declare class ListDataQualityResultsRequest extends $tea.Model {
|
|
4869
5310
|
/**
|
|
5311
|
+
* @remarks
|
|
5312
|
+
* The beginning of the time range to query.
|
|
5313
|
+
*
|
|
4870
5314
|
* @example
|
|
4871
5315
|
* 2024-05-01
|
|
4872
5316
|
*/
|
|
4873
5317
|
bizdateFrom?: string;
|
|
4874
5318
|
/**
|
|
5319
|
+
* @remarks
|
|
5320
|
+
* The end of the time range to query.
|
|
5321
|
+
*
|
|
4875
5322
|
* @example
|
|
4876
5323
|
* 2024-05-04
|
|
4877
5324
|
*/
|
|
@@ -4928,13 +5375,14 @@ export declare class ListDataQualityResultsRequest extends $tea.Model {
|
|
|
4928
5375
|
}
|
|
4929
5376
|
export declare class ListDataQualityResultsResponseBody extends $tea.Model {
|
|
4930
5377
|
/**
|
|
4931
|
-
* @
|
|
4932
|
-
*
|
|
5378
|
+
* @remarks
|
|
5379
|
+
* The pagination information.
|
|
4933
5380
|
*/
|
|
4934
|
-
code?: string;
|
|
4935
|
-
message?: string;
|
|
4936
5381
|
pagingInfo?: ListDataQualityResultsResponseBodyPagingInfo;
|
|
4937
5382
|
/**
|
|
5383
|
+
* @remarks
|
|
5384
|
+
* The request ID.
|
|
5385
|
+
*
|
|
4938
5386
|
* @example
|
|
4939
5387
|
* 691CA452-D37A-4ED0-9441
|
|
4940
5388
|
*/
|
|
@@ -4967,31 +5415,49 @@ export declare class ListDataQualityResultsResponse extends $tea.Model {
|
|
|
4967
5415
|
}
|
|
4968
5416
|
export declare class ListDataQualityRulesRequest extends $tea.Model {
|
|
4969
5417
|
/**
|
|
5418
|
+
* @remarks
|
|
5419
|
+
* The ID of the data quality monitoring task that is associated with the rule.
|
|
5420
|
+
*
|
|
4970
5421
|
* @example
|
|
4971
5422
|
* 10000
|
|
4972
5423
|
*/
|
|
4973
5424
|
dataQualityEvaluationTaskId?: number;
|
|
4974
5425
|
/**
|
|
5426
|
+
* @remarks
|
|
5427
|
+
* The name of the rule. Fuzzy match is supported.
|
|
5428
|
+
*
|
|
4975
5429
|
* @example
|
|
4976
5430
|
* unit_test
|
|
4977
5431
|
*/
|
|
4978
5432
|
name?: string;
|
|
4979
5433
|
/**
|
|
5434
|
+
* @remarks
|
|
5435
|
+
* The page number. Default value: 1.
|
|
5436
|
+
*
|
|
4980
5437
|
* @example
|
|
4981
5438
|
* 1
|
|
4982
5439
|
*/
|
|
4983
5440
|
pageNumber?: number;
|
|
4984
5441
|
/**
|
|
5442
|
+
* @remarks
|
|
5443
|
+
* The number of entries per page. Default value: 10. Maximum value: 200.
|
|
5444
|
+
*
|
|
4985
5445
|
* @example
|
|
4986
5446
|
* 10
|
|
4987
5447
|
*/
|
|
4988
5448
|
pageSize?: number;
|
|
4989
5449
|
/**
|
|
5450
|
+
* @remarks
|
|
5451
|
+
* The DataWorks workspace ID.
|
|
5452
|
+
*
|
|
4990
5453
|
* @example
|
|
4991
5454
|
* 10002
|
|
4992
5455
|
*/
|
|
4993
5456
|
projectId?: number;
|
|
4994
5457
|
/**
|
|
5458
|
+
* @remarks
|
|
5459
|
+
* The ID of the table that is limited by the rule in Data Map.
|
|
5460
|
+
*
|
|
4995
5461
|
* @example
|
|
4996
5462
|
* odps.unit_test.tb_unit_test
|
|
4997
5463
|
*/
|
|
@@ -5008,13 +5474,14 @@ export declare class ListDataQualityRulesRequest extends $tea.Model {
|
|
|
5008
5474
|
}
|
|
5009
5475
|
export declare class ListDataQualityRulesResponseBody extends $tea.Model {
|
|
5010
5476
|
/**
|
|
5011
|
-
* @
|
|
5012
|
-
*
|
|
5477
|
+
* @remarks
|
|
5478
|
+
* The pagination information.
|
|
5013
5479
|
*/
|
|
5014
|
-
code?: string;
|
|
5015
|
-
message?: string;
|
|
5016
5480
|
pagingInfo?: ListDataQualityRulesResponseBodyPagingInfo;
|
|
5017
5481
|
/**
|
|
5482
|
+
* @remarks
|
|
5483
|
+
* The request ID.
|
|
5484
|
+
*
|
|
5018
5485
|
* @example
|
|
5019
5486
|
* 691CA452-D37A-4ED0-9441
|
|
5020
5487
|
*/
|
|
@@ -5845,24 +6312,42 @@ export declare class ListNodesResponse extends $tea.Model {
|
|
|
5845
6312
|
}
|
|
5846
6313
|
export declare class ListProjectMembersRequest extends $tea.Model {
|
|
5847
6314
|
/**
|
|
6315
|
+
* @remarks
|
|
6316
|
+
* The page number.
|
|
6317
|
+
*
|
|
5848
6318
|
* @example
|
|
5849
6319
|
* 1
|
|
5850
6320
|
*/
|
|
5851
6321
|
pageNumber?: number;
|
|
5852
6322
|
/**
|
|
6323
|
+
* @remarks
|
|
6324
|
+
* The number of entries per page. Default value: 10. Maximum value: 100.
|
|
6325
|
+
*
|
|
5853
6326
|
* @example
|
|
5854
6327
|
* 10
|
|
5855
6328
|
*/
|
|
5856
6329
|
pageSize?: number;
|
|
5857
6330
|
/**
|
|
5858
6331
|
* @remarks
|
|
6332
|
+
* 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 page to query the ID.
|
|
6333
|
+
*
|
|
6334
|
+
* You must configure this parameter to specify the DataWorks workspace to which the API operation is applied.
|
|
6335
|
+
*
|
|
5859
6336
|
* This parameter is required.
|
|
5860
6337
|
*
|
|
5861
6338
|
* @example
|
|
5862
6339
|
* 62136
|
|
5863
6340
|
*/
|
|
5864
6341
|
projectId?: number;
|
|
6342
|
+
/**
|
|
6343
|
+
* @remarks
|
|
6344
|
+
* The codes of the roles in the workspace. You can call the [ListProjectRoles](https://help.aliyun.com/zh/dataworks/developer-reference/api-dataworks-public-2024-05-18-listprojectroles?spm=a2c4g.11186623.0.0.43841daeywTtF3) operation to query the codes of all roles in the workspace.
|
|
6345
|
+
*/
|
|
5865
6346
|
roleCodes?: string[];
|
|
6347
|
+
/**
|
|
6348
|
+
* @remarks
|
|
6349
|
+
* The IDs of the accounts used by the members in the workspace. You can log on to the [DataWorks console](https://workbench.data.aliyun.com/console?spm=a2c4g.11186623.0.0.7f96340a3HFgqS), choose More > Management Center in the left-side navigation pane, select the desired workspace on the Management Center page, and then click Go to Management Center. In the left-side navigation pane of the SettingCenter page, click Tenant Members and Roles. On the Tenant Members and Roles page, view the IDs of the accounts used by the members in the workspace.
|
|
6350
|
+
*/
|
|
5866
6351
|
userIds?: string[];
|
|
5867
6352
|
static names(): {
|
|
5868
6353
|
[key: string]: string;
|
|
@@ -5876,24 +6361,42 @@ export declare class ListProjectMembersRequest extends $tea.Model {
|
|
|
5876
6361
|
}
|
|
5877
6362
|
export declare class ListProjectMembersShrinkRequest extends $tea.Model {
|
|
5878
6363
|
/**
|
|
6364
|
+
* @remarks
|
|
6365
|
+
* The page number.
|
|
6366
|
+
*
|
|
5879
6367
|
* @example
|
|
5880
6368
|
* 1
|
|
5881
6369
|
*/
|
|
5882
6370
|
pageNumber?: number;
|
|
5883
6371
|
/**
|
|
6372
|
+
* @remarks
|
|
6373
|
+
* The number of entries per page. Default value: 10. Maximum value: 100.
|
|
6374
|
+
*
|
|
5884
6375
|
* @example
|
|
5885
6376
|
* 10
|
|
5886
6377
|
*/
|
|
5887
6378
|
pageSize?: number;
|
|
5888
6379
|
/**
|
|
5889
6380
|
* @remarks
|
|
6381
|
+
* 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 page to query the ID.
|
|
6382
|
+
*
|
|
6383
|
+
* You must configure this parameter to specify the DataWorks workspace to which the API operation is applied.
|
|
6384
|
+
*
|
|
5890
6385
|
* This parameter is required.
|
|
5891
6386
|
*
|
|
5892
6387
|
* @example
|
|
5893
6388
|
* 62136
|
|
5894
6389
|
*/
|
|
5895
6390
|
projectId?: number;
|
|
6391
|
+
/**
|
|
6392
|
+
* @remarks
|
|
6393
|
+
* The codes of the roles in the workspace. You can call the [ListProjectRoles](https://help.aliyun.com/zh/dataworks/developer-reference/api-dataworks-public-2024-05-18-listprojectroles?spm=a2c4g.11186623.0.0.43841daeywTtF3) operation to query the codes of all roles in the workspace.
|
|
6394
|
+
*/
|
|
5896
6395
|
roleCodesShrink?: string;
|
|
6396
|
+
/**
|
|
6397
|
+
* @remarks
|
|
6398
|
+
* The IDs of the accounts used by the members in the workspace. You can log on to the [DataWorks console](https://workbench.data.aliyun.com/console?spm=a2c4g.11186623.0.0.7f96340a3HFgqS), choose More > Management Center in the left-side navigation pane, select the desired workspace on the Management Center page, and then click Go to Management Center. In the left-side navigation pane of the SettingCenter page, click Tenant Members and Roles. On the Tenant Members and Roles page, view the IDs of the accounts used by the members in the workspace.
|
|
6399
|
+
*/
|
|
5897
6400
|
userIdsShrink?: string;
|
|
5898
6401
|
static names(): {
|
|
5899
6402
|
[key: string]: string;
|
|
@@ -5906,8 +6409,15 @@ export declare class ListProjectMembersShrinkRequest extends $tea.Model {
|
|
|
5906
6409
|
});
|
|
5907
6410
|
}
|
|
5908
6411
|
export declare class ListProjectMembersResponseBody extends $tea.Model {
|
|
6412
|
+
/**
|
|
6413
|
+
* @remarks
|
|
6414
|
+
* The pagination information.
|
|
6415
|
+
*/
|
|
5909
6416
|
pagingInfo?: ListProjectMembersResponseBodyPagingInfo;
|
|
5910
6417
|
/**
|
|
6418
|
+
* @remarks
|
|
6419
|
+
* The request ID. You can use the ID to query logs and troubleshoot issues.
|
|
6420
|
+
*
|
|
5911
6421
|
* @example
|
|
5912
6422
|
* 9FBBBB1F-DD5E-5D8E-8F50-37F77460F056
|
|
5913
6423
|
*/
|
|
@@ -6558,7 +7068,9 @@ export declare class ListTaskInstancesRequest extends $tea.Model {
|
|
|
6558
7068
|
* @example
|
|
6559
7069
|
* ODPS_SQL
|
|
6560
7070
|
*/
|
|
6561
|
-
taskType?:
|
|
7071
|
+
taskType?: string;
|
|
7072
|
+
triggerRecurrence?: string;
|
|
7073
|
+
triggerType?: string;
|
|
6562
7074
|
/**
|
|
6563
7075
|
* @example
|
|
6564
7076
|
* 1234
|
|
@@ -6648,7 +7160,9 @@ export declare class ListTaskInstancesShrinkRequest extends $tea.Model {
|
|
|
6648
7160
|
* @example
|
|
6649
7161
|
* ODPS_SQL
|
|
6650
7162
|
*/
|
|
6651
|
-
taskType?:
|
|
7163
|
+
taskType?: string;
|
|
7164
|
+
triggerRecurrence?: string;
|
|
7165
|
+
triggerType?: string;
|
|
6652
7166
|
/**
|
|
6653
7167
|
* @example
|
|
6654
7168
|
* 1234
|
|
@@ -8039,6 +8553,8 @@ export declare class ResumeTaskInstancesResponse extends $tea.Model {
|
|
|
8039
8553
|
export declare class RevokeMemberProjectRolesRequest extends $tea.Model {
|
|
8040
8554
|
/**
|
|
8041
8555
|
* @remarks
|
|
8556
|
+
* The DataWorks workspace ID. You can log on to the [DataWorks console](https://dataworks.console.aliyun.com/workspace/list) and go to the Workspace page to query the ID.
|
|
8557
|
+
*
|
|
8042
8558
|
* This parameter is required.
|
|
8043
8559
|
*
|
|
8044
8560
|
* @example
|
|
@@ -8047,11 +8563,17 @@ export declare class RevokeMemberProjectRolesRequest extends $tea.Model {
|
|
|
8047
8563
|
projectId?: number;
|
|
8048
8564
|
/**
|
|
8049
8565
|
* @remarks
|
|
8566
|
+
* The codes of the roles in the workspace. You can call the [ListProjectRoles](https://help.aliyun.com/zh/dataworks/developer-reference/api-dataworks-public-2024-05-18-listprojectroles?spm=a2c4g.11186623.0.0.43841daeywTtF3) operation to query the codes of all roles in the workspace.
|
|
8567
|
+
*
|
|
8568
|
+
* You must configure this parameter to specify the roles that you want to revoke from the member in the workspace.
|
|
8569
|
+
*
|
|
8050
8570
|
* This parameter is required.
|
|
8051
8571
|
*/
|
|
8052
8572
|
roleCodes?: string[];
|
|
8053
8573
|
/**
|
|
8054
8574
|
* @remarks
|
|
8575
|
+
* The ID of the account used by the member in the workspace. You can log on to the [DataWorks console](https://workbench.data.aliyun.com/console?spm=openapi-amp.newDocPublishment.0.0.51d7281fjgBRmo), choose More > Management Center in the left-side navigation pane, select the desired workspace on the Management Center page, and then click Go to Management Center. In the left-side navigation pane of the SettingCenter page, click Tenant Members and Roles. On the Tenant Members and Roles page, view the ID of the account used by the member in the workspace.
|
|
8576
|
+
*
|
|
8055
8577
|
* This parameter is required.
|
|
8056
8578
|
*
|
|
8057
8579
|
* @example
|
|
@@ -8071,6 +8593,8 @@ export declare class RevokeMemberProjectRolesRequest extends $tea.Model {
|
|
|
8071
8593
|
export declare class RevokeMemberProjectRolesShrinkRequest extends $tea.Model {
|
|
8072
8594
|
/**
|
|
8073
8595
|
* @remarks
|
|
8596
|
+
* The DataWorks workspace ID. You can log on to the [DataWorks console](https://dataworks.console.aliyun.com/workspace/list) and go to the Workspace page to query the ID.
|
|
8597
|
+
*
|
|
8074
8598
|
* This parameter is required.
|
|
8075
8599
|
*
|
|
8076
8600
|
* @example
|
|
@@ -8079,11 +8603,17 @@ export declare class RevokeMemberProjectRolesShrinkRequest extends $tea.Model {
|
|
|
8079
8603
|
projectId?: number;
|
|
8080
8604
|
/**
|
|
8081
8605
|
* @remarks
|
|
8606
|
+
* The codes of the roles in the workspace. You can call the [ListProjectRoles](https://help.aliyun.com/zh/dataworks/developer-reference/api-dataworks-public-2024-05-18-listprojectroles?spm=a2c4g.11186623.0.0.43841daeywTtF3) operation to query the codes of all roles in the workspace.
|
|
8607
|
+
*
|
|
8608
|
+
* You must configure this parameter to specify the roles that you want to revoke from the member in the workspace.
|
|
8609
|
+
*
|
|
8082
8610
|
* This parameter is required.
|
|
8083
8611
|
*/
|
|
8084
8612
|
roleCodesShrink?: string;
|
|
8085
8613
|
/**
|
|
8086
8614
|
* @remarks
|
|
8615
|
+
* The ID of the account used by the member in the workspace. You can log on to the [DataWorks console](https://workbench.data.aliyun.com/console?spm=openapi-amp.newDocPublishment.0.0.51d7281fjgBRmo), choose More > Management Center in the left-side navigation pane, select the desired workspace on the Management Center page, and then click Go to Management Center. In the left-side navigation pane of the SettingCenter page, click Tenant Members and Roles. On the Tenant Members and Roles page, view the ID of the account used by the member in the workspace.
|
|
8616
|
+
*
|
|
8087
8617
|
* This parameter is required.
|
|
8088
8618
|
*
|
|
8089
8619
|
* @example
|
|
@@ -8102,6 +8632,9 @@ export declare class RevokeMemberProjectRolesShrinkRequest extends $tea.Model {
|
|
|
8102
8632
|
}
|
|
8103
8633
|
export declare class RevokeMemberProjectRolesResponseBody extends $tea.Model {
|
|
8104
8634
|
/**
|
|
8635
|
+
* @remarks
|
|
8636
|
+
* The request ID. You can use the ID to query logs and troubleshoot issues.
|
|
8637
|
+
*
|
|
8105
8638
|
* @example
|
|
8106
8639
|
* 676271D6-53B4-57BE-89FA-72F7AE1418DF
|
|
8107
8640
|
*/
|
|
@@ -8563,24 +9096,127 @@ export declare class TriggerSchedulerTaskInstanceResponse extends $tea.Model {
|
|
|
8563
9096
|
[key: string]: any;
|
|
8564
9097
|
});
|
|
8565
9098
|
}
|
|
8566
|
-
export declare class
|
|
9099
|
+
export declare class UpdateAlertRuleRequest extends $tea.Model {
|
|
8567
9100
|
/**
|
|
8568
|
-
* @remarks
|
|
8569
|
-
* This parameter is required.
|
|
8570
|
-
*
|
|
8571
9101
|
* @example
|
|
8572
|
-
*
|
|
9102
|
+
* true
|
|
8573
9103
|
*/
|
|
8574
|
-
|
|
9104
|
+
enabled?: boolean;
|
|
8575
9105
|
/**
|
|
8576
9106
|
* @example
|
|
8577
|
-
*
|
|
9107
|
+
* 105412
|
|
8578
9108
|
*/
|
|
8579
|
-
|
|
8580
|
-
description?: string;
|
|
9109
|
+
id?: number;
|
|
8581
9110
|
/**
|
|
8582
9111
|
* @example
|
|
8583
|
-
*
|
|
9112
|
+
* collection_name
|
|
9113
|
+
*/
|
|
9114
|
+
name?: string;
|
|
9115
|
+
notification?: UpdateAlertRuleRequestNotification;
|
|
9116
|
+
/**
|
|
9117
|
+
* @example
|
|
9118
|
+
* 193379****
|
|
9119
|
+
*/
|
|
9120
|
+
owner?: string;
|
|
9121
|
+
triggerCondition?: UpdateAlertRuleRequestTriggerCondition;
|
|
9122
|
+
static names(): {
|
|
9123
|
+
[key: string]: string;
|
|
9124
|
+
};
|
|
9125
|
+
static types(): {
|
|
9126
|
+
[key: string]: any;
|
|
9127
|
+
};
|
|
9128
|
+
constructor(map?: {
|
|
9129
|
+
[key: string]: any;
|
|
9130
|
+
});
|
|
9131
|
+
}
|
|
9132
|
+
export declare class UpdateAlertRuleShrinkRequest extends $tea.Model {
|
|
9133
|
+
/**
|
|
9134
|
+
* @example
|
|
9135
|
+
* true
|
|
9136
|
+
*/
|
|
9137
|
+
enabled?: boolean;
|
|
9138
|
+
/**
|
|
9139
|
+
* @example
|
|
9140
|
+
* 105412
|
|
9141
|
+
*/
|
|
9142
|
+
id?: number;
|
|
9143
|
+
/**
|
|
9144
|
+
* @example
|
|
9145
|
+
* collection_name
|
|
9146
|
+
*/
|
|
9147
|
+
name?: string;
|
|
9148
|
+
notificationShrink?: string;
|
|
9149
|
+
/**
|
|
9150
|
+
* @example
|
|
9151
|
+
* 193379****
|
|
9152
|
+
*/
|
|
9153
|
+
owner?: string;
|
|
9154
|
+
triggerConditionShrink?: string;
|
|
9155
|
+
static names(): {
|
|
9156
|
+
[key: string]: string;
|
|
9157
|
+
};
|
|
9158
|
+
static types(): {
|
|
9159
|
+
[key: string]: any;
|
|
9160
|
+
};
|
|
9161
|
+
constructor(map?: {
|
|
9162
|
+
[key: string]: any;
|
|
9163
|
+
});
|
|
9164
|
+
}
|
|
9165
|
+
export declare class UpdateAlertRuleResponseBody extends $tea.Model {
|
|
9166
|
+
/**
|
|
9167
|
+
* @example
|
|
9168
|
+
* D85FEE2B-6174-5817-AF9E-FDD02FEDA5BC
|
|
9169
|
+
*/
|
|
9170
|
+
requestId?: string;
|
|
9171
|
+
/**
|
|
9172
|
+
* @example
|
|
9173
|
+
* true
|
|
9174
|
+
*/
|
|
9175
|
+
success?: boolean;
|
|
9176
|
+
static names(): {
|
|
9177
|
+
[key: string]: string;
|
|
9178
|
+
};
|
|
9179
|
+
static types(): {
|
|
9180
|
+
[key: string]: any;
|
|
9181
|
+
};
|
|
9182
|
+
constructor(map?: {
|
|
9183
|
+
[key: string]: any;
|
|
9184
|
+
});
|
|
9185
|
+
}
|
|
9186
|
+
export declare class UpdateAlertRuleResponse extends $tea.Model {
|
|
9187
|
+
headers?: {
|
|
9188
|
+
[key: string]: string;
|
|
9189
|
+
};
|
|
9190
|
+
statusCode?: number;
|
|
9191
|
+
body?: UpdateAlertRuleResponseBody;
|
|
9192
|
+
static names(): {
|
|
9193
|
+
[key: string]: string;
|
|
9194
|
+
};
|
|
9195
|
+
static types(): {
|
|
9196
|
+
[key: string]: any;
|
|
9197
|
+
};
|
|
9198
|
+
constructor(map?: {
|
|
9199
|
+
[key: string]: any;
|
|
9200
|
+
});
|
|
9201
|
+
}
|
|
9202
|
+
export declare class UpdateDIAlarmRuleRequest extends $tea.Model {
|
|
9203
|
+
/**
|
|
9204
|
+
* @remarks
|
|
9205
|
+
* This parameter is required.
|
|
9206
|
+
*
|
|
9207
|
+
* @example
|
|
9208
|
+
* 34982
|
|
9209
|
+
*/
|
|
9210
|
+
DIAlarmRuleId?: number;
|
|
9211
|
+
/**
|
|
9212
|
+
* @example
|
|
9213
|
+
* 1
|
|
9214
|
+
*/
|
|
9215
|
+
DIJobId?: number;
|
|
9216
|
+
description?: string;
|
|
9217
|
+
/**
|
|
9218
|
+
* @example
|
|
9219
|
+
* true
|
|
8584
9220
|
*/
|
|
8585
9221
|
enabled?: boolean;
|
|
8586
9222
|
/**
|
|
@@ -10032,7 +10668,7 @@ export declare class DataQualityResultRule extends $tea.Model {
|
|
|
10032
10668
|
target?: DataQualityResultRuleTarget;
|
|
10033
10669
|
/**
|
|
10034
10670
|
* @example
|
|
10035
|
-
*
|
|
10671
|
+
* SYSTEM:user_defined_sql
|
|
10036
10672
|
*/
|
|
10037
10673
|
templateCode?: string;
|
|
10038
10674
|
/**
|
|
@@ -10232,27 +10868,15 @@ export declare class DataQualityRuleTarget extends $tea.Model {
|
|
|
10232
10868
|
[key: string]: any;
|
|
10233
10869
|
});
|
|
10234
10870
|
}
|
|
10235
|
-
export declare class
|
|
10236
|
-
channels?: string[];
|
|
10871
|
+
export declare class CreateAlertRuleRequestNotificationReceivers extends $tea.Model {
|
|
10237
10872
|
/**
|
|
10238
10873
|
* @example
|
|
10239
|
-
*
|
|
10874
|
+
* {"atAll":true}
|
|
10240
10875
|
*/
|
|
10241
|
-
|
|
10242
|
-
static names(): {
|
|
10243
|
-
[key: string]: string;
|
|
10244
|
-
};
|
|
10245
|
-
static types(): {
|
|
10246
|
-
[key: string]: any;
|
|
10247
|
-
};
|
|
10248
|
-
constructor(map?: {
|
|
10249
|
-
[key: string]: any;
|
|
10250
|
-
});
|
|
10251
|
-
}
|
|
10252
|
-
export declare class CreateDIAlarmRuleRequestNotificationSettingsNotificationReceivers extends $tea.Model {
|
|
10876
|
+
extension?: string;
|
|
10253
10877
|
/**
|
|
10254
10878
|
* @example
|
|
10255
|
-
*
|
|
10879
|
+
* TaskOwner
|
|
10256
10880
|
*/
|
|
10257
10881
|
receiverType?: string;
|
|
10258
10882
|
receiverValues?: string[];
|
|
@@ -10266,14 +10890,37 @@ export declare class CreateDIAlarmRuleRequestNotificationSettingsNotificationRec
|
|
|
10266
10890
|
[key: string]: any;
|
|
10267
10891
|
});
|
|
10268
10892
|
}
|
|
10269
|
-
export declare class
|
|
10893
|
+
export declare class CreateAlertRuleRequestNotification extends $tea.Model {
|
|
10894
|
+
/**
|
|
10895
|
+
* @remarks
|
|
10896
|
+
* This parameter is required.
|
|
10897
|
+
*/
|
|
10898
|
+
channels?: string[];
|
|
10270
10899
|
/**
|
|
10271
10900
|
* @example
|
|
10272
|
-
*
|
|
10901
|
+
* 30
|
|
10273
10902
|
*/
|
|
10274
|
-
|
|
10275
|
-
|
|
10276
|
-
|
|
10903
|
+
intervalInMinutes?: number;
|
|
10904
|
+
/**
|
|
10905
|
+
* @example
|
|
10906
|
+
* 3
|
|
10907
|
+
*/
|
|
10908
|
+
maximum?: number;
|
|
10909
|
+
/**
|
|
10910
|
+
* @remarks
|
|
10911
|
+
* This parameter is required.
|
|
10912
|
+
*/
|
|
10913
|
+
receivers?: CreateAlertRuleRequestNotificationReceivers[];
|
|
10914
|
+
/**
|
|
10915
|
+
* @example
|
|
10916
|
+
* 00:00:00
|
|
10917
|
+
*/
|
|
10918
|
+
silenceEndTime?: string;
|
|
10919
|
+
/**
|
|
10920
|
+
* @example
|
|
10921
|
+
* 00:00:00
|
|
10922
|
+
*/
|
|
10923
|
+
silenceStartTime?: string;
|
|
10277
10924
|
static names(): {
|
|
10278
10925
|
[key: string]: string;
|
|
10279
10926
|
};
|
|
@@ -10284,23 +10931,17 @@ export declare class CreateDIAlarmRuleRequestNotificationSettings extends $tea.M
|
|
|
10284
10931
|
[key: string]: any;
|
|
10285
10932
|
});
|
|
10286
10933
|
}
|
|
10287
|
-
export declare class
|
|
10288
|
-
ddlReportTags?: string[];
|
|
10289
|
-
/**
|
|
10290
|
-
* @example
|
|
10291
|
-
* 10
|
|
10292
|
-
*/
|
|
10293
|
-
duration?: number;
|
|
10934
|
+
export declare class CreateAlertRuleRequestTriggerConditionExtensionCycleUnfinishedCycleAndTime extends $tea.Model {
|
|
10294
10935
|
/**
|
|
10295
10936
|
* @example
|
|
10296
|
-
*
|
|
10937
|
+
* 1
|
|
10297
10938
|
*/
|
|
10298
|
-
|
|
10939
|
+
cycleId?: number;
|
|
10299
10940
|
/**
|
|
10300
10941
|
* @example
|
|
10301
|
-
*
|
|
10942
|
+
* 12:00
|
|
10302
10943
|
*/
|
|
10303
|
-
|
|
10944
|
+
time?: string;
|
|
10304
10945
|
static names(): {
|
|
10305
10946
|
[key: string]: string;
|
|
10306
10947
|
};
|
|
@@ -10311,12 +10952,8 @@ export declare class CreateDIAlarmRuleRequestTriggerConditions extends $tea.Mode
|
|
|
10311
10952
|
[key: string]: any;
|
|
10312
10953
|
});
|
|
10313
10954
|
}
|
|
10314
|
-
export declare class
|
|
10315
|
-
|
|
10316
|
-
* @example
|
|
10317
|
-
* holo_datasource_1
|
|
10318
|
-
*/
|
|
10319
|
-
dataSourceName?: string;
|
|
10955
|
+
export declare class CreateAlertRuleRequestTriggerConditionExtensionCycleUnfinished extends $tea.Model {
|
|
10956
|
+
cycleAndTime?: CreateAlertRuleRequestTriggerConditionExtensionCycleUnfinishedCycleAndTime[];
|
|
10320
10957
|
static names(): {
|
|
10321
10958
|
[key: string]: string;
|
|
10322
10959
|
};
|
|
@@ -10327,17 +10964,13 @@ export declare class CreateDIJobRequestDestinationDataSourceSettings extends $te
|
|
|
10327
10964
|
[key: string]: any;
|
|
10328
10965
|
});
|
|
10329
10966
|
}
|
|
10330
|
-
export declare class
|
|
10331
|
-
/**
|
|
10332
|
-
* @example
|
|
10333
|
-
* text
|
|
10334
|
-
*/
|
|
10335
|
-
destinationDataType?: string;
|
|
10967
|
+
export declare class CreateAlertRuleRequestTriggerConditionExtensionError extends $tea.Model {
|
|
10336
10968
|
/**
|
|
10337
10969
|
* @example
|
|
10338
|
-
*
|
|
10970
|
+
* false
|
|
10339
10971
|
*/
|
|
10340
|
-
|
|
10972
|
+
autoRerunAlert?: boolean;
|
|
10973
|
+
streamTaskIds?: number[];
|
|
10341
10974
|
static names(): {
|
|
10342
10975
|
[key: string]: string;
|
|
10343
10976
|
};
|
|
@@ -10348,17 +10981,12 @@ export declare class CreateDIJobRequestJobSettingsColumnDataTypeSettings extends
|
|
|
10348
10981
|
[key: string]: any;
|
|
10349
10982
|
});
|
|
10350
10983
|
}
|
|
10351
|
-
export declare class
|
|
10352
|
-
/**
|
|
10353
|
-
* @example
|
|
10354
|
-
* Full
|
|
10355
|
-
*/
|
|
10356
|
-
cycleMigrationType?: string;
|
|
10984
|
+
export declare class CreateAlertRuleRequestTriggerConditionExtensionInstanceErrorCount extends $tea.Model {
|
|
10357
10985
|
/**
|
|
10358
10986
|
* @example
|
|
10359
|
-
*
|
|
10987
|
+
* 5
|
|
10360
10988
|
*/
|
|
10361
|
-
|
|
10989
|
+
count?: number;
|
|
10362
10990
|
static names(): {
|
|
10363
10991
|
[key: string]: string;
|
|
10364
10992
|
};
|
|
@@ -10369,17 +10997,12 @@ export declare class CreateDIJobRequestJobSettingsCycleScheduleSettings extends
|
|
|
10369
10997
|
[key: string]: any;
|
|
10370
10998
|
});
|
|
10371
10999
|
}
|
|
10372
|
-
export declare class
|
|
10373
|
-
/**
|
|
10374
|
-
* @example
|
|
10375
|
-
* Critical
|
|
10376
|
-
*/
|
|
10377
|
-
action?: string;
|
|
11000
|
+
export declare class CreateAlertRuleRequestTriggerConditionExtensionInstanceErrorPercentage extends $tea.Model {
|
|
10378
11001
|
/**
|
|
10379
11002
|
* @example
|
|
10380
|
-
*
|
|
11003
|
+
* 5
|
|
10381
11004
|
*/
|
|
10382
|
-
|
|
11005
|
+
percentage?: number;
|
|
10383
11006
|
static names(): {
|
|
10384
11007
|
[key: string]: string;
|
|
10385
11008
|
};
|
|
@@ -10390,17 +11013,17 @@ export declare class CreateDIJobRequestJobSettingsDdlHandlingSettings extends $t
|
|
|
10390
11013
|
[key: string]: any;
|
|
10391
11014
|
});
|
|
10392
11015
|
}
|
|
10393
|
-
export declare class
|
|
11016
|
+
export declare class CreateAlertRuleRequestTriggerConditionExtensionInstanceTransferFluctuate extends $tea.Model {
|
|
10394
11017
|
/**
|
|
10395
11018
|
* @example
|
|
10396
|
-
*
|
|
11019
|
+
* 10
|
|
10397
11020
|
*/
|
|
10398
|
-
|
|
11021
|
+
percentage?: number;
|
|
10399
11022
|
/**
|
|
10400
11023
|
* @example
|
|
10401
|
-
*
|
|
11024
|
+
* abs
|
|
10402
11025
|
*/
|
|
10403
|
-
|
|
11026
|
+
trend?: string;
|
|
10404
11027
|
static names(): {
|
|
10405
11028
|
[key: string]: string;
|
|
10406
11029
|
};
|
|
@@ -10411,16 +11034,12 @@ export declare class CreateDIJobRequestJobSettingsRuntimeSettings extends $tea.M
|
|
|
10411
11034
|
[key: string]: any;
|
|
10412
11035
|
});
|
|
10413
11036
|
}
|
|
10414
|
-
export declare class
|
|
11037
|
+
export declare class CreateAlertRuleRequestTriggerConditionExtensionTimeout extends $tea.Model {
|
|
10415
11038
|
/**
|
|
10416
11039
|
* @example
|
|
10417
|
-
*
|
|
11040
|
+
* 10
|
|
10418
11041
|
*/
|
|
10419
|
-
|
|
10420
|
-
columnDataTypeSettings?: CreateDIJobRequestJobSettingsColumnDataTypeSettings[];
|
|
10421
|
-
cycleScheduleSettings?: CreateDIJobRequestJobSettingsCycleScheduleSettings;
|
|
10422
|
-
ddlHandlingSettings?: CreateDIJobRequestJobSettingsDdlHandlingSettings[];
|
|
10423
|
-
runtimeSettings?: CreateDIJobRequestJobSettingsRuntimeSettings[];
|
|
11042
|
+
timeoutInMinutes?: number;
|
|
10424
11043
|
static names(): {
|
|
10425
11044
|
[key: string]: string;
|
|
10426
11045
|
};
|
|
@@ -10431,17 +11050,12 @@ export declare class CreateDIJobRequestJobSettings extends $tea.Model {
|
|
|
10431
11050
|
[key: string]: any;
|
|
10432
11051
|
});
|
|
10433
11052
|
}
|
|
10434
|
-
export declare class
|
|
10435
|
-
/**
|
|
10436
|
-
* @example
|
|
10437
|
-
* 2.0
|
|
10438
|
-
*/
|
|
10439
|
-
requestedCu?: number;
|
|
11053
|
+
export declare class CreateAlertRuleRequestTriggerConditionExtensionUnFinished extends $tea.Model {
|
|
10440
11054
|
/**
|
|
10441
11055
|
* @example
|
|
10442
|
-
*
|
|
11056
|
+
* 30:00
|
|
10443
11057
|
*/
|
|
10444
|
-
|
|
11058
|
+
unFinishedTime?: string;
|
|
10445
11059
|
static names(): {
|
|
10446
11060
|
[key: string]: string;
|
|
10447
11061
|
};
|
|
@@ -10452,17 +11066,14 @@ export declare class CreateDIJobRequestResourceSettingsOfflineResourceSettings e
|
|
|
10452
11066
|
[key: string]: any;
|
|
10453
11067
|
});
|
|
10454
11068
|
}
|
|
10455
|
-
export declare class
|
|
10456
|
-
|
|
10457
|
-
|
|
10458
|
-
|
|
10459
|
-
|
|
10460
|
-
|
|
10461
|
-
|
|
10462
|
-
|
|
10463
|
-
* S_res_group_111_222
|
|
10464
|
-
*/
|
|
10465
|
-
resourceGroupIdentifier?: string;
|
|
11069
|
+
export declare class CreateAlertRuleRequestTriggerConditionExtension extends $tea.Model {
|
|
11070
|
+
cycleUnfinished?: CreateAlertRuleRequestTriggerConditionExtensionCycleUnfinished;
|
|
11071
|
+
error?: CreateAlertRuleRequestTriggerConditionExtensionError;
|
|
11072
|
+
instanceErrorCount?: CreateAlertRuleRequestTriggerConditionExtensionInstanceErrorCount;
|
|
11073
|
+
instanceErrorPercentage?: CreateAlertRuleRequestTriggerConditionExtensionInstanceErrorPercentage;
|
|
11074
|
+
instanceTransferFluctuate?: CreateAlertRuleRequestTriggerConditionExtensionInstanceTransferFluctuate;
|
|
11075
|
+
timeout?: CreateAlertRuleRequestTriggerConditionExtensionTimeout;
|
|
11076
|
+
unFinished?: CreateAlertRuleRequestTriggerConditionExtensionUnFinished;
|
|
10466
11077
|
static names(): {
|
|
10467
11078
|
[key: string]: string;
|
|
10468
11079
|
};
|
|
@@ -10473,17 +11084,14 @@ export declare class CreateDIJobRequestResourceSettingsRealtimeResourceSettings
|
|
|
10473
11084
|
[key: string]: any;
|
|
10474
11085
|
});
|
|
10475
11086
|
}
|
|
10476
|
-
export declare class
|
|
10477
|
-
|
|
10478
|
-
|
|
10479
|
-
* 2.0
|
|
10480
|
-
*/
|
|
10481
|
-
requestedCu?: number;
|
|
11087
|
+
export declare class CreateAlertRuleRequestTriggerConditionTarget extends $tea.Model {
|
|
11088
|
+
allowTasks?: number[];
|
|
11089
|
+
ids?: number[];
|
|
10482
11090
|
/**
|
|
10483
11091
|
* @example
|
|
10484
|
-
*
|
|
11092
|
+
* Task
|
|
10485
11093
|
*/
|
|
10486
|
-
|
|
11094
|
+
type?: string;
|
|
10487
11095
|
static names(): {
|
|
10488
11096
|
[key: string]: string;
|
|
10489
11097
|
};
|
|
@@ -10494,10 +11102,14 @@ export declare class CreateDIJobRequestResourceSettingsScheduleResourceSettings
|
|
|
10494
11102
|
[key: string]: any;
|
|
10495
11103
|
});
|
|
10496
11104
|
}
|
|
10497
|
-
export declare class
|
|
10498
|
-
|
|
10499
|
-
|
|
10500
|
-
|
|
11105
|
+
export declare class CreateAlertRuleRequestTriggerCondition extends $tea.Model {
|
|
11106
|
+
extension?: CreateAlertRuleRequestTriggerConditionExtension;
|
|
11107
|
+
target?: CreateAlertRuleRequestTriggerConditionTarget;
|
|
11108
|
+
/**
|
|
11109
|
+
* @example
|
|
11110
|
+
* Error
|
|
11111
|
+
*/
|
|
11112
|
+
type?: string;
|
|
10501
11113
|
static names(): {
|
|
10502
11114
|
[key: string]: string;
|
|
10503
11115
|
};
|
|
@@ -10508,17 +11120,13 @@ export declare class CreateDIJobRequestResourceSettings extends $tea.Model {
|
|
|
10508
11120
|
[key: string]: any;
|
|
10509
11121
|
});
|
|
10510
11122
|
}
|
|
10511
|
-
export declare class
|
|
10512
|
-
|
|
10513
|
-
* @example
|
|
10514
|
-
* UTF-8
|
|
10515
|
-
*/
|
|
10516
|
-
encoding?: string;
|
|
11123
|
+
export declare class CreateDIAlarmRuleRequestNotificationSettingsNotificationChannels extends $tea.Model {
|
|
11124
|
+
channels?: string[];
|
|
10517
11125
|
/**
|
|
10518
11126
|
* @example
|
|
10519
|
-
*
|
|
11127
|
+
* Warning
|
|
10520
11128
|
*/
|
|
10521
|
-
|
|
11129
|
+
severity?: string;
|
|
10522
11130
|
static names(): {
|
|
10523
11131
|
[key: string]: string;
|
|
10524
11132
|
};
|
|
@@ -10529,13 +11137,13 @@ export declare class CreateDIJobRequestSourceDataSourceSettingsDataSourcePropert
|
|
|
10529
11137
|
[key: string]: any;
|
|
10530
11138
|
});
|
|
10531
11139
|
}
|
|
10532
|
-
export declare class
|
|
11140
|
+
export declare class CreateDIAlarmRuleRequestNotificationSettingsNotificationReceivers extends $tea.Model {
|
|
10533
11141
|
/**
|
|
10534
11142
|
* @example
|
|
10535
|
-
*
|
|
11143
|
+
* DingToken
|
|
10536
11144
|
*/
|
|
10537
|
-
|
|
10538
|
-
|
|
11145
|
+
receiverType?: string;
|
|
11146
|
+
receiverValues?: string[];
|
|
10539
11147
|
static names(): {
|
|
10540
11148
|
[key: string]: string;
|
|
10541
11149
|
};
|
|
@@ -10546,7 +11154,287 @@ export declare class CreateDIJobRequestSourceDataSourceSettings extends $tea.Mod
|
|
|
10546
11154
|
[key: string]: any;
|
|
10547
11155
|
});
|
|
10548
11156
|
}
|
|
10549
|
-
export declare class
|
|
11157
|
+
export declare class CreateDIAlarmRuleRequestNotificationSettings extends $tea.Model {
|
|
11158
|
+
/**
|
|
11159
|
+
* @example
|
|
11160
|
+
* 5
|
|
11161
|
+
*/
|
|
11162
|
+
inhibitionInterval?: number;
|
|
11163
|
+
notificationChannels?: CreateDIAlarmRuleRequestNotificationSettingsNotificationChannels[];
|
|
11164
|
+
notificationReceivers?: CreateDIAlarmRuleRequestNotificationSettingsNotificationReceivers[];
|
|
11165
|
+
static names(): {
|
|
11166
|
+
[key: string]: string;
|
|
11167
|
+
};
|
|
11168
|
+
static types(): {
|
|
11169
|
+
[key: string]: any;
|
|
11170
|
+
};
|
|
11171
|
+
constructor(map?: {
|
|
11172
|
+
[key: string]: any;
|
|
11173
|
+
});
|
|
11174
|
+
}
|
|
11175
|
+
export declare class CreateDIAlarmRuleRequestTriggerConditions extends $tea.Model {
|
|
11176
|
+
ddlReportTags?: string[];
|
|
11177
|
+
/**
|
|
11178
|
+
* @example
|
|
11179
|
+
* 10
|
|
11180
|
+
*/
|
|
11181
|
+
duration?: number;
|
|
11182
|
+
/**
|
|
11183
|
+
* @example
|
|
11184
|
+
* Warning
|
|
11185
|
+
*/
|
|
11186
|
+
severity?: string;
|
|
11187
|
+
/**
|
|
11188
|
+
* @example
|
|
11189
|
+
* 10
|
|
11190
|
+
*/
|
|
11191
|
+
threshold?: number;
|
|
11192
|
+
static names(): {
|
|
11193
|
+
[key: string]: string;
|
|
11194
|
+
};
|
|
11195
|
+
static types(): {
|
|
11196
|
+
[key: string]: any;
|
|
11197
|
+
};
|
|
11198
|
+
constructor(map?: {
|
|
11199
|
+
[key: string]: any;
|
|
11200
|
+
});
|
|
11201
|
+
}
|
|
11202
|
+
export declare class CreateDIJobRequestDestinationDataSourceSettings extends $tea.Model {
|
|
11203
|
+
/**
|
|
11204
|
+
* @example
|
|
11205
|
+
* holo_datasource_1
|
|
11206
|
+
*/
|
|
11207
|
+
dataSourceName?: string;
|
|
11208
|
+
static names(): {
|
|
11209
|
+
[key: string]: string;
|
|
11210
|
+
};
|
|
11211
|
+
static types(): {
|
|
11212
|
+
[key: string]: any;
|
|
11213
|
+
};
|
|
11214
|
+
constructor(map?: {
|
|
11215
|
+
[key: string]: any;
|
|
11216
|
+
});
|
|
11217
|
+
}
|
|
11218
|
+
export declare class CreateDIJobRequestJobSettingsColumnDataTypeSettings extends $tea.Model {
|
|
11219
|
+
/**
|
|
11220
|
+
* @example
|
|
11221
|
+
* text
|
|
11222
|
+
*/
|
|
11223
|
+
destinationDataType?: string;
|
|
11224
|
+
/**
|
|
11225
|
+
* @example
|
|
11226
|
+
* bigint
|
|
11227
|
+
*/
|
|
11228
|
+
sourceDataType?: string;
|
|
11229
|
+
static names(): {
|
|
11230
|
+
[key: string]: string;
|
|
11231
|
+
};
|
|
11232
|
+
static types(): {
|
|
11233
|
+
[key: string]: any;
|
|
11234
|
+
};
|
|
11235
|
+
constructor(map?: {
|
|
11236
|
+
[key: string]: any;
|
|
11237
|
+
});
|
|
11238
|
+
}
|
|
11239
|
+
export declare class CreateDIJobRequestJobSettingsCycleScheduleSettings extends $tea.Model {
|
|
11240
|
+
/**
|
|
11241
|
+
* @example
|
|
11242
|
+
* Full
|
|
11243
|
+
*/
|
|
11244
|
+
cycleMigrationType?: string;
|
|
11245
|
+
/**
|
|
11246
|
+
* @example
|
|
11247
|
+
* bizdate=$bizdate
|
|
11248
|
+
*/
|
|
11249
|
+
scheduleParameters?: string;
|
|
11250
|
+
static names(): {
|
|
11251
|
+
[key: string]: string;
|
|
11252
|
+
};
|
|
11253
|
+
static types(): {
|
|
11254
|
+
[key: string]: any;
|
|
11255
|
+
};
|
|
11256
|
+
constructor(map?: {
|
|
11257
|
+
[key: string]: any;
|
|
11258
|
+
});
|
|
11259
|
+
}
|
|
11260
|
+
export declare class CreateDIJobRequestJobSettingsDdlHandlingSettings extends $tea.Model {
|
|
11261
|
+
/**
|
|
11262
|
+
* @example
|
|
11263
|
+
* Critical
|
|
11264
|
+
*/
|
|
11265
|
+
action?: string;
|
|
11266
|
+
/**
|
|
11267
|
+
* @example
|
|
11268
|
+
* AddColumn
|
|
11269
|
+
*/
|
|
11270
|
+
type?: string;
|
|
11271
|
+
static names(): {
|
|
11272
|
+
[key: string]: string;
|
|
11273
|
+
};
|
|
11274
|
+
static types(): {
|
|
11275
|
+
[key: string]: any;
|
|
11276
|
+
};
|
|
11277
|
+
constructor(map?: {
|
|
11278
|
+
[key: string]: any;
|
|
11279
|
+
});
|
|
11280
|
+
}
|
|
11281
|
+
export declare class CreateDIJobRequestJobSettingsRuntimeSettings extends $tea.Model {
|
|
11282
|
+
/**
|
|
11283
|
+
* @example
|
|
11284
|
+
* runtime.offline.concurrent
|
|
11285
|
+
*/
|
|
11286
|
+
name?: string;
|
|
11287
|
+
/**
|
|
11288
|
+
* @example
|
|
11289
|
+
* 1
|
|
11290
|
+
*/
|
|
11291
|
+
value?: string;
|
|
11292
|
+
static names(): {
|
|
11293
|
+
[key: string]: string;
|
|
11294
|
+
};
|
|
11295
|
+
static types(): {
|
|
11296
|
+
[key: string]: any;
|
|
11297
|
+
};
|
|
11298
|
+
constructor(map?: {
|
|
11299
|
+
[key: string]: any;
|
|
11300
|
+
});
|
|
11301
|
+
}
|
|
11302
|
+
export declare class CreateDIJobRequestJobSettings extends $tea.Model {
|
|
11303
|
+
/**
|
|
11304
|
+
* @example
|
|
11305
|
+
* {"structInfo":"MANAGED","storageType":"TEXTFILE","writeMode":"APPEND","partitionColumns":[{"columnName":"pt","columnType":"STRING","comment":""}],"fieldDelimiter":""}
|
|
11306
|
+
*/
|
|
11307
|
+
channelSettings?: string;
|
|
11308
|
+
columnDataTypeSettings?: CreateDIJobRequestJobSettingsColumnDataTypeSettings[];
|
|
11309
|
+
cycleScheduleSettings?: CreateDIJobRequestJobSettingsCycleScheduleSettings;
|
|
11310
|
+
ddlHandlingSettings?: CreateDIJobRequestJobSettingsDdlHandlingSettings[];
|
|
11311
|
+
runtimeSettings?: CreateDIJobRequestJobSettingsRuntimeSettings[];
|
|
11312
|
+
static names(): {
|
|
11313
|
+
[key: string]: string;
|
|
11314
|
+
};
|
|
11315
|
+
static types(): {
|
|
11316
|
+
[key: string]: any;
|
|
11317
|
+
};
|
|
11318
|
+
constructor(map?: {
|
|
11319
|
+
[key: string]: any;
|
|
11320
|
+
});
|
|
11321
|
+
}
|
|
11322
|
+
export declare class CreateDIJobRequestResourceSettingsOfflineResourceSettings extends $tea.Model {
|
|
11323
|
+
/**
|
|
11324
|
+
* @example
|
|
11325
|
+
* 2.0
|
|
11326
|
+
*/
|
|
11327
|
+
requestedCu?: number;
|
|
11328
|
+
/**
|
|
11329
|
+
* @example
|
|
11330
|
+
* S_res_group_111_222
|
|
11331
|
+
*/
|
|
11332
|
+
resourceGroupIdentifier?: string;
|
|
11333
|
+
static names(): {
|
|
11334
|
+
[key: string]: string;
|
|
11335
|
+
};
|
|
11336
|
+
static types(): {
|
|
11337
|
+
[key: string]: any;
|
|
11338
|
+
};
|
|
11339
|
+
constructor(map?: {
|
|
11340
|
+
[key: string]: any;
|
|
11341
|
+
});
|
|
11342
|
+
}
|
|
11343
|
+
export declare class CreateDIJobRequestResourceSettingsRealtimeResourceSettings extends $tea.Model {
|
|
11344
|
+
/**
|
|
11345
|
+
* @example
|
|
11346
|
+
* 2.0
|
|
11347
|
+
*/
|
|
11348
|
+
requestedCu?: number;
|
|
11349
|
+
/**
|
|
11350
|
+
* @example
|
|
11351
|
+
* S_res_group_111_222
|
|
11352
|
+
*/
|
|
11353
|
+
resourceGroupIdentifier?: string;
|
|
11354
|
+
static names(): {
|
|
11355
|
+
[key: string]: string;
|
|
11356
|
+
};
|
|
11357
|
+
static types(): {
|
|
11358
|
+
[key: string]: any;
|
|
11359
|
+
};
|
|
11360
|
+
constructor(map?: {
|
|
11361
|
+
[key: string]: any;
|
|
11362
|
+
});
|
|
11363
|
+
}
|
|
11364
|
+
export declare class CreateDIJobRequestResourceSettingsScheduleResourceSettings extends $tea.Model {
|
|
11365
|
+
/**
|
|
11366
|
+
* @example
|
|
11367
|
+
* 2.0
|
|
11368
|
+
*/
|
|
11369
|
+
requestedCu?: number;
|
|
11370
|
+
/**
|
|
11371
|
+
* @example
|
|
11372
|
+
* S_res_group_235454102432001_1579085295030
|
|
11373
|
+
*/
|
|
11374
|
+
resourceGroupIdentifier?: string;
|
|
11375
|
+
static names(): {
|
|
11376
|
+
[key: string]: string;
|
|
11377
|
+
};
|
|
11378
|
+
static types(): {
|
|
11379
|
+
[key: string]: any;
|
|
11380
|
+
};
|
|
11381
|
+
constructor(map?: {
|
|
11382
|
+
[key: string]: any;
|
|
11383
|
+
});
|
|
11384
|
+
}
|
|
11385
|
+
export declare class CreateDIJobRequestResourceSettings extends $tea.Model {
|
|
11386
|
+
offlineResourceSettings?: CreateDIJobRequestResourceSettingsOfflineResourceSettings;
|
|
11387
|
+
realtimeResourceSettings?: CreateDIJobRequestResourceSettingsRealtimeResourceSettings;
|
|
11388
|
+
scheduleResourceSettings?: CreateDIJobRequestResourceSettingsScheduleResourceSettings;
|
|
11389
|
+
static names(): {
|
|
11390
|
+
[key: string]: string;
|
|
11391
|
+
};
|
|
11392
|
+
static types(): {
|
|
11393
|
+
[key: string]: any;
|
|
11394
|
+
};
|
|
11395
|
+
constructor(map?: {
|
|
11396
|
+
[key: string]: any;
|
|
11397
|
+
});
|
|
11398
|
+
}
|
|
11399
|
+
export declare class CreateDIJobRequestSourceDataSourceSettingsDataSourceProperties extends $tea.Model {
|
|
11400
|
+
/**
|
|
11401
|
+
* @example
|
|
11402
|
+
* UTF-8
|
|
11403
|
+
*/
|
|
11404
|
+
encoding?: string;
|
|
11405
|
+
/**
|
|
11406
|
+
* @example
|
|
11407
|
+
* GMT+8
|
|
11408
|
+
*/
|
|
11409
|
+
timezone?: string;
|
|
11410
|
+
static names(): {
|
|
11411
|
+
[key: string]: string;
|
|
11412
|
+
};
|
|
11413
|
+
static types(): {
|
|
11414
|
+
[key: string]: any;
|
|
11415
|
+
};
|
|
11416
|
+
constructor(map?: {
|
|
11417
|
+
[key: string]: any;
|
|
11418
|
+
});
|
|
11419
|
+
}
|
|
11420
|
+
export declare class CreateDIJobRequestSourceDataSourceSettings extends $tea.Model {
|
|
11421
|
+
/**
|
|
11422
|
+
* @example
|
|
11423
|
+
* mysql_datasource_1
|
|
11424
|
+
*/
|
|
11425
|
+
dataSourceName?: string;
|
|
11426
|
+
dataSourceProperties?: CreateDIJobRequestSourceDataSourceSettingsDataSourceProperties;
|
|
11427
|
+
static names(): {
|
|
11428
|
+
[key: string]: string;
|
|
11429
|
+
};
|
|
11430
|
+
static types(): {
|
|
11431
|
+
[key: string]: any;
|
|
11432
|
+
};
|
|
11433
|
+
constructor(map?: {
|
|
11434
|
+
[key: string]: any;
|
|
11435
|
+
});
|
|
11436
|
+
}
|
|
11437
|
+
export declare class CreateDIJobRequestTableMappingsSourceObjectSelectionRules extends $tea.Model {
|
|
10550
11438
|
/**
|
|
10551
11439
|
* @example
|
|
10552
11440
|
* Include
|
|
@@ -10559,14 +11447,289 @@ export declare class CreateDIJobRequestTableMappingsSourceObjectSelectionRules e
|
|
|
10559
11447
|
expression?: string;
|
|
10560
11448
|
/**
|
|
10561
11449
|
* @example
|
|
10562
|
-
* Exact
|
|
11450
|
+
* Exact
|
|
11451
|
+
*/
|
|
11452
|
+
expressionType?: string;
|
|
11453
|
+
/**
|
|
11454
|
+
* @example
|
|
11455
|
+
* Table
|
|
11456
|
+
*/
|
|
11457
|
+
objectType?: string;
|
|
11458
|
+
static names(): {
|
|
11459
|
+
[key: string]: string;
|
|
11460
|
+
};
|
|
11461
|
+
static types(): {
|
|
11462
|
+
[key: string]: any;
|
|
11463
|
+
};
|
|
11464
|
+
constructor(map?: {
|
|
11465
|
+
[key: string]: any;
|
|
11466
|
+
});
|
|
11467
|
+
}
|
|
11468
|
+
export declare class CreateDIJobRequestTableMappingsTransformationRules extends $tea.Model {
|
|
11469
|
+
/**
|
|
11470
|
+
* @example
|
|
11471
|
+
* Rename
|
|
11472
|
+
*/
|
|
11473
|
+
ruleActionType?: string;
|
|
11474
|
+
/**
|
|
11475
|
+
* @example
|
|
11476
|
+
* rename_rule_1
|
|
11477
|
+
*/
|
|
11478
|
+
ruleName?: string;
|
|
11479
|
+
/**
|
|
11480
|
+
* @example
|
|
11481
|
+
* Table
|
|
11482
|
+
*/
|
|
11483
|
+
ruleTargetType?: string;
|
|
11484
|
+
static names(): {
|
|
11485
|
+
[key: string]: string;
|
|
11486
|
+
};
|
|
11487
|
+
static types(): {
|
|
11488
|
+
[key: string]: any;
|
|
11489
|
+
};
|
|
11490
|
+
constructor(map?: {
|
|
11491
|
+
[key: string]: any;
|
|
11492
|
+
});
|
|
11493
|
+
}
|
|
11494
|
+
export declare class CreateDIJobRequestTableMappings extends $tea.Model {
|
|
11495
|
+
sourceObjectSelectionRules?: CreateDIJobRequestTableMappingsSourceObjectSelectionRules[];
|
|
11496
|
+
transformationRules?: CreateDIJobRequestTableMappingsTransformationRules[];
|
|
11497
|
+
static names(): {
|
|
11498
|
+
[key: string]: string;
|
|
11499
|
+
};
|
|
11500
|
+
static types(): {
|
|
11501
|
+
[key: string]: any;
|
|
11502
|
+
};
|
|
11503
|
+
constructor(map?: {
|
|
11504
|
+
[key: string]: any;
|
|
11505
|
+
});
|
|
11506
|
+
}
|
|
11507
|
+
export declare class CreateDIJobRequestTransformationRules extends $tea.Model {
|
|
11508
|
+
/**
|
|
11509
|
+
* @example
|
|
11510
|
+
* Rename
|
|
11511
|
+
*/
|
|
11512
|
+
ruleActionType?: string;
|
|
11513
|
+
/**
|
|
11514
|
+
* @example
|
|
11515
|
+
* {"expression":"${srcDatasoureName}_${srcDatabaseName}"}
|
|
11516
|
+
*/
|
|
11517
|
+
ruleExpression?: string;
|
|
11518
|
+
/**
|
|
11519
|
+
* @example
|
|
11520
|
+
* rename_rule_1
|
|
11521
|
+
*/
|
|
11522
|
+
ruleName?: string;
|
|
11523
|
+
/**
|
|
11524
|
+
* @example
|
|
11525
|
+
* Table
|
|
11526
|
+
*/
|
|
11527
|
+
ruleTargetType?: string;
|
|
11528
|
+
static names(): {
|
|
11529
|
+
[key: string]: string;
|
|
11530
|
+
};
|
|
11531
|
+
static types(): {
|
|
11532
|
+
[key: string]: any;
|
|
11533
|
+
};
|
|
11534
|
+
constructor(map?: {
|
|
11535
|
+
[key: string]: any;
|
|
11536
|
+
});
|
|
11537
|
+
}
|
|
11538
|
+
export declare class CreateProjectRequestAliyunResourceTags extends $tea.Model {
|
|
11539
|
+
/**
|
|
11540
|
+
* @example
|
|
11541
|
+
* batch
|
|
11542
|
+
*/
|
|
11543
|
+
key?: string;
|
|
11544
|
+
/**
|
|
11545
|
+
* @example
|
|
11546
|
+
* blue
|
|
11547
|
+
*/
|
|
11548
|
+
value?: string;
|
|
11549
|
+
static names(): {
|
|
11550
|
+
[key: string]: string;
|
|
11551
|
+
};
|
|
11552
|
+
static types(): {
|
|
11553
|
+
[key: string]: any;
|
|
11554
|
+
};
|
|
11555
|
+
constructor(map?: {
|
|
11556
|
+
[key: string]: any;
|
|
11557
|
+
});
|
|
11558
|
+
}
|
|
11559
|
+
export declare class CreateResourceGroupResponseBodyResourceGroupOrder extends $tea.Model {
|
|
11560
|
+
/**
|
|
11561
|
+
* @example
|
|
11562
|
+
* Serverless_res_group_524257424564736_6831777003XXXXX
|
|
11563
|
+
*/
|
|
11564
|
+
id?: string;
|
|
11565
|
+
/**
|
|
11566
|
+
* @example
|
|
11567
|
+
* 2391982058XXXXX
|
|
11568
|
+
*/
|
|
11569
|
+
orderId?: number;
|
|
11570
|
+
/**
|
|
11571
|
+
* @example
|
|
11572
|
+
* c442b330-3b10-4584-959e-736e4edXXXXX
|
|
11573
|
+
*/
|
|
11574
|
+
orderInstanceId?: string;
|
|
11575
|
+
static names(): {
|
|
11576
|
+
[key: string]: string;
|
|
11577
|
+
};
|
|
11578
|
+
static types(): {
|
|
11579
|
+
[key: string]: any;
|
|
11580
|
+
};
|
|
11581
|
+
constructor(map?: {
|
|
11582
|
+
[key: string]: any;
|
|
11583
|
+
});
|
|
11584
|
+
}
|
|
11585
|
+
export declare class GetAlertRuleResponseBodyAlertRuleNotificationReceivers extends $tea.Model {
|
|
11586
|
+
/**
|
|
11587
|
+
* @example
|
|
11588
|
+
* {"atAll":true}
|
|
11589
|
+
*/
|
|
11590
|
+
extension?: string;
|
|
11591
|
+
/**
|
|
11592
|
+
* @example
|
|
11593
|
+
* WebhookUrl
|
|
11594
|
+
*/
|
|
11595
|
+
receiverType?: string;
|
|
11596
|
+
receiverValues?: string[];
|
|
11597
|
+
static names(): {
|
|
11598
|
+
[key: string]: string;
|
|
11599
|
+
};
|
|
11600
|
+
static types(): {
|
|
11601
|
+
[key: string]: any;
|
|
11602
|
+
};
|
|
11603
|
+
constructor(map?: {
|
|
11604
|
+
[key: string]: any;
|
|
11605
|
+
});
|
|
11606
|
+
}
|
|
11607
|
+
export declare class GetAlertRuleResponseBodyAlertRuleNotification extends $tea.Model {
|
|
11608
|
+
channels?: string[];
|
|
11609
|
+
/**
|
|
11610
|
+
* @example
|
|
11611
|
+
* 30
|
|
11612
|
+
*/
|
|
11613
|
+
intervalInMinutes?: number;
|
|
11614
|
+
/**
|
|
11615
|
+
* @example
|
|
11616
|
+
* 3
|
|
11617
|
+
*/
|
|
11618
|
+
maximum?: number;
|
|
11619
|
+
receivers?: GetAlertRuleResponseBodyAlertRuleNotificationReceivers[];
|
|
11620
|
+
/**
|
|
11621
|
+
* @example
|
|
11622
|
+
* 00:00:00
|
|
11623
|
+
*/
|
|
11624
|
+
silenceEndTime?: string;
|
|
11625
|
+
/**
|
|
11626
|
+
* @example
|
|
11627
|
+
* 00:00:00
|
|
11628
|
+
*/
|
|
11629
|
+
silenceStartTime?: string;
|
|
11630
|
+
static names(): {
|
|
11631
|
+
[key: string]: string;
|
|
11632
|
+
};
|
|
11633
|
+
static types(): {
|
|
11634
|
+
[key: string]: any;
|
|
11635
|
+
};
|
|
11636
|
+
constructor(map?: {
|
|
11637
|
+
[key: string]: any;
|
|
11638
|
+
});
|
|
11639
|
+
}
|
|
11640
|
+
export declare class GetAlertRuleResponseBodyAlertRuleTriggerConditionExtensionCycleUnfinishedCycleAndTime extends $tea.Model {
|
|
11641
|
+
/**
|
|
11642
|
+
* @example
|
|
11643
|
+
* 1
|
|
11644
|
+
*/
|
|
11645
|
+
cycleId?: number;
|
|
11646
|
+
/**
|
|
11647
|
+
* @example
|
|
11648
|
+
* 12:00
|
|
11649
|
+
*/
|
|
11650
|
+
time?: string;
|
|
11651
|
+
static names(): {
|
|
11652
|
+
[key: string]: string;
|
|
11653
|
+
};
|
|
11654
|
+
static types(): {
|
|
11655
|
+
[key: string]: any;
|
|
11656
|
+
};
|
|
11657
|
+
constructor(map?: {
|
|
11658
|
+
[key: string]: any;
|
|
11659
|
+
});
|
|
11660
|
+
}
|
|
11661
|
+
export declare class GetAlertRuleResponseBodyAlertRuleTriggerConditionExtensionCycleUnfinished extends $tea.Model {
|
|
11662
|
+
cycleAndTime?: GetAlertRuleResponseBodyAlertRuleTriggerConditionExtensionCycleUnfinishedCycleAndTime[];
|
|
11663
|
+
static names(): {
|
|
11664
|
+
[key: string]: string;
|
|
11665
|
+
};
|
|
11666
|
+
static types(): {
|
|
11667
|
+
[key: string]: any;
|
|
11668
|
+
};
|
|
11669
|
+
constructor(map?: {
|
|
11670
|
+
[key: string]: any;
|
|
11671
|
+
});
|
|
11672
|
+
}
|
|
11673
|
+
export declare class GetAlertRuleResponseBodyAlertRuleTriggerConditionExtensionError extends $tea.Model {
|
|
11674
|
+
/**
|
|
11675
|
+
* @example
|
|
11676
|
+
* false
|
|
11677
|
+
*/
|
|
11678
|
+
autoRerunAlert?: boolean;
|
|
11679
|
+
streamTaskIds?: number[];
|
|
11680
|
+
static names(): {
|
|
11681
|
+
[key: string]: string;
|
|
11682
|
+
};
|
|
11683
|
+
static types(): {
|
|
11684
|
+
[key: string]: any;
|
|
11685
|
+
};
|
|
11686
|
+
constructor(map?: {
|
|
11687
|
+
[key: string]: any;
|
|
11688
|
+
});
|
|
11689
|
+
}
|
|
11690
|
+
export declare class GetAlertRuleResponseBodyAlertRuleTriggerConditionExtensionInstanceErrorCount extends $tea.Model {
|
|
11691
|
+
/**
|
|
11692
|
+
* @example
|
|
11693
|
+
* 10
|
|
11694
|
+
*/
|
|
11695
|
+
count?: number;
|
|
11696
|
+
static names(): {
|
|
11697
|
+
[key: string]: string;
|
|
11698
|
+
};
|
|
11699
|
+
static types(): {
|
|
11700
|
+
[key: string]: any;
|
|
11701
|
+
};
|
|
11702
|
+
constructor(map?: {
|
|
11703
|
+
[key: string]: any;
|
|
11704
|
+
});
|
|
11705
|
+
}
|
|
11706
|
+
export declare class GetAlertRuleResponseBodyAlertRuleTriggerConditionExtensionInstanceErrorPercentage extends $tea.Model {
|
|
11707
|
+
/**
|
|
11708
|
+
* @example
|
|
11709
|
+
* 10
|
|
11710
|
+
*/
|
|
11711
|
+
percentage?: number;
|
|
11712
|
+
static names(): {
|
|
11713
|
+
[key: string]: string;
|
|
11714
|
+
};
|
|
11715
|
+
static types(): {
|
|
11716
|
+
[key: string]: any;
|
|
11717
|
+
};
|
|
11718
|
+
constructor(map?: {
|
|
11719
|
+
[key: string]: any;
|
|
11720
|
+
});
|
|
11721
|
+
}
|
|
11722
|
+
export declare class GetAlertRuleResponseBodyAlertRuleTriggerConditionExtensionInstanceTransferFluctuate extends $tea.Model {
|
|
11723
|
+
/**
|
|
11724
|
+
* @example
|
|
11725
|
+
* 10
|
|
10563
11726
|
*/
|
|
10564
|
-
|
|
11727
|
+
percentage?: number;
|
|
10565
11728
|
/**
|
|
10566
11729
|
* @example
|
|
10567
|
-
*
|
|
11730
|
+
* 10
|
|
10568
11731
|
*/
|
|
10569
|
-
|
|
11732
|
+
trend?: string;
|
|
10570
11733
|
static names(): {
|
|
10571
11734
|
[key: string]: string;
|
|
10572
11735
|
};
|
|
@@ -10577,22 +11740,28 @@ export declare class CreateDIJobRequestTableMappingsSourceObjectSelectionRules e
|
|
|
10577
11740
|
[key: string]: any;
|
|
10578
11741
|
});
|
|
10579
11742
|
}
|
|
10580
|
-
export declare class
|
|
11743
|
+
export declare class GetAlertRuleResponseBodyAlertRuleTriggerConditionExtensionTimeout extends $tea.Model {
|
|
10581
11744
|
/**
|
|
10582
11745
|
* @example
|
|
10583
|
-
*
|
|
10584
|
-
*/
|
|
10585
|
-
ruleActionType?: string;
|
|
10586
|
-
/**
|
|
10587
|
-
* @example
|
|
10588
|
-
* rename_rule_1
|
|
11746
|
+
* 10
|
|
10589
11747
|
*/
|
|
10590
|
-
|
|
11748
|
+
timeoutInMinutes?: number;
|
|
11749
|
+
static names(): {
|
|
11750
|
+
[key: string]: string;
|
|
11751
|
+
};
|
|
11752
|
+
static types(): {
|
|
11753
|
+
[key: string]: any;
|
|
11754
|
+
};
|
|
11755
|
+
constructor(map?: {
|
|
11756
|
+
[key: string]: any;
|
|
11757
|
+
});
|
|
11758
|
+
}
|
|
11759
|
+
export declare class GetAlertRuleResponseBodyAlertRuleTriggerConditionExtensionUnFinished extends $tea.Model {
|
|
10591
11760
|
/**
|
|
10592
11761
|
* @example
|
|
10593
|
-
*
|
|
11762
|
+
* 12:00
|
|
10594
11763
|
*/
|
|
10595
|
-
|
|
11764
|
+
unFinishedTime?: string;
|
|
10596
11765
|
static names(): {
|
|
10597
11766
|
[key: string]: string;
|
|
10598
11767
|
};
|
|
@@ -10603,9 +11772,14 @@ export declare class CreateDIJobRequestTableMappingsTransformationRules extends
|
|
|
10603
11772
|
[key: string]: any;
|
|
10604
11773
|
});
|
|
10605
11774
|
}
|
|
10606
|
-
export declare class
|
|
10607
|
-
|
|
10608
|
-
|
|
11775
|
+
export declare class GetAlertRuleResponseBodyAlertRuleTriggerConditionExtension extends $tea.Model {
|
|
11776
|
+
cycleUnfinished?: GetAlertRuleResponseBodyAlertRuleTriggerConditionExtensionCycleUnfinished;
|
|
11777
|
+
error?: GetAlertRuleResponseBodyAlertRuleTriggerConditionExtensionError;
|
|
11778
|
+
instanceErrorCount?: GetAlertRuleResponseBodyAlertRuleTriggerConditionExtensionInstanceErrorCount;
|
|
11779
|
+
instanceErrorPercentage?: GetAlertRuleResponseBodyAlertRuleTriggerConditionExtensionInstanceErrorPercentage;
|
|
11780
|
+
instanceTransferFluctuate?: GetAlertRuleResponseBodyAlertRuleTriggerConditionExtensionInstanceTransferFluctuate;
|
|
11781
|
+
timeout?: GetAlertRuleResponseBodyAlertRuleTriggerConditionExtensionTimeout;
|
|
11782
|
+
unFinished?: GetAlertRuleResponseBodyAlertRuleTriggerConditionExtensionUnFinished;
|
|
10609
11783
|
static names(): {
|
|
10610
11784
|
[key: string]: string;
|
|
10611
11785
|
};
|
|
@@ -10616,27 +11790,14 @@ export declare class CreateDIJobRequestTableMappings extends $tea.Model {
|
|
|
10616
11790
|
[key: string]: any;
|
|
10617
11791
|
});
|
|
10618
11792
|
}
|
|
10619
|
-
export declare class
|
|
10620
|
-
|
|
10621
|
-
|
|
10622
|
-
* Rename
|
|
10623
|
-
*/
|
|
10624
|
-
ruleActionType?: string;
|
|
10625
|
-
/**
|
|
10626
|
-
* @example
|
|
10627
|
-
* {"expression":"${srcDatasoureName}_${srcDatabaseName}"}
|
|
10628
|
-
*/
|
|
10629
|
-
ruleExpression?: string;
|
|
10630
|
-
/**
|
|
10631
|
-
* @example
|
|
10632
|
-
* rename_rule_1
|
|
10633
|
-
*/
|
|
10634
|
-
ruleName?: string;
|
|
11793
|
+
export declare class GetAlertRuleResponseBodyAlertRuleTriggerConditionTarget extends $tea.Model {
|
|
11794
|
+
allowTasks?: number[];
|
|
11795
|
+
ids?: number[];
|
|
10635
11796
|
/**
|
|
10636
11797
|
* @example
|
|
10637
|
-
*
|
|
11798
|
+
* Task
|
|
10638
11799
|
*/
|
|
10639
|
-
|
|
11800
|
+
type?: string;
|
|
10640
11801
|
static names(): {
|
|
10641
11802
|
[key: string]: string;
|
|
10642
11803
|
};
|
|
@@ -10647,17 +11808,14 @@ export declare class CreateDIJobRequestTransformationRules extends $tea.Model {
|
|
|
10647
11808
|
[key: string]: any;
|
|
10648
11809
|
});
|
|
10649
11810
|
}
|
|
10650
|
-
export declare class
|
|
10651
|
-
|
|
10652
|
-
|
|
10653
|
-
* batch
|
|
10654
|
-
*/
|
|
10655
|
-
key?: string;
|
|
11811
|
+
export declare class GetAlertRuleResponseBodyAlertRuleTriggerCondition extends $tea.Model {
|
|
11812
|
+
extension?: GetAlertRuleResponseBodyAlertRuleTriggerConditionExtension;
|
|
11813
|
+
target?: GetAlertRuleResponseBodyAlertRuleTriggerConditionTarget;
|
|
10656
11814
|
/**
|
|
10657
11815
|
* @example
|
|
10658
|
-
*
|
|
11816
|
+
* Error
|
|
10659
11817
|
*/
|
|
10660
|
-
|
|
11818
|
+
type?: string;
|
|
10661
11819
|
static names(): {
|
|
10662
11820
|
[key: string]: string;
|
|
10663
11821
|
};
|
|
@@ -10668,22 +11826,29 @@ export declare class CreateProjectRequestAliyunResourceTags extends $tea.Model {
|
|
|
10668
11826
|
[key: string]: any;
|
|
10669
11827
|
});
|
|
10670
11828
|
}
|
|
10671
|
-
export declare class
|
|
11829
|
+
export declare class GetAlertRuleResponseBodyAlertRule extends $tea.Model {
|
|
10672
11830
|
/**
|
|
10673
11831
|
* @example
|
|
10674
|
-
*
|
|
11832
|
+
* true
|
|
10675
11833
|
*/
|
|
10676
|
-
|
|
11834
|
+
enabled?: boolean;
|
|
10677
11835
|
/**
|
|
10678
11836
|
* @example
|
|
10679
|
-
*
|
|
11837
|
+
* 16035
|
|
10680
11838
|
*/
|
|
10681
|
-
|
|
11839
|
+
id?: number;
|
|
10682
11840
|
/**
|
|
10683
11841
|
* @example
|
|
10684
|
-
*
|
|
11842
|
+
* error_rule
|
|
10685
11843
|
*/
|
|
10686
|
-
|
|
11844
|
+
name?: string;
|
|
11845
|
+
notification?: GetAlertRuleResponseBodyAlertRuleNotification;
|
|
11846
|
+
/**
|
|
11847
|
+
* @example
|
|
11848
|
+
* 279961421580845157
|
|
11849
|
+
*/
|
|
11850
|
+
owner?: string;
|
|
11851
|
+
triggerCondition?: GetAlertRuleResponseBodyAlertRuleTriggerCondition;
|
|
10687
11852
|
static names(): {
|
|
10688
11853
|
[key: string]: string;
|
|
10689
11854
|
};
|
|
@@ -11726,12 +12891,36 @@ export declare class GetProjectResponseBodyProject extends $tea.Model {
|
|
|
11726
12891
|
}
|
|
11727
12892
|
export declare class GetProjectMemberResponseBodyProjectMemberRoles extends $tea.Model {
|
|
11728
12893
|
/**
|
|
12894
|
+
* @remarks
|
|
12895
|
+
* The code of the role. Valid values:
|
|
12896
|
+
*
|
|
12897
|
+
* * role_project_admin: Workspace Administrator
|
|
12898
|
+
* * role_project_dev: Develop
|
|
12899
|
+
* * role_project_dg_admin: Data Governance Administrator
|
|
12900
|
+
* * role_project_guest: Visitor
|
|
12901
|
+
* * role_project_security: Security Administrator
|
|
12902
|
+
* * role_project_deploy: Deploy
|
|
12903
|
+
* * role_project_owner: Workspace Owner
|
|
12904
|
+
* * role_project_data_analyst: Data Analyst
|
|
12905
|
+
* * role_project_pe: O\\&M
|
|
12906
|
+
* * role_project_erd: Model Designer
|
|
12907
|
+
*
|
|
11729
12908
|
* @example
|
|
11730
12909
|
* role_project_guest
|
|
11731
12910
|
*/
|
|
11732
12911
|
code?: string;
|
|
12912
|
+
/**
|
|
12913
|
+
* @remarks
|
|
12914
|
+
* The name of the role.
|
|
12915
|
+
*/
|
|
11733
12916
|
name?: string;
|
|
11734
12917
|
/**
|
|
12918
|
+
* @remarks
|
|
12919
|
+
* The type of the role. Valid values:
|
|
12920
|
+
*
|
|
12921
|
+
* * UserCustom: custom role
|
|
12922
|
+
* * System: built-in role
|
|
12923
|
+
*
|
|
11735
12924
|
* @example
|
|
11736
12925
|
* System
|
|
11737
12926
|
*/
|
|
@@ -11748,17 +12937,33 @@ export declare class GetProjectMemberResponseBodyProjectMemberRoles extends $tea
|
|
|
11748
12937
|
}
|
|
11749
12938
|
export declare class GetProjectMemberResponseBodyProjectMember extends $tea.Model {
|
|
11750
12939
|
/**
|
|
12940
|
+
* @remarks
|
|
12941
|
+
* The DataWorks workspace ID.
|
|
12942
|
+
*
|
|
11751
12943
|
* @example
|
|
11752
12944
|
* 88757
|
|
11753
12945
|
*/
|
|
11754
12946
|
projectId?: number;
|
|
12947
|
+
/**
|
|
12948
|
+
* @remarks
|
|
12949
|
+
* The roles that are assigned to the member in the workspace.
|
|
12950
|
+
*/
|
|
11755
12951
|
roles?: GetProjectMemberResponseBodyProjectMemberRoles[];
|
|
11756
12952
|
/**
|
|
12953
|
+
* @remarks
|
|
12954
|
+
* The status of the member.
|
|
12955
|
+
*
|
|
12956
|
+
* * Normal
|
|
12957
|
+
* * Forbidden
|
|
12958
|
+
*
|
|
11757
12959
|
* @example
|
|
11758
12960
|
* Normal
|
|
11759
12961
|
*/
|
|
11760
12962
|
status?: string;
|
|
11761
12963
|
/**
|
|
12964
|
+
* @remarks
|
|
12965
|
+
* The ID of the account used by the member in the workspace.
|
|
12966
|
+
*
|
|
11762
12967
|
* @example
|
|
11763
12968
|
* 123422344899
|
|
11764
12969
|
*/
|
|
@@ -12012,11 +13217,8 @@ export declare class GetTaskResponseBodyTaskDependencies extends $tea.Model {
|
|
|
12012
13217
|
* Normal
|
|
12013
13218
|
*/
|
|
12014
13219
|
type?: string;
|
|
12015
|
-
|
|
12016
|
-
|
|
12017
|
-
* pre.odps_sql_demo_0
|
|
12018
|
-
*/
|
|
12019
|
-
upstream?: string;
|
|
13220
|
+
upstreamOutput?: string;
|
|
13221
|
+
upstreamTaskId?: string;
|
|
12020
13222
|
static names(): {
|
|
12021
13223
|
[key: string]: string;
|
|
12022
13224
|
};
|
|
@@ -12033,11 +13235,6 @@ export declare class GetTaskResponseBodyTaskInputsVariables extends $tea.Model {
|
|
|
12033
13235
|
* key1
|
|
12034
13236
|
*/
|
|
12035
13237
|
name?: string;
|
|
12036
|
-
/**
|
|
12037
|
-
* @example
|
|
12038
|
-
* TaskContext
|
|
12039
|
-
*/
|
|
12040
|
-
scope?: string;
|
|
12041
13238
|
/**
|
|
12042
13239
|
* @example
|
|
12043
13240
|
* Constant
|
|
@@ -12092,11 +13289,6 @@ export declare class GetTaskResponseBodyTaskOutputsVariables extends $tea.Model
|
|
|
12092
13289
|
* key1
|
|
12093
13290
|
*/
|
|
12094
13291
|
name?: string;
|
|
12095
|
-
/**
|
|
12096
|
-
* @example
|
|
12097
|
-
* TaskContext
|
|
12098
|
-
*/
|
|
12099
|
-
scope?: string;
|
|
12100
13292
|
/**
|
|
12101
13293
|
* @example
|
|
12102
13294
|
* Constant
|
|
@@ -12459,6 +13651,7 @@ export declare class GetTaskResponseBodyTask extends $tea.Model {
|
|
|
12459
13651
|
*/
|
|
12460
13652
|
id?: number;
|
|
12461
13653
|
inputs?: GetTaskResponseBodyTaskInputs;
|
|
13654
|
+
instanceMode?: string;
|
|
12462
13655
|
/**
|
|
12463
13656
|
* @example
|
|
12464
13657
|
* 1710239005403
|
|
@@ -12543,6 +13736,9 @@ export declare class GetTaskResponseBodyTask extends $tea.Model {
|
|
|
12543
13736
|
}
|
|
12544
13737
|
export declare class GetTaskInstanceResponseBodyTaskInstanceDataSource extends $tea.Model {
|
|
12545
13738
|
/**
|
|
13739
|
+
* @remarks
|
|
13740
|
+
* The name of the data source.
|
|
13741
|
+
*
|
|
12546
13742
|
* @example
|
|
12547
13743
|
* mysql_test
|
|
12548
13744
|
*/
|
|
@@ -12559,21 +13755,30 @@ export declare class GetTaskInstanceResponseBodyTaskInstanceDataSource extends $
|
|
|
12559
13755
|
}
|
|
12560
13756
|
export declare class GetTaskInstanceResponseBodyTaskInstanceInputsVariables extends $tea.Model {
|
|
12561
13757
|
/**
|
|
13758
|
+
* @remarks
|
|
13759
|
+
* The name of the variable.
|
|
13760
|
+
*
|
|
12562
13761
|
* @example
|
|
12563
13762
|
* Key1
|
|
12564
13763
|
*/
|
|
12565
13764
|
name?: string;
|
|
12566
13765
|
/**
|
|
12567
|
-
* @
|
|
12568
|
-
*
|
|
12569
|
-
|
|
12570
|
-
|
|
12571
|
-
|
|
13766
|
+
* @remarks
|
|
13767
|
+
* The type. Valid values:
|
|
13768
|
+
*
|
|
13769
|
+
* * Constant: constant
|
|
13770
|
+
* * PassThrough: node output
|
|
13771
|
+
* * System: variable
|
|
13772
|
+
* * NodeOutput: script output
|
|
13773
|
+
*
|
|
12572
13774
|
* @example
|
|
12573
13775
|
* Constant
|
|
12574
13776
|
*/
|
|
12575
13777
|
type?: string;
|
|
12576
13778
|
/**
|
|
13779
|
+
* @remarks
|
|
13780
|
+
* The value of the variable.
|
|
13781
|
+
*
|
|
12577
13782
|
* @example
|
|
12578
13783
|
* Value1
|
|
12579
13784
|
*/
|
|
@@ -12589,6 +13794,10 @@ export declare class GetTaskInstanceResponseBodyTaskInstanceInputsVariables exte
|
|
|
12589
13794
|
});
|
|
12590
13795
|
}
|
|
12591
13796
|
export declare class GetTaskInstanceResponseBodyTaskInstanceInputs extends $tea.Model {
|
|
13797
|
+
/**
|
|
13798
|
+
* @remarks
|
|
13799
|
+
* The variables.
|
|
13800
|
+
*/
|
|
12592
13801
|
variables?: GetTaskInstanceResponseBodyTaskInstanceInputsVariables[];
|
|
12593
13802
|
static names(): {
|
|
12594
13803
|
[key: string]: string;
|
|
@@ -12602,6 +13811,9 @@ export declare class GetTaskInstanceResponseBodyTaskInstanceInputs extends $tea.
|
|
|
12602
13811
|
}
|
|
12603
13812
|
export declare class GetTaskInstanceResponseBodyTaskInstanceOutputsTaskOutputs extends $tea.Model {
|
|
12604
13813
|
/**
|
|
13814
|
+
* @remarks
|
|
13815
|
+
* The output identifier.
|
|
13816
|
+
*
|
|
12605
13817
|
* @example
|
|
12606
13818
|
* pre.odps_sql_demo_0
|
|
12607
13819
|
*/
|
|
@@ -12618,21 +13830,30 @@ export declare class GetTaskInstanceResponseBodyTaskInstanceOutputsTaskOutputs e
|
|
|
12618
13830
|
}
|
|
12619
13831
|
export declare class GetTaskInstanceResponseBodyTaskInstanceOutputsVariables extends $tea.Model {
|
|
12620
13832
|
/**
|
|
13833
|
+
* @remarks
|
|
13834
|
+
* The name of the variable.
|
|
13835
|
+
*
|
|
12621
13836
|
* @example
|
|
12622
13837
|
* key1
|
|
12623
13838
|
*/
|
|
12624
13839
|
name?: string;
|
|
12625
13840
|
/**
|
|
12626
|
-
* @
|
|
12627
|
-
*
|
|
12628
|
-
|
|
12629
|
-
|
|
12630
|
-
|
|
13841
|
+
* @remarks
|
|
13842
|
+
* The type. Valid values:
|
|
13843
|
+
*
|
|
13844
|
+
* * Constant: constant
|
|
13845
|
+
* * PassThrough: node output
|
|
13846
|
+
* * System: variable
|
|
13847
|
+
* * NodeOutput: script output
|
|
13848
|
+
*
|
|
12631
13849
|
* @example
|
|
12632
13850
|
* Constant
|
|
12633
13851
|
*/
|
|
12634
13852
|
type?: string;
|
|
12635
13853
|
/**
|
|
13854
|
+
* @remarks
|
|
13855
|
+
* The value of the variable.
|
|
13856
|
+
*
|
|
12636
13857
|
* @example
|
|
12637
13858
|
* value1
|
|
12638
13859
|
*/
|
|
@@ -12648,7 +13869,15 @@ export declare class GetTaskInstanceResponseBodyTaskInstanceOutputsVariables ext
|
|
|
12648
13869
|
});
|
|
12649
13870
|
}
|
|
12650
13871
|
export declare class GetTaskInstanceResponseBodyTaskInstanceOutputs extends $tea.Model {
|
|
13872
|
+
/**
|
|
13873
|
+
* @remarks
|
|
13874
|
+
* The task outputs.
|
|
13875
|
+
*/
|
|
12651
13876
|
taskOutputs?: GetTaskInstanceResponseBodyTaskInstanceOutputsTaskOutputs[];
|
|
13877
|
+
/**
|
|
13878
|
+
* @remarks
|
|
13879
|
+
* The variables.
|
|
13880
|
+
*/
|
|
12652
13881
|
variables?: GetTaskInstanceResponseBodyTaskInstanceOutputsVariables[];
|
|
12653
13882
|
static names(): {
|
|
12654
13883
|
[key: string]: string;
|
|
@@ -12662,11 +13891,17 @@ export declare class GetTaskInstanceResponseBodyTaskInstanceOutputs extends $tea
|
|
|
12662
13891
|
}
|
|
12663
13892
|
export declare class GetTaskInstanceResponseBodyTaskInstanceRuntime extends $tea.Model {
|
|
12664
13893
|
/**
|
|
13894
|
+
* @remarks
|
|
13895
|
+
* The host for running.
|
|
13896
|
+
*
|
|
12665
13897
|
* @example
|
|
12666
13898
|
* cn-shanghai.1.2
|
|
12667
13899
|
*/
|
|
12668
13900
|
gateway?: string;
|
|
12669
13901
|
/**
|
|
13902
|
+
* @remarks
|
|
13903
|
+
* The instance run ID.
|
|
13904
|
+
*
|
|
12670
13905
|
* @example
|
|
12671
13906
|
* T3_123
|
|
12672
13907
|
*/
|
|
@@ -12683,16 +13918,25 @@ export declare class GetTaskInstanceResponseBodyTaskInstanceRuntime extends $tea
|
|
|
12683
13918
|
}
|
|
12684
13919
|
export declare class GetTaskInstanceResponseBodyTaskInstanceRuntimeResource extends $tea.Model {
|
|
12685
13920
|
/**
|
|
13921
|
+
* @remarks
|
|
13922
|
+
* The default number of CUs configured for task running.
|
|
13923
|
+
*
|
|
12686
13924
|
* @example
|
|
12687
13925
|
* 0.25
|
|
12688
13926
|
*/
|
|
12689
13927
|
cu?: string;
|
|
12690
13928
|
/**
|
|
13929
|
+
* @remarks
|
|
13930
|
+
* The ID of the image configured for task running.
|
|
13931
|
+
*
|
|
12691
13932
|
* @example
|
|
12692
13933
|
* i-xxxxxx
|
|
12693
13934
|
*/
|
|
12694
13935
|
image?: string;
|
|
12695
13936
|
/**
|
|
13937
|
+
* @remarks
|
|
13938
|
+
* The ID of the resource group for scheduling configured for task running.
|
|
13939
|
+
*
|
|
12696
13940
|
* @example
|
|
12697
13941
|
* S_res_group_524258031846018_1684XXXXXXXXX
|
|
12698
13942
|
*/
|
|
@@ -12709,11 +13953,17 @@ export declare class GetTaskInstanceResponseBodyTaskInstanceRuntimeResource exte
|
|
|
12709
13953
|
}
|
|
12710
13954
|
export declare class GetTaskInstanceResponseBodyTaskInstanceScript extends $tea.Model {
|
|
12711
13955
|
/**
|
|
13956
|
+
* @remarks
|
|
13957
|
+
* The script content.
|
|
13958
|
+
*
|
|
12712
13959
|
* @example
|
|
12713
13960
|
* echo "helloWorld"
|
|
12714
13961
|
*/
|
|
12715
13962
|
content?: string;
|
|
12716
13963
|
/**
|
|
13964
|
+
* @remarks
|
|
13965
|
+
* The script parameters.
|
|
13966
|
+
*
|
|
12717
13967
|
* @example
|
|
12718
13968
|
* para1=$bizdate
|
|
12719
13969
|
*/
|
|
@@ -12730,11 +13980,17 @@ export declare class GetTaskInstanceResponseBodyTaskInstanceScript extends $tea.
|
|
|
12730
13980
|
}
|
|
12731
13981
|
export declare class GetTaskInstanceResponseBodyTaskInstanceTags extends $tea.Model {
|
|
12732
13982
|
/**
|
|
13983
|
+
* @remarks
|
|
13984
|
+
* The tag key.
|
|
13985
|
+
*
|
|
12733
13986
|
* @example
|
|
12734
13987
|
* key1
|
|
12735
13988
|
*/
|
|
12736
13989
|
key?: string;
|
|
12737
13990
|
/**
|
|
13991
|
+
* @remarks
|
|
13992
|
+
* The tag value.
|
|
13993
|
+
*
|
|
12738
13994
|
* @example
|
|
12739
13995
|
* value1
|
|
12740
13996
|
*/
|
|
@@ -12751,148 +14007,296 @@ export declare class GetTaskInstanceResponseBodyTaskInstanceTags extends $tea.Mo
|
|
|
12751
14007
|
}
|
|
12752
14008
|
export declare class GetTaskInstanceResponseBodyTaskInstance extends $tea.Model {
|
|
12753
14009
|
/**
|
|
14010
|
+
* @remarks
|
|
14011
|
+
* The baseline ID.
|
|
14012
|
+
*
|
|
12754
14013
|
* @example
|
|
12755
14014
|
* 1234
|
|
12756
14015
|
*/
|
|
12757
14016
|
baselineId?: number;
|
|
12758
14017
|
/**
|
|
14018
|
+
* @remarks
|
|
14019
|
+
* The data timestamp.
|
|
14020
|
+
*
|
|
12759
14021
|
* @example
|
|
12760
14022
|
* 1710239005403
|
|
12761
14023
|
*/
|
|
12762
14024
|
bizdate?: number;
|
|
12763
14025
|
/**
|
|
14026
|
+
* @remarks
|
|
14027
|
+
* The creation time.
|
|
14028
|
+
*
|
|
12764
14029
|
* @example
|
|
12765
14030
|
* 1710239005403
|
|
12766
14031
|
*/
|
|
12767
14032
|
createTime?: number;
|
|
12768
14033
|
/**
|
|
14034
|
+
* @remarks
|
|
14035
|
+
* The account ID of the creator.
|
|
14036
|
+
*
|
|
12769
14037
|
* @example
|
|
12770
14038
|
* 1000
|
|
12771
14039
|
*/
|
|
12772
14040
|
createUser?: string;
|
|
14041
|
+
/**
|
|
14042
|
+
* @remarks
|
|
14043
|
+
* The information about the associated data source.
|
|
14044
|
+
*/
|
|
12773
14045
|
dataSource?: GetTaskInstanceResponseBodyTaskInstanceDataSource;
|
|
12774
14046
|
/**
|
|
14047
|
+
* @remarks
|
|
14048
|
+
* The description.
|
|
14049
|
+
*
|
|
12775
14050
|
* @example
|
|
12776
14051
|
* test
|
|
12777
14052
|
*/
|
|
12778
14053
|
description?: string;
|
|
12779
14054
|
/**
|
|
14055
|
+
* @remarks
|
|
14056
|
+
* The time when the instance finished running.
|
|
14057
|
+
*
|
|
12780
14058
|
* @example
|
|
12781
14059
|
* 1710239005403
|
|
12782
14060
|
*/
|
|
12783
14061
|
finishedTime?: number;
|
|
12784
14062
|
/**
|
|
14063
|
+
* @remarks
|
|
14064
|
+
* The instance ID.
|
|
14065
|
+
*
|
|
12785
14066
|
* @example
|
|
12786
14067
|
* 1234
|
|
12787
14068
|
*/
|
|
12788
14069
|
id?: number;
|
|
14070
|
+
/**
|
|
14071
|
+
* @remarks
|
|
14072
|
+
* The input information.
|
|
14073
|
+
*/
|
|
12789
14074
|
inputs?: GetTaskInstanceResponseBodyTaskInstanceInputs;
|
|
12790
14075
|
/**
|
|
14076
|
+
* @remarks
|
|
14077
|
+
* The modification time.
|
|
14078
|
+
*
|
|
12791
14079
|
* @example
|
|
12792
14080
|
* 1710239005403
|
|
12793
14081
|
*/
|
|
12794
14082
|
modifyTime?: number;
|
|
12795
14083
|
/**
|
|
14084
|
+
* @remarks
|
|
14085
|
+
* The account ID of the modifier.
|
|
14086
|
+
*
|
|
12796
14087
|
* @example
|
|
12797
14088
|
* 1000
|
|
12798
14089
|
*/
|
|
12799
14090
|
modifyUser?: string;
|
|
14091
|
+
/**
|
|
14092
|
+
* @remarks
|
|
14093
|
+
* The output information.
|
|
14094
|
+
*/
|
|
12800
14095
|
outputs?: GetTaskInstanceResponseBodyTaskInstanceOutputs;
|
|
12801
14096
|
/**
|
|
14097
|
+
* @remarks
|
|
14098
|
+
* The account ID of the task owner.
|
|
14099
|
+
*
|
|
12802
14100
|
* @example
|
|
12803
14101
|
* 1000
|
|
12804
14102
|
*/
|
|
12805
14103
|
owner?: string;
|
|
14104
|
+
periodNumber?: number;
|
|
12806
14105
|
/**
|
|
14106
|
+
* @remarks
|
|
14107
|
+
* The task priority. Valid values: 1 to 8. A larger value indicates a higher priority. Default value: 1.
|
|
14108
|
+
*
|
|
12807
14109
|
* @example
|
|
12808
14110
|
* 1
|
|
12809
14111
|
*/
|
|
12810
14112
|
priority?: number;
|
|
12811
14113
|
/**
|
|
14114
|
+
* @remarks
|
|
14115
|
+
* The environment of the workspace. Valid values:
|
|
14116
|
+
*
|
|
14117
|
+
* * Prod: production environment
|
|
14118
|
+
* * Dev: development environment
|
|
14119
|
+
*
|
|
12812
14120
|
* @example
|
|
12813
14121
|
* Prod
|
|
12814
14122
|
*/
|
|
12815
14123
|
projectEnv?: string;
|
|
12816
14124
|
/**
|
|
14125
|
+
* @remarks
|
|
14126
|
+
* The workspace ID.
|
|
14127
|
+
*
|
|
12817
14128
|
* @example
|
|
12818
14129
|
* 100
|
|
12819
14130
|
*/
|
|
12820
14131
|
projectId?: number;
|
|
12821
14132
|
/**
|
|
14133
|
+
* @remarks
|
|
14134
|
+
* The rerun mode. Valid values:
|
|
14135
|
+
*
|
|
14136
|
+
* * AllDenied: The task cannot be rerun regardless of whether the task is successfully run or fails to run.
|
|
14137
|
+
* * AllAllowed: The task can be rerun regardless of whether the task is successfully run or fails to run.
|
|
14138
|
+
* * FailureAllowed: The task can be rerun only after it fails to run.
|
|
14139
|
+
*
|
|
12822
14140
|
* @example
|
|
12823
14141
|
* AllAllowed
|
|
12824
14142
|
*/
|
|
12825
14143
|
rerunMode?: string;
|
|
12826
14144
|
/**
|
|
14145
|
+
* @remarks
|
|
14146
|
+
* The number of times the instance is run. By default, the value starts from 1.
|
|
14147
|
+
*
|
|
12827
14148
|
* @example
|
|
12828
14149
|
* 1
|
|
12829
14150
|
*/
|
|
12830
14151
|
runNumber?: number;
|
|
14152
|
+
/**
|
|
14153
|
+
* @remarks
|
|
14154
|
+
* The runtime information about the instance.
|
|
14155
|
+
*/
|
|
12831
14156
|
runtime?: GetTaskInstanceResponseBodyTaskInstanceRuntime;
|
|
14157
|
+
/**
|
|
14158
|
+
* @remarks
|
|
14159
|
+
* The information about the resource group with which the instance is associated.
|
|
14160
|
+
*/
|
|
12832
14161
|
runtimeResource?: GetTaskInstanceResponseBodyTaskInstanceRuntimeResource;
|
|
14162
|
+
/**
|
|
14163
|
+
* @remarks
|
|
14164
|
+
* The script information.
|
|
14165
|
+
*/
|
|
12833
14166
|
script?: GetTaskInstanceResponseBodyTaskInstanceScript;
|
|
12834
14167
|
/**
|
|
14168
|
+
* @remarks
|
|
14169
|
+
* The time when the instance started to run.
|
|
14170
|
+
*
|
|
12835
14171
|
* @example
|
|
12836
14172
|
* 1710239005403
|
|
12837
14173
|
*/
|
|
12838
14174
|
startedTime?: number;
|
|
12839
14175
|
/**
|
|
14176
|
+
* @remarks
|
|
14177
|
+
* The status of the instance. Valid values:
|
|
14178
|
+
*
|
|
14179
|
+
* * NotRun: The instance is not run.
|
|
14180
|
+
* * Running: The instance is running.
|
|
14181
|
+
* * WaitTime: The instance is waiting for the scheduling time to arrive.
|
|
14182
|
+
* * CheckingCondition: Branch conditions are being checked for the instance.
|
|
14183
|
+
* * WaitResource: The instance is waiting for resources.
|
|
14184
|
+
* * Failure: The instance fails to be run.
|
|
14185
|
+
* * Success: The instance is successfully run.
|
|
14186
|
+
* * Checking: Data quality is being checked for the instance.
|
|
14187
|
+
*
|
|
12840
14188
|
* @example
|
|
12841
14189
|
* Success
|
|
12842
14190
|
*/
|
|
12843
14191
|
status?: string;
|
|
14192
|
+
/**
|
|
14193
|
+
* @remarks
|
|
14194
|
+
* The tags of the task.
|
|
14195
|
+
*/
|
|
12844
14196
|
tags?: GetTaskInstanceResponseBodyTaskInstanceTags[];
|
|
12845
14197
|
/**
|
|
14198
|
+
* @remarks
|
|
14199
|
+
* The ID of the task for which the instance is generated.
|
|
14200
|
+
*
|
|
12846
14201
|
* @example
|
|
12847
14202
|
* 1234
|
|
12848
14203
|
*/
|
|
12849
14204
|
taskId?: number;
|
|
14205
|
+
/**
|
|
14206
|
+
* @remarks
|
|
14207
|
+
* The name of the task for which the instance is generated.
|
|
14208
|
+
*/
|
|
12850
14209
|
taskName?: string;
|
|
12851
14210
|
/**
|
|
14211
|
+
* @remarks
|
|
14212
|
+
* The type of the task for which the instance is generated.
|
|
14213
|
+
*
|
|
12852
14214
|
* @example
|
|
12853
14215
|
* ODPS_SQL
|
|
12854
14216
|
*/
|
|
12855
14217
|
taskType?: string;
|
|
12856
14218
|
/**
|
|
14219
|
+
* @remarks
|
|
14220
|
+
* The tenant ID.
|
|
14221
|
+
*
|
|
12857
14222
|
* @example
|
|
12858
14223
|
* 1
|
|
12859
14224
|
*/
|
|
12860
14225
|
tenantId?: number;
|
|
12861
14226
|
/**
|
|
14227
|
+
* @remarks
|
|
14228
|
+
* The timeout period of task running. Unit: seconds.
|
|
14229
|
+
*
|
|
12862
14230
|
* @example
|
|
12863
14231
|
* 1
|
|
12864
14232
|
*/
|
|
12865
14233
|
timeout?: number;
|
|
12866
14234
|
/**
|
|
14235
|
+
* @remarks
|
|
14236
|
+
* The running mode of the instance after it is triggered. This parameter takes effect only if the TriggerType parameter is set to Scheduler. Valid values:
|
|
14237
|
+
*
|
|
14238
|
+
* * Pause
|
|
14239
|
+
* * Skip
|
|
14240
|
+
* * Normal
|
|
14241
|
+
*
|
|
12867
14242
|
* @example
|
|
12868
14243
|
* Normal
|
|
12869
14244
|
*/
|
|
12870
14245
|
triggerRecurrence?: string;
|
|
12871
14246
|
/**
|
|
14247
|
+
* @remarks
|
|
14248
|
+
* The scheduling time.
|
|
14249
|
+
*
|
|
12872
14250
|
* @example
|
|
12873
14251
|
* 1710239005403
|
|
12874
14252
|
*/
|
|
12875
14253
|
triggerTime?: number;
|
|
12876
14254
|
/**
|
|
14255
|
+
* @remarks
|
|
14256
|
+
* The method to trigger instance scheduling. The value of the Trigger.Type parameter in the response of the GetTask operation is used. Valid values:
|
|
14257
|
+
*
|
|
14258
|
+
* * Scheduler
|
|
14259
|
+
* * Manual
|
|
14260
|
+
*
|
|
12877
14261
|
* @example
|
|
12878
14262
|
* Scheduler
|
|
12879
14263
|
*/
|
|
12880
14264
|
triggerType?: string;
|
|
12881
14265
|
/**
|
|
14266
|
+
* @remarks
|
|
14267
|
+
* The ID of the workflow to which the instance belongs.
|
|
14268
|
+
*
|
|
12882
14269
|
* @example
|
|
12883
14270
|
* 1234
|
|
12884
14271
|
*/
|
|
12885
14272
|
workflowId?: number;
|
|
12886
14273
|
/**
|
|
14274
|
+
* @remarks
|
|
14275
|
+
* The workflow instance ID.
|
|
14276
|
+
*
|
|
12887
14277
|
* @example
|
|
12888
14278
|
* 1234
|
|
12889
14279
|
*/
|
|
12890
14280
|
workflowInstanceId?: number;
|
|
12891
14281
|
/**
|
|
14282
|
+
* @remarks
|
|
14283
|
+
* The type of the workflow instance. Valid values:
|
|
14284
|
+
*
|
|
14285
|
+
* * SmokeTest
|
|
14286
|
+
* * SupplementData
|
|
14287
|
+
* * Manual
|
|
14288
|
+
* * ManualWorkflow
|
|
14289
|
+
* * Normal
|
|
14290
|
+
* * ManualFlow
|
|
14291
|
+
*
|
|
12892
14292
|
* @example
|
|
12893
14293
|
* Normal
|
|
12894
14294
|
*/
|
|
12895
14295
|
workflowInstanceType?: string;
|
|
14296
|
+
/**
|
|
14297
|
+
* @remarks
|
|
14298
|
+
* The name of the workflow to which the instance belongs.
|
|
14299
|
+
*/
|
|
12896
14300
|
workflowName?: string;
|
|
12897
14301
|
static names(): {
|
|
12898
14302
|
[key: string]: string;
|
|
@@ -13016,6 +14420,254 @@ export declare class ImportWorkflowDefinitionResponseBodyAsyncJob extends $tea.M
|
|
|
13016
14420
|
[key: string]: any;
|
|
13017
14421
|
});
|
|
13018
14422
|
}
|
|
14423
|
+
export declare class ListAlertRulesResponseBodyPagingInfoAlertRulesTriggerConditionExtensionCycleUnfinishedCycleAndTime extends $tea.Model {
|
|
14424
|
+
/**
|
|
14425
|
+
* @example
|
|
14426
|
+
* 1
|
|
14427
|
+
*/
|
|
14428
|
+
cycleId?: number;
|
|
14429
|
+
/**
|
|
14430
|
+
* @example
|
|
14431
|
+
* 01:00
|
|
14432
|
+
*/
|
|
14433
|
+
time?: string;
|
|
14434
|
+
static names(): {
|
|
14435
|
+
[key: string]: string;
|
|
14436
|
+
};
|
|
14437
|
+
static types(): {
|
|
14438
|
+
[key: string]: any;
|
|
14439
|
+
};
|
|
14440
|
+
constructor(map?: {
|
|
14441
|
+
[key: string]: any;
|
|
14442
|
+
});
|
|
14443
|
+
}
|
|
14444
|
+
export declare class ListAlertRulesResponseBodyPagingInfoAlertRulesTriggerConditionExtensionCycleUnfinished extends $tea.Model {
|
|
14445
|
+
cycleAndTime?: ListAlertRulesResponseBodyPagingInfoAlertRulesTriggerConditionExtensionCycleUnfinishedCycleAndTime[];
|
|
14446
|
+
static names(): {
|
|
14447
|
+
[key: string]: string;
|
|
14448
|
+
};
|
|
14449
|
+
static types(): {
|
|
14450
|
+
[key: string]: any;
|
|
14451
|
+
};
|
|
14452
|
+
constructor(map?: {
|
|
14453
|
+
[key: string]: any;
|
|
14454
|
+
});
|
|
14455
|
+
}
|
|
14456
|
+
export declare class ListAlertRulesResponseBodyPagingInfoAlertRulesTriggerConditionExtensionError extends $tea.Model {
|
|
14457
|
+
/**
|
|
14458
|
+
* @example
|
|
14459
|
+
* false
|
|
14460
|
+
*/
|
|
14461
|
+
autoRerunAlert?: boolean;
|
|
14462
|
+
streamTaskIds?: number[];
|
|
14463
|
+
static names(): {
|
|
14464
|
+
[key: string]: string;
|
|
14465
|
+
};
|
|
14466
|
+
static types(): {
|
|
14467
|
+
[key: string]: any;
|
|
14468
|
+
};
|
|
14469
|
+
constructor(map?: {
|
|
14470
|
+
[key: string]: any;
|
|
14471
|
+
});
|
|
14472
|
+
}
|
|
14473
|
+
export declare class ListAlertRulesResponseBodyPagingInfoAlertRulesTriggerConditionExtensionInstanceErrorCount extends $tea.Model {
|
|
14474
|
+
/**
|
|
14475
|
+
* @example
|
|
14476
|
+
* 10
|
|
14477
|
+
*/
|
|
14478
|
+
count?: number;
|
|
14479
|
+
static names(): {
|
|
14480
|
+
[key: string]: string;
|
|
14481
|
+
};
|
|
14482
|
+
static types(): {
|
|
14483
|
+
[key: string]: any;
|
|
14484
|
+
};
|
|
14485
|
+
constructor(map?: {
|
|
14486
|
+
[key: string]: any;
|
|
14487
|
+
});
|
|
14488
|
+
}
|
|
14489
|
+
export declare class ListAlertRulesResponseBodyPagingInfoAlertRulesTriggerConditionExtensionInstanceErrorPercentage extends $tea.Model {
|
|
14490
|
+
/**
|
|
14491
|
+
* @example
|
|
14492
|
+
* 10
|
|
14493
|
+
*/
|
|
14494
|
+
percentage?: number;
|
|
14495
|
+
static names(): {
|
|
14496
|
+
[key: string]: string;
|
|
14497
|
+
};
|
|
14498
|
+
static types(): {
|
|
14499
|
+
[key: string]: any;
|
|
14500
|
+
};
|
|
14501
|
+
constructor(map?: {
|
|
14502
|
+
[key: string]: any;
|
|
14503
|
+
});
|
|
14504
|
+
}
|
|
14505
|
+
export declare class ListAlertRulesResponseBodyPagingInfoAlertRulesTriggerConditionExtensionInstanceTransferFluctuate extends $tea.Model {
|
|
14506
|
+
/**
|
|
14507
|
+
* @example
|
|
14508
|
+
* 10
|
|
14509
|
+
*/
|
|
14510
|
+
percentage?: number;
|
|
14511
|
+
/**
|
|
14512
|
+
* @example
|
|
14513
|
+
* abs
|
|
14514
|
+
*/
|
|
14515
|
+
trend?: string;
|
|
14516
|
+
static names(): {
|
|
14517
|
+
[key: string]: string;
|
|
14518
|
+
};
|
|
14519
|
+
static types(): {
|
|
14520
|
+
[key: string]: any;
|
|
14521
|
+
};
|
|
14522
|
+
constructor(map?: {
|
|
14523
|
+
[key: string]: any;
|
|
14524
|
+
});
|
|
14525
|
+
}
|
|
14526
|
+
export declare class ListAlertRulesResponseBodyPagingInfoAlertRulesTriggerConditionExtensionTimeout extends $tea.Model {
|
|
14527
|
+
/**
|
|
14528
|
+
* @example
|
|
14529
|
+
* 10
|
|
14530
|
+
*/
|
|
14531
|
+
timeoutInMinutes?: number;
|
|
14532
|
+
static names(): {
|
|
14533
|
+
[key: string]: string;
|
|
14534
|
+
};
|
|
14535
|
+
static types(): {
|
|
14536
|
+
[key: string]: any;
|
|
14537
|
+
};
|
|
14538
|
+
constructor(map?: {
|
|
14539
|
+
[key: string]: any;
|
|
14540
|
+
});
|
|
14541
|
+
}
|
|
14542
|
+
export declare class ListAlertRulesResponseBodyPagingInfoAlertRulesTriggerConditionExtensionUnFinished extends $tea.Model {
|
|
14543
|
+
/**
|
|
14544
|
+
* @example
|
|
14545
|
+
* 12:00
|
|
14546
|
+
*/
|
|
14547
|
+
unFinishedTime?: string;
|
|
14548
|
+
static names(): {
|
|
14549
|
+
[key: string]: string;
|
|
14550
|
+
};
|
|
14551
|
+
static types(): {
|
|
14552
|
+
[key: string]: any;
|
|
14553
|
+
};
|
|
14554
|
+
constructor(map?: {
|
|
14555
|
+
[key: string]: any;
|
|
14556
|
+
});
|
|
14557
|
+
}
|
|
14558
|
+
export declare class ListAlertRulesResponseBodyPagingInfoAlertRulesTriggerConditionExtension extends $tea.Model {
|
|
14559
|
+
cycleUnfinished?: ListAlertRulesResponseBodyPagingInfoAlertRulesTriggerConditionExtensionCycleUnfinished;
|
|
14560
|
+
error?: ListAlertRulesResponseBodyPagingInfoAlertRulesTriggerConditionExtensionError;
|
|
14561
|
+
instanceErrorCount?: ListAlertRulesResponseBodyPagingInfoAlertRulesTriggerConditionExtensionInstanceErrorCount;
|
|
14562
|
+
instanceErrorPercentage?: ListAlertRulesResponseBodyPagingInfoAlertRulesTriggerConditionExtensionInstanceErrorPercentage;
|
|
14563
|
+
instanceTransferFluctuate?: ListAlertRulesResponseBodyPagingInfoAlertRulesTriggerConditionExtensionInstanceTransferFluctuate;
|
|
14564
|
+
timeout?: ListAlertRulesResponseBodyPagingInfoAlertRulesTriggerConditionExtensionTimeout;
|
|
14565
|
+
unFinished?: ListAlertRulesResponseBodyPagingInfoAlertRulesTriggerConditionExtensionUnFinished;
|
|
14566
|
+
static names(): {
|
|
14567
|
+
[key: string]: string;
|
|
14568
|
+
};
|
|
14569
|
+
static types(): {
|
|
14570
|
+
[key: string]: any;
|
|
14571
|
+
};
|
|
14572
|
+
constructor(map?: {
|
|
14573
|
+
[key: string]: any;
|
|
14574
|
+
});
|
|
14575
|
+
}
|
|
14576
|
+
export declare class ListAlertRulesResponseBodyPagingInfoAlertRulesTriggerConditionTarget extends $tea.Model {
|
|
14577
|
+
allowTasks?: number[];
|
|
14578
|
+
ids?: number[];
|
|
14579
|
+
/**
|
|
14580
|
+
* @example
|
|
14581
|
+
* Task
|
|
14582
|
+
*/
|
|
14583
|
+
type?: string;
|
|
14584
|
+
static names(): {
|
|
14585
|
+
[key: string]: string;
|
|
14586
|
+
};
|
|
14587
|
+
static types(): {
|
|
14588
|
+
[key: string]: any;
|
|
14589
|
+
};
|
|
14590
|
+
constructor(map?: {
|
|
14591
|
+
[key: string]: any;
|
|
14592
|
+
});
|
|
14593
|
+
}
|
|
14594
|
+
export declare class ListAlertRulesResponseBodyPagingInfoAlertRulesTriggerCondition extends $tea.Model {
|
|
14595
|
+
extension?: ListAlertRulesResponseBodyPagingInfoAlertRulesTriggerConditionExtension;
|
|
14596
|
+
target?: ListAlertRulesResponseBodyPagingInfoAlertRulesTriggerConditionTarget;
|
|
14597
|
+
/**
|
|
14598
|
+
* @example
|
|
14599
|
+
* Error
|
|
14600
|
+
*/
|
|
14601
|
+
type?: string;
|
|
14602
|
+
static names(): {
|
|
14603
|
+
[key: string]: string;
|
|
14604
|
+
};
|
|
14605
|
+
static types(): {
|
|
14606
|
+
[key: string]: any;
|
|
14607
|
+
};
|
|
14608
|
+
constructor(map?: {
|
|
14609
|
+
[key: string]: any;
|
|
14610
|
+
});
|
|
14611
|
+
}
|
|
14612
|
+
export declare class ListAlertRulesResponseBodyPagingInfoAlertRules extends $tea.Model {
|
|
14613
|
+
/**
|
|
14614
|
+
* @example
|
|
14615
|
+
* true
|
|
14616
|
+
*/
|
|
14617
|
+
enabled?: boolean;
|
|
14618
|
+
/**
|
|
14619
|
+
* @example
|
|
14620
|
+
* 22125
|
|
14621
|
+
*/
|
|
14622
|
+
id?: number;
|
|
14623
|
+
/**
|
|
14624
|
+
* @example
|
|
14625
|
+
* error_test
|
|
14626
|
+
*/
|
|
14627
|
+
name?: string;
|
|
14628
|
+
/**
|
|
14629
|
+
* @example
|
|
14630
|
+
* 1933790683****
|
|
14631
|
+
*/
|
|
14632
|
+
owner?: string;
|
|
14633
|
+
triggerCondition?: ListAlertRulesResponseBodyPagingInfoAlertRulesTriggerCondition;
|
|
14634
|
+
static names(): {
|
|
14635
|
+
[key: string]: string;
|
|
14636
|
+
};
|
|
14637
|
+
static types(): {
|
|
14638
|
+
[key: string]: any;
|
|
14639
|
+
};
|
|
14640
|
+
constructor(map?: {
|
|
14641
|
+
[key: string]: any;
|
|
14642
|
+
});
|
|
14643
|
+
}
|
|
14644
|
+
export declare class ListAlertRulesResponseBodyPagingInfo extends $tea.Model {
|
|
14645
|
+
alertRules?: ListAlertRulesResponseBodyPagingInfoAlertRules[];
|
|
14646
|
+
/**
|
|
14647
|
+
* @example
|
|
14648
|
+
* 1
|
|
14649
|
+
*/
|
|
14650
|
+
pageNumber?: number;
|
|
14651
|
+
/**
|
|
14652
|
+
* @example
|
|
14653
|
+
* 10
|
|
14654
|
+
*/
|
|
14655
|
+
pageSize?: number;
|
|
14656
|
+
/**
|
|
14657
|
+
* @example
|
|
14658
|
+
* 5
|
|
14659
|
+
*/
|
|
14660
|
+
totalCount?: number;
|
|
14661
|
+
static names(): {
|
|
14662
|
+
[key: string]: string;
|
|
14663
|
+
};
|
|
14664
|
+
static types(): {
|
|
14665
|
+
[key: string]: any;
|
|
14666
|
+
};
|
|
14667
|
+
constructor(map?: {
|
|
14668
|
+
[key: string]: any;
|
|
14669
|
+
});
|
|
14670
|
+
}
|
|
13019
14671
|
export declare class ListDIAlarmRulesResponseBodyPagingInfoDIJobAlarmRulesNotificationSettingsNotificationChannels extends $tea.Model {
|
|
13020
14672
|
channels?: string[];
|
|
13021
14673
|
/**
|
|
@@ -13562,7 +15214,7 @@ export declare class ListDIJobsResponseBodyPagingInfo extends $tea.Model {
|
|
|
13562
15214
|
export declare class ListDataQualityEvaluationTaskInstancesResponseBodyPagingInfoDataQualityEvaluationTaskInstancesTaskHooks extends $tea.Model {
|
|
13563
15215
|
/**
|
|
13564
15216
|
* @remarks
|
|
13565
|
-
*
|
|
15217
|
+
* The trigger configuration of the callback event.
|
|
13566
15218
|
*
|
|
13567
15219
|
* @example
|
|
13568
15220
|
* ${severity} == "High" AND ${status} == "Critical"
|
|
@@ -13570,7 +15222,9 @@ export declare class ListDataQualityEvaluationTaskInstancesResponseBodyPagingInf
|
|
|
13570
15222
|
condition?: string;
|
|
13571
15223
|
/**
|
|
13572
15224
|
* @remarks
|
|
13573
|
-
*
|
|
15225
|
+
* The type of the callback event.
|
|
15226
|
+
*
|
|
15227
|
+
* * Valid values: BlockTaskInstance. The value indicates that an auto triggered node is blocked.
|
|
13574
15228
|
*
|
|
13575
15229
|
* @example
|
|
13576
15230
|
* BlockTaskInstance
|
|
@@ -13589,7 +15243,7 @@ export declare class ListDataQualityEvaluationTaskInstancesResponseBodyPagingInf
|
|
|
13589
15243
|
export declare class ListDataQualityEvaluationTaskInstancesResponseBodyPagingInfoDataQualityEvaluationTaskInstancesTaskNotificationsNotificationsNofiticationReceivers extends $tea.Model {
|
|
13590
15244
|
/**
|
|
13591
15245
|
* @remarks
|
|
13592
|
-
*
|
|
15246
|
+
* The extended information in the JSON format. For example, the DingTalk chatbot can remind all members in a DingTalk group by using the at sign (@).
|
|
13593
15247
|
*
|
|
13594
15248
|
* @example
|
|
13595
15249
|
* {"atAll":"true"}
|
|
@@ -13597,7 +15251,13 @@ export declare class ListDataQualityEvaluationTaskInstancesResponseBodyPagingInf
|
|
|
13597
15251
|
extension?: string;
|
|
13598
15252
|
/**
|
|
13599
15253
|
* @remarks
|
|
13600
|
-
*
|
|
15254
|
+
* The type of the alert recipient. Valid values:
|
|
15255
|
+
*
|
|
15256
|
+
* * AliUid: Alibaba Cloud account ID
|
|
15257
|
+
* * WebhookUrl: URL of a custom webhook
|
|
15258
|
+
* * DingdingUrl: DingTalk chatbot URL
|
|
15259
|
+
* * FeishuUrl: Lark chatbot URL
|
|
15260
|
+
* * WeixinUrl: WeCom chatbot URL
|
|
13601
15261
|
*
|
|
13602
15262
|
* @example
|
|
13603
15263
|
* AliUid
|
|
@@ -13605,7 +15265,7 @@ export declare class ListDataQualityEvaluationTaskInstancesResponseBodyPagingInf
|
|
|
13605
15265
|
receiverType?: string;
|
|
13606
15266
|
/**
|
|
13607
15267
|
* @remarks
|
|
13608
|
-
*
|
|
15268
|
+
* The alert recipients.
|
|
13609
15269
|
*/
|
|
13610
15270
|
receiverValues?: string[];
|
|
13611
15271
|
static names(): {
|
|
@@ -13621,7 +15281,7 @@ export declare class ListDataQualityEvaluationTaskInstancesResponseBodyPagingInf
|
|
|
13621
15281
|
export declare class ListDataQualityEvaluationTaskInstancesResponseBodyPagingInfoDataQualityEvaluationTaskInstancesTaskNotificationsNotificationsNotificationChannels extends $tea.Model {
|
|
13622
15282
|
/**
|
|
13623
15283
|
* @remarks
|
|
13624
|
-
*
|
|
15284
|
+
* The alert notification methods.
|
|
13625
15285
|
*/
|
|
13626
15286
|
channels?: string[];
|
|
13627
15287
|
static names(): {
|
|
@@ -13637,12 +15297,12 @@ export declare class ListDataQualityEvaluationTaskInstancesResponseBodyPagingInf
|
|
|
13637
15297
|
export declare class ListDataQualityEvaluationTaskInstancesResponseBodyPagingInfoDataQualityEvaluationTaskInstancesTaskNotificationsNotifications extends $tea.Model {
|
|
13638
15298
|
/**
|
|
13639
15299
|
* @remarks
|
|
13640
|
-
*
|
|
15300
|
+
* The alert recipients.
|
|
13641
15301
|
*/
|
|
13642
15302
|
nofiticationReceivers?: ListDataQualityEvaluationTaskInstancesResponseBodyPagingInfoDataQualityEvaluationTaskInstancesTaskNotificationsNotificationsNofiticationReceivers[];
|
|
13643
15303
|
/**
|
|
13644
15304
|
* @remarks
|
|
13645
|
-
*
|
|
15305
|
+
* The alert notification methods.
|
|
13646
15306
|
*/
|
|
13647
15307
|
notificationChannels?: ListDataQualityEvaluationTaskInstancesResponseBodyPagingInfoDataQualityEvaluationTaskInstancesTaskNotificationsNotificationsNotificationChannels[];
|
|
13648
15308
|
static names(): {
|
|
@@ -13658,7 +15318,7 @@ export declare class ListDataQualityEvaluationTaskInstancesResponseBodyPagingInf
|
|
|
13658
15318
|
export declare class ListDataQualityEvaluationTaskInstancesResponseBodyPagingInfoDataQualityEvaluationTaskInstancesTaskNotifications extends $tea.Model {
|
|
13659
15319
|
/**
|
|
13660
15320
|
* @remarks
|
|
13661
|
-
*
|
|
15321
|
+
* The trigger condition of the alert notification.
|
|
13662
15322
|
*
|
|
13663
15323
|
* @example
|
|
13664
15324
|
* ${severity} == "High"
|
|
@@ -13666,7 +15326,7 @@ export declare class ListDataQualityEvaluationTaskInstancesResponseBodyPagingInf
|
|
|
13666
15326
|
condition?: string;
|
|
13667
15327
|
/**
|
|
13668
15328
|
* @remarks
|
|
13669
|
-
*
|
|
15329
|
+
* The configurations for the alert notification.
|
|
13670
15330
|
*/
|
|
13671
15331
|
notifications?: ListDataQualityEvaluationTaskInstancesResponseBodyPagingInfoDataQualityEvaluationTaskInstancesTaskNotificationsNotifications[];
|
|
13672
15332
|
static names(): {
|
|
@@ -13682,7 +15342,15 @@ export declare class ListDataQualityEvaluationTaskInstancesResponseBodyPagingInf
|
|
|
13682
15342
|
export declare class ListDataQualityEvaluationTaskInstancesResponseBodyPagingInfoDataQualityEvaluationTaskInstancesTaskTarget extends $tea.Model {
|
|
13683
15343
|
/**
|
|
13684
15344
|
* @remarks
|
|
13685
|
-
*
|
|
15345
|
+
* The type of the database to which the table belongs. Valid values:
|
|
15346
|
+
*
|
|
15347
|
+
* * maxcompute
|
|
15348
|
+
* * emr
|
|
15349
|
+
* * cdh
|
|
15350
|
+
* * hologres
|
|
15351
|
+
* * analyticdb_for_postgresql
|
|
15352
|
+
* * analyticdb_for_mysql
|
|
15353
|
+
* * starrocks
|
|
13686
15354
|
*
|
|
13687
15355
|
* @example
|
|
13688
15356
|
* maxcompute
|
|
@@ -13690,7 +15358,7 @@ export declare class ListDataQualityEvaluationTaskInstancesResponseBodyPagingInf
|
|
|
13690
15358
|
databaseType?: string;
|
|
13691
15359
|
/**
|
|
13692
15360
|
* @remarks
|
|
13693
|
-
*
|
|
15361
|
+
* The configuration of the partitioned table.
|
|
13694
15362
|
*
|
|
13695
15363
|
* @example
|
|
13696
15364
|
* ds=$[yyyymmdd-1]
|
|
@@ -13698,7 +15366,7 @@ export declare class ListDataQualityEvaluationTaskInstancesResponseBodyPagingInf
|
|
|
13698
15366
|
partitionSpec?: string;
|
|
13699
15367
|
/**
|
|
13700
15368
|
* @remarks
|
|
13701
|
-
*
|
|
15369
|
+
* The ID of the table in Data Map.
|
|
13702
15370
|
*
|
|
13703
15371
|
* @example
|
|
13704
15372
|
* odps.unit_test.tb_unit_test
|
|
@@ -13706,7 +15374,9 @@ export declare class ListDataQualityEvaluationTaskInstancesResponseBodyPagingInf
|
|
|
13706
15374
|
tableGuid?: string;
|
|
13707
15375
|
/**
|
|
13708
15376
|
* @remarks
|
|
13709
|
-
*
|
|
15377
|
+
* The type of the monitored object. Valid values:
|
|
15378
|
+
*
|
|
15379
|
+
* * Table
|
|
13710
15380
|
*
|
|
13711
15381
|
* @example
|
|
13712
15382
|
* Table
|
|
@@ -13725,12 +15395,14 @@ export declare class ListDataQualityEvaluationTaskInstancesResponseBodyPagingInf
|
|
|
13725
15395
|
export declare class ListDataQualityEvaluationTaskInstancesResponseBodyPagingInfoDataQualityEvaluationTaskInstancesTaskTrigger extends $tea.Model {
|
|
13726
15396
|
/**
|
|
13727
15397
|
* @remarks
|
|
13728
|
-
*
|
|
15398
|
+
* The IDs of the auto triggered nodes of which the instances are successfully run.
|
|
13729
15399
|
*/
|
|
13730
15400
|
taskIds?: number[];
|
|
13731
15401
|
/**
|
|
13732
15402
|
* @remarks
|
|
13733
|
-
*
|
|
15403
|
+
* The trigger condition of the task.
|
|
15404
|
+
*
|
|
15405
|
+
* * Valid values: ByScheduledTaskInstance. The value indicates that the task is triggered when the instance of an auto triggered node is successfully run.
|
|
13734
15406
|
*
|
|
13735
15407
|
* @example
|
|
13736
15408
|
* ByScheduledTaskInstance
|
|
@@ -13749,7 +15421,7 @@ export declare class ListDataQualityEvaluationTaskInstancesResponseBodyPagingInf
|
|
|
13749
15421
|
export declare class ListDataQualityEvaluationTaskInstancesResponseBodyPagingInfoDataQualityEvaluationTaskInstancesTask extends $tea.Model {
|
|
13750
15422
|
/**
|
|
13751
15423
|
* @remarks
|
|
13752
|
-
*
|
|
15424
|
+
* The description of the task.
|
|
13753
15425
|
*
|
|
13754
15426
|
* @example
|
|
13755
15427
|
* This is a daily run data quality evaluation plan.
|
|
@@ -13757,12 +15429,12 @@ export declare class ListDataQualityEvaluationTaskInstancesResponseBodyPagingInf
|
|
|
13757
15429
|
description?: string;
|
|
13758
15430
|
/**
|
|
13759
15431
|
* @remarks
|
|
13760
|
-
*
|
|
15432
|
+
* The callback configurations of the task during the instance lifecycle. Blocking an auto triggered node is a type of callback event. Only this type is supported.
|
|
13761
15433
|
*/
|
|
13762
15434
|
hooks?: ListDataQualityEvaluationTaskInstancesResponseBodyPagingInfoDataQualityEvaluationTaskInstancesTaskHooks[];
|
|
13763
15435
|
/**
|
|
13764
15436
|
* @remarks
|
|
13765
|
-
*
|
|
15437
|
+
* The task ID.
|
|
13766
15438
|
*
|
|
13767
15439
|
* @example
|
|
13768
15440
|
* 10001
|
|
@@ -13770,19 +15442,19 @@ export declare class ListDataQualityEvaluationTaskInstancesResponseBodyPagingInf
|
|
|
13770
15442
|
id?: number;
|
|
13771
15443
|
/**
|
|
13772
15444
|
* @remarks
|
|
13773
|
-
*
|
|
15445
|
+
* The name of the task.
|
|
13774
15446
|
*
|
|
13775
15447
|
* This parameter is required.
|
|
13776
15448
|
*/
|
|
13777
15449
|
name?: string;
|
|
13778
15450
|
/**
|
|
13779
15451
|
* @remarks
|
|
13780
|
-
*
|
|
15452
|
+
* The configurations for alert notifications.
|
|
13781
15453
|
*/
|
|
13782
15454
|
notifications?: ListDataQualityEvaluationTaskInstancesResponseBodyPagingInfoDataQualityEvaluationTaskInstancesTaskNotifications;
|
|
13783
15455
|
/**
|
|
13784
15456
|
* @remarks
|
|
13785
|
-
*
|
|
15457
|
+
* The workspace ID.
|
|
13786
15458
|
*
|
|
13787
15459
|
* @example
|
|
13788
15460
|
* 100
|
|
@@ -13790,7 +15462,7 @@ export declare class ListDataQualityEvaluationTaskInstancesResponseBodyPagingInf
|
|
|
13790
15462
|
projectId?: number;
|
|
13791
15463
|
/**
|
|
13792
15464
|
* @remarks
|
|
13793
|
-
*
|
|
15465
|
+
* The region ID.
|
|
13794
15466
|
*
|
|
13795
15467
|
* @example
|
|
13796
15468
|
* cn-shanghai
|
|
@@ -13798,7 +15470,7 @@ export declare class ListDataQualityEvaluationTaskInstancesResponseBodyPagingInf
|
|
|
13798
15470
|
regionId?: string;
|
|
13799
15471
|
/**
|
|
13800
15472
|
* @remarks
|
|
13801
|
-
*
|
|
15473
|
+
* The configuration of the data source. The value of the queue field is default, and that of the sqlEngine field is SPARK-SQL. The value default indicates the YARN queue for E-MapReduce (EMR) tasks, and the value SPARK-SQL indicates the SQL engine that is used to collect EMR data.
|
|
13802
15474
|
*
|
|
13803
15475
|
* @example
|
|
13804
15476
|
* { "queue": "default", "sqlEngine": "SPARK-SQL" }
|
|
@@ -13806,12 +15478,12 @@ export declare class ListDataQualityEvaluationTaskInstancesResponseBodyPagingInf
|
|
|
13806
15478
|
runtimeConf?: string;
|
|
13807
15479
|
/**
|
|
13808
15480
|
* @remarks
|
|
13809
|
-
*
|
|
15481
|
+
* The monitored object of the task.
|
|
13810
15482
|
*/
|
|
13811
15483
|
target?: ListDataQualityEvaluationTaskInstancesResponseBodyPagingInfoDataQualityEvaluationTaskInstancesTaskTarget;
|
|
13812
15484
|
/**
|
|
13813
15485
|
* @remarks
|
|
13814
|
-
*
|
|
15486
|
+
* The tenant ID.
|
|
13815
15487
|
*
|
|
13816
15488
|
* @example
|
|
13817
15489
|
* 10
|
|
@@ -13819,7 +15491,7 @@ export declare class ListDataQualityEvaluationTaskInstancesResponseBodyPagingInf
|
|
|
13819
15491
|
tenantId?: number;
|
|
13820
15492
|
/**
|
|
13821
15493
|
* @remarks
|
|
13822
|
-
*
|
|
15494
|
+
* The trigger configuration of the task.
|
|
13823
15495
|
*/
|
|
13824
15496
|
trigger?: ListDataQualityEvaluationTaskInstancesResponseBodyPagingInfoDataQualityEvaluationTaskInstancesTaskTrigger;
|
|
13825
15497
|
static names(): {
|
|
@@ -13834,21 +15506,33 @@ export declare class ListDataQualityEvaluationTaskInstancesResponseBodyPagingInf
|
|
|
13834
15506
|
}
|
|
13835
15507
|
export declare class ListDataQualityEvaluationTaskInstancesResponseBodyPagingInfoDataQualityEvaluationTaskInstances extends $tea.Model {
|
|
13836
15508
|
/**
|
|
15509
|
+
* @remarks
|
|
15510
|
+
* The time at which the instance was generated.
|
|
15511
|
+
*
|
|
13837
15512
|
* @example
|
|
13838
15513
|
* 1710239005403
|
|
13839
15514
|
*/
|
|
13840
15515
|
createTime?: number;
|
|
13841
15516
|
/**
|
|
15517
|
+
* @remarks
|
|
15518
|
+
* The time at which the instance finished running.
|
|
15519
|
+
*
|
|
13842
15520
|
* @example
|
|
13843
15521
|
* 1710239005403
|
|
13844
15522
|
*/
|
|
13845
15523
|
finishTime?: number;
|
|
13846
15524
|
/**
|
|
15525
|
+
* @remarks
|
|
15526
|
+
* The ID of the instance.
|
|
15527
|
+
*
|
|
13847
15528
|
* @example
|
|
13848
15529
|
* 10001
|
|
13849
15530
|
*/
|
|
13850
15531
|
id?: number;
|
|
13851
15532
|
/**
|
|
15533
|
+
* @remarks
|
|
15534
|
+
* The parameters configured for the instance.
|
|
15535
|
+
*
|
|
13852
15536
|
* @example
|
|
13853
15537
|
* {
|
|
13854
15538
|
* "bizdate": "20240517",
|
|
@@ -13857,17 +15541,36 @@ export declare class ListDataQualityEvaluationTaskInstancesResponseBodyPagingInf
|
|
|
13857
15541
|
*/
|
|
13858
15542
|
parameters?: string;
|
|
13859
15543
|
/**
|
|
15544
|
+
* @remarks
|
|
15545
|
+
* The DataWorks workspace ID.
|
|
15546
|
+
*
|
|
13860
15547
|
* @example
|
|
13861
15548
|
* 100
|
|
13862
15549
|
*/
|
|
13863
15550
|
projectId?: number;
|
|
13864
15551
|
/**
|
|
15552
|
+
* @remarks
|
|
15553
|
+
* The status of the instance. Valid values:
|
|
15554
|
+
*
|
|
15555
|
+
* * Running
|
|
15556
|
+
* * Error
|
|
15557
|
+
* * Passed
|
|
15558
|
+
* * Warned
|
|
15559
|
+
* * Critical
|
|
15560
|
+
*
|
|
13865
15561
|
* @example
|
|
13866
15562
|
* Critical
|
|
13867
15563
|
*/
|
|
13868
15564
|
status?: string;
|
|
15565
|
+
/**
|
|
15566
|
+
* @remarks
|
|
15567
|
+
* The snapshot of the configurations for the task when the task starts.
|
|
15568
|
+
*/
|
|
13869
15569
|
task?: ListDataQualityEvaluationTaskInstancesResponseBodyPagingInfoDataQualityEvaluationTaskInstancesTask;
|
|
13870
15570
|
/**
|
|
15571
|
+
* @remarks
|
|
15572
|
+
* The information about the trigger module of the instance.
|
|
15573
|
+
*
|
|
13871
15574
|
* @example
|
|
13872
15575
|
* {
|
|
13873
15576
|
* "TriggerClientId": 10001,
|
|
@@ -13886,18 +15589,31 @@ export declare class ListDataQualityEvaluationTaskInstancesResponseBodyPagingInf
|
|
|
13886
15589
|
});
|
|
13887
15590
|
}
|
|
13888
15591
|
export declare class ListDataQualityEvaluationTaskInstancesResponseBodyPagingInfo extends $tea.Model {
|
|
15592
|
+
/**
|
|
15593
|
+
* @remarks
|
|
15594
|
+
* The instances generated by the task.
|
|
15595
|
+
*/
|
|
13889
15596
|
dataQualityEvaluationTaskInstances?: ListDataQualityEvaluationTaskInstancesResponseBodyPagingInfoDataQualityEvaluationTaskInstances[];
|
|
13890
15597
|
/**
|
|
15598
|
+
* @remarks
|
|
15599
|
+
* The page number.
|
|
15600
|
+
*
|
|
13891
15601
|
* @example
|
|
13892
15602
|
* 1
|
|
13893
15603
|
*/
|
|
13894
15604
|
pageNumber?: number;
|
|
13895
15605
|
/**
|
|
15606
|
+
* @remarks
|
|
15607
|
+
* The number of entries per page.
|
|
15608
|
+
*
|
|
13896
15609
|
* @example
|
|
13897
15610
|
* 10
|
|
13898
15611
|
*/
|
|
13899
15612
|
pageSize?: number;
|
|
13900
15613
|
/**
|
|
15614
|
+
* @remarks
|
|
15615
|
+
* The total number of entries returned.
|
|
15616
|
+
*
|
|
13901
15617
|
* @example
|
|
13902
15618
|
* 294
|
|
13903
15619
|
*/
|
|
@@ -13914,11 +15630,19 @@ export declare class ListDataQualityEvaluationTaskInstancesResponseBodyPagingInf
|
|
|
13914
15630
|
}
|
|
13915
15631
|
export declare class ListDataQualityEvaluationTasksResponseBodyPagingInfoDataQualityEvaluationTasksHooks extends $tea.Model {
|
|
13916
15632
|
/**
|
|
15633
|
+
* @remarks
|
|
15634
|
+
* The trigger configuration of the callback event.
|
|
15635
|
+
*
|
|
13917
15636
|
* @example
|
|
13918
15637
|
* ${severity} == "High" AND ${status} == "Critical"
|
|
13919
15638
|
*/
|
|
13920
15639
|
condition?: string;
|
|
13921
15640
|
/**
|
|
15641
|
+
* @remarks
|
|
15642
|
+
* The type of the callback event.
|
|
15643
|
+
*
|
|
15644
|
+
* * Valid values: BlockTaskInstance. The value indicates that an auto triggered node is blocked.
|
|
15645
|
+
*
|
|
13922
15646
|
* @example
|
|
13923
15647
|
* BlockTaskInstance
|
|
13924
15648
|
*/
|
|
@@ -13934,6 +15658,10 @@ export declare class ListDataQualityEvaluationTasksResponseBodyPagingInfoDataQua
|
|
|
13934
15658
|
});
|
|
13935
15659
|
}
|
|
13936
15660
|
export declare class ListDataQualityEvaluationTasksResponseBodyPagingInfoDataQualityEvaluationTasksNotificationsNotificationsNotificationChannels extends $tea.Model {
|
|
15661
|
+
/**
|
|
15662
|
+
* @remarks
|
|
15663
|
+
* The alert notification methods.
|
|
15664
|
+
*/
|
|
13937
15665
|
channels?: string[];
|
|
13938
15666
|
static names(): {
|
|
13939
15667
|
[key: string]: string;
|
|
@@ -13947,15 +15675,31 @@ export declare class ListDataQualityEvaluationTasksResponseBodyPagingInfoDataQua
|
|
|
13947
15675
|
}
|
|
13948
15676
|
export declare class ListDataQualityEvaluationTasksResponseBodyPagingInfoDataQualityEvaluationTasksNotificationsNotificationsNotificationReceivers extends $tea.Model {
|
|
13949
15677
|
/**
|
|
15678
|
+
* @remarks
|
|
15679
|
+
* The extended information in the JSON format. For example, the DingTalk chatbot can remind all members in a DingTalk group by using the at sign (@).
|
|
15680
|
+
*
|
|
13950
15681
|
* @example
|
|
13951
15682
|
* {"atAll":"true"}
|
|
13952
15683
|
*/
|
|
13953
15684
|
extension?: string;
|
|
13954
15685
|
/**
|
|
15686
|
+
* @remarks
|
|
15687
|
+
* The type of the alert recipient. Valid values:
|
|
15688
|
+
*
|
|
15689
|
+
* * AliUid: Alibaba Cloud account ID
|
|
15690
|
+
* * WebhookUrl: URL of a custom webhook
|
|
15691
|
+
* * DingdingUrl: DingTalk chatbot URL
|
|
15692
|
+
* * FeishuUrl: Lark chatbot URL
|
|
15693
|
+
* * WeixinUrl: WeCom chatbot URL
|
|
15694
|
+
*
|
|
13955
15695
|
* @example
|
|
13956
15696
|
* AliUid
|
|
13957
15697
|
*/
|
|
13958
15698
|
receiverType?: string;
|
|
15699
|
+
/**
|
|
15700
|
+
* @remarks
|
|
15701
|
+
* The alert recipients.
|
|
15702
|
+
*/
|
|
13959
15703
|
receiverValues?: string[];
|
|
13960
15704
|
static names(): {
|
|
13961
15705
|
[key: string]: string;
|
|
@@ -13968,7 +15712,15 @@ export declare class ListDataQualityEvaluationTasksResponseBodyPagingInfoDataQua
|
|
|
13968
15712
|
});
|
|
13969
15713
|
}
|
|
13970
15714
|
export declare class ListDataQualityEvaluationTasksResponseBodyPagingInfoDataQualityEvaluationTasksNotificationsNotifications extends $tea.Model {
|
|
15715
|
+
/**
|
|
15716
|
+
* @remarks
|
|
15717
|
+
* The alert notification methods.
|
|
15718
|
+
*/
|
|
13971
15719
|
notificationChannels?: ListDataQualityEvaluationTasksResponseBodyPagingInfoDataQualityEvaluationTasksNotificationsNotificationsNotificationChannels[];
|
|
15720
|
+
/**
|
|
15721
|
+
* @remarks
|
|
15722
|
+
* The alert recipients.
|
|
15723
|
+
*/
|
|
13972
15724
|
notificationReceivers?: ListDataQualityEvaluationTasksResponseBodyPagingInfoDataQualityEvaluationTasksNotificationsNotificationsNotificationReceivers[];
|
|
13973
15725
|
static names(): {
|
|
13974
15726
|
[key: string]: string;
|
|
@@ -13982,10 +15734,17 @@ export declare class ListDataQualityEvaluationTasksResponseBodyPagingInfoDataQua
|
|
|
13982
15734
|
}
|
|
13983
15735
|
export declare class ListDataQualityEvaluationTasksResponseBodyPagingInfoDataQualityEvaluationTasksNotifications extends $tea.Model {
|
|
13984
15736
|
/**
|
|
15737
|
+
* @remarks
|
|
15738
|
+
* The trigger condition of the alert notification.
|
|
15739
|
+
*
|
|
13985
15740
|
* @example
|
|
13986
15741
|
* ${severity} == "High"
|
|
13987
15742
|
*/
|
|
13988
15743
|
condition?: string;
|
|
15744
|
+
/**
|
|
15745
|
+
* @remarks
|
|
15746
|
+
* The configurations for the alert notification.
|
|
15747
|
+
*/
|
|
13989
15748
|
notifications?: ListDataQualityEvaluationTasksResponseBodyPagingInfoDataQualityEvaluationTasksNotificationsNotifications[];
|
|
13990
15749
|
static names(): {
|
|
13991
15750
|
[key: string]: string;
|
|
@@ -13999,21 +15758,43 @@ export declare class ListDataQualityEvaluationTasksResponseBodyPagingInfoDataQua
|
|
|
13999
15758
|
}
|
|
14000
15759
|
export declare class ListDataQualityEvaluationTasksResponseBodyPagingInfoDataQualityEvaluationTasksTarget extends $tea.Model {
|
|
14001
15760
|
/**
|
|
15761
|
+
* @remarks
|
|
15762
|
+
* The type of the database to which the table belongs. Valid values:
|
|
15763
|
+
*
|
|
15764
|
+
* * maxcompute
|
|
15765
|
+
* * emr
|
|
15766
|
+
* * cdh
|
|
15767
|
+
* * hologres
|
|
15768
|
+
* * analyticdb_for_postgresql
|
|
15769
|
+
* * analyticdb_for_mysql
|
|
15770
|
+
* * starrocks
|
|
15771
|
+
*
|
|
14002
15772
|
* @example
|
|
14003
15773
|
* maxcompute
|
|
14004
15774
|
*/
|
|
14005
15775
|
databaseType?: string;
|
|
14006
15776
|
/**
|
|
15777
|
+
* @remarks
|
|
15778
|
+
* The configuration of the partitioned table.
|
|
15779
|
+
*
|
|
14007
15780
|
* @example
|
|
14008
15781
|
* ds=$[yyyymmdd-1]
|
|
14009
15782
|
*/
|
|
14010
15783
|
partitionSpec?: string;
|
|
14011
15784
|
/**
|
|
15785
|
+
* @remarks
|
|
15786
|
+
* The ID of the table in Data Map.
|
|
15787
|
+
*
|
|
14012
15788
|
* @example
|
|
14013
15789
|
* odps.unit_test.tb_unit_test
|
|
14014
15790
|
*/
|
|
14015
15791
|
tableGuid?: string;
|
|
14016
15792
|
/**
|
|
15793
|
+
* @remarks
|
|
15794
|
+
* The type of the monitored object. Valid values:
|
|
15795
|
+
*
|
|
15796
|
+
* * Table
|
|
15797
|
+
*
|
|
14017
15798
|
* @example
|
|
14018
15799
|
* Table
|
|
14019
15800
|
*/
|
|
@@ -14029,8 +15810,17 @@ export declare class ListDataQualityEvaluationTasksResponseBodyPagingInfoDataQua
|
|
|
14029
15810
|
});
|
|
14030
15811
|
}
|
|
14031
15812
|
export declare class ListDataQualityEvaluationTasksResponseBodyPagingInfoDataQualityEvaluationTasksTrigger extends $tea.Model {
|
|
15813
|
+
/**
|
|
15814
|
+
* @remarks
|
|
15815
|
+
* The IDs of the auto triggered nodes of which the instances are successfully run. This parameter takes effect only if the Type parameter is set to ByScheduledTaskInstance.
|
|
15816
|
+
*/
|
|
14032
15817
|
taskIds?: number[];
|
|
14033
15818
|
/**
|
|
15819
|
+
* @remarks
|
|
15820
|
+
* The trigger condition of the task.
|
|
15821
|
+
*
|
|
15822
|
+
* * Valid values: ByScheduledTaskInstance. The value indicates that the task is triggered when the instance of an auto triggered node is successfully run.
|
|
15823
|
+
*
|
|
14034
15824
|
* @example
|
|
14035
15825
|
* ByScheduledTaskInstance
|
|
14036
15826
|
*/
|
|
@@ -14047,34 +15837,69 @@ export declare class ListDataQualityEvaluationTasksResponseBodyPagingInfoDataQua
|
|
|
14047
15837
|
}
|
|
14048
15838
|
export declare class ListDataQualityEvaluationTasksResponseBodyPagingInfoDataQualityEvaluationTasks extends $tea.Model {
|
|
14049
15839
|
/**
|
|
15840
|
+
* @remarks
|
|
15841
|
+
* The description of the data quality monitoring task. The description can be up to 65,535 characters in length.
|
|
15842
|
+
*
|
|
14050
15843
|
* @example
|
|
14051
15844
|
* This is a daily run data quality evaluation plan
|
|
14052
15845
|
*/
|
|
14053
15846
|
description?: string;
|
|
15847
|
+
/**
|
|
15848
|
+
* @remarks
|
|
15849
|
+
* The callback configurations of the task during the instance lifecycle. Blocking an auto triggered node is a type of callback event. Only this type is supported.
|
|
15850
|
+
*/
|
|
14054
15851
|
hooks?: ListDataQualityEvaluationTasksResponseBodyPagingInfoDataQualityEvaluationTasksHooks[];
|
|
14055
15852
|
/**
|
|
15853
|
+
* @remarks
|
|
15854
|
+
* The ID of the data quality monitoring task.
|
|
15855
|
+
*
|
|
14056
15856
|
* @example
|
|
14057
15857
|
* 10001
|
|
14058
15858
|
*/
|
|
14059
15859
|
id?: number;
|
|
15860
|
+
/**
|
|
15861
|
+
* @remarks
|
|
15862
|
+
* The name of the data quality monitoring task. The name can be up to 255 characters in length and can contain digits, letters, and punctuation marks.
|
|
15863
|
+
*/
|
|
14060
15864
|
name?: string;
|
|
15865
|
+
/**
|
|
15866
|
+
* @remarks
|
|
15867
|
+
* The configurations for alert notifications.
|
|
15868
|
+
*/
|
|
14061
15869
|
notifications?: ListDataQualityEvaluationTasksResponseBodyPagingInfoDataQualityEvaluationTasksNotifications;
|
|
14062
15870
|
/**
|
|
15871
|
+
* @remarks
|
|
15872
|
+
* The DataWorks workspace ID.
|
|
15873
|
+
*
|
|
14063
15874
|
* @example
|
|
14064
15875
|
* 100
|
|
14065
15876
|
*/
|
|
14066
15877
|
projectId?: number;
|
|
14067
15878
|
/**
|
|
15879
|
+
* @remarks
|
|
15880
|
+
* The configuration of the data source. The value of the queue field is default, and that of the sqlEngine field is SPARK-SQL. The value default indicates the YARN queue for E-MapReduce (EMR) tasks, and the value SPARK-SQL indicates the SQL engine that is used to collect EMR data.
|
|
15881
|
+
*
|
|
14068
15882
|
* @example
|
|
14069
15883
|
* { "queue": "default", "sqlEngine": "SPARK-SQL" }
|
|
14070
15884
|
*/
|
|
14071
15885
|
runtimeConf?: string;
|
|
15886
|
+
/**
|
|
15887
|
+
* @remarks
|
|
15888
|
+
* The monitored object of the task.
|
|
15889
|
+
*/
|
|
14072
15890
|
target?: ListDataQualityEvaluationTasksResponseBodyPagingInfoDataQualityEvaluationTasksTarget;
|
|
14073
15891
|
/**
|
|
15892
|
+
* @remarks
|
|
15893
|
+
* The DataWorks tenant ID.
|
|
15894
|
+
*
|
|
14074
15895
|
* @example
|
|
14075
15896
|
* 10
|
|
14076
15897
|
*/
|
|
14077
15898
|
tenantId?: number;
|
|
15899
|
+
/**
|
|
15900
|
+
* @remarks
|
|
15901
|
+
* The trigger configuration of the task.
|
|
15902
|
+
*/
|
|
14078
15903
|
trigger?: ListDataQualityEvaluationTasksResponseBodyPagingInfoDataQualityEvaluationTasksTrigger;
|
|
14079
15904
|
static names(): {
|
|
14080
15905
|
[key: string]: string;
|
|
@@ -14087,18 +15912,31 @@ export declare class ListDataQualityEvaluationTasksResponseBodyPagingInfoDataQua
|
|
|
14087
15912
|
});
|
|
14088
15913
|
}
|
|
14089
15914
|
export declare class ListDataQualityEvaluationTasksResponseBodyPagingInfo extends $tea.Model {
|
|
15915
|
+
/**
|
|
15916
|
+
* @remarks
|
|
15917
|
+
* The data quality monitoring tasks.
|
|
15918
|
+
*/
|
|
14090
15919
|
dataQualityEvaluationTasks?: ListDataQualityEvaluationTasksResponseBodyPagingInfoDataQualityEvaluationTasks[];
|
|
14091
15920
|
/**
|
|
15921
|
+
* @remarks
|
|
15922
|
+
* The page number.
|
|
15923
|
+
*
|
|
14092
15924
|
* @example
|
|
14093
15925
|
* 1
|
|
14094
15926
|
*/
|
|
14095
15927
|
pageNumber?: string;
|
|
14096
15928
|
/**
|
|
15929
|
+
* @remarks
|
|
15930
|
+
* The number of entries per page.
|
|
15931
|
+
*
|
|
14097
15932
|
* @example
|
|
14098
15933
|
* 10
|
|
14099
15934
|
*/
|
|
14100
15935
|
pageSize?: string;
|
|
14101
15936
|
/**
|
|
15937
|
+
* @remarks
|
|
15938
|
+
* The total number of entries returned.
|
|
15939
|
+
*
|
|
14102
15940
|
* @example
|
|
14103
15941
|
* 131
|
|
14104
15942
|
*/
|
|
@@ -14126,10 +15964,12 @@ export declare class ListDataQualityResultsResponseBodyPagingInfoDataQualityResu
|
|
|
14126
15964
|
referencedValue?: string;
|
|
14127
15965
|
/**
|
|
14128
15966
|
* @remarks
|
|
14129
|
-
*
|
|
14130
|
-
*
|
|
14131
|
-
* *
|
|
14132
|
-
* *
|
|
15967
|
+
* The comparison result between the value of CheckedValue and the threshold. Valid values:
|
|
15968
|
+
*
|
|
15969
|
+
* * Error
|
|
15970
|
+
* * Passed
|
|
15971
|
+
* * Warned
|
|
15972
|
+
* * Critical
|
|
14133
15973
|
*
|
|
14134
15974
|
* @example
|
|
14135
15975
|
* PASSED
|
|
@@ -14255,12 +16095,14 @@ export declare class ListDataQualityResultsResponseBodyPagingInfoDataQualityResu
|
|
|
14255
16095
|
thresholds?: ListDataQualityResultsResponseBodyPagingInfoDataQualityResultsRuleCheckingConfigThresholds;
|
|
14256
16096
|
/**
|
|
14257
16097
|
* @remarks
|
|
14258
|
-
*
|
|
14259
|
-
*
|
|
14260
|
-
* *
|
|
14261
|
-
* *
|
|
14262
|
-
* *
|
|
14263
|
-
* *
|
|
16098
|
+
* The threshold calculation method. Valid values:
|
|
16099
|
+
*
|
|
16100
|
+
* * Fixed
|
|
16101
|
+
* * Fluctation
|
|
16102
|
+
* * FluctationDiscreate
|
|
16103
|
+
* * Auto
|
|
16104
|
+
* * Average
|
|
16105
|
+
* * Variance
|
|
14264
16106
|
*
|
|
14265
16107
|
* @example
|
|
14266
16108
|
* FIXED
|
|
@@ -14284,7 +16126,9 @@ export declare class ListDataQualityResultsResponseBodyPagingInfoDataQualityResu
|
|
|
14284
16126
|
errorDataFilter?: string;
|
|
14285
16127
|
/**
|
|
14286
16128
|
* @remarks
|
|
14287
|
-
*
|
|
16129
|
+
* The type of the operation. Valid values:
|
|
16130
|
+
*
|
|
16131
|
+
* * SaveErrorData
|
|
14288
16132
|
*
|
|
14289
16133
|
* @example
|
|
14290
16134
|
* SAVE_ERROR_DATA
|
|
@@ -14303,20 +16147,23 @@ export declare class ListDataQualityResultsResponseBodyPagingInfoDataQualityResu
|
|
|
14303
16147
|
export declare class ListDataQualityResultsResponseBodyPagingInfoDataQualityResultsRuleSamplingConfig extends $tea.Model {
|
|
14304
16148
|
/**
|
|
14305
16149
|
* @remarks
|
|
14306
|
-
*
|
|
14307
|
-
*
|
|
14308
|
-
* *
|
|
14309
|
-
* *
|
|
14310
|
-
* *
|
|
14311
|
-
* *
|
|
14312
|
-
* *
|
|
14313
|
-
* *
|
|
14314
|
-
* *
|
|
14315
|
-
* *
|
|
14316
|
-
* *
|
|
14317
|
-
* *
|
|
14318
|
-
* *
|
|
14319
|
-
* *
|
|
16150
|
+
* The metrics used for sampling. Valid values:
|
|
16151
|
+
*
|
|
16152
|
+
* * Count: the number of rows in the table.
|
|
16153
|
+
* * Min: the minimum value of the field.
|
|
16154
|
+
* * Max: the maximum value of the field.
|
|
16155
|
+
* * Avg: the average value of the field.
|
|
16156
|
+
* * DistinctCount: the number of unique values of the field after deduplication.
|
|
16157
|
+
* * DistinctPercent: the proportion of the number of unique values of the field after deduplication to the number of rows in the table.
|
|
16158
|
+
* * DuplicatedCount: the number of duplicated values of the field.
|
|
16159
|
+
* * DuplicatedPercent: the proportion of the number of duplicated values of the field to the number of rows in the table.
|
|
16160
|
+
* * TableSize: the table size.
|
|
16161
|
+
* * NullValueCount: the number of rows in which the field value is null.
|
|
16162
|
+
* * NullValuePercent: the proportion of the number of rows in which the field value is null to the number of rows in the table.
|
|
16163
|
+
* * GroupCount: the field value and the number of rows for each field value.
|
|
16164
|
+
* * CountNotIn: the number of rows in which the field values are different from the referenced values that you specified in the rule.
|
|
16165
|
+
* * CountDistinctNotIn: the number of unique values that are different from the referenced values that you specified in the rule after deduplication.
|
|
16166
|
+
* * UserDefinedSql: indicates that data is sampled by executing custom SQL statements.
|
|
14320
16167
|
*
|
|
14321
16168
|
* @example
|
|
14322
16169
|
* COUNT
|
|
@@ -14350,13 +16197,15 @@ export declare class ListDataQualityResultsResponseBodyPagingInfoDataQualityResu
|
|
|
14350
16197
|
export declare class ListDataQualityResultsResponseBodyPagingInfoDataQualityResultsRuleTarget extends $tea.Model {
|
|
14351
16198
|
/**
|
|
14352
16199
|
* @remarks
|
|
14353
|
-
*
|
|
14354
|
-
*
|
|
14355
|
-
* *
|
|
14356
|
-
* *
|
|
14357
|
-
* *
|
|
14358
|
-
* *
|
|
14359
|
-
* *
|
|
16200
|
+
* The type of the database to which the table belongs. Valid values:
|
|
16201
|
+
*
|
|
16202
|
+
* * maxcompute
|
|
16203
|
+
* * emr
|
|
16204
|
+
* * cdh
|
|
16205
|
+
* * hologres
|
|
16206
|
+
* * analyticdb_for_postgresql
|
|
16207
|
+
* * analyticdb_for_mysql
|
|
16208
|
+
* * starrocks
|
|
14360
16209
|
*
|
|
14361
16210
|
* @example
|
|
14362
16211
|
* MAX_COMPUTE
|
|
@@ -14374,7 +16223,9 @@ export declare class ListDataQualityResultsResponseBodyPagingInfoDataQualityResu
|
|
|
14374
16223
|
tableGuid?: string;
|
|
14375
16224
|
/**
|
|
14376
16225
|
* @remarks
|
|
14377
|
-
*
|
|
16226
|
+
* The type of the monitored object. Valid values:
|
|
16227
|
+
*
|
|
16228
|
+
* * Table
|
|
14378
16229
|
*
|
|
14379
16230
|
* @example
|
|
14380
16231
|
* TABLE
|
|
@@ -14391,6 +16242,10 @@ export declare class ListDataQualityResultsResponseBodyPagingInfoDataQualityResu
|
|
|
14391
16242
|
});
|
|
14392
16243
|
}
|
|
14393
16244
|
export declare class ListDataQualityResultsResponseBodyPagingInfoDataQualityResultsRule extends $tea.Model {
|
|
16245
|
+
/**
|
|
16246
|
+
* @remarks
|
|
16247
|
+
* The check settings for sample data.
|
|
16248
|
+
*/
|
|
14394
16249
|
checkingConfig?: ListDataQualityResultsResponseBodyPagingInfoDataQualityResultsRuleCheckingConfig;
|
|
14395
16250
|
/**
|
|
14396
16251
|
* @example
|
|
@@ -14402,6 +16257,10 @@ export declare class ListDataQualityResultsResponseBodyPagingInfoDataQualityResu
|
|
|
14402
16257
|
* true
|
|
14403
16258
|
*/
|
|
14404
16259
|
enabled?: boolean;
|
|
16260
|
+
/**
|
|
16261
|
+
* @remarks
|
|
16262
|
+
* The operations that you can perform after the rule-based check fails.
|
|
16263
|
+
*/
|
|
14405
16264
|
errorHandlers?: ListDataQualityResultsResponseBodyPagingInfoDataQualityResultsRuleErrorHandlers[];
|
|
14406
16265
|
/**
|
|
14407
16266
|
* @example
|
|
@@ -14414,16 +16273,26 @@ export declare class ListDataQualityResultsResponseBodyPagingInfoDataQualityResu
|
|
|
14414
16273
|
* 100
|
|
14415
16274
|
*/
|
|
14416
16275
|
projectId?: number;
|
|
16276
|
+
/**
|
|
16277
|
+
* @remarks
|
|
16278
|
+
* The sampling settings.
|
|
16279
|
+
*/
|
|
14417
16280
|
samplingConfig?: ListDataQualityResultsResponseBodyPagingInfoDataQualityResultsRuleSamplingConfig;
|
|
14418
16281
|
/**
|
|
14419
16282
|
* @remarks
|
|
14420
|
-
*
|
|
14421
|
-
*
|
|
16283
|
+
* The strength of the rule. Valid values:
|
|
16284
|
+
*
|
|
16285
|
+
* * High
|
|
16286
|
+
* * Normal
|
|
14422
16287
|
*
|
|
14423
16288
|
* @example
|
|
14424
16289
|
* NORMAL
|
|
14425
16290
|
*/
|
|
14426
16291
|
severity?: string;
|
|
16292
|
+
/**
|
|
16293
|
+
* @remarks
|
|
16294
|
+
* The monitored object of the rule.
|
|
16295
|
+
*/
|
|
14427
16296
|
target?: ListDataQualityResultsResponseBodyPagingInfoDataQualityResultsRuleTarget;
|
|
14428
16297
|
/**
|
|
14429
16298
|
* @example
|
|
@@ -14451,12 +16320,20 @@ export declare class ListDataQualityResultsResponseBodyPagingInfoDataQualityResu
|
|
|
14451
16320
|
* 1708284916414
|
|
14452
16321
|
*/
|
|
14453
16322
|
createTime?: number;
|
|
16323
|
+
/**
|
|
16324
|
+
* @remarks
|
|
16325
|
+
* The check details.
|
|
16326
|
+
*/
|
|
14454
16327
|
details?: ListDataQualityResultsResponseBodyPagingInfoDataQualityResultsDetails[];
|
|
14455
16328
|
/**
|
|
14456
16329
|
* @example
|
|
14457
16330
|
* 16033
|
|
14458
16331
|
*/
|
|
14459
16332
|
id?: number;
|
|
16333
|
+
/**
|
|
16334
|
+
* @remarks
|
|
16335
|
+
* The snapshot of the rule configuration when the check starts.
|
|
16336
|
+
*/
|
|
14460
16337
|
rule?: ListDataQualityResultsResponseBodyPagingInfoDataQualityResultsRule;
|
|
14461
16338
|
/**
|
|
14462
16339
|
* @example
|
|
@@ -14473,11 +16350,13 @@ export declare class ListDataQualityResultsResponseBodyPagingInfoDataQualityResu
|
|
|
14473
16350
|
sample?: string;
|
|
14474
16351
|
/**
|
|
14475
16352
|
* @remarks
|
|
14476
|
-
*
|
|
14477
|
-
*
|
|
14478
|
-
* *
|
|
14479
|
-
* *
|
|
14480
|
-
* *
|
|
16353
|
+
* The status of the check result. Valid values:
|
|
16354
|
+
*
|
|
16355
|
+
* * Running
|
|
16356
|
+
* * Error
|
|
16357
|
+
* * Passed
|
|
16358
|
+
* * Warned
|
|
16359
|
+
* * Critical
|
|
14481
16360
|
*
|
|
14482
16361
|
* @example
|
|
14483
16362
|
* PASSED
|
|
@@ -14499,6 +16378,10 @@ export declare class ListDataQualityResultsResponseBodyPagingInfoDataQualityResu
|
|
|
14499
16378
|
});
|
|
14500
16379
|
}
|
|
14501
16380
|
export declare class ListDataQualityResultsResponseBodyPagingInfo extends $tea.Model {
|
|
16381
|
+
/**
|
|
16382
|
+
* @remarks
|
|
16383
|
+
* The data quality check results.
|
|
16384
|
+
*/
|
|
14502
16385
|
dataQualityResults?: ListDataQualityResultsResponseBodyPagingInfoDataQualityResults[];
|
|
14503
16386
|
/**
|
|
14504
16387
|
* @example
|
|
@@ -14527,11 +16410,24 @@ export declare class ListDataQualityResultsResponseBodyPagingInfo extends $tea.M
|
|
|
14527
16410
|
}
|
|
14528
16411
|
export declare class ListDataQualityRulesResponseBodyPagingInfoDataQualityRulesCheckingConfigThresholdsCritical extends $tea.Model {
|
|
14529
16412
|
/**
|
|
16413
|
+
* @remarks
|
|
16414
|
+
* The comparison operator. Valid values:
|
|
16415
|
+
*
|
|
16416
|
+
* * \\>
|
|
16417
|
+
* * \\>=
|
|
16418
|
+
* * <
|
|
16419
|
+
* * <=
|
|
16420
|
+
* * !=
|
|
16421
|
+
* * \\=
|
|
16422
|
+
*
|
|
14530
16423
|
* @example
|
|
14531
16424
|
* >
|
|
14532
16425
|
*/
|
|
14533
16426
|
operator?: string;
|
|
14534
16427
|
/**
|
|
16428
|
+
* @remarks
|
|
16429
|
+
* The threshold value.
|
|
16430
|
+
*
|
|
14535
16431
|
* @example
|
|
14536
16432
|
* 100.0
|
|
14537
16433
|
*/
|
|
@@ -14548,11 +16444,24 @@ export declare class ListDataQualityRulesResponseBodyPagingInfoDataQualityRulesC
|
|
|
14548
16444
|
}
|
|
14549
16445
|
export declare class ListDataQualityRulesResponseBodyPagingInfoDataQualityRulesCheckingConfigThresholdsExpected extends $tea.Model {
|
|
14550
16446
|
/**
|
|
16447
|
+
* @remarks
|
|
16448
|
+
* The comparison operator. Valid values:
|
|
16449
|
+
*
|
|
16450
|
+
* * \\>
|
|
16451
|
+
* * \\>=
|
|
16452
|
+
* * <
|
|
16453
|
+
* * <=
|
|
16454
|
+
* * !=
|
|
16455
|
+
* * \\=
|
|
16456
|
+
*
|
|
14551
16457
|
* @example
|
|
14552
16458
|
* >
|
|
14553
16459
|
*/
|
|
14554
16460
|
operator?: string;
|
|
14555
16461
|
/**
|
|
16462
|
+
* @remarks
|
|
16463
|
+
* The threshold value.
|
|
16464
|
+
*
|
|
14556
16465
|
* @example
|
|
14557
16466
|
* 100.0
|
|
14558
16467
|
*/
|
|
@@ -14569,11 +16478,24 @@ export declare class ListDataQualityRulesResponseBodyPagingInfoDataQualityRulesC
|
|
|
14569
16478
|
}
|
|
14570
16479
|
export declare class ListDataQualityRulesResponseBodyPagingInfoDataQualityRulesCheckingConfigThresholdsWarned extends $tea.Model {
|
|
14571
16480
|
/**
|
|
16481
|
+
* @remarks
|
|
16482
|
+
* The comparison operator. Valid values:
|
|
16483
|
+
*
|
|
16484
|
+
* * \\>
|
|
16485
|
+
* * \\>=
|
|
16486
|
+
* * <
|
|
16487
|
+
* * <=
|
|
16488
|
+
* * !=
|
|
16489
|
+
* * \\=
|
|
16490
|
+
*
|
|
14572
16491
|
* @example
|
|
14573
16492
|
* >
|
|
14574
16493
|
*/
|
|
14575
16494
|
operator?: string;
|
|
14576
16495
|
/**
|
|
16496
|
+
* @remarks
|
|
16497
|
+
* The threshold value.
|
|
16498
|
+
*
|
|
14577
16499
|
* @example
|
|
14578
16500
|
* 100.0
|
|
14579
16501
|
*/
|
|
@@ -14589,8 +16511,20 @@ export declare class ListDataQualityRulesResponseBodyPagingInfoDataQualityRulesC
|
|
|
14589
16511
|
});
|
|
14590
16512
|
}
|
|
14591
16513
|
export declare class ListDataQualityRulesResponseBodyPagingInfoDataQualityRulesCheckingConfigThresholds extends $tea.Model {
|
|
16514
|
+
/**
|
|
16515
|
+
* @remarks
|
|
16516
|
+
* The threshold settings for critical alerts.
|
|
16517
|
+
*/
|
|
14592
16518
|
critical?: ListDataQualityRulesResponseBodyPagingInfoDataQualityRulesCheckingConfigThresholdsCritical;
|
|
16519
|
+
/**
|
|
16520
|
+
* @remarks
|
|
16521
|
+
* The expected threshold setting.
|
|
16522
|
+
*/
|
|
14593
16523
|
expected?: ListDataQualityRulesResponseBodyPagingInfoDataQualityRulesCheckingConfigThresholdsExpected;
|
|
16524
|
+
/**
|
|
16525
|
+
* @remarks
|
|
16526
|
+
* The threshold settings for normal alerts.
|
|
16527
|
+
*/
|
|
14594
16528
|
warned?: ListDataQualityRulesResponseBodyPagingInfoDataQualityRulesCheckingConfigThresholdsWarned;
|
|
14595
16529
|
static names(): {
|
|
14596
16530
|
[key: string]: string;
|
|
@@ -14604,12 +16538,29 @@ export declare class ListDataQualityRulesResponseBodyPagingInfoDataQualityRulesC
|
|
|
14604
16538
|
}
|
|
14605
16539
|
export declare class ListDataQualityRulesResponseBodyPagingInfoDataQualityRulesCheckingConfig extends $tea.Model {
|
|
14606
16540
|
/**
|
|
16541
|
+
* @remarks
|
|
16542
|
+
* 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.
|
|
16543
|
+
*
|
|
14607
16544
|
* @example
|
|
14608
16545
|
* { "bizdate": [ "-1", "-7", "-1m" ] }
|
|
14609
16546
|
*/
|
|
14610
16547
|
referencedSamplesFilter?: string;
|
|
16548
|
+
/**
|
|
16549
|
+
* @remarks
|
|
16550
|
+
* The threshold settings.
|
|
16551
|
+
*/
|
|
14611
16552
|
thresholds?: ListDataQualityRulesResponseBodyPagingInfoDataQualityRulesCheckingConfigThresholds;
|
|
14612
16553
|
/**
|
|
16554
|
+
* @remarks
|
|
16555
|
+
* The threshold calculation method. Valid values:
|
|
16556
|
+
*
|
|
16557
|
+
* * Fixed
|
|
16558
|
+
* * Fluctation
|
|
16559
|
+
* * FluctationDiscreate
|
|
16560
|
+
* * Auto
|
|
16561
|
+
* * Average
|
|
16562
|
+
* * Variance
|
|
16563
|
+
*
|
|
14613
16564
|
* @example
|
|
14614
16565
|
* Fixed
|
|
14615
16566
|
*/
|
|
@@ -14626,11 +16577,19 @@ export declare class ListDataQualityRulesResponseBodyPagingInfoDataQualityRulesC
|
|
|
14626
16577
|
}
|
|
14627
16578
|
export declare class ListDataQualityRulesResponseBodyPagingInfoDataQualityRulesErrorHandlers extends $tea.Model {
|
|
14628
16579
|
/**
|
|
16580
|
+
* @remarks
|
|
16581
|
+
* 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.
|
|
16582
|
+
*
|
|
14629
16583
|
* @example
|
|
14630
16584
|
* SELECT * FROM tb_api_log WHERE id IS NULL
|
|
14631
16585
|
*/
|
|
14632
16586
|
errorDataFilter?: string;
|
|
14633
16587
|
/**
|
|
16588
|
+
* @remarks
|
|
16589
|
+
* The type of the operation. Valid values:
|
|
16590
|
+
*
|
|
16591
|
+
* * SaveErrorData
|
|
16592
|
+
*
|
|
14634
16593
|
* @example
|
|
14635
16594
|
* SaveErrorData
|
|
14636
16595
|
*/
|
|
@@ -14647,21 +16606,49 @@ export declare class ListDataQualityRulesResponseBodyPagingInfoDataQualityRulesE
|
|
|
14647
16606
|
}
|
|
14648
16607
|
export declare class ListDataQualityRulesResponseBodyPagingInfoDataQualityRulesSamplingConfig extends $tea.Model {
|
|
14649
16608
|
/**
|
|
16609
|
+
* @remarks
|
|
16610
|
+
* The metrics used for sampling. Valid values:
|
|
16611
|
+
*
|
|
16612
|
+
* * Count: the number of rows in the table.
|
|
16613
|
+
* * Min: the minimum value of the field.
|
|
16614
|
+
* * Max: the maximum value of the field.
|
|
16615
|
+
* * Avg: the average value of the field.
|
|
16616
|
+
* * DistinctCount: the number of unique values of the field after deduplication.
|
|
16617
|
+
* * DistinctPercent: the percentage of the number of unique values of the field after deduplication to the number of rows in the table.
|
|
16618
|
+
* * DuplicatedCount: the number of duplicated values in the field.
|
|
16619
|
+
* * DuplicatedPercent: the percentage of the number of duplicated values of the field to the number of rows in the table.
|
|
16620
|
+
* * TableSize: the table size.
|
|
16621
|
+
* * NullValueCount: the number of rows in which the field is set to null.
|
|
16622
|
+
* * NullValuePercent: the percentage of the number of rows in which the field is set to null to the number of rows in the table.
|
|
16623
|
+
* * GroupCount: the field value and the number of rows for each field value.
|
|
16624
|
+
* * CountNotIn: the number of rows in which the field values are different from the referenced values that you specified in the rule.
|
|
16625
|
+
* * CountDistinctNotIn: the number of unique values that are different from the referenced values that you specified in the rule after deduplication.
|
|
16626
|
+
* * UserDefinedSql: indicates that the data is sampled by executing custom SQL statements.
|
|
16627
|
+
*
|
|
14650
16628
|
* @example
|
|
14651
16629
|
* Max
|
|
14652
16630
|
*/
|
|
14653
16631
|
metric?: string;
|
|
14654
16632
|
/**
|
|
16633
|
+
* @remarks
|
|
16634
|
+
* The parameters required for sampling.
|
|
16635
|
+
*
|
|
14655
16636
|
* @example
|
|
14656
16637
|
* { "Columns": [ "id", "name" ] , "SQL": "select count(1) from table;"}
|
|
14657
16638
|
*/
|
|
14658
16639
|
metricParameters?: string;
|
|
14659
16640
|
/**
|
|
16641
|
+
* @remarks
|
|
16642
|
+
* The statements that are used to filter unnecessary data during sampling. The statements can be up to 16,777,215 characters in length.
|
|
16643
|
+
*
|
|
14660
16644
|
* @example
|
|
14661
16645
|
* id IS NULL
|
|
14662
16646
|
*/
|
|
14663
16647
|
samplingFilter?: string;
|
|
14664
16648
|
/**
|
|
16649
|
+
* @remarks
|
|
16650
|
+
* 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.
|
|
16651
|
+
*
|
|
14665
16652
|
* @example
|
|
14666
16653
|
* SET odps.sql.udf.timeout=600s;
|
|
14667
16654
|
* SET odps.sql.python.version=cp27;
|
|
@@ -14679,21 +16666,43 @@ export declare class ListDataQualityRulesResponseBodyPagingInfoDataQualityRulesS
|
|
|
14679
16666
|
}
|
|
14680
16667
|
export declare class ListDataQualityRulesResponseBodyPagingInfoDataQualityRulesTarget extends $tea.Model {
|
|
14681
16668
|
/**
|
|
16669
|
+
* @remarks
|
|
16670
|
+
* The type of the database to which the table belongs. Valid values:
|
|
16671
|
+
*
|
|
16672
|
+
* * maxcompute
|
|
16673
|
+
* * emr
|
|
16674
|
+
* * cdh
|
|
16675
|
+
* * hologres
|
|
16676
|
+
* * analyticdb_for_postgresql
|
|
16677
|
+
* * analyticdb_for_mysql
|
|
16678
|
+
* * starrocks
|
|
16679
|
+
*
|
|
14682
16680
|
* @example
|
|
14683
16681
|
* maxcompute
|
|
14684
16682
|
*/
|
|
14685
16683
|
databaseType?: string;
|
|
14686
16684
|
/**
|
|
16685
|
+
* @remarks
|
|
16686
|
+
* The configuration of the partitioned table.
|
|
16687
|
+
*
|
|
14687
16688
|
* @example
|
|
14688
16689
|
* ds=$[yyyymmdd-1]
|
|
14689
16690
|
*/
|
|
14690
16691
|
partitionSpec?: string;
|
|
14691
16692
|
/**
|
|
16693
|
+
* @remarks
|
|
16694
|
+
* The ID of the table that is limited by the rule in Data Map.
|
|
16695
|
+
*
|
|
14692
16696
|
* @example
|
|
14693
16697
|
* odps.unit_test.tb_unit_test
|
|
14694
16698
|
*/
|
|
14695
16699
|
tableGuid?: string;
|
|
14696
16700
|
/**
|
|
16701
|
+
* @remarks
|
|
16702
|
+
* The type of the monitored object. Valid values:
|
|
16703
|
+
*
|
|
16704
|
+
* * Table
|
|
16705
|
+
*
|
|
14697
16706
|
* @example
|
|
14698
16707
|
* Table
|
|
14699
16708
|
*/
|
|
@@ -14709,42 +16718,86 @@ export declare class ListDataQualityRulesResponseBodyPagingInfoDataQualityRulesT
|
|
|
14709
16718
|
});
|
|
14710
16719
|
}
|
|
14711
16720
|
export declare class ListDataQualityRulesResponseBodyPagingInfoDataQualityRules extends $tea.Model {
|
|
16721
|
+
/**
|
|
16722
|
+
* @remarks
|
|
16723
|
+
* The check settings for sample data.
|
|
16724
|
+
*/
|
|
14712
16725
|
checkingConfig?: ListDataQualityRulesResponseBodyPagingInfoDataQualityRulesCheckingConfig;
|
|
14713
16726
|
/**
|
|
16727
|
+
* @remarks
|
|
16728
|
+
* The description of the rule. The description can be up to 500 characters in length.
|
|
16729
|
+
*
|
|
14714
16730
|
* @example
|
|
14715
16731
|
* this is a odps _sql task
|
|
14716
16732
|
*/
|
|
14717
16733
|
description?: string;
|
|
14718
16734
|
/**
|
|
16735
|
+
* @remarks
|
|
16736
|
+
* Indicates whether the rule is enabled.
|
|
16737
|
+
*
|
|
14719
16738
|
* @example
|
|
14720
16739
|
* true
|
|
14721
16740
|
*/
|
|
14722
16741
|
enabled?: boolean;
|
|
16742
|
+
/**
|
|
16743
|
+
* @remarks
|
|
16744
|
+
* The operations that you can perform after the rule-based check fails.
|
|
16745
|
+
*/
|
|
14723
16746
|
errorHandlers?: ListDataQualityRulesResponseBodyPagingInfoDataQualityRulesErrorHandlers[];
|
|
14724
16747
|
/**
|
|
16748
|
+
* @remarks
|
|
16749
|
+
* The rule ID.
|
|
16750
|
+
*
|
|
14725
16751
|
* @example
|
|
14726
16752
|
* 22130
|
|
14727
16753
|
*/
|
|
14728
16754
|
id?: number;
|
|
16755
|
+
/**
|
|
16756
|
+
* @remarks
|
|
16757
|
+
* The rule name.
|
|
16758
|
+
*/
|
|
14729
16759
|
name?: string;
|
|
14730
16760
|
/**
|
|
16761
|
+
* @remarks
|
|
16762
|
+
* The DataWorks workspace ID.
|
|
16763
|
+
*
|
|
14731
16764
|
* @example
|
|
14732
16765
|
* 100001
|
|
14733
16766
|
*/
|
|
14734
16767
|
projectId?: number;
|
|
16768
|
+
/**
|
|
16769
|
+
* @remarks
|
|
16770
|
+
* The settings for sampling.
|
|
16771
|
+
*/
|
|
14735
16772
|
samplingConfig?: ListDataQualityRulesResponseBodyPagingInfoDataQualityRulesSamplingConfig;
|
|
14736
16773
|
/**
|
|
16774
|
+
* @remarks
|
|
16775
|
+
* The strength of the rule. Valid values:
|
|
16776
|
+
*
|
|
16777
|
+
* * Normal
|
|
16778
|
+
* * High
|
|
16779
|
+
*
|
|
14737
16780
|
* @example
|
|
14738
16781
|
* High
|
|
14739
16782
|
*/
|
|
14740
16783
|
severity?: string;
|
|
16784
|
+
/**
|
|
16785
|
+
* @remarks
|
|
16786
|
+
* The monitored object of the rule.
|
|
16787
|
+
*/
|
|
14741
16788
|
target?: ListDataQualityRulesResponseBodyPagingInfoDataQualityRulesTarget;
|
|
14742
16789
|
/**
|
|
16790
|
+
* @remarks
|
|
16791
|
+
* The ID of the template used by the rule.
|
|
16792
|
+
*
|
|
14743
16793
|
* @example
|
|
14744
16794
|
* system::user_defined
|
|
14745
16795
|
*/
|
|
14746
16796
|
templateCode?: string;
|
|
14747
16797
|
/**
|
|
16798
|
+
* @remarks
|
|
16799
|
+
* The ID of the DataWorks tenant.
|
|
16800
|
+
*
|
|
14748
16801
|
* @example
|
|
14749
16802
|
* 100001
|
|
14750
16803
|
*/
|
|
@@ -14760,18 +16813,31 @@ export declare class ListDataQualityRulesResponseBodyPagingInfoDataQualityRules
|
|
|
14760
16813
|
});
|
|
14761
16814
|
}
|
|
14762
16815
|
export declare class ListDataQualityRulesResponseBodyPagingInfo extends $tea.Model {
|
|
16816
|
+
/**
|
|
16817
|
+
* @remarks
|
|
16818
|
+
* The rules.
|
|
16819
|
+
*/
|
|
14763
16820
|
dataQualityRules?: ListDataQualityRulesResponseBodyPagingInfoDataQualityRules[];
|
|
14764
16821
|
/**
|
|
16822
|
+
* @remarks
|
|
16823
|
+
* The page number.
|
|
16824
|
+
*
|
|
14765
16825
|
* @example
|
|
14766
16826
|
* 1
|
|
14767
16827
|
*/
|
|
14768
16828
|
pageNumber?: number;
|
|
14769
16829
|
/**
|
|
16830
|
+
* @remarks
|
|
16831
|
+
* The number of entries per page.
|
|
16832
|
+
*
|
|
14770
16833
|
* @example
|
|
14771
16834
|
* 10
|
|
14772
16835
|
*/
|
|
14773
16836
|
pageSize?: number;
|
|
14774
16837
|
/**
|
|
16838
|
+
* @remarks
|
|
16839
|
+
* The total number of entries returned.
|
|
16840
|
+
*
|
|
14775
16841
|
* @example
|
|
14776
16842
|
* 294
|
|
14777
16843
|
*/
|
|
@@ -15270,6 +17336,7 @@ export declare class ListDownstreamTaskInstancesResponseBodyPagingInfoTaskInstan
|
|
|
15270
17336
|
* 100
|
|
15271
17337
|
*/
|
|
15272
17338
|
owner?: string;
|
|
17339
|
+
periodNumber?: number;
|
|
15273
17340
|
/**
|
|
15274
17341
|
* @example
|
|
15275
17342
|
* 1
|
|
@@ -15506,6 +17573,7 @@ export declare class ListDownstreamTasksResponseBodyPagingInfoTasks extends $tea
|
|
|
15506
17573
|
* 1234
|
|
15507
17574
|
*/
|
|
15508
17575
|
id?: number;
|
|
17576
|
+
instanceMode?: string;
|
|
15509
17577
|
/**
|
|
15510
17578
|
* @example
|
|
15511
17579
|
* 1710239005403
|
|
@@ -15553,6 +17621,7 @@ export declare class ListDownstreamTasksResponseBodyPagingInfoTasks extends $tea
|
|
|
15553
17621
|
*/
|
|
15554
17622
|
rerunTimes?: number;
|
|
15555
17623
|
runtimeResource?: ListDownstreamTasksResponseBodyPagingInfoTasksRuntimeResource;
|
|
17624
|
+
stepType?: string;
|
|
15556
17625
|
/**
|
|
15557
17626
|
* @example
|
|
15558
17627
|
* 1
|
|
@@ -17446,12 +19515,25 @@ export declare class ListNodesResponseBodyPagingInfo extends $tea.Model {
|
|
|
17446
19515
|
}
|
|
17447
19516
|
export declare class ListProjectMembersResponseBodyPagingInfoProjectMembersRoles extends $tea.Model {
|
|
17448
19517
|
/**
|
|
19518
|
+
* @remarks
|
|
19519
|
+
* The code of the role.
|
|
19520
|
+
*
|
|
17449
19521
|
* @example
|
|
17450
19522
|
* role_project_guest
|
|
17451
19523
|
*/
|
|
17452
19524
|
code?: string;
|
|
19525
|
+
/**
|
|
19526
|
+
* @remarks
|
|
19527
|
+
* The name of the role.
|
|
19528
|
+
*/
|
|
17453
19529
|
name?: string;
|
|
17454
19530
|
/**
|
|
19531
|
+
* @remarks
|
|
19532
|
+
* The type of the role. Valid values:
|
|
19533
|
+
*
|
|
19534
|
+
* * UserCustom: custom role
|
|
19535
|
+
* * System: built-in role
|
|
19536
|
+
*
|
|
17455
19537
|
* @example
|
|
17456
19538
|
* System
|
|
17457
19539
|
*/
|
|
@@ -17468,17 +19550,33 @@ export declare class ListProjectMembersResponseBodyPagingInfoProjectMembersRoles
|
|
|
17468
19550
|
}
|
|
17469
19551
|
export declare class ListProjectMembersResponseBodyPagingInfoProjectMembers extends $tea.Model {
|
|
17470
19552
|
/**
|
|
19553
|
+
* @remarks
|
|
19554
|
+
* The ID of the DataWorks workspace.
|
|
19555
|
+
*
|
|
17471
19556
|
* @example
|
|
17472
19557
|
* 62136
|
|
17473
19558
|
*/
|
|
17474
|
-
projectId?: number;
|
|
19559
|
+
projectId?: number;
|
|
19560
|
+
/**
|
|
19561
|
+
* @remarks
|
|
19562
|
+
* The roles that are assigned to the member.
|
|
19563
|
+
*/
|
|
17475
19564
|
roles?: ListProjectMembersResponseBodyPagingInfoProjectMembersRoles[];
|
|
17476
19565
|
/**
|
|
19566
|
+
* @remarks
|
|
19567
|
+
* The status of the member. Valid values:
|
|
19568
|
+
*
|
|
19569
|
+
* * Normal
|
|
19570
|
+
* * Forbidden
|
|
19571
|
+
*
|
|
17477
19572
|
* @example
|
|
17478
19573
|
* Normal
|
|
17479
19574
|
*/
|
|
17480
19575
|
status?: string;
|
|
17481
19576
|
/**
|
|
19577
|
+
* @remarks
|
|
19578
|
+
* The ID of the account used by the member.
|
|
19579
|
+
*
|
|
17482
19580
|
* @example
|
|
17483
19581
|
* 123422344899
|
|
17484
19582
|
*/
|
|
@@ -17495,17 +19593,30 @@ export declare class ListProjectMembersResponseBodyPagingInfoProjectMembers exte
|
|
|
17495
19593
|
}
|
|
17496
19594
|
export declare class ListProjectMembersResponseBodyPagingInfo extends $tea.Model {
|
|
17497
19595
|
/**
|
|
19596
|
+
* @remarks
|
|
19597
|
+
* The page number.
|
|
19598
|
+
*
|
|
17498
19599
|
* @example
|
|
17499
19600
|
* 1
|
|
17500
19601
|
*/
|
|
17501
19602
|
pageNumber?: number;
|
|
17502
19603
|
/**
|
|
19604
|
+
* @remarks
|
|
19605
|
+
* The number of entries per page.
|
|
19606
|
+
*
|
|
17503
19607
|
* @example
|
|
17504
19608
|
* 10
|
|
17505
19609
|
*/
|
|
17506
19610
|
pageSize?: number;
|
|
19611
|
+
/**
|
|
19612
|
+
* @remarks
|
|
19613
|
+
* The members in the workspace.
|
|
19614
|
+
*/
|
|
17507
19615
|
projectMembers?: ListProjectMembersResponseBodyPagingInfoProjectMembers[];
|
|
17508
19616
|
/**
|
|
19617
|
+
* @remarks
|
|
19618
|
+
* The total number of entries returned.
|
|
19619
|
+
*
|
|
17509
19620
|
* @example
|
|
17510
19621
|
* 12
|
|
17511
19622
|
*/
|
|
@@ -18245,6 +20356,7 @@ export declare class ListTaskInstancesResponseBodyPagingInfoTaskInstances extend
|
|
|
18245
20356
|
* 1000
|
|
18246
20357
|
*/
|
|
18247
20358
|
owner?: string;
|
|
20359
|
+
periodNumber?: number;
|
|
18248
20360
|
/**
|
|
18249
20361
|
* @example
|
|
18250
20362
|
* 1
|
|
@@ -18535,6 +20647,7 @@ export declare class ListTasksResponseBodyPagingInfoTasks extends $tea.Model {
|
|
|
18535
20647
|
* 1234
|
|
18536
20648
|
*/
|
|
18537
20649
|
id?: number;
|
|
20650
|
+
instanceMode?: string;
|
|
18538
20651
|
/**
|
|
18539
20652
|
* @example
|
|
18540
20653
|
* 1710239005403
|
|
@@ -18755,6 +20868,7 @@ export declare class ListUpstreamTaskInstancesResponseBodyPagingInfoTaskInstance
|
|
|
18755
20868
|
* 1000
|
|
18756
20869
|
*/
|
|
18757
20870
|
owner?: string;
|
|
20871
|
+
periodNumber?: number;
|
|
18758
20872
|
/**
|
|
18759
20873
|
* @example
|
|
18760
20874
|
* 1
|
|
@@ -18991,6 +21105,7 @@ export declare class ListUpstreamTasksResponseBodyPagingInfoTasks extends $tea.M
|
|
|
18991
21105
|
* 1234
|
|
18992
21106
|
*/
|
|
18993
21107
|
id?: number;
|
|
21108
|
+
instanceMode?: string;
|
|
18994
21109
|
/**
|
|
18995
21110
|
* @example
|
|
18996
21111
|
* 1710239005403
|
|
@@ -19038,6 +21153,7 @@ export declare class ListUpstreamTasksResponseBodyPagingInfoTasks extends $tea.M
|
|
|
19038
21153
|
*/
|
|
19039
21154
|
rerunTimes?: number;
|
|
19040
21155
|
runtimeResource?: ListUpstreamTasksResponseBodyPagingInfoTasksRuntimeResource;
|
|
21156
|
+
stepType?: string;
|
|
19041
21157
|
/**
|
|
19042
21158
|
* @example
|
|
19043
21159
|
* 1
|
|
@@ -19303,6 +21419,250 @@ export declare class StartDIJobRequestRealtimeStartSettings extends $tea.Model {
|
|
|
19303
21419
|
[key: string]: any;
|
|
19304
21420
|
});
|
|
19305
21421
|
}
|
|
21422
|
+
export declare class UpdateAlertRuleRequestNotificationReceivers extends $tea.Model {
|
|
21423
|
+
/**
|
|
21424
|
+
* @example
|
|
21425
|
+
* {"atAll":true}
|
|
21426
|
+
*/
|
|
21427
|
+
extension?: string;
|
|
21428
|
+
/**
|
|
21429
|
+
* @example
|
|
21430
|
+
* TaskOwner
|
|
21431
|
+
*/
|
|
21432
|
+
receiverType?: string;
|
|
21433
|
+
receiverValues?: string[];
|
|
21434
|
+
static names(): {
|
|
21435
|
+
[key: string]: string;
|
|
21436
|
+
};
|
|
21437
|
+
static types(): {
|
|
21438
|
+
[key: string]: any;
|
|
21439
|
+
};
|
|
21440
|
+
constructor(map?: {
|
|
21441
|
+
[key: string]: any;
|
|
21442
|
+
});
|
|
21443
|
+
}
|
|
21444
|
+
export declare class UpdateAlertRuleRequestNotification extends $tea.Model {
|
|
21445
|
+
channels?: string[];
|
|
21446
|
+
/**
|
|
21447
|
+
* @example
|
|
21448
|
+
* 30
|
|
21449
|
+
*/
|
|
21450
|
+
intervalInMinutes?: number;
|
|
21451
|
+
/**
|
|
21452
|
+
* @example
|
|
21453
|
+
* 3
|
|
21454
|
+
*/
|
|
21455
|
+
maximum?: number;
|
|
21456
|
+
receivers?: UpdateAlertRuleRequestNotificationReceivers[];
|
|
21457
|
+
/**
|
|
21458
|
+
* @example
|
|
21459
|
+
* 00:00:00
|
|
21460
|
+
*/
|
|
21461
|
+
silenceEndTime?: string;
|
|
21462
|
+
/**
|
|
21463
|
+
* @example
|
|
21464
|
+
* 00:00:00
|
|
21465
|
+
*/
|
|
21466
|
+
silenceStartTime?: string;
|
|
21467
|
+
static names(): {
|
|
21468
|
+
[key: string]: string;
|
|
21469
|
+
};
|
|
21470
|
+
static types(): {
|
|
21471
|
+
[key: string]: any;
|
|
21472
|
+
};
|
|
21473
|
+
constructor(map?: {
|
|
21474
|
+
[key: string]: any;
|
|
21475
|
+
});
|
|
21476
|
+
}
|
|
21477
|
+
export declare class UpdateAlertRuleRequestTriggerConditionExtensionCycleUnfinishedCycleAndTime extends $tea.Model {
|
|
21478
|
+
/**
|
|
21479
|
+
* @example
|
|
21480
|
+
* 1
|
|
21481
|
+
*/
|
|
21482
|
+
cycleId?: number;
|
|
21483
|
+
/**
|
|
21484
|
+
* @example
|
|
21485
|
+
* 01:00
|
|
21486
|
+
*/
|
|
21487
|
+
time?: string;
|
|
21488
|
+
static names(): {
|
|
21489
|
+
[key: string]: string;
|
|
21490
|
+
};
|
|
21491
|
+
static types(): {
|
|
21492
|
+
[key: string]: any;
|
|
21493
|
+
};
|
|
21494
|
+
constructor(map?: {
|
|
21495
|
+
[key: string]: any;
|
|
21496
|
+
});
|
|
21497
|
+
}
|
|
21498
|
+
export declare class UpdateAlertRuleRequestTriggerConditionExtensionCycleUnfinished extends $tea.Model {
|
|
21499
|
+
cycleAndTime?: UpdateAlertRuleRequestTriggerConditionExtensionCycleUnfinishedCycleAndTime[];
|
|
21500
|
+
static names(): {
|
|
21501
|
+
[key: string]: string;
|
|
21502
|
+
};
|
|
21503
|
+
static types(): {
|
|
21504
|
+
[key: string]: any;
|
|
21505
|
+
};
|
|
21506
|
+
constructor(map?: {
|
|
21507
|
+
[key: string]: any;
|
|
21508
|
+
});
|
|
21509
|
+
}
|
|
21510
|
+
export declare class UpdateAlertRuleRequestTriggerConditionExtensionError extends $tea.Model {
|
|
21511
|
+
/**
|
|
21512
|
+
* @example
|
|
21513
|
+
* true
|
|
21514
|
+
*/
|
|
21515
|
+
autoRerunAlert?: boolean;
|
|
21516
|
+
streamTaskIds?: number[];
|
|
21517
|
+
static names(): {
|
|
21518
|
+
[key: string]: string;
|
|
21519
|
+
};
|
|
21520
|
+
static types(): {
|
|
21521
|
+
[key: string]: any;
|
|
21522
|
+
};
|
|
21523
|
+
constructor(map?: {
|
|
21524
|
+
[key: string]: any;
|
|
21525
|
+
});
|
|
21526
|
+
}
|
|
21527
|
+
export declare class UpdateAlertRuleRequestTriggerConditionExtensionInstanceErrorCount extends $tea.Model {
|
|
21528
|
+
/**
|
|
21529
|
+
* @example
|
|
21530
|
+
* 10
|
|
21531
|
+
*/
|
|
21532
|
+
count?: number;
|
|
21533
|
+
static names(): {
|
|
21534
|
+
[key: string]: string;
|
|
21535
|
+
};
|
|
21536
|
+
static types(): {
|
|
21537
|
+
[key: string]: any;
|
|
21538
|
+
};
|
|
21539
|
+
constructor(map?: {
|
|
21540
|
+
[key: string]: any;
|
|
21541
|
+
});
|
|
21542
|
+
}
|
|
21543
|
+
export declare class UpdateAlertRuleRequestTriggerConditionExtensionInstanceErrorPercentage extends $tea.Model {
|
|
21544
|
+
/**
|
|
21545
|
+
* @example
|
|
21546
|
+
* 10
|
|
21547
|
+
*/
|
|
21548
|
+
percentage?: number;
|
|
21549
|
+
static names(): {
|
|
21550
|
+
[key: string]: string;
|
|
21551
|
+
};
|
|
21552
|
+
static types(): {
|
|
21553
|
+
[key: string]: any;
|
|
21554
|
+
};
|
|
21555
|
+
constructor(map?: {
|
|
21556
|
+
[key: string]: any;
|
|
21557
|
+
});
|
|
21558
|
+
}
|
|
21559
|
+
export declare class UpdateAlertRuleRequestTriggerConditionExtensionInstanceTransferFluctuate extends $tea.Model {
|
|
21560
|
+
/**
|
|
21561
|
+
* @example
|
|
21562
|
+
* 10
|
|
21563
|
+
*/
|
|
21564
|
+
percentage?: number;
|
|
21565
|
+
/**
|
|
21566
|
+
* @example
|
|
21567
|
+
* abs
|
|
21568
|
+
*/
|
|
21569
|
+
trend?: string;
|
|
21570
|
+
static names(): {
|
|
21571
|
+
[key: string]: string;
|
|
21572
|
+
};
|
|
21573
|
+
static types(): {
|
|
21574
|
+
[key: string]: any;
|
|
21575
|
+
};
|
|
21576
|
+
constructor(map?: {
|
|
21577
|
+
[key: string]: any;
|
|
21578
|
+
});
|
|
21579
|
+
}
|
|
21580
|
+
export declare class UpdateAlertRuleRequestTriggerConditionExtensionTimeout extends $tea.Model {
|
|
21581
|
+
/**
|
|
21582
|
+
* @example
|
|
21583
|
+
* 10
|
|
21584
|
+
*/
|
|
21585
|
+
timeoutInMinutes?: number;
|
|
21586
|
+
static names(): {
|
|
21587
|
+
[key: string]: string;
|
|
21588
|
+
};
|
|
21589
|
+
static types(): {
|
|
21590
|
+
[key: string]: any;
|
|
21591
|
+
};
|
|
21592
|
+
constructor(map?: {
|
|
21593
|
+
[key: string]: any;
|
|
21594
|
+
});
|
|
21595
|
+
}
|
|
21596
|
+
export declare class UpdateAlertRuleRequestTriggerConditionExtensionUnFinished extends $tea.Model {
|
|
21597
|
+
/**
|
|
21598
|
+
* @example
|
|
21599
|
+
* 12:00
|
|
21600
|
+
*/
|
|
21601
|
+
unFinishedTime?: string;
|
|
21602
|
+
static names(): {
|
|
21603
|
+
[key: string]: string;
|
|
21604
|
+
};
|
|
21605
|
+
static types(): {
|
|
21606
|
+
[key: string]: any;
|
|
21607
|
+
};
|
|
21608
|
+
constructor(map?: {
|
|
21609
|
+
[key: string]: any;
|
|
21610
|
+
});
|
|
21611
|
+
}
|
|
21612
|
+
export declare class UpdateAlertRuleRequestTriggerConditionExtension extends $tea.Model {
|
|
21613
|
+
cycleUnfinished?: UpdateAlertRuleRequestTriggerConditionExtensionCycleUnfinished;
|
|
21614
|
+
error?: UpdateAlertRuleRequestTriggerConditionExtensionError;
|
|
21615
|
+
instanceErrorCount?: UpdateAlertRuleRequestTriggerConditionExtensionInstanceErrorCount;
|
|
21616
|
+
instanceErrorPercentage?: UpdateAlertRuleRequestTriggerConditionExtensionInstanceErrorPercentage;
|
|
21617
|
+
instanceTransferFluctuate?: UpdateAlertRuleRequestTriggerConditionExtensionInstanceTransferFluctuate;
|
|
21618
|
+
timeout?: UpdateAlertRuleRequestTriggerConditionExtensionTimeout;
|
|
21619
|
+
unFinished?: UpdateAlertRuleRequestTriggerConditionExtensionUnFinished;
|
|
21620
|
+
static names(): {
|
|
21621
|
+
[key: string]: string;
|
|
21622
|
+
};
|
|
21623
|
+
static types(): {
|
|
21624
|
+
[key: string]: any;
|
|
21625
|
+
};
|
|
21626
|
+
constructor(map?: {
|
|
21627
|
+
[key: string]: any;
|
|
21628
|
+
});
|
|
21629
|
+
}
|
|
21630
|
+
export declare class UpdateAlertRuleRequestTriggerConditionTarget extends $tea.Model {
|
|
21631
|
+
allowTasks?: number[];
|
|
21632
|
+
ids?: number[];
|
|
21633
|
+
/**
|
|
21634
|
+
* @example
|
|
21635
|
+
* Task
|
|
21636
|
+
*/
|
|
21637
|
+
type?: string;
|
|
21638
|
+
static names(): {
|
|
21639
|
+
[key: string]: string;
|
|
21640
|
+
};
|
|
21641
|
+
static types(): {
|
|
21642
|
+
[key: string]: any;
|
|
21643
|
+
};
|
|
21644
|
+
constructor(map?: {
|
|
21645
|
+
[key: string]: any;
|
|
21646
|
+
});
|
|
21647
|
+
}
|
|
21648
|
+
export declare class UpdateAlertRuleRequestTriggerCondition extends $tea.Model {
|
|
21649
|
+
extension?: UpdateAlertRuleRequestTriggerConditionExtension;
|
|
21650
|
+
target?: UpdateAlertRuleRequestTriggerConditionTarget;
|
|
21651
|
+
/**
|
|
21652
|
+
* @example
|
|
21653
|
+
* ERROR
|
|
21654
|
+
*/
|
|
21655
|
+
type?: string;
|
|
21656
|
+
static names(): {
|
|
21657
|
+
[key: string]: string;
|
|
21658
|
+
};
|
|
21659
|
+
static types(): {
|
|
21660
|
+
[key: string]: any;
|
|
21661
|
+
};
|
|
21662
|
+
constructor(map?: {
|
|
21663
|
+
[key: string]: any;
|
|
21664
|
+
});
|
|
21665
|
+
}
|
|
19306
21666
|
export declare class UpdateDIAlarmRuleRequestNotificationSettingsNotificationChannels extends $tea.Model {
|
|
19307
21667
|
channels?: string[];
|
|
19308
21668
|
/**
|
|
@@ -19755,6 +22115,21 @@ export default class Client extends OpenApi {
|
|
|
19755
22115
|
* @returns CloneDataSourceResponse
|
|
19756
22116
|
*/
|
|
19757
22117
|
cloneDataSource(request: CloneDataSourceRequest): Promise<CloneDataSourceResponse>;
|
|
22118
|
+
/**
|
|
22119
|
+
* 创建自定义监控报警规则
|
|
22120
|
+
*
|
|
22121
|
+
* @param tmpReq - CreateAlertRuleRequest
|
|
22122
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
22123
|
+
* @returns CreateAlertRuleResponse
|
|
22124
|
+
*/
|
|
22125
|
+
createAlertRuleWithOptions(tmpReq: CreateAlertRuleRequest, runtime: $Util.RuntimeOptions): Promise<CreateAlertRuleResponse>;
|
|
22126
|
+
/**
|
|
22127
|
+
* 创建自定义监控报警规则
|
|
22128
|
+
*
|
|
22129
|
+
* @param request - CreateAlertRuleRequest
|
|
22130
|
+
* @returns CreateAlertRuleResponse
|
|
22131
|
+
*/
|
|
22132
|
+
createAlertRule(request: CreateAlertRuleRequest): Promise<CreateAlertRuleResponse>;
|
|
19758
22133
|
/**
|
|
19759
22134
|
* 创建数据集成报警规则
|
|
19760
22135
|
*
|
|
@@ -19995,6 +22370,21 @@ export default class Client extends OpenApi {
|
|
|
19995
22370
|
* @returns CreateWorkflowDefinitionResponse
|
|
19996
22371
|
*/
|
|
19997
22372
|
createWorkflowDefinition(request: CreateWorkflowDefinitionRequest): Promise<CreateWorkflowDefinitionResponse>;
|
|
22373
|
+
/**
|
|
22374
|
+
* 删除自定义监控报警规则
|
|
22375
|
+
*
|
|
22376
|
+
* @param request - DeleteAlertRuleRequest
|
|
22377
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
22378
|
+
* @returns DeleteAlertRuleResponse
|
|
22379
|
+
*/
|
|
22380
|
+
deleteAlertRuleWithOptions(request: DeleteAlertRuleRequest, runtime: $Util.RuntimeOptions): Promise<DeleteAlertRuleResponse>;
|
|
22381
|
+
/**
|
|
22382
|
+
* 删除自定义监控报警规则
|
|
22383
|
+
*
|
|
22384
|
+
* @param request - DeleteAlertRuleRequest
|
|
22385
|
+
* @returns DeleteAlertRuleResponse
|
|
22386
|
+
*/
|
|
22387
|
+
deleteAlertRule(request: DeleteAlertRuleRequest): Promise<DeleteAlertRuleResponse>;
|
|
19998
22388
|
/**
|
|
19999
22389
|
* Deletes an alert rule configured for a synchronization task.
|
|
20000
22390
|
*
|
|
@@ -20128,7 +22518,7 @@ export default class Client extends OpenApi {
|
|
|
20128
22518
|
*/
|
|
20129
22519
|
deleteProject(request: DeleteProjectRequest): Promise<DeleteProjectResponse>;
|
|
20130
22520
|
/**
|
|
20131
|
-
*
|
|
22521
|
+
* Removes a member from a workspace.
|
|
20132
22522
|
*
|
|
20133
22523
|
* @param request - DeleteProjectMemberRequest
|
|
20134
22524
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -20136,7 +22526,7 @@ export default class Client extends OpenApi {
|
|
|
20136
22526
|
*/
|
|
20137
22527
|
deleteProjectMemberWithOptions(request: DeleteProjectMemberRequest, runtime: $Util.RuntimeOptions): Promise<DeleteProjectMemberResponse>;
|
|
20138
22528
|
/**
|
|
20139
|
-
*
|
|
22529
|
+
* Removes a member from a workspace.
|
|
20140
22530
|
*
|
|
20141
22531
|
* @param request - DeleteProjectMemberRequest
|
|
20142
22532
|
* @returns DeleteProjectMemberResponse
|
|
@@ -20263,6 +22653,21 @@ export default class Client extends OpenApi {
|
|
|
20263
22653
|
* @returns ExecDeploymentStageResponse
|
|
20264
22654
|
*/
|
|
20265
22655
|
execDeploymentStage(request: ExecDeploymentStageRequest): Promise<ExecDeploymentStageResponse>;
|
|
22656
|
+
/**
|
|
22657
|
+
* 获取自定义监控报警规则
|
|
22658
|
+
*
|
|
22659
|
+
* @param request - GetAlertRuleRequest
|
|
22660
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
22661
|
+
* @returns GetAlertRuleResponse
|
|
22662
|
+
*/
|
|
22663
|
+
getAlertRuleWithOptions(request: GetAlertRuleRequest, runtime: $Util.RuntimeOptions): Promise<GetAlertRuleResponse>;
|
|
22664
|
+
/**
|
|
22665
|
+
* 获取自定义监控报警规则
|
|
22666
|
+
*
|
|
22667
|
+
* @param request - GetAlertRuleRequest
|
|
22668
|
+
* @returns GetAlertRuleResponse
|
|
22669
|
+
*/
|
|
22670
|
+
getAlertRule(request: GetAlertRuleRequest): Promise<GetAlertRuleResponse>;
|
|
20266
22671
|
/**
|
|
20267
22672
|
* 查看数据集成任务
|
|
20268
22673
|
*
|
|
@@ -20407,7 +22812,7 @@ export default class Client extends OpenApi {
|
|
|
20407
22812
|
*/
|
|
20408
22813
|
getProject(request: GetProjectRequest): Promise<GetProjectResponse>;
|
|
20409
22814
|
/**
|
|
20410
|
-
*
|
|
22815
|
+
* Queries the details about a member in a workspace.
|
|
20411
22816
|
*
|
|
20412
22817
|
* @param request - GetProjectMemberRequest
|
|
20413
22818
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -20415,7 +22820,7 @@ export default class Client extends OpenApi {
|
|
|
20415
22820
|
*/
|
|
20416
22821
|
getProjectMemberWithOptions(request: GetProjectMemberRequest, runtime: $Util.RuntimeOptions): Promise<GetProjectMemberResponse>;
|
|
20417
22822
|
/**
|
|
20418
|
-
*
|
|
22823
|
+
* Queries the details about a member in a workspace.
|
|
20419
22824
|
*
|
|
20420
22825
|
* @param request - GetProjectMemberRequest
|
|
20421
22826
|
* @returns GetProjectMemberResponse
|
|
@@ -20493,12 +22898,16 @@ export default class Client extends OpenApi {
|
|
|
20493
22898
|
*/
|
|
20494
22899
|
getTask(request: GetTaskRequest): Promise<GetTaskResponse>;
|
|
20495
22900
|
/**
|
|
22901
|
+
* Queries the information about an instance.
|
|
22902
|
+
*
|
|
20496
22903
|
* @param request - GetTaskInstanceRequest
|
|
20497
22904
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
20498
22905
|
* @returns GetTaskInstanceResponse
|
|
20499
22906
|
*/
|
|
20500
22907
|
getTaskInstanceWithOptions(request: GetTaskInstanceRequest, runtime: $Util.RuntimeOptions): Promise<GetTaskInstanceResponse>;
|
|
20501
22908
|
/**
|
|
22909
|
+
* Queries the information about an instance.
|
|
22910
|
+
*
|
|
20502
22911
|
* @param request - GetTaskInstanceRequest
|
|
20503
22912
|
* @returns GetTaskInstanceResponse
|
|
20504
22913
|
*/
|
|
@@ -20530,7 +22939,7 @@ export default class Client extends OpenApi {
|
|
|
20530
22939
|
*/
|
|
20531
22940
|
getWorkflowDefinition(request: GetWorkflowDefinitionRequest): Promise<GetWorkflowDefinitionResponse>;
|
|
20532
22941
|
/**
|
|
20533
|
-
*
|
|
22942
|
+
* Assigns roles to members in a workspace.
|
|
20534
22943
|
*
|
|
20535
22944
|
* @param tmpReq - GrantMemberProjectRolesRequest
|
|
20536
22945
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -20538,7 +22947,7 @@ export default class Client extends OpenApi {
|
|
|
20538
22947
|
*/
|
|
20539
22948
|
grantMemberProjectRolesWithOptions(tmpReq: GrantMemberProjectRolesRequest, runtime: $Util.RuntimeOptions): Promise<GrantMemberProjectRolesResponse>;
|
|
20540
22949
|
/**
|
|
20541
|
-
*
|
|
22950
|
+
* Assigns roles to members in a workspace.
|
|
20542
22951
|
*
|
|
20543
22952
|
* @param request - GrantMemberProjectRolesRequest
|
|
20544
22953
|
* @returns GrantMemberProjectRolesResponse
|
|
@@ -20559,6 +22968,21 @@ export default class Client extends OpenApi {
|
|
|
20559
22968
|
* @returns ImportWorkflowDefinitionResponse
|
|
20560
22969
|
*/
|
|
20561
22970
|
importWorkflowDefinition(request: ImportWorkflowDefinitionRequest): Promise<ImportWorkflowDefinitionResponse>;
|
|
22971
|
+
/**
|
|
22972
|
+
* 分页获取自定义监控报警规则
|
|
22973
|
+
*
|
|
22974
|
+
* @param tmpReq - ListAlertRulesRequest
|
|
22975
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
22976
|
+
* @returns ListAlertRulesResponse
|
|
22977
|
+
*/
|
|
22978
|
+
listAlertRulesWithOptions(tmpReq: ListAlertRulesRequest, runtime: $Util.RuntimeOptions): Promise<ListAlertRulesResponse>;
|
|
22979
|
+
/**
|
|
22980
|
+
* 分页获取自定义监控报警规则
|
|
22981
|
+
*
|
|
22982
|
+
* @param request - ListAlertRulesRequest
|
|
22983
|
+
* @returns ListAlertRulesResponse
|
|
22984
|
+
*/
|
|
22985
|
+
listAlertRules(request: ListAlertRulesRequest): Promise<ListAlertRulesResponse>;
|
|
20562
22986
|
/**
|
|
20563
22987
|
* 查看数据集成报警规则
|
|
20564
22988
|
*
|
|
@@ -20635,7 +23059,7 @@ export default class Client extends OpenApi {
|
|
|
20635
23059
|
*/
|
|
20636
23060
|
listDIJobs(request: ListDIJobsRequest): Promise<ListDIJobsResponse>;
|
|
20637
23061
|
/**
|
|
20638
|
-
*
|
|
23062
|
+
* Queries a list of instances generated by a data quality monitoring task by page.
|
|
20639
23063
|
*
|
|
20640
23064
|
* @param request - ListDataQualityEvaluationTaskInstancesRequest
|
|
20641
23065
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -20643,19 +23067,23 @@ export default class Client extends OpenApi {
|
|
|
20643
23067
|
*/
|
|
20644
23068
|
listDataQualityEvaluationTaskInstancesWithOptions(request: ListDataQualityEvaluationTaskInstancesRequest, runtime: $Util.RuntimeOptions): Promise<ListDataQualityEvaluationTaskInstancesResponse>;
|
|
20645
23069
|
/**
|
|
20646
|
-
*
|
|
23070
|
+
* Queries a list of instances generated by a data quality monitoring task by page.
|
|
20647
23071
|
*
|
|
20648
23072
|
* @param request - ListDataQualityEvaluationTaskInstancesRequest
|
|
20649
23073
|
* @returns ListDataQualityEvaluationTaskInstancesResponse
|
|
20650
23074
|
*/
|
|
20651
23075
|
listDataQualityEvaluationTaskInstances(request: ListDataQualityEvaluationTaskInstancesRequest): Promise<ListDataQualityEvaluationTaskInstancesResponse>;
|
|
20652
23076
|
/**
|
|
23077
|
+
* Queries a list of data quality monitoring tasks by page.
|
|
23078
|
+
*
|
|
20653
23079
|
* @param request - ListDataQualityEvaluationTasksRequest
|
|
20654
23080
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
20655
23081
|
* @returns ListDataQualityEvaluationTasksResponse
|
|
20656
23082
|
*/
|
|
20657
23083
|
listDataQualityEvaluationTasksWithOptions(request: ListDataQualityEvaluationTasksRequest, runtime: $Util.RuntimeOptions): Promise<ListDataQualityEvaluationTasksResponse>;
|
|
20658
23084
|
/**
|
|
23085
|
+
* Queries a list of data quality monitoring tasks by page.
|
|
23086
|
+
*
|
|
20659
23087
|
* @param request - ListDataQualityEvaluationTasksRequest
|
|
20660
23088
|
* @returns ListDataQualityEvaluationTasksResponse
|
|
20661
23089
|
*/
|
|
@@ -20672,7 +23100,7 @@ export default class Client extends OpenApi {
|
|
|
20672
23100
|
*/
|
|
20673
23101
|
listDataQualityResults(request: ListDataQualityResultsRequest): Promise<ListDataQualityResultsResponse>;
|
|
20674
23102
|
/**
|
|
20675
|
-
*
|
|
23103
|
+
* Queries a list of data quality monitoring rules by page.
|
|
20676
23104
|
*
|
|
20677
23105
|
* @param request - ListDataQualityRulesRequest
|
|
20678
23106
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -20680,7 +23108,7 @@ export default class Client extends OpenApi {
|
|
|
20680
23108
|
*/
|
|
20681
23109
|
listDataQualityRulesWithOptions(request: ListDataQualityRulesRequest, runtime: $Util.RuntimeOptions): Promise<ListDataQualityRulesResponse>;
|
|
20682
23110
|
/**
|
|
20683
|
-
*
|
|
23111
|
+
* Queries a list of data quality monitoring rules by page.
|
|
20684
23112
|
*
|
|
20685
23113
|
* @param request - ListDataQualityRulesRequest
|
|
20686
23114
|
* @returns ListDataQualityRulesResponse
|
|
@@ -20814,7 +23242,7 @@ export default class Client extends OpenApi {
|
|
|
20814
23242
|
*/
|
|
20815
23243
|
listNodes(request: ListNodesRequest): Promise<ListNodesResponse>;
|
|
20816
23244
|
/**
|
|
20817
|
-
*
|
|
23245
|
+
* Queries details about members in a workspace.
|
|
20818
23246
|
*
|
|
20819
23247
|
* @param tmpReq - ListProjectMembersRequest
|
|
20820
23248
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -20822,7 +23250,7 @@ export default class Client extends OpenApi {
|
|
|
20822
23250
|
*/
|
|
20823
23251
|
listProjectMembersWithOptions(tmpReq: ListProjectMembersRequest, runtime: $Util.RuntimeOptions): Promise<ListProjectMembersResponse>;
|
|
20824
23252
|
/**
|
|
20825
|
-
*
|
|
23253
|
+
* Queries details about members in a workspace.
|
|
20826
23254
|
*
|
|
20827
23255
|
* @param request - ListProjectMembersRequest
|
|
20828
23256
|
* @returns ListProjectMembersResponse
|
|
@@ -21138,7 +23566,7 @@ export default class Client extends OpenApi {
|
|
|
21138
23566
|
*/
|
|
21139
23567
|
resumeTaskInstances(request: ResumeTaskInstancesRequest): Promise<ResumeTaskInstancesResponse>;
|
|
21140
23568
|
/**
|
|
21141
|
-
*
|
|
23569
|
+
* Revokes roles that are assigned to a member in a workspace.
|
|
21142
23570
|
*
|
|
21143
23571
|
* @param tmpReq - RevokeMemberProjectRolesRequest
|
|
21144
23572
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -21146,7 +23574,7 @@ export default class Client extends OpenApi {
|
|
|
21146
23574
|
*/
|
|
21147
23575
|
revokeMemberProjectRolesWithOptions(tmpReq: RevokeMemberProjectRolesRequest, runtime: $Util.RuntimeOptions): Promise<RevokeMemberProjectRolesResponse>;
|
|
21148
23576
|
/**
|
|
21149
|
-
*
|
|
23577
|
+
* Revokes roles that are assigned to a member in a workspace.
|
|
21150
23578
|
*
|
|
21151
23579
|
* @param request - RevokeMemberProjectRolesRequest
|
|
21152
23580
|
* @returns RevokeMemberProjectRolesResponse
|
|
@@ -21226,6 +23654,21 @@ export default class Client extends OpenApi {
|
|
|
21226
23654
|
* @returns TriggerSchedulerTaskInstanceResponse
|
|
21227
23655
|
*/
|
|
21228
23656
|
triggerSchedulerTaskInstance(request: TriggerSchedulerTaskInstanceRequest): Promise<TriggerSchedulerTaskInstanceResponse>;
|
|
23657
|
+
/**
|
|
23658
|
+
* 创建自定义监控报警规则
|
|
23659
|
+
*
|
|
23660
|
+
* @param tmpReq - UpdateAlertRuleRequest
|
|
23661
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
23662
|
+
* @returns UpdateAlertRuleResponse
|
|
23663
|
+
*/
|
|
23664
|
+
updateAlertRuleWithOptions(tmpReq: UpdateAlertRuleRequest, runtime: $Util.RuntimeOptions): Promise<UpdateAlertRuleResponse>;
|
|
23665
|
+
/**
|
|
23666
|
+
* 创建自定义监控报警规则
|
|
23667
|
+
*
|
|
23668
|
+
* @param request - UpdateAlertRuleRequest
|
|
23669
|
+
* @returns UpdateAlertRuleResponse
|
|
23670
|
+
*/
|
|
23671
|
+
updateAlertRule(request: UpdateAlertRuleRequest): Promise<UpdateAlertRuleResponse>;
|
|
21229
23672
|
/**
|
|
21230
23673
|
* 更新数据集成报警规则
|
|
21231
23674
|
*
|