@alicloud/dataworks-public20240518 2.2.0 → 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 CHANGED
@@ -155,7 +155,7 @@ export declare class DataQualityRule extends $tea.Model {
155
155
  target?: DataQualityRuleTarget;
156
156
  /**
157
157
  * @example
158
- * system::user_defined
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
@@ -3472,6 +3700,10 @@ export declare class GetNodeResponse extends $tea.Model {
3472
3700
  export declare class GetProjectRequest extends $tea.Model {
3473
3701
  /**
3474
3702
  * @remarks
3703
+ * 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.
3704
+ *
3705
+ * You must configure this parameter to specify the DataWorks workspace to which the API operation is applied.
3706
+ *
3475
3707
  * This parameter is required.
3476
3708
  *
3477
3709
  * @example
@@ -3489,8 +3721,15 @@ export declare class GetProjectRequest extends $tea.Model {
3489
3721
  });
3490
3722
  }
3491
3723
  export declare class GetProjectResponseBody extends $tea.Model {
3724
+ /**
3725
+ * @remarks
3726
+ * The information about the workspace.
3727
+ */
3492
3728
  project?: GetProjectResponseBodyProject;
3493
3729
  /**
3730
+ * @remarks
3731
+ * The request ID.
3732
+ *
3494
3733
  * @example
3495
3734
  * 22C97E95-F023-56B5-8852-B1A77A17XXXX
3496
3735
  */
@@ -3524,6 +3763,10 @@ export declare class GetProjectResponse extends $tea.Model {
3524
3763
  export declare class GetProjectMemberRequest extends $tea.Model {
3525
3764
  /**
3526
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
+ *
3527
3770
  * This parameter is required.
3528
3771
  *
3529
3772
  * @example
@@ -3532,6 +3775,8 @@ export declare class GetProjectMemberRequest extends $tea.Model {
3532
3775
  projectId?: number;
3533
3776
  /**
3534
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
+ *
3535
3780
  * This parameter is required.
3536
3781
  *
3537
3782
  * @example
@@ -3549,8 +3794,15 @@ export declare class GetProjectMemberRequest extends $tea.Model {
3549
3794
  });
3550
3795
  }
3551
3796
  export declare class GetProjectMemberResponseBody extends $tea.Model {
3797
+ /**
3798
+ * @remarks
3799
+ * The details about the member in the workspace.
3800
+ */
3552
3801
  projectMember?: GetProjectMemberResponseBodyProjectMember;
3553
3802
  /**
3803
+ * @remarks
3804
+ * The request ID. You can use the ID to query logs and troubleshoot issues.
3805
+ *
3554
3806
  * @example
3555
3807
  * 8abcb91f-d266-4073-b907-2ed670378ed1
3556
3808
  */
@@ -3886,6 +4138,8 @@ export declare class GetTaskResponse extends $tea.Model {
3886
4138
  export declare class GetTaskInstanceRequest extends $tea.Model {
3887
4139
  /**
3888
4140
  * @remarks
4141
+ * The instance ID.
4142
+ *
3889
4143
  * This parameter is required.
3890
4144
  *
3891
4145
  * @example
@@ -3904,10 +4158,17 @@ export declare class GetTaskInstanceRequest extends $tea.Model {
3904
4158
  }
3905
4159
  export declare class GetTaskInstanceResponseBody extends $tea.Model {
3906
4160
  /**
4161
+ * @remarks
4162
+ * The request ID.
4163
+ *
3907
4164
  * @example
3908
4165
  * 22C97E95-F023-56B5-8852-B1A77A17XXXX
3909
4166
  */
3910
4167
  requestId?: string;
4168
+ /**
4169
+ * @remarks
4170
+ * The details of the instance.
4171
+ */
3911
4172
  taskInstance?: GetTaskInstanceResponseBodyTaskInstance;
3912
4173
  static names(): {
3913
4174
  [key: string]: string;
@@ -4070,6 +4331,8 @@ export declare class GetWorkflowDefinitionResponse extends $tea.Model {
4070
4331
  export declare class GrantMemberProjectRolesRequest extends $tea.Model {
4071
4332
  /**
4072
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
+ *
4073
4336
  * This parameter is required.
4074
4337
  *
4075
4338
  * @example
@@ -4078,11 +4341,17 @@ export declare class GrantMemberProjectRolesRequest extends $tea.Model {
4078
4341
  projectId?: number;
4079
4342
  /**
4080
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
+ *
4081
4348
  * This parameter is required.
4082
4349
  */
4083
4350
  roleCodes?: string[];
4084
4351
  /**
4085
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
+ *
4086
4355
  * This parameter is required.
4087
4356
  *
4088
4357
  * @example
@@ -4102,6 +4371,8 @@ export declare class GrantMemberProjectRolesRequest extends $tea.Model {
4102
4371
  export declare class GrantMemberProjectRolesShrinkRequest extends $tea.Model {
4103
4372
  /**
4104
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
+ *
4105
4376
  * This parameter is required.
4106
4377
  *
4107
4378
  * @example
@@ -4110,11 +4381,17 @@ export declare class GrantMemberProjectRolesShrinkRequest extends $tea.Model {
4110
4381
  projectId?: number;
4111
4382
  /**
4112
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
+ *
4113
4388
  * This parameter is required.
4114
4389
  */
4115
4390
  roleCodesShrink?: string;
4116
4391
  /**
4117
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
+ *
4118
4395
  * This parameter is required.
4119
4396
  *
4120
4397
  * @example
@@ -4133,6 +4410,9 @@ export declare class GrantMemberProjectRolesShrinkRequest extends $tea.Model {
4133
4410
  }
4134
4411
  export declare class GrantMemberProjectRolesResponseBody extends $tea.Model {
4135
4412
  /**
4413
+ * @remarks
4414
+ * The request ID. You can use the ID to query logs and troubleshoot issues.
4415
+ *
4136
4416
  * @example
4137
4417
  * 2d9ced66-38ef-4923-baf6-391dd3a7e656
4138
4418
  */
@@ -4220,17 +4500,138 @@ export declare class ImportWorkflowDefinitionResponse extends $tea.Model {
4220
4500
  [key: string]: any;
4221
4501
  });
4222
4502
  }
4223
- export declare class ListDIAlarmRulesRequest extends $tea.Model {
4503
+ export declare class ListAlertRulesRequest extends $tea.Model {
4224
4504
  /**
4225
4505
  * @example
4226
- * 34988
4506
+ * error_rule
4227
4507
  */
4228
- DIAlarmRuleId?: number;
4508
+ name?: string;
4229
4509
  /**
4230
4510
  * @example
4231
- * 1000001
4511
+ * 1933790683****
4232
4512
  */
4233
- jobId?: number;
4513
+ owner?: string;
4514
+ /**
4515
+ * @remarks
4516
+ * This parameter is required.
4517
+ *
4518
+ * @example
4519
+ * 1
4520
+ */
4521
+ pageNumber?: number;
4522
+ /**
4523
+ * @remarks
4524
+ * This parameter is required.
4525
+ *
4526
+ * @example
4527
+ * 10
4528
+ */
4529
+ pageSize?: number;
4530
+ /**
4531
+ * @example
4532
+ * 1933790683****
4533
+ */
4534
+ receiver?: string;
4535
+ taskIds?: number[];
4536
+ types?: string[];
4537
+ static names(): {
4538
+ [key: string]: string;
4539
+ };
4540
+ static types(): {
4541
+ [key: string]: any;
4542
+ };
4543
+ constructor(map?: {
4544
+ [key: string]: any;
4545
+ });
4546
+ }
4547
+ export declare class ListAlertRulesShrinkRequest extends $tea.Model {
4548
+ /**
4549
+ * @example
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;
4234
4635
  /**
4235
4636
  * @example
4236
4637
  * 1
@@ -4680,56 +5081,89 @@ export declare class ListDIJobsResponse extends $tea.Model {
4680
5081
  }
4681
5082
  export declare class ListDataQualityEvaluationTaskInstancesRequest extends $tea.Model {
4682
5083
  /**
5084
+ * @remarks
5085
+ * The start time of the data quality monitoring task.
5086
+ *
4683
5087
  * @example
4684
5088
  * 2024-04-01
4685
5089
  */
4686
5090
  bizdateFrom?: string;
4687
5091
  /**
5092
+ * @remarks
5093
+ * The end time of the data quality monitoring task.
5094
+ *
4688
5095
  * @example
4689
5096
  * 2024-05-01
4690
5097
  */
4691
5098
  bizdateTo?: string;
4692
5099
  /**
5100
+ * @remarks
5101
+ * The earliest start time at which the instances are generated.
5102
+ *
4693
5103
  * @example
4694
5104
  * 1710239005403
4695
5105
  */
4696
5106
  createTimeFrom?: number;
4697
5107
  /**
5108
+ * @remarks
5109
+ * The latest start time at which the instances are generated.
5110
+ *
4698
5111
  * @example
4699
5112
  * 1710239005403
4700
5113
  */
4701
5114
  createTimeTo?: number;
4702
5115
  /**
5116
+ * @remarks
5117
+ * The ID of the data quality monitoring task.
5118
+ *
4703
5119
  * @example
4704
5120
  * 10000
4705
5121
  */
4706
5122
  dataQualityEvaluationTaskId?: number;
4707
5123
  /**
5124
+ * @remarks
5125
+ * The page number. Default value: 1.
5126
+ *
4708
5127
  * @example
4709
5128
  * 1
4710
5129
  */
4711
5130
  pageNumber?: number;
4712
5131
  /**
5132
+ * @remarks
5133
+ * The number of entries per page. Default value: 10.
5134
+ *
4713
5135
  * @example
4714
5136
  * 10
4715
5137
  */
4716
5138
  pageSize?: number;
4717
5139
  /**
5140
+ * @remarks
5141
+ * The DataWorks workspace ID.
5142
+ *
4718
5143
  * @example
4719
5144
  * 100
4720
5145
  */
4721
5146
  projectId?: number;
4722
5147
  /**
5148
+ * @remarks
5149
+ * The ID of the table in Data Map.
5150
+ *
4723
5151
  * @example
4724
5152
  * odps.unit_test.tb_unit_test
4725
5153
  */
4726
5154
  tableGuid?: string;
4727
5155
  /**
5156
+ * @remarks
5157
+ * The name of the trigger module of the instance.
5158
+ *
4728
5159
  * @example
4729
5160
  * CWF2
4730
5161
  */
4731
5162
  triggerClient?: string;
4732
5163
  /**
5164
+ * @remarks
5165
+ * The ID of the instance that is generated by the task.
5166
+ *
4733
5167
  * @example
4734
5168
  * 1001
4735
5169
  */
@@ -4746,13 +5180,14 @@ export declare class ListDataQualityEvaluationTaskInstancesRequest extends $tea.
4746
5180
  }
4747
5181
  export declare class ListDataQualityEvaluationTaskInstancesResponseBody extends $tea.Model {
4748
5182
  /**
4749
- * @example
4750
- * 200
5183
+ * @remarks
5184
+ * The pagination information.
4751
5185
  */
4752
- code?: string;
4753
- message?: string;
4754
5186
  pagingInfo?: ListDataQualityEvaluationTaskInstancesResponseBodyPagingInfo;
4755
5187
  /**
5188
+ * @remarks
5189
+ * The request ID.
5190
+ *
4756
5191
  * @example
4757
5192
  * 691CA452-D37A-4ED0-9441
4758
5193
  */
@@ -4784,23 +5219,39 @@ export declare class ListDataQualityEvaluationTaskInstancesResponse extends $tea
4784
5219
  });
4785
5220
  }
4786
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
+ */
4787
5226
  name?: string;
4788
5227
  /**
5228
+ * @remarks
5229
+ * The page number. Default value: 1.
5230
+ *
4789
5231
  * @example
4790
5232
  * 1
4791
5233
  */
4792
5234
  pageNumber?: number;
4793
5235
  /**
5236
+ * @remarks
5237
+ * The number of entries per page. Default value: 10.
5238
+ *
4794
5239
  * @example
4795
5240
  * 10
4796
5241
  */
4797
5242
  pageSize?: number;
4798
5243
  /**
5244
+ * @remarks
5245
+ * The DataWorks workspace ID.
5246
+ *
4799
5247
  * @example
4800
5248
  * 100
4801
5249
  */
4802
5250
  projectId?: number;
4803
5251
  /**
5252
+ * @remarks
5253
+ * The ID of the table in Data Map.
5254
+ *
4804
5255
  * @example
4805
5256
  * odps.unit_test.tb_unit_test
4806
5257
  */
@@ -4817,13 +5268,14 @@ export declare class ListDataQualityEvaluationTasksRequest extends $tea.Model {
4817
5268
  }
4818
5269
  export declare class ListDataQualityEvaluationTasksResponseBody extends $tea.Model {
4819
5270
  /**
4820
- * @example
4821
- * 200
5271
+ * @remarks
5272
+ * The pagination information.
4822
5273
  */
4823
- code?: string;
4824
- message?: string;
4825
5274
  pagingInfo?: ListDataQualityEvaluationTasksResponseBodyPagingInfo;
4826
5275
  /**
5276
+ * @remarks
5277
+ * The request ID.
5278
+ *
4827
5279
  * @example
4828
5280
  * 691CA452-D37A-4ED0-9441
4829
5281
  */
@@ -4856,11 +5308,17 @@ export declare class ListDataQualityEvaluationTasksResponse extends $tea.Model {
4856
5308
  }
4857
5309
  export declare class ListDataQualityResultsRequest extends $tea.Model {
4858
5310
  /**
5311
+ * @remarks
5312
+ * The beginning of the time range to query.
5313
+ *
4859
5314
  * @example
4860
5315
  * 2024-05-01
4861
5316
  */
4862
5317
  bizdateFrom?: string;
4863
5318
  /**
5319
+ * @remarks
5320
+ * The end of the time range to query.
5321
+ *
4864
5322
  * @example
4865
5323
  * 2024-05-04
4866
5324
  */
@@ -4917,13 +5375,14 @@ export declare class ListDataQualityResultsRequest extends $tea.Model {
4917
5375
  }
4918
5376
  export declare class ListDataQualityResultsResponseBody extends $tea.Model {
4919
5377
  /**
4920
- * @example
4921
- * 200
5378
+ * @remarks
5379
+ * The pagination information.
4922
5380
  */
4923
- code?: string;
4924
- message?: string;
4925
5381
  pagingInfo?: ListDataQualityResultsResponseBodyPagingInfo;
4926
5382
  /**
5383
+ * @remarks
5384
+ * The request ID.
5385
+ *
4927
5386
  * @example
4928
5387
  * 691CA452-D37A-4ED0-9441
4929
5388
  */
@@ -4956,31 +5415,49 @@ export declare class ListDataQualityResultsResponse extends $tea.Model {
4956
5415
  }
4957
5416
  export declare class ListDataQualityRulesRequest extends $tea.Model {
4958
5417
  /**
5418
+ * @remarks
5419
+ * The ID of the data quality monitoring task that is associated with the rule.
5420
+ *
4959
5421
  * @example
4960
5422
  * 10000
4961
5423
  */
4962
5424
  dataQualityEvaluationTaskId?: number;
4963
5425
  /**
5426
+ * @remarks
5427
+ * The name of the rule. Fuzzy match is supported.
5428
+ *
4964
5429
  * @example
4965
5430
  * unit_test
4966
5431
  */
4967
5432
  name?: string;
4968
5433
  /**
5434
+ * @remarks
5435
+ * The page number. Default value: 1.
5436
+ *
4969
5437
  * @example
4970
5438
  * 1
4971
5439
  */
4972
5440
  pageNumber?: number;
4973
5441
  /**
5442
+ * @remarks
5443
+ * The number of entries per page. Default value: 10. Maximum value: 200.
5444
+ *
4974
5445
  * @example
4975
5446
  * 10
4976
5447
  */
4977
5448
  pageSize?: number;
4978
5449
  /**
5450
+ * @remarks
5451
+ * The DataWorks workspace ID.
5452
+ *
4979
5453
  * @example
4980
5454
  * 10002
4981
5455
  */
4982
5456
  projectId?: number;
4983
5457
  /**
5458
+ * @remarks
5459
+ * The ID of the table that is limited by the rule in Data Map.
5460
+ *
4984
5461
  * @example
4985
5462
  * odps.unit_test.tb_unit_test
4986
5463
  */
@@ -4997,13 +5474,14 @@ export declare class ListDataQualityRulesRequest extends $tea.Model {
4997
5474
  }
4998
5475
  export declare class ListDataQualityRulesResponseBody extends $tea.Model {
4999
5476
  /**
5000
- * @example
5001
- * 200
5477
+ * @remarks
5478
+ * The pagination information.
5002
5479
  */
5003
- code?: string;
5004
- message?: string;
5005
5480
  pagingInfo?: ListDataQualityRulesResponseBodyPagingInfo;
5006
5481
  /**
5482
+ * @remarks
5483
+ * The request ID.
5484
+ *
5007
5485
  * @example
5008
5486
  * 691CA452-D37A-4ED0-9441
5009
5487
  */
@@ -5834,24 +6312,42 @@ export declare class ListNodesResponse extends $tea.Model {
5834
6312
  }
5835
6313
  export declare class ListProjectMembersRequest extends $tea.Model {
5836
6314
  /**
6315
+ * @remarks
6316
+ * The page number.
6317
+ *
5837
6318
  * @example
5838
6319
  * 1
5839
6320
  */
5840
6321
  pageNumber?: number;
5841
6322
  /**
6323
+ * @remarks
6324
+ * The number of entries per page. Default value: 10. Maximum value: 100.
6325
+ *
5842
6326
  * @example
5843
6327
  * 10
5844
6328
  */
5845
6329
  pageSize?: number;
5846
6330
  /**
5847
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
+ *
5848
6336
  * This parameter is required.
5849
6337
  *
5850
6338
  * @example
5851
6339
  * 62136
5852
6340
  */
5853
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
+ */
5854
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
+ */
5855
6351
  userIds?: string[];
5856
6352
  static names(): {
5857
6353
  [key: string]: string;
@@ -5865,24 +6361,42 @@ export declare class ListProjectMembersRequest extends $tea.Model {
5865
6361
  }
5866
6362
  export declare class ListProjectMembersShrinkRequest extends $tea.Model {
5867
6363
  /**
6364
+ * @remarks
6365
+ * The page number.
6366
+ *
5868
6367
  * @example
5869
6368
  * 1
5870
6369
  */
5871
6370
  pageNumber?: number;
5872
6371
  /**
6372
+ * @remarks
6373
+ * The number of entries per page. Default value: 10. Maximum value: 100.
6374
+ *
5873
6375
  * @example
5874
6376
  * 10
5875
6377
  */
5876
6378
  pageSize?: number;
5877
6379
  /**
5878
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
+ *
5879
6385
  * This parameter is required.
5880
6386
  *
5881
6387
  * @example
5882
6388
  * 62136
5883
6389
  */
5884
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
+ */
5885
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
+ */
5886
6400
  userIdsShrink?: string;
5887
6401
  static names(): {
5888
6402
  [key: string]: string;
@@ -5895,8 +6409,15 @@ export declare class ListProjectMembersShrinkRequest extends $tea.Model {
5895
6409
  });
5896
6410
  }
5897
6411
  export declare class ListProjectMembersResponseBody extends $tea.Model {
6412
+ /**
6413
+ * @remarks
6414
+ * The pagination information.
6415
+ */
5898
6416
  pagingInfo?: ListProjectMembersResponseBodyPagingInfo;
5899
6417
  /**
6418
+ * @remarks
6419
+ * The request ID. You can use the ID to query logs and troubleshoot issues.
6420
+ *
5900
6421
  * @example
5901
6422
  * 9FBBBB1F-DD5E-5D8E-8F50-37F77460F056
5902
6423
  */
@@ -6547,7 +7068,9 @@ export declare class ListTaskInstancesRequest extends $tea.Model {
6547
7068
  * @example
6548
7069
  * ODPS_SQL
6549
7070
  */
6550
- taskType?: number;
7071
+ taskType?: string;
7072
+ triggerRecurrence?: string;
7073
+ triggerType?: string;
6551
7074
  /**
6552
7075
  * @example
6553
7076
  * 1234
@@ -6637,7 +7160,9 @@ export declare class ListTaskInstancesShrinkRequest extends $tea.Model {
6637
7160
  * @example
6638
7161
  * ODPS_SQL
6639
7162
  */
6640
- taskType?: number;
7163
+ taskType?: string;
7164
+ triggerRecurrence?: string;
7165
+ triggerType?: string;
6641
7166
  /**
6642
7167
  * @example
6643
7168
  * 1234
@@ -8028,6 +8553,8 @@ export declare class ResumeTaskInstancesResponse extends $tea.Model {
8028
8553
  export declare class RevokeMemberProjectRolesRequest extends $tea.Model {
8029
8554
  /**
8030
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
+ *
8031
8558
  * This parameter is required.
8032
8559
  *
8033
8560
  * @example
@@ -8036,11 +8563,17 @@ export declare class RevokeMemberProjectRolesRequest extends $tea.Model {
8036
8563
  projectId?: number;
8037
8564
  /**
8038
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
+ *
8039
8570
  * This parameter is required.
8040
8571
  */
8041
8572
  roleCodes?: string[];
8042
8573
  /**
8043
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
+ *
8044
8577
  * This parameter is required.
8045
8578
  *
8046
8579
  * @example
@@ -8060,6 +8593,8 @@ export declare class RevokeMemberProjectRolesRequest extends $tea.Model {
8060
8593
  export declare class RevokeMemberProjectRolesShrinkRequest extends $tea.Model {
8061
8594
  /**
8062
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
+ *
8063
8598
  * This parameter is required.
8064
8599
  *
8065
8600
  * @example
@@ -8068,11 +8603,17 @@ export declare class RevokeMemberProjectRolesShrinkRequest extends $tea.Model {
8068
8603
  projectId?: number;
8069
8604
  /**
8070
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
+ *
8071
8610
  * This parameter is required.
8072
8611
  */
8073
8612
  roleCodesShrink?: string;
8074
8613
  /**
8075
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
+ *
8076
8617
  * This parameter is required.
8077
8618
  *
8078
8619
  * @example
@@ -8091,6 +8632,9 @@ export declare class RevokeMemberProjectRolesShrinkRequest extends $tea.Model {
8091
8632
  }
8092
8633
  export declare class RevokeMemberProjectRolesResponseBody extends $tea.Model {
8093
8634
  /**
8635
+ * @remarks
8636
+ * The request ID. You can use the ID to query logs and troubleshoot issues.
8637
+ *
8094
8638
  * @example
8095
8639
  * 676271D6-53B4-57BE-89FA-72F7AE1418DF
8096
8640
  */
@@ -8552,24 +9096,127 @@ export declare class TriggerSchedulerTaskInstanceResponse extends $tea.Model {
8552
9096
  [key: string]: any;
8553
9097
  });
8554
9098
  }
8555
- export declare class UpdateDIAlarmRuleRequest extends $tea.Model {
9099
+ export declare class UpdateAlertRuleRequest extends $tea.Model {
8556
9100
  /**
8557
- * @remarks
8558
- * This parameter is required.
8559
- *
8560
9101
  * @example
8561
- * 34982
9102
+ * true
8562
9103
  */
8563
- DIAlarmRuleId?: number;
9104
+ enabled?: boolean;
8564
9105
  /**
8565
9106
  * @example
8566
- * 1
9107
+ * 105412
8567
9108
  */
8568
- DIJobId?: number;
8569
- description?: string;
9109
+ id?: number;
8570
9110
  /**
8571
9111
  * @example
8572
- * true
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
8573
9220
  */
8574
9221
  enabled?: boolean;
8575
9222
  /**
@@ -10021,7 +10668,7 @@ export declare class DataQualityResultRule extends $tea.Model {
10021
10668
  target?: DataQualityResultRuleTarget;
10022
10669
  /**
10023
10670
  * @example
10024
- * system::user_defined
10671
+ * SYSTEM:user_defined_sql
10025
10672
  */
10026
10673
  templateCode?: string;
10027
10674
  /**
@@ -10221,27 +10868,15 @@ export declare class DataQualityRuleTarget extends $tea.Model {
10221
10868
  [key: string]: any;
10222
10869
  });
10223
10870
  }
10224
- export declare class CreateDIAlarmRuleRequestNotificationSettingsNotificationChannels extends $tea.Model {
10225
- channels?: string[];
10871
+ export declare class CreateAlertRuleRequestNotificationReceivers extends $tea.Model {
10226
10872
  /**
10227
10873
  * @example
10228
- * Warning
10874
+ * {"atAll":true}
10229
10875
  */
10230
- severity?: string;
10231
- static names(): {
10232
- [key: string]: string;
10233
- };
10234
- static types(): {
10235
- [key: string]: any;
10236
- };
10237
- constructor(map?: {
10238
- [key: string]: any;
10239
- });
10240
- }
10241
- export declare class CreateDIAlarmRuleRequestNotificationSettingsNotificationReceivers extends $tea.Model {
10876
+ extension?: string;
10242
10877
  /**
10243
10878
  * @example
10244
- * DingToken
10879
+ * TaskOwner
10245
10880
  */
10246
10881
  receiverType?: string;
10247
10882
  receiverValues?: string[];
@@ -10255,14 +10890,37 @@ export declare class CreateDIAlarmRuleRequestNotificationSettingsNotificationRec
10255
10890
  [key: string]: any;
10256
10891
  });
10257
10892
  }
10258
- export declare class CreateDIAlarmRuleRequestNotificationSettings extends $tea.Model {
10893
+ export declare class CreateAlertRuleRequestNotification extends $tea.Model {
10894
+ /**
10895
+ * @remarks
10896
+ * This parameter is required.
10897
+ */
10898
+ channels?: string[];
10259
10899
  /**
10260
10900
  * @example
10261
- * 5
10901
+ * 30
10262
10902
  */
10263
- inhibitionInterval?: number;
10264
- notificationChannels?: CreateDIAlarmRuleRequestNotificationSettingsNotificationChannels[];
10265
- notificationReceivers?: CreateDIAlarmRuleRequestNotificationSettingsNotificationReceivers[];
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;
10266
10924
  static names(): {
10267
10925
  [key: string]: string;
10268
10926
  };
@@ -10273,23 +10931,17 @@ export declare class CreateDIAlarmRuleRequestNotificationSettings extends $tea.M
10273
10931
  [key: string]: any;
10274
10932
  });
10275
10933
  }
10276
- export declare class CreateDIAlarmRuleRequestTriggerConditions extends $tea.Model {
10277
- ddlReportTags?: string[];
10278
- /**
10279
- * @example
10280
- * 10
10281
- */
10282
- duration?: number;
10934
+ export declare class CreateAlertRuleRequestTriggerConditionExtensionCycleUnfinishedCycleAndTime extends $tea.Model {
10283
10935
  /**
10284
10936
  * @example
10285
- * Warning
10937
+ * 1
10286
10938
  */
10287
- severity?: string;
10939
+ cycleId?: number;
10288
10940
  /**
10289
10941
  * @example
10290
- * 10
10942
+ * 12:00
10291
10943
  */
10292
- threshold?: number;
10944
+ time?: string;
10293
10945
  static names(): {
10294
10946
  [key: string]: string;
10295
10947
  };
@@ -10300,12 +10952,8 @@ export declare class CreateDIAlarmRuleRequestTriggerConditions extends $tea.Mode
10300
10952
  [key: string]: any;
10301
10953
  });
10302
10954
  }
10303
- export declare class CreateDIJobRequestDestinationDataSourceSettings extends $tea.Model {
10304
- /**
10305
- * @example
10306
- * holo_datasource_1
10307
- */
10308
- dataSourceName?: string;
10955
+ export declare class CreateAlertRuleRequestTriggerConditionExtensionCycleUnfinished extends $tea.Model {
10956
+ cycleAndTime?: CreateAlertRuleRequestTriggerConditionExtensionCycleUnfinishedCycleAndTime[];
10309
10957
  static names(): {
10310
10958
  [key: string]: string;
10311
10959
  };
@@ -10316,17 +10964,13 @@ export declare class CreateDIJobRequestDestinationDataSourceSettings extends $te
10316
10964
  [key: string]: any;
10317
10965
  });
10318
10966
  }
10319
- export declare class CreateDIJobRequestJobSettingsColumnDataTypeSettings extends $tea.Model {
10320
- /**
10321
- * @example
10322
- * text
10323
- */
10324
- destinationDataType?: string;
10967
+ export declare class CreateAlertRuleRequestTriggerConditionExtensionError extends $tea.Model {
10325
10968
  /**
10326
10969
  * @example
10327
- * bigint
10970
+ * false
10328
10971
  */
10329
- sourceDataType?: string;
10972
+ autoRerunAlert?: boolean;
10973
+ streamTaskIds?: number[];
10330
10974
  static names(): {
10331
10975
  [key: string]: string;
10332
10976
  };
@@ -10337,17 +10981,12 @@ export declare class CreateDIJobRequestJobSettingsColumnDataTypeSettings extends
10337
10981
  [key: string]: any;
10338
10982
  });
10339
10983
  }
10340
- export declare class CreateDIJobRequestJobSettingsCycleScheduleSettings extends $tea.Model {
10341
- /**
10342
- * @example
10343
- * Full
10344
- */
10345
- cycleMigrationType?: string;
10984
+ export declare class CreateAlertRuleRequestTriggerConditionExtensionInstanceErrorCount extends $tea.Model {
10346
10985
  /**
10347
10986
  * @example
10348
- * bizdate=$bizdate
10987
+ * 5
10349
10988
  */
10350
- scheduleParameters?: string;
10989
+ count?: number;
10351
10990
  static names(): {
10352
10991
  [key: string]: string;
10353
10992
  };
@@ -10358,17 +10997,12 @@ export declare class CreateDIJobRequestJobSettingsCycleScheduleSettings extends
10358
10997
  [key: string]: any;
10359
10998
  });
10360
10999
  }
10361
- export declare class CreateDIJobRequestJobSettingsDdlHandlingSettings extends $tea.Model {
10362
- /**
10363
- * @example
10364
- * Critical
10365
- */
10366
- action?: string;
11000
+ export declare class CreateAlertRuleRequestTriggerConditionExtensionInstanceErrorPercentage extends $tea.Model {
10367
11001
  /**
10368
11002
  * @example
10369
- * AddColumn
11003
+ * 5
10370
11004
  */
10371
- type?: string;
11005
+ percentage?: number;
10372
11006
  static names(): {
10373
11007
  [key: string]: string;
10374
11008
  };
@@ -10379,17 +11013,17 @@ export declare class CreateDIJobRequestJobSettingsDdlHandlingSettings extends $t
10379
11013
  [key: string]: any;
10380
11014
  });
10381
11015
  }
10382
- export declare class CreateDIJobRequestJobSettingsRuntimeSettings extends $tea.Model {
11016
+ export declare class CreateAlertRuleRequestTriggerConditionExtensionInstanceTransferFluctuate extends $tea.Model {
10383
11017
  /**
10384
11018
  * @example
10385
- * runtime.offline.concurrent
11019
+ * 10
10386
11020
  */
10387
- name?: string;
11021
+ percentage?: number;
10388
11022
  /**
10389
11023
  * @example
10390
- * 1
11024
+ * abs
10391
11025
  */
10392
- value?: string;
11026
+ trend?: string;
10393
11027
  static names(): {
10394
11028
  [key: string]: string;
10395
11029
  };
@@ -10400,16 +11034,12 @@ export declare class CreateDIJobRequestJobSettingsRuntimeSettings extends $tea.M
10400
11034
  [key: string]: any;
10401
11035
  });
10402
11036
  }
10403
- export declare class CreateDIJobRequestJobSettings extends $tea.Model {
11037
+ export declare class CreateAlertRuleRequestTriggerConditionExtensionTimeout extends $tea.Model {
10404
11038
  /**
10405
11039
  * @example
10406
- * {"structInfo":"MANAGED","storageType":"TEXTFILE","writeMode":"APPEND","partitionColumns":[{"columnName":"pt","columnType":"STRING","comment":""}],"fieldDelimiter":""}
11040
+ * 10
10407
11041
  */
10408
- channelSettings?: string;
10409
- columnDataTypeSettings?: CreateDIJobRequestJobSettingsColumnDataTypeSettings[];
10410
- cycleScheduleSettings?: CreateDIJobRequestJobSettingsCycleScheduleSettings;
10411
- ddlHandlingSettings?: CreateDIJobRequestJobSettingsDdlHandlingSettings[];
10412
- runtimeSettings?: CreateDIJobRequestJobSettingsRuntimeSettings[];
11042
+ timeoutInMinutes?: number;
10413
11043
  static names(): {
10414
11044
  [key: string]: string;
10415
11045
  };
@@ -10420,17 +11050,12 @@ export declare class CreateDIJobRequestJobSettings extends $tea.Model {
10420
11050
  [key: string]: any;
10421
11051
  });
10422
11052
  }
10423
- export declare class CreateDIJobRequestResourceSettingsOfflineResourceSettings extends $tea.Model {
10424
- /**
10425
- * @example
10426
- * 2.0
10427
- */
10428
- requestedCu?: number;
11053
+ export declare class CreateAlertRuleRequestTriggerConditionExtensionUnFinished extends $tea.Model {
10429
11054
  /**
10430
11055
  * @example
10431
- * S_res_group_111_222
11056
+ * 30:00
10432
11057
  */
10433
- resourceGroupIdentifier?: string;
11058
+ unFinishedTime?: string;
10434
11059
  static names(): {
10435
11060
  [key: string]: string;
10436
11061
  };
@@ -10441,17 +11066,14 @@ export declare class CreateDIJobRequestResourceSettingsOfflineResourceSettings e
10441
11066
  [key: string]: any;
10442
11067
  });
10443
11068
  }
10444
- export declare class CreateDIJobRequestResourceSettingsRealtimeResourceSettings extends $tea.Model {
10445
- /**
10446
- * @example
10447
- * 2.0
10448
- */
10449
- requestedCu?: number;
10450
- /**
10451
- * @example
10452
- * S_res_group_111_222
10453
- */
10454
- 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;
10455
11077
  static names(): {
10456
11078
  [key: string]: string;
10457
11079
  };
@@ -10462,17 +11084,14 @@ export declare class CreateDIJobRequestResourceSettingsRealtimeResourceSettings
10462
11084
  [key: string]: any;
10463
11085
  });
10464
11086
  }
10465
- export declare class CreateDIJobRequestResourceSettingsScheduleResourceSettings extends $tea.Model {
10466
- /**
10467
- * @example
10468
- * 2.0
10469
- */
10470
- requestedCu?: number;
11087
+ export declare class CreateAlertRuleRequestTriggerConditionTarget extends $tea.Model {
11088
+ allowTasks?: number[];
11089
+ ids?: number[];
10471
11090
  /**
10472
11091
  * @example
10473
- * S_res_group_235454102432001_1579085295030
11092
+ * Task
10474
11093
  */
10475
- resourceGroupIdentifier?: string;
11094
+ type?: string;
10476
11095
  static names(): {
10477
11096
  [key: string]: string;
10478
11097
  };
@@ -10483,10 +11102,14 @@ export declare class CreateDIJobRequestResourceSettingsScheduleResourceSettings
10483
11102
  [key: string]: any;
10484
11103
  });
10485
11104
  }
10486
- export declare class CreateDIJobRequestResourceSettings extends $tea.Model {
10487
- offlineResourceSettings?: CreateDIJobRequestResourceSettingsOfflineResourceSettings;
10488
- realtimeResourceSettings?: CreateDIJobRequestResourceSettingsRealtimeResourceSettings;
10489
- scheduleResourceSettings?: CreateDIJobRequestResourceSettingsScheduleResourceSettings;
11105
+ export declare class CreateAlertRuleRequestTriggerCondition extends $tea.Model {
11106
+ extension?: CreateAlertRuleRequestTriggerConditionExtension;
11107
+ target?: CreateAlertRuleRequestTriggerConditionTarget;
11108
+ /**
11109
+ * @example
11110
+ * Error
11111
+ */
11112
+ type?: string;
10490
11113
  static names(): {
10491
11114
  [key: string]: string;
10492
11115
  };
@@ -10497,17 +11120,13 @@ export declare class CreateDIJobRequestResourceSettings extends $tea.Model {
10497
11120
  [key: string]: any;
10498
11121
  });
10499
11122
  }
10500
- export declare class CreateDIJobRequestSourceDataSourceSettingsDataSourceProperties extends $tea.Model {
10501
- /**
10502
- * @example
10503
- * UTF-8
10504
- */
10505
- encoding?: string;
11123
+ export declare class CreateDIAlarmRuleRequestNotificationSettingsNotificationChannels extends $tea.Model {
11124
+ channels?: string[];
10506
11125
  /**
10507
11126
  * @example
10508
- * GMT+8
11127
+ * Warning
10509
11128
  */
10510
- timezone?: string;
11129
+ severity?: string;
10511
11130
  static names(): {
10512
11131
  [key: string]: string;
10513
11132
  };
@@ -10518,13 +11137,13 @@ export declare class CreateDIJobRequestSourceDataSourceSettingsDataSourcePropert
10518
11137
  [key: string]: any;
10519
11138
  });
10520
11139
  }
10521
- export declare class CreateDIJobRequestSourceDataSourceSettings extends $tea.Model {
11140
+ export declare class CreateDIAlarmRuleRequestNotificationSettingsNotificationReceivers extends $tea.Model {
10522
11141
  /**
10523
11142
  * @example
10524
- * mysql_datasource_1
11143
+ * DingToken
10525
11144
  */
10526
- dataSourceName?: string;
10527
- dataSourceProperties?: CreateDIJobRequestSourceDataSourceSettingsDataSourceProperties;
11145
+ receiverType?: string;
11146
+ receiverValues?: string[];
10528
11147
  static names(): {
10529
11148
  [key: string]: string;
10530
11149
  };
@@ -10535,7 +11154,287 @@ export declare class CreateDIJobRequestSourceDataSourceSettings extends $tea.Mod
10535
11154
  [key: string]: any;
10536
11155
  });
10537
11156
  }
10538
- export declare class CreateDIJobRequestTableMappingsSourceObjectSelectionRules extends $tea.Model {
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 {
10539
11438
  /**
10540
11439
  * @example
10541
11440
  * Include
@@ -10623,9 +11522,282 @@ export declare class CreateDIJobRequestTransformationRules extends $tea.Model {
10623
11522
  ruleName?: string;
10624
11523
  /**
10625
11524
  * @example
10626
- * Table
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
11726
+ */
11727
+ percentage?: number;
11728
+ /**
11729
+ * @example
11730
+ * 10
11731
+ */
11732
+ trend?: string;
11733
+ static names(): {
11734
+ [key: string]: string;
11735
+ };
11736
+ static types(): {
11737
+ [key: string]: any;
11738
+ };
11739
+ constructor(map?: {
11740
+ [key: string]: any;
11741
+ });
11742
+ }
11743
+ export declare class GetAlertRuleResponseBodyAlertRuleTriggerConditionExtensionTimeout extends $tea.Model {
11744
+ /**
11745
+ * @example
11746
+ * 10
11747
+ */
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 {
11760
+ /**
11761
+ * @example
11762
+ * 12:00
11763
+ */
11764
+ unFinishedTime?: string;
11765
+ static names(): {
11766
+ [key: string]: string;
11767
+ };
11768
+ static types(): {
11769
+ [key: string]: any;
11770
+ };
11771
+ constructor(map?: {
11772
+ [key: string]: any;
11773
+ });
11774
+ }
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;
11783
+ static names(): {
11784
+ [key: string]: string;
11785
+ };
11786
+ static types(): {
11787
+ [key: string]: any;
11788
+ };
11789
+ constructor(map?: {
11790
+ [key: string]: any;
11791
+ });
11792
+ }
11793
+ export declare class GetAlertRuleResponseBodyAlertRuleTriggerConditionTarget extends $tea.Model {
11794
+ allowTasks?: number[];
11795
+ ids?: number[];
11796
+ /**
11797
+ * @example
11798
+ * Task
10627
11799
  */
10628
- ruleTargetType?: string;
11800
+ type?: string;
10629
11801
  static names(): {
10630
11802
  [key: string]: string;
10631
11803
  };
@@ -10636,17 +11808,14 @@ export declare class CreateDIJobRequestTransformationRules extends $tea.Model {
10636
11808
  [key: string]: any;
10637
11809
  });
10638
11810
  }
10639
- export declare class CreateProjectRequestAliyunResourceTags extends $tea.Model {
10640
- /**
10641
- * @example
10642
- * batch
10643
- */
10644
- key?: string;
11811
+ export declare class GetAlertRuleResponseBodyAlertRuleTriggerCondition extends $tea.Model {
11812
+ extension?: GetAlertRuleResponseBodyAlertRuleTriggerConditionExtension;
11813
+ target?: GetAlertRuleResponseBodyAlertRuleTriggerConditionTarget;
10645
11814
  /**
10646
11815
  * @example
10647
- * blue
11816
+ * Error
10648
11817
  */
10649
- value?: string;
11818
+ type?: string;
10650
11819
  static names(): {
10651
11820
  [key: string]: string;
10652
11821
  };
@@ -10657,22 +11826,29 @@ export declare class CreateProjectRequestAliyunResourceTags extends $tea.Model {
10657
11826
  [key: string]: any;
10658
11827
  });
10659
11828
  }
10660
- export declare class CreateResourceGroupResponseBodyResourceGroupOrder extends $tea.Model {
11829
+ export declare class GetAlertRuleResponseBodyAlertRule extends $tea.Model {
10661
11830
  /**
10662
11831
  * @example
10663
- * Serverless_res_group_524257424564736_6831777003XXXXX
11832
+ * true
10664
11833
  */
10665
- id?: string;
11834
+ enabled?: boolean;
10666
11835
  /**
10667
11836
  * @example
10668
- * 2391982058XXXXX
11837
+ * 16035
10669
11838
  */
10670
- orderId?: number;
11839
+ id?: number;
10671
11840
  /**
10672
11841
  * @example
10673
- * c442b330-3b10-4584-959e-736e4edXXXXX
11842
+ * error_rule
10674
11843
  */
10675
- orderInstanceId?: string;
11844
+ name?: string;
11845
+ notification?: GetAlertRuleResponseBodyAlertRuleNotification;
11846
+ /**
11847
+ * @example
11848
+ * 279961421580845157
11849
+ */
11850
+ owner?: string;
11851
+ triggerCondition?: GetAlertRuleResponseBodyAlertRuleTriggerCondition;
10676
11852
  static names(): {
10677
11853
  [key: string]: string;
10678
11854
  };
@@ -11567,11 +12743,17 @@ export declare class GetNodeResponseBodyNode extends $tea.Model {
11567
12743
  }
11568
12744
  export declare class GetProjectResponseBodyProjectAliyunResourceTags extends $tea.Model {
11569
12745
  /**
12746
+ * @remarks
12747
+ * The tag key.
12748
+ *
11570
12749
  * @example
11571
12750
  * batch
11572
12751
  */
11573
12752
  key?: string;
11574
12753
  /**
12754
+ * @remarks
12755
+ * The tag value.
12756
+ *
11575
12757
  * @example
11576
12758
  * blue
11577
12759
  */
@@ -11588,44 +12770,111 @@ export declare class GetProjectResponseBodyProjectAliyunResourceTags extends $te
11588
12770
  }
11589
12771
  export declare class GetProjectResponseBodyProject extends $tea.Model {
11590
12772
  /**
12773
+ * @remarks
12774
+ * The ID of the Alibaba Cloud resource group to which the workspace belongs.
12775
+ *
11591
12776
  * @example
11592
12777
  * rg-acfmzbn7pti3zfa
11593
12778
  */
11594
12779
  aliyunResourceGroupId?: string;
12780
+ /**
12781
+ * @remarks
12782
+ * The tags.
12783
+ */
11595
12784
  aliyunResourceTags?: GetProjectResponseBodyProjectAliyunResourceTags[];
12785
+ /**
12786
+ * @remarks
12787
+ * The description of the workspace.
12788
+ */
11596
12789
  description?: string;
11597
12790
  /**
12791
+ * @remarks
12792
+ * Indicates whether the development environment is enabled. Valid values:
12793
+ *
12794
+ * * true: The development environment is enabled. In this case, the development environment is isolated from the production environment in the workspace.
12795
+ * * false: The development environment is disabled. In this case, only the production environment is used in the workspace.
12796
+ *
11598
12797
  * @example
11599
12798
  * true
11600
12799
  */
11601
12800
  devEnvironmentEnabled?: boolean;
11602
12801
  /**
12802
+ * @remarks
12803
+ * Indicates whether the Develop role is disabled. Valid values:
12804
+ *
12805
+ * * false
12806
+ * * true
12807
+ *
11603
12808
  * @example
11604
12809
  * false
11605
12810
  */
11606
12811
  devRoleDisabled?: boolean;
12812
+ /**
12813
+ * @remarks
12814
+ * The display name of the workspace.
12815
+ */
11607
12816
  displayName?: string;
11608
12817
  /**
12818
+ * @remarks
12819
+ * The workspace ID.
12820
+ *
11609
12821
  * @example
11610
12822
  * 28477242
11611
12823
  */
11612
12824
  id?: number;
11613
12825
  /**
12826
+ * @remarks
12827
+ * The name of the workspace.
12828
+ *
11614
12829
  * @example
11615
12830
  * sora_finance
11616
12831
  */
11617
12832
  name?: string;
11618
12833
  /**
12834
+ * @remarks
12835
+ * The ID of the Alibaba Cloud account to which the workspace belongs.
12836
+ *
11619
12837
  * @example
11620
12838
  * 207947397706614299
11621
12839
  */
11622
12840
  owner?: string;
11623
12841
  /**
12842
+ * @remarks
12843
+ * Indicates whether scheduling of Platform for AI (PAI) tasks is enabled. Valid values:
12844
+ *
12845
+ * * true: Scheduling of PAI tasks is enabled. In this case, you can create a PAI node in a DataWorks workspace and configure scheduling properties for the node to implement periodic scheduling of PAI tasks.
12846
+ * * false: Scheduling of PAI tasks is disabled.
12847
+ *
11624
12848
  * @example
11625
12849
  * true
11626
12850
  */
11627
12851
  paiTaskEnabled?: boolean;
11628
12852
  /**
12853
+ * @remarks
12854
+ * The status of the workspace. Valid values:
12855
+ *
12856
+ * * Available
12857
+ * * Initializing
12858
+ * * InitFailed
12859
+ * * Forbidden
12860
+ * * Deleting
12861
+ * * DeleteFailed
12862
+ * * Frozen
12863
+ * * Updating
12864
+ * * UpdateFailed
12865
+ *
12866
+ * <!---->
12867
+ *
12868
+ * *
12869
+ * *
12870
+ * *
12871
+ * *
12872
+ * *
12873
+ * *
12874
+ * *
12875
+ * *
12876
+ * *
12877
+ *
11629
12878
  * @example
11630
12879
  * Available
11631
12880
  */
@@ -11642,12 +12891,36 @@ export declare class GetProjectResponseBodyProject extends $tea.Model {
11642
12891
  }
11643
12892
  export declare class GetProjectMemberResponseBodyProjectMemberRoles extends $tea.Model {
11644
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
+ *
11645
12908
  * @example
11646
12909
  * role_project_guest
11647
12910
  */
11648
12911
  code?: string;
12912
+ /**
12913
+ * @remarks
12914
+ * The name of the role.
12915
+ */
11649
12916
  name?: string;
11650
12917
  /**
12918
+ * @remarks
12919
+ * The type of the role. Valid values:
12920
+ *
12921
+ * * UserCustom: custom role
12922
+ * * System: built-in role
12923
+ *
11651
12924
  * @example
11652
12925
  * System
11653
12926
  */
@@ -11664,17 +12937,33 @@ export declare class GetProjectMemberResponseBodyProjectMemberRoles extends $tea
11664
12937
  }
11665
12938
  export declare class GetProjectMemberResponseBodyProjectMember extends $tea.Model {
11666
12939
  /**
12940
+ * @remarks
12941
+ * The DataWorks workspace ID.
12942
+ *
11667
12943
  * @example
11668
12944
  * 88757
11669
12945
  */
11670
12946
  projectId?: number;
12947
+ /**
12948
+ * @remarks
12949
+ * The roles that are assigned to the member in the workspace.
12950
+ */
11671
12951
  roles?: GetProjectMemberResponseBodyProjectMemberRoles[];
11672
12952
  /**
12953
+ * @remarks
12954
+ * The status of the member.
12955
+ *
12956
+ * * Normal
12957
+ * * Forbidden
12958
+ *
11673
12959
  * @example
11674
12960
  * Normal
11675
12961
  */
11676
12962
  status?: string;
11677
12963
  /**
12964
+ * @remarks
12965
+ * The ID of the account used by the member in the workspace.
12966
+ *
11678
12967
  * @example
11679
12968
  * 123422344899
11680
12969
  */
@@ -11928,11 +13217,8 @@ export declare class GetTaskResponseBodyTaskDependencies extends $tea.Model {
11928
13217
  * Normal
11929
13218
  */
11930
13219
  type?: string;
11931
- /**
11932
- * @example
11933
- * pre.odps_sql_demo_0
11934
- */
11935
- upstream?: string;
13220
+ upstreamOutput?: string;
13221
+ upstreamTaskId?: string;
11936
13222
  static names(): {
11937
13223
  [key: string]: string;
11938
13224
  };
@@ -11949,11 +13235,6 @@ export declare class GetTaskResponseBodyTaskInputsVariables extends $tea.Model {
11949
13235
  * key1
11950
13236
  */
11951
13237
  name?: string;
11952
- /**
11953
- * @example
11954
- * TaskContext
11955
- */
11956
- scope?: string;
11957
13238
  /**
11958
13239
  * @example
11959
13240
  * Constant
@@ -12008,11 +13289,6 @@ export declare class GetTaskResponseBodyTaskOutputsVariables extends $tea.Model
12008
13289
  * key1
12009
13290
  */
12010
13291
  name?: string;
12011
- /**
12012
- * @example
12013
- * TaskContext
12014
- */
12015
- scope?: string;
12016
13292
  /**
12017
13293
  * @example
12018
13294
  * Constant
@@ -12375,6 +13651,7 @@ export declare class GetTaskResponseBodyTask extends $tea.Model {
12375
13651
  */
12376
13652
  id?: number;
12377
13653
  inputs?: GetTaskResponseBodyTaskInputs;
13654
+ instanceMode?: string;
12378
13655
  /**
12379
13656
  * @example
12380
13657
  * 1710239005403
@@ -12459,6 +13736,9 @@ export declare class GetTaskResponseBodyTask extends $tea.Model {
12459
13736
  }
12460
13737
  export declare class GetTaskInstanceResponseBodyTaskInstanceDataSource extends $tea.Model {
12461
13738
  /**
13739
+ * @remarks
13740
+ * The name of the data source.
13741
+ *
12462
13742
  * @example
12463
13743
  * mysql_test
12464
13744
  */
@@ -12475,21 +13755,30 @@ export declare class GetTaskInstanceResponseBodyTaskInstanceDataSource extends $
12475
13755
  }
12476
13756
  export declare class GetTaskInstanceResponseBodyTaskInstanceInputsVariables extends $tea.Model {
12477
13757
  /**
13758
+ * @remarks
13759
+ * The name of the variable.
13760
+ *
12478
13761
  * @example
12479
13762
  * Key1
12480
13763
  */
12481
13764
  name?: string;
12482
13765
  /**
12483
- * @example
12484
- * TaskContext
12485
- */
12486
- scope?: string;
12487
- /**
13766
+ * @remarks
13767
+ * The type. Valid values:
13768
+ *
13769
+ * * Constant: constant
13770
+ * * PassThrough: node output
13771
+ * * System: variable
13772
+ * * NodeOutput: script output
13773
+ *
12488
13774
  * @example
12489
13775
  * Constant
12490
13776
  */
12491
13777
  type?: string;
12492
13778
  /**
13779
+ * @remarks
13780
+ * The value of the variable.
13781
+ *
12493
13782
  * @example
12494
13783
  * Value1
12495
13784
  */
@@ -12505,6 +13794,10 @@ export declare class GetTaskInstanceResponseBodyTaskInstanceInputsVariables exte
12505
13794
  });
12506
13795
  }
12507
13796
  export declare class GetTaskInstanceResponseBodyTaskInstanceInputs extends $tea.Model {
13797
+ /**
13798
+ * @remarks
13799
+ * The variables.
13800
+ */
12508
13801
  variables?: GetTaskInstanceResponseBodyTaskInstanceInputsVariables[];
12509
13802
  static names(): {
12510
13803
  [key: string]: string;
@@ -12518,6 +13811,9 @@ export declare class GetTaskInstanceResponseBodyTaskInstanceInputs extends $tea.
12518
13811
  }
12519
13812
  export declare class GetTaskInstanceResponseBodyTaskInstanceOutputsTaskOutputs extends $tea.Model {
12520
13813
  /**
13814
+ * @remarks
13815
+ * The output identifier.
13816
+ *
12521
13817
  * @example
12522
13818
  * pre.odps_sql_demo_0
12523
13819
  */
@@ -12534,21 +13830,30 @@ export declare class GetTaskInstanceResponseBodyTaskInstanceOutputsTaskOutputs e
12534
13830
  }
12535
13831
  export declare class GetTaskInstanceResponseBodyTaskInstanceOutputsVariables extends $tea.Model {
12536
13832
  /**
13833
+ * @remarks
13834
+ * The name of the variable.
13835
+ *
12537
13836
  * @example
12538
13837
  * key1
12539
13838
  */
12540
13839
  name?: string;
12541
13840
  /**
12542
- * @example
12543
- * TaskContext
12544
- */
12545
- scope?: string;
12546
- /**
13841
+ * @remarks
13842
+ * The type. Valid values:
13843
+ *
13844
+ * * Constant: constant
13845
+ * * PassThrough: node output
13846
+ * * System: variable
13847
+ * * NodeOutput: script output
13848
+ *
12547
13849
  * @example
12548
13850
  * Constant
12549
13851
  */
12550
13852
  type?: string;
12551
13853
  /**
13854
+ * @remarks
13855
+ * The value of the variable.
13856
+ *
12552
13857
  * @example
12553
13858
  * value1
12554
13859
  */
@@ -12564,7 +13869,15 @@ export declare class GetTaskInstanceResponseBodyTaskInstanceOutputsVariables ext
12564
13869
  });
12565
13870
  }
12566
13871
  export declare class GetTaskInstanceResponseBodyTaskInstanceOutputs extends $tea.Model {
13872
+ /**
13873
+ * @remarks
13874
+ * The task outputs.
13875
+ */
12567
13876
  taskOutputs?: GetTaskInstanceResponseBodyTaskInstanceOutputsTaskOutputs[];
13877
+ /**
13878
+ * @remarks
13879
+ * The variables.
13880
+ */
12568
13881
  variables?: GetTaskInstanceResponseBodyTaskInstanceOutputsVariables[];
12569
13882
  static names(): {
12570
13883
  [key: string]: string;
@@ -12578,11 +13891,17 @@ export declare class GetTaskInstanceResponseBodyTaskInstanceOutputs extends $tea
12578
13891
  }
12579
13892
  export declare class GetTaskInstanceResponseBodyTaskInstanceRuntime extends $tea.Model {
12580
13893
  /**
13894
+ * @remarks
13895
+ * The host for running.
13896
+ *
12581
13897
  * @example
12582
13898
  * cn-shanghai.1.2
12583
13899
  */
12584
13900
  gateway?: string;
12585
13901
  /**
13902
+ * @remarks
13903
+ * The instance run ID.
13904
+ *
12586
13905
  * @example
12587
13906
  * T3_123
12588
13907
  */
@@ -12599,16 +13918,25 @@ export declare class GetTaskInstanceResponseBodyTaskInstanceRuntime extends $tea
12599
13918
  }
12600
13919
  export declare class GetTaskInstanceResponseBodyTaskInstanceRuntimeResource extends $tea.Model {
12601
13920
  /**
13921
+ * @remarks
13922
+ * The default number of CUs configured for task running.
13923
+ *
12602
13924
  * @example
12603
13925
  * 0.25
12604
13926
  */
12605
13927
  cu?: string;
12606
13928
  /**
13929
+ * @remarks
13930
+ * The ID of the image configured for task running.
13931
+ *
12607
13932
  * @example
12608
13933
  * i-xxxxxx
12609
13934
  */
12610
13935
  image?: string;
12611
13936
  /**
13937
+ * @remarks
13938
+ * The ID of the resource group for scheduling configured for task running.
13939
+ *
12612
13940
  * @example
12613
13941
  * S_res_group_524258031846018_1684XXXXXXXXX
12614
13942
  */
@@ -12625,11 +13953,17 @@ export declare class GetTaskInstanceResponseBodyTaskInstanceRuntimeResource exte
12625
13953
  }
12626
13954
  export declare class GetTaskInstanceResponseBodyTaskInstanceScript extends $tea.Model {
12627
13955
  /**
13956
+ * @remarks
13957
+ * The script content.
13958
+ *
12628
13959
  * @example
12629
13960
  * echo "helloWorld"
12630
13961
  */
12631
13962
  content?: string;
12632
13963
  /**
13964
+ * @remarks
13965
+ * The script parameters.
13966
+ *
12633
13967
  * @example
12634
13968
  * para1=$bizdate
12635
13969
  */
@@ -12646,11 +13980,17 @@ export declare class GetTaskInstanceResponseBodyTaskInstanceScript extends $tea.
12646
13980
  }
12647
13981
  export declare class GetTaskInstanceResponseBodyTaskInstanceTags extends $tea.Model {
12648
13982
  /**
13983
+ * @remarks
13984
+ * The tag key.
13985
+ *
12649
13986
  * @example
12650
13987
  * key1
12651
13988
  */
12652
13989
  key?: string;
12653
13990
  /**
13991
+ * @remarks
13992
+ * The tag value.
13993
+ *
12654
13994
  * @example
12655
13995
  * value1
12656
13996
  */
@@ -12667,148 +14007,296 @@ export declare class GetTaskInstanceResponseBodyTaskInstanceTags extends $tea.Mo
12667
14007
  }
12668
14008
  export declare class GetTaskInstanceResponseBodyTaskInstance extends $tea.Model {
12669
14009
  /**
14010
+ * @remarks
14011
+ * The baseline ID.
14012
+ *
12670
14013
  * @example
12671
14014
  * 1234
12672
14015
  */
12673
14016
  baselineId?: number;
12674
14017
  /**
14018
+ * @remarks
14019
+ * The data timestamp.
14020
+ *
12675
14021
  * @example
12676
14022
  * 1710239005403
12677
14023
  */
12678
14024
  bizdate?: number;
12679
14025
  /**
14026
+ * @remarks
14027
+ * The creation time.
14028
+ *
12680
14029
  * @example
12681
14030
  * 1710239005403
12682
14031
  */
12683
14032
  createTime?: number;
12684
14033
  /**
14034
+ * @remarks
14035
+ * The account ID of the creator.
14036
+ *
12685
14037
  * @example
12686
14038
  * 1000
12687
14039
  */
12688
14040
  createUser?: string;
14041
+ /**
14042
+ * @remarks
14043
+ * The information about the associated data source.
14044
+ */
12689
14045
  dataSource?: GetTaskInstanceResponseBodyTaskInstanceDataSource;
12690
14046
  /**
14047
+ * @remarks
14048
+ * The description.
14049
+ *
12691
14050
  * @example
12692
14051
  * test
12693
14052
  */
12694
14053
  description?: string;
12695
14054
  /**
14055
+ * @remarks
14056
+ * The time when the instance finished running.
14057
+ *
12696
14058
  * @example
12697
14059
  * 1710239005403
12698
14060
  */
12699
14061
  finishedTime?: number;
12700
14062
  /**
14063
+ * @remarks
14064
+ * The instance ID.
14065
+ *
12701
14066
  * @example
12702
14067
  * 1234
12703
14068
  */
12704
14069
  id?: number;
14070
+ /**
14071
+ * @remarks
14072
+ * The input information.
14073
+ */
12705
14074
  inputs?: GetTaskInstanceResponseBodyTaskInstanceInputs;
12706
14075
  /**
14076
+ * @remarks
14077
+ * The modification time.
14078
+ *
12707
14079
  * @example
12708
14080
  * 1710239005403
12709
14081
  */
12710
14082
  modifyTime?: number;
12711
14083
  /**
14084
+ * @remarks
14085
+ * The account ID of the modifier.
14086
+ *
12712
14087
  * @example
12713
14088
  * 1000
12714
14089
  */
12715
14090
  modifyUser?: string;
14091
+ /**
14092
+ * @remarks
14093
+ * The output information.
14094
+ */
12716
14095
  outputs?: GetTaskInstanceResponseBodyTaskInstanceOutputs;
12717
14096
  /**
14097
+ * @remarks
14098
+ * The account ID of the task owner.
14099
+ *
12718
14100
  * @example
12719
14101
  * 1000
12720
14102
  */
12721
14103
  owner?: string;
14104
+ periodNumber?: number;
12722
14105
  /**
14106
+ * @remarks
14107
+ * The task priority. Valid values: 1 to 8. A larger value indicates a higher priority. Default value: 1.
14108
+ *
12723
14109
  * @example
12724
14110
  * 1
12725
14111
  */
12726
14112
  priority?: number;
12727
14113
  /**
14114
+ * @remarks
14115
+ * The environment of the workspace. Valid values:
14116
+ *
14117
+ * * Prod: production environment
14118
+ * * Dev: development environment
14119
+ *
12728
14120
  * @example
12729
14121
  * Prod
12730
14122
  */
12731
14123
  projectEnv?: string;
12732
14124
  /**
14125
+ * @remarks
14126
+ * The workspace ID.
14127
+ *
12733
14128
  * @example
12734
14129
  * 100
12735
14130
  */
12736
14131
  projectId?: number;
12737
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
+ *
12738
14140
  * @example
12739
- * AllAllowed
14141
+ * AllAllowed
12740
14142
  */
12741
14143
  rerunMode?: string;
12742
14144
  /**
14145
+ * @remarks
14146
+ * The number of times the instance is run. By default, the value starts from 1.
14147
+ *
12743
14148
  * @example
12744
14149
  * 1
12745
14150
  */
12746
14151
  runNumber?: number;
14152
+ /**
14153
+ * @remarks
14154
+ * The runtime information about the instance.
14155
+ */
12747
14156
  runtime?: GetTaskInstanceResponseBodyTaskInstanceRuntime;
14157
+ /**
14158
+ * @remarks
14159
+ * The information about the resource group with which the instance is associated.
14160
+ */
12748
14161
  runtimeResource?: GetTaskInstanceResponseBodyTaskInstanceRuntimeResource;
14162
+ /**
14163
+ * @remarks
14164
+ * The script information.
14165
+ */
12749
14166
  script?: GetTaskInstanceResponseBodyTaskInstanceScript;
12750
14167
  /**
14168
+ * @remarks
14169
+ * The time when the instance started to run.
14170
+ *
12751
14171
  * @example
12752
14172
  * 1710239005403
12753
14173
  */
12754
14174
  startedTime?: number;
12755
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
+ *
12756
14188
  * @example
12757
14189
  * Success
12758
14190
  */
12759
14191
  status?: string;
14192
+ /**
14193
+ * @remarks
14194
+ * The tags of the task.
14195
+ */
12760
14196
  tags?: GetTaskInstanceResponseBodyTaskInstanceTags[];
12761
14197
  /**
14198
+ * @remarks
14199
+ * The ID of the task for which the instance is generated.
14200
+ *
12762
14201
  * @example
12763
14202
  * 1234
12764
14203
  */
12765
14204
  taskId?: number;
14205
+ /**
14206
+ * @remarks
14207
+ * The name of the task for which the instance is generated.
14208
+ */
12766
14209
  taskName?: string;
12767
14210
  /**
14211
+ * @remarks
14212
+ * The type of the task for which the instance is generated.
14213
+ *
12768
14214
  * @example
12769
14215
  * ODPS_SQL
12770
14216
  */
12771
14217
  taskType?: string;
12772
14218
  /**
14219
+ * @remarks
14220
+ * The tenant ID.
14221
+ *
12773
14222
  * @example
12774
14223
  * 1
12775
14224
  */
12776
14225
  tenantId?: number;
12777
14226
  /**
14227
+ * @remarks
14228
+ * The timeout period of task running. Unit: seconds.
14229
+ *
12778
14230
  * @example
12779
14231
  * 1
12780
14232
  */
12781
14233
  timeout?: number;
12782
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
+ *
12783
14242
  * @example
12784
14243
  * Normal
12785
14244
  */
12786
14245
  triggerRecurrence?: string;
12787
14246
  /**
14247
+ * @remarks
14248
+ * The scheduling time.
14249
+ *
12788
14250
  * @example
12789
14251
  * 1710239005403
12790
14252
  */
12791
14253
  triggerTime?: number;
12792
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
+ *
12793
14261
  * @example
12794
14262
  * Scheduler
12795
14263
  */
12796
14264
  triggerType?: string;
12797
14265
  /**
14266
+ * @remarks
14267
+ * The ID of the workflow to which the instance belongs.
14268
+ *
12798
14269
  * @example
12799
14270
  * 1234
12800
14271
  */
12801
14272
  workflowId?: number;
12802
14273
  /**
14274
+ * @remarks
14275
+ * The workflow instance ID.
14276
+ *
12803
14277
  * @example
12804
14278
  * 1234
12805
14279
  */
12806
14280
  workflowInstanceId?: number;
12807
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
+ *
12808
14292
  * @example
12809
14293
  * Normal
12810
14294
  */
12811
14295
  workflowInstanceType?: string;
14296
+ /**
14297
+ * @remarks
14298
+ * The name of the workflow to which the instance belongs.
14299
+ */
12812
14300
  workflowName?: string;
12813
14301
  static names(): {
12814
14302
  [key: string]: string;
@@ -12932,6 +14420,254 @@ export declare class ImportWorkflowDefinitionResponseBodyAsyncJob extends $tea.M
12932
14420
  [key: string]: any;
12933
14421
  });
12934
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
+ }
12935
14671
  export declare class ListDIAlarmRulesResponseBodyPagingInfoDIJobAlarmRulesNotificationSettingsNotificationChannels extends $tea.Model {
12936
14672
  channels?: string[];
12937
14673
  /**
@@ -13478,7 +15214,7 @@ export declare class ListDIJobsResponseBodyPagingInfo extends $tea.Model {
13478
15214
  export declare class ListDataQualityEvaluationTaskInstancesResponseBodyPagingInfoDataQualityEvaluationTaskInstancesTaskHooks extends $tea.Model {
13479
15215
  /**
13480
15216
  * @remarks
13481
- * Hook触发条件
15217
+ * The trigger configuration of the callback event.
13482
15218
  *
13483
15219
  * @example
13484
15220
  * ${severity} == "High" AND ${status} == "Critical"
@@ -13486,7 +15222,9 @@ export declare class ListDataQualityEvaluationTaskInstancesResponseBodyPagingInf
13486
15222
  condition?: string;
13487
15223
  /**
13488
15224
  * @remarks
13489
- * Hook类型
15225
+ * The type of the callback event.
15226
+ *
15227
+ * * Valid values: BlockTaskInstance. The value indicates that an auto triggered node is blocked.
13490
15228
  *
13491
15229
  * @example
13492
15230
  * BlockTaskInstance
@@ -13505,7 +15243,7 @@ export declare class ListDataQualityEvaluationTaskInstancesResponseBodyPagingInf
13505
15243
  export declare class ListDataQualityEvaluationTaskInstancesResponseBodyPagingInfoDataQualityEvaluationTaskInstancesTaskNotificationsNotificationsNofiticationReceivers extends $tea.Model {
13506
15244
  /**
13507
15245
  * @remarks
13508
- * 扩展信息,格式为 json,例如钉钉机器人支持 at 所有人
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 (@).
13509
15247
  *
13510
15248
  * @example
13511
15249
  * {"atAll":"true"}
@@ -13513,7 +15251,13 @@ export declare class ListDataQualityEvaluationTaskInstancesResponseBodyPagingInf
13513
15251
  extension?: string;
13514
15252
  /**
13515
15253
  * @remarks
13516
- * 告警接收人类型
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
13517
15261
  *
13518
15262
  * @example
13519
15263
  * AliUid
@@ -13521,7 +15265,7 @@ export declare class ListDataQualityEvaluationTaskInstancesResponseBodyPagingInf
13521
15265
  receiverType?: string;
13522
15266
  /**
13523
15267
  * @remarks
13524
- * 告警接收人
15268
+ * The alert recipients.
13525
15269
  */
13526
15270
  receiverValues?: string[];
13527
15271
  static names(): {
@@ -13537,7 +15281,7 @@ export declare class ListDataQualityEvaluationTaskInstancesResponseBodyPagingInf
13537
15281
  export declare class ListDataQualityEvaluationTaskInstancesResponseBodyPagingInfoDataQualityEvaluationTaskInstancesTaskNotificationsNotificationsNotificationChannels extends $tea.Model {
13538
15282
  /**
13539
15283
  * @remarks
13540
- * 通知方式
15284
+ * The alert notification methods.
13541
15285
  */
13542
15286
  channels?: string[];
13543
15287
  static names(): {
@@ -13553,12 +15297,12 @@ export declare class ListDataQualityEvaluationTaskInstancesResponseBodyPagingInf
13553
15297
  export declare class ListDataQualityEvaluationTaskInstancesResponseBodyPagingInfoDataQualityEvaluationTaskInstancesTaskNotificationsNotifications extends $tea.Model {
13554
15298
  /**
13555
15299
  * @remarks
13556
- * 告警接收人设置
15300
+ * The alert recipients.
13557
15301
  */
13558
15302
  nofiticationReceivers?: ListDataQualityEvaluationTaskInstancesResponseBodyPagingInfoDataQualityEvaluationTaskInstancesTaskNotificationsNotificationsNofiticationReceivers[];
13559
15303
  /**
13560
15304
  * @remarks
13561
- * 通知方式
15305
+ * The alert notification methods.
13562
15306
  */
13563
15307
  notificationChannels?: ListDataQualityEvaluationTaskInstancesResponseBodyPagingInfoDataQualityEvaluationTaskInstancesTaskNotificationsNotificationsNotificationChannels[];
13564
15308
  static names(): {
@@ -13574,7 +15318,7 @@ export declare class ListDataQualityEvaluationTaskInstancesResponseBodyPagingInf
13574
15318
  export declare class ListDataQualityEvaluationTaskInstancesResponseBodyPagingInfoDataQualityEvaluationTaskInstancesTaskNotifications extends $tea.Model {
13575
15319
  /**
13576
15320
  * @remarks
13577
- * 通知触发条件
15321
+ * The trigger condition of the alert notification.
13578
15322
  *
13579
15323
  * @example
13580
15324
  * ${severity} == "High"
@@ -13582,7 +15326,7 @@ export declare class ListDataQualityEvaluationTaskInstancesResponseBodyPagingInf
13582
15326
  condition?: string;
13583
15327
  /**
13584
15328
  * @remarks
13585
- * 具体的消息通知设置
15329
+ * The configurations for the alert notification.
13586
15330
  */
13587
15331
  notifications?: ListDataQualityEvaluationTaskInstancesResponseBodyPagingInfoDataQualityEvaluationTaskInstancesTaskNotificationsNotifications[];
13588
15332
  static names(): {
@@ -13598,7 +15342,15 @@ export declare class ListDataQualityEvaluationTaskInstancesResponseBodyPagingInf
13598
15342
  export declare class ListDataQualityEvaluationTaskInstancesResponseBodyPagingInfoDataQualityEvaluationTaskInstancesTaskTarget extends $tea.Model {
13599
15343
  /**
13600
15344
  * @remarks
13601
- * 表所属的数据库类型
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
13602
15354
  *
13603
15355
  * @example
13604
15356
  * maxcompute
@@ -13606,7 +15358,7 @@ export declare class ListDataQualityEvaluationTaskInstancesResponseBodyPagingInf
13606
15358
  databaseType?: string;
13607
15359
  /**
13608
15360
  * @remarks
13609
- * 分区表的分区设置
15361
+ * The configuration of the partitioned table.
13610
15362
  *
13611
15363
  * @example
13612
15364
  * ds=$[yyyymmdd-1]
@@ -13614,7 +15366,7 @@ export declare class ListDataQualityEvaluationTaskInstancesResponseBodyPagingInf
13614
15366
  partitionSpec?: string;
13615
15367
  /**
13616
15368
  * @remarks
13617
- * 表在数据地图中的唯一ID
15369
+ * The ID of the table in Data Map.
13618
15370
  *
13619
15371
  * @example
13620
15372
  * odps.unit_test.tb_unit_test
@@ -13622,7 +15374,9 @@ export declare class ListDataQualityEvaluationTaskInstancesResponseBodyPagingInf
13622
15374
  tableGuid?: string;
13623
15375
  /**
13624
15376
  * @remarks
13625
- * 监控对象类型
15377
+ * The type of the monitored object. Valid values:
15378
+ *
15379
+ * * Table
13626
15380
  *
13627
15381
  * @example
13628
15382
  * Table
@@ -13641,12 +15395,14 @@ export declare class ListDataQualityEvaluationTaskInstancesResponseBodyPagingInf
13641
15395
  export declare class ListDataQualityEvaluationTaskInstancesResponseBodyPagingInfoDataQualityEvaluationTaskInstancesTaskTrigger extends $tea.Model {
13642
15396
  /**
13643
15397
  * @remarks
13644
- * 具体指明哪些调度节点的实例执行成功后可以触发
15398
+ * The IDs of the auto triggered nodes of which the instances are successfully run.
13645
15399
  */
13646
15400
  taskIds?: number[];
13647
15401
  /**
13648
15402
  * @remarks
13649
- * 何种事件可以触发质量校验任务执行
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.
13650
15406
  *
13651
15407
  * @example
13652
15408
  * ByScheduledTaskInstance
@@ -13665,7 +15421,7 @@ export declare class ListDataQualityEvaluationTaskInstancesResponseBodyPagingInf
13665
15421
  export declare class ListDataQualityEvaluationTaskInstancesResponseBodyPagingInfoDataQualityEvaluationTaskInstancesTask extends $tea.Model {
13666
15422
  /**
13667
15423
  * @remarks
13668
- * 质量监控任务描述
15424
+ * The description of the task.
13669
15425
  *
13670
15426
  * @example
13671
15427
  * This is a daily run data quality evaluation plan.
@@ -13673,12 +15429,12 @@ export declare class ListDataQualityEvaluationTaskInstancesResponseBodyPagingInf
13673
15429
  description?: string;
13674
15430
  /**
13675
15431
  * @remarks
13676
- * 数据质量校验任务实例生命周期中的回调设置,目前只支持一个阻塞调度任务的Hook
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.
13677
15433
  */
13678
15434
  hooks?: ListDataQualityEvaluationTaskInstancesResponseBodyPagingInfoDataQualityEvaluationTaskInstancesTaskHooks[];
13679
15435
  /**
13680
15436
  * @remarks
13681
- * 代表资源一级ID的资源属性字段
15437
+ * The task ID.
13682
15438
  *
13683
15439
  * @example
13684
15440
  * 10001
@@ -13686,19 +15442,19 @@ export declare class ListDataQualityEvaluationTaskInstancesResponseBodyPagingInf
13686
15442
  id?: number;
13687
15443
  /**
13688
15444
  * @remarks
13689
- * 质量监控任务名称
15445
+ * The name of the task.
13690
15446
  *
13691
15447
  * This parameter is required.
13692
15448
  */
13693
15449
  name?: string;
13694
15450
  /**
13695
15451
  * @remarks
13696
- * 数据质量校验任务通知订阅配置
15452
+ * The configurations for alert notifications.
13697
15453
  */
13698
15454
  notifications?: ListDataQualityEvaluationTaskInstancesResponseBodyPagingInfoDataQualityEvaluationTaskInstancesTaskNotifications;
13699
15455
  /**
13700
15456
  * @remarks
13701
- * 项目空间Id
15457
+ * The workspace ID.
13702
15458
  *
13703
15459
  * @example
13704
15460
  * 100
@@ -13706,7 +15462,7 @@ export declare class ListDataQualityEvaluationTaskInstancesResponseBodyPagingInf
13706
15462
  projectId?: number;
13707
15463
  /**
13708
15464
  * @remarks
13709
- * 代表region的资源属性字段
15465
+ * The region ID.
13710
15466
  *
13711
15467
  * @example
13712
15468
  * cn-shanghai
@@ -13714,7 +15470,7 @@ export declare class ListDataQualityEvaluationTaskInstancesResponseBodyPagingInf
13714
15470
  regionId?: string;
13715
15471
  /**
13716
15472
  * @remarks
13717
- * 使用数据源时的一些设置,目前只支持指定EMR的yarn队列、采集EMR表时把SQL引擎指定为SPARK-SQL
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.
13718
15474
  *
13719
15475
  * @example
13720
15476
  * { "queue": "default", "sqlEngine": "SPARK-SQL" }
@@ -13722,12 +15478,12 @@ export declare class ListDataQualityEvaluationTaskInstancesResponseBodyPagingInf
13722
15478
  runtimeConf?: string;
13723
15479
  /**
13724
15480
  * @remarks
13725
- * 参看 DataQualityTarget示例 数据质量校验任务的监控对象,参考 DataQualityTarget
15481
+ * The monitored object of the task.
13726
15482
  */
13727
15483
  target?: ListDataQualityEvaluationTaskInstancesResponseBodyPagingInfoDataQualityEvaluationTaskInstancesTaskTarget;
13728
15484
  /**
13729
15485
  * @remarks
13730
- * 租户Id
15486
+ * The tenant ID.
13731
15487
  *
13732
15488
  * @example
13733
15489
  * 10
@@ -13735,7 +15491,7 @@ export declare class ListDataQualityEvaluationTaskInstancesResponseBodyPagingInf
13735
15491
  tenantId?: number;
13736
15492
  /**
13737
15493
  * @remarks
13738
- * 数据质量校验任务的触发配置
15494
+ * The trigger configuration of the task.
13739
15495
  */
13740
15496
  trigger?: ListDataQualityEvaluationTaskInstancesResponseBodyPagingInfoDataQualityEvaluationTaskInstancesTaskTrigger;
13741
15497
  static names(): {
@@ -13750,21 +15506,33 @@ export declare class ListDataQualityEvaluationTaskInstancesResponseBodyPagingInf
13750
15506
  }
13751
15507
  export declare class ListDataQualityEvaluationTaskInstancesResponseBodyPagingInfoDataQualityEvaluationTaskInstances extends $tea.Model {
13752
15508
  /**
15509
+ * @remarks
15510
+ * The time at which the instance was generated.
15511
+ *
13753
15512
  * @example
13754
15513
  * 1710239005403
13755
15514
  */
13756
15515
  createTime?: number;
13757
15516
  /**
15517
+ * @remarks
15518
+ * The time at which the instance finished running.
15519
+ *
13758
15520
  * @example
13759
15521
  * 1710239005403
13760
15522
  */
13761
15523
  finishTime?: number;
13762
15524
  /**
15525
+ * @remarks
15526
+ * The ID of the instance.
15527
+ *
13763
15528
  * @example
13764
15529
  * 10001
13765
15530
  */
13766
15531
  id?: number;
13767
15532
  /**
15533
+ * @remarks
15534
+ * The parameters configured for the instance.
15535
+ *
13768
15536
  * @example
13769
15537
  * {
13770
15538
  * "bizdate": "20240517",
@@ -13773,17 +15541,36 @@ export declare class ListDataQualityEvaluationTaskInstancesResponseBodyPagingInf
13773
15541
  */
13774
15542
  parameters?: string;
13775
15543
  /**
15544
+ * @remarks
15545
+ * The DataWorks workspace ID.
15546
+ *
13776
15547
  * @example
13777
15548
  * 100
13778
15549
  */
13779
15550
  projectId?: number;
13780
15551
  /**
15552
+ * @remarks
15553
+ * The status of the instance. Valid values:
15554
+ *
15555
+ * * Running
15556
+ * * Error
15557
+ * * Passed
15558
+ * * Warned
15559
+ * * Critical
15560
+ *
13781
15561
  * @example
13782
15562
  * Critical
13783
15563
  */
13784
15564
  status?: string;
15565
+ /**
15566
+ * @remarks
15567
+ * The snapshot of the configurations for the task when the task starts.
15568
+ */
13785
15569
  task?: ListDataQualityEvaluationTaskInstancesResponseBodyPagingInfoDataQualityEvaluationTaskInstancesTask;
13786
15570
  /**
15571
+ * @remarks
15572
+ * The information about the trigger module of the instance.
15573
+ *
13787
15574
  * @example
13788
15575
  * {
13789
15576
  * "TriggerClientId": 10001,
@@ -13802,18 +15589,31 @@ export declare class ListDataQualityEvaluationTaskInstancesResponseBodyPagingInf
13802
15589
  });
13803
15590
  }
13804
15591
  export declare class ListDataQualityEvaluationTaskInstancesResponseBodyPagingInfo extends $tea.Model {
15592
+ /**
15593
+ * @remarks
15594
+ * The instances generated by the task.
15595
+ */
13805
15596
  dataQualityEvaluationTaskInstances?: ListDataQualityEvaluationTaskInstancesResponseBodyPagingInfoDataQualityEvaluationTaskInstances[];
13806
15597
  /**
15598
+ * @remarks
15599
+ * The page number.
15600
+ *
13807
15601
  * @example
13808
15602
  * 1
13809
15603
  */
13810
15604
  pageNumber?: number;
13811
15605
  /**
15606
+ * @remarks
15607
+ * The number of entries per page.
15608
+ *
13812
15609
  * @example
13813
15610
  * 10
13814
15611
  */
13815
15612
  pageSize?: number;
13816
15613
  /**
15614
+ * @remarks
15615
+ * The total number of entries returned.
15616
+ *
13817
15617
  * @example
13818
15618
  * 294
13819
15619
  */
@@ -13830,11 +15630,19 @@ export declare class ListDataQualityEvaluationTaskInstancesResponseBodyPagingInf
13830
15630
  }
13831
15631
  export declare class ListDataQualityEvaluationTasksResponseBodyPagingInfoDataQualityEvaluationTasksHooks extends $tea.Model {
13832
15632
  /**
15633
+ * @remarks
15634
+ * The trigger configuration of the callback event.
15635
+ *
13833
15636
  * @example
13834
15637
  * ${severity} == "High" AND ${status} == "Critical"
13835
15638
  */
13836
15639
  condition?: string;
13837
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
+ *
13838
15646
  * @example
13839
15647
  * BlockTaskInstance
13840
15648
  */
@@ -13850,6 +15658,10 @@ export declare class ListDataQualityEvaluationTasksResponseBodyPagingInfoDataQua
13850
15658
  });
13851
15659
  }
13852
15660
  export declare class ListDataQualityEvaluationTasksResponseBodyPagingInfoDataQualityEvaluationTasksNotificationsNotificationsNotificationChannels extends $tea.Model {
15661
+ /**
15662
+ * @remarks
15663
+ * The alert notification methods.
15664
+ */
13853
15665
  channels?: string[];
13854
15666
  static names(): {
13855
15667
  [key: string]: string;
@@ -13863,15 +15675,31 @@ export declare class ListDataQualityEvaluationTasksResponseBodyPagingInfoDataQua
13863
15675
  }
13864
15676
  export declare class ListDataQualityEvaluationTasksResponseBodyPagingInfoDataQualityEvaluationTasksNotificationsNotificationsNotificationReceivers extends $tea.Model {
13865
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
+ *
13866
15681
  * @example
13867
15682
  * {"atAll":"true"}
13868
15683
  */
13869
15684
  extension?: string;
13870
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
+ *
13871
15695
  * @example
13872
15696
  * AliUid
13873
15697
  */
13874
15698
  receiverType?: string;
15699
+ /**
15700
+ * @remarks
15701
+ * The alert recipients.
15702
+ */
13875
15703
  receiverValues?: string[];
13876
15704
  static names(): {
13877
15705
  [key: string]: string;
@@ -13884,7 +15712,15 @@ export declare class ListDataQualityEvaluationTasksResponseBodyPagingInfoDataQua
13884
15712
  });
13885
15713
  }
13886
15714
  export declare class ListDataQualityEvaluationTasksResponseBodyPagingInfoDataQualityEvaluationTasksNotificationsNotifications extends $tea.Model {
15715
+ /**
15716
+ * @remarks
15717
+ * The alert notification methods.
15718
+ */
13887
15719
  notificationChannels?: ListDataQualityEvaluationTasksResponseBodyPagingInfoDataQualityEvaluationTasksNotificationsNotificationsNotificationChannels[];
15720
+ /**
15721
+ * @remarks
15722
+ * The alert recipients.
15723
+ */
13888
15724
  notificationReceivers?: ListDataQualityEvaluationTasksResponseBodyPagingInfoDataQualityEvaluationTasksNotificationsNotificationsNotificationReceivers[];
13889
15725
  static names(): {
13890
15726
  [key: string]: string;
@@ -13898,10 +15734,17 @@ export declare class ListDataQualityEvaluationTasksResponseBodyPagingInfoDataQua
13898
15734
  }
13899
15735
  export declare class ListDataQualityEvaluationTasksResponseBodyPagingInfoDataQualityEvaluationTasksNotifications extends $tea.Model {
13900
15736
  /**
15737
+ * @remarks
15738
+ * The trigger condition of the alert notification.
15739
+ *
13901
15740
  * @example
13902
15741
  * ${severity} == "High"
13903
15742
  */
13904
15743
  condition?: string;
15744
+ /**
15745
+ * @remarks
15746
+ * The configurations for the alert notification.
15747
+ */
13905
15748
  notifications?: ListDataQualityEvaluationTasksResponseBodyPagingInfoDataQualityEvaluationTasksNotificationsNotifications[];
13906
15749
  static names(): {
13907
15750
  [key: string]: string;
@@ -13915,21 +15758,43 @@ export declare class ListDataQualityEvaluationTasksResponseBodyPagingInfoDataQua
13915
15758
  }
13916
15759
  export declare class ListDataQualityEvaluationTasksResponseBodyPagingInfoDataQualityEvaluationTasksTarget extends $tea.Model {
13917
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
+ *
13918
15772
  * @example
13919
15773
  * maxcompute
13920
15774
  */
13921
15775
  databaseType?: string;
13922
15776
  /**
15777
+ * @remarks
15778
+ * The configuration of the partitioned table.
15779
+ *
13923
15780
  * @example
13924
15781
  * ds=$[yyyymmdd-1]
13925
15782
  */
13926
15783
  partitionSpec?: string;
13927
15784
  /**
15785
+ * @remarks
15786
+ * The ID of the table in Data Map.
15787
+ *
13928
15788
  * @example
13929
15789
  * odps.unit_test.tb_unit_test
13930
15790
  */
13931
15791
  tableGuid?: string;
13932
15792
  /**
15793
+ * @remarks
15794
+ * The type of the monitored object. Valid values:
15795
+ *
15796
+ * * Table
15797
+ *
13933
15798
  * @example
13934
15799
  * Table
13935
15800
  */
@@ -13945,8 +15810,17 @@ export declare class ListDataQualityEvaluationTasksResponseBodyPagingInfoDataQua
13945
15810
  });
13946
15811
  }
13947
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
+ */
13948
15817
  taskIds?: number[];
13949
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
+ *
13950
15824
  * @example
13951
15825
  * ByScheduledTaskInstance
13952
15826
  */
@@ -13963,34 +15837,69 @@ export declare class ListDataQualityEvaluationTasksResponseBodyPagingInfoDataQua
13963
15837
  }
13964
15838
  export declare class ListDataQualityEvaluationTasksResponseBodyPagingInfoDataQualityEvaluationTasks extends $tea.Model {
13965
15839
  /**
15840
+ * @remarks
15841
+ * The description of the data quality monitoring task. The description can be up to 65,535 characters in length.
15842
+ *
13966
15843
  * @example
13967
15844
  * This is a daily run data quality evaluation plan
13968
15845
  */
13969
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
+ */
13970
15851
  hooks?: ListDataQualityEvaluationTasksResponseBodyPagingInfoDataQualityEvaluationTasksHooks[];
13971
15852
  /**
15853
+ * @remarks
15854
+ * The ID of the data quality monitoring task.
15855
+ *
13972
15856
  * @example
13973
15857
  * 10001
13974
15858
  */
13975
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
+ */
13976
15864
  name?: string;
15865
+ /**
15866
+ * @remarks
15867
+ * The configurations for alert notifications.
15868
+ */
13977
15869
  notifications?: ListDataQualityEvaluationTasksResponseBodyPagingInfoDataQualityEvaluationTasksNotifications;
13978
15870
  /**
15871
+ * @remarks
15872
+ * The DataWorks workspace ID.
15873
+ *
13979
15874
  * @example
13980
15875
  * 100
13981
15876
  */
13982
15877
  projectId?: number;
13983
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
+ *
13984
15882
  * @example
13985
15883
  * { "queue": "default", "sqlEngine": "SPARK-SQL" }
13986
15884
  */
13987
15885
  runtimeConf?: string;
15886
+ /**
15887
+ * @remarks
15888
+ * The monitored object of the task.
15889
+ */
13988
15890
  target?: ListDataQualityEvaluationTasksResponseBodyPagingInfoDataQualityEvaluationTasksTarget;
13989
15891
  /**
15892
+ * @remarks
15893
+ * The DataWorks tenant ID.
15894
+ *
13990
15895
  * @example
13991
15896
  * 10
13992
15897
  */
13993
15898
  tenantId?: number;
15899
+ /**
15900
+ * @remarks
15901
+ * The trigger configuration of the task.
15902
+ */
13994
15903
  trigger?: ListDataQualityEvaluationTasksResponseBodyPagingInfoDataQualityEvaluationTasksTrigger;
13995
15904
  static names(): {
13996
15905
  [key: string]: string;
@@ -14003,18 +15912,31 @@ export declare class ListDataQualityEvaluationTasksResponseBodyPagingInfoDataQua
14003
15912
  });
14004
15913
  }
14005
15914
  export declare class ListDataQualityEvaluationTasksResponseBodyPagingInfo extends $tea.Model {
15915
+ /**
15916
+ * @remarks
15917
+ * The data quality monitoring tasks.
15918
+ */
14006
15919
  dataQualityEvaluationTasks?: ListDataQualityEvaluationTasksResponseBodyPagingInfoDataQualityEvaluationTasks[];
14007
15920
  /**
15921
+ * @remarks
15922
+ * The page number.
15923
+ *
14008
15924
  * @example
14009
15925
  * 1
14010
15926
  */
14011
15927
  pageNumber?: string;
14012
15928
  /**
15929
+ * @remarks
15930
+ * The number of entries per page.
15931
+ *
14013
15932
  * @example
14014
15933
  * 10
14015
15934
  */
14016
15935
  pageSize?: string;
14017
15936
  /**
15937
+ * @remarks
15938
+ * The total number of entries returned.
15939
+ *
14018
15940
  * @example
14019
15941
  * 131
14020
15942
  */
@@ -14042,10 +15964,12 @@ export declare class ListDataQualityResultsResponseBodyPagingInfoDataQualityResu
14042
15964
  referencedValue?: string;
14043
15965
  /**
14044
15966
  * @remarks
14045
- * * ERROR
14046
- * * PASSED
14047
- * * WARNED
14048
- * * CRITICAL
15967
+ * The comparison result between the value of CheckedValue and the threshold. Valid values:
15968
+ *
15969
+ * * Error
15970
+ * * Passed
15971
+ * * Warned
15972
+ * * Critical
14049
15973
  *
14050
15974
  * @example
14051
15975
  * PASSED
@@ -14171,12 +16095,14 @@ export declare class ListDataQualityResultsResponseBodyPagingInfoDataQualityResu
14171
16095
  thresholds?: ListDataQualityResultsResponseBodyPagingInfoDataQualityResultsRuleCheckingConfigThresholds;
14172
16096
  /**
14173
16097
  * @remarks
14174
- * * FIXED
14175
- * * FLUCTATION
14176
- * * AUTO
14177
- * * AVERAGE
14178
- * * VARIANCE
14179
- * * FLUCTATION_DISCREATE
16098
+ * The threshold calculation method. Valid values:
16099
+ *
16100
+ * * Fixed
16101
+ * * Fluctation
16102
+ * * FluctationDiscreate
16103
+ * * Auto
16104
+ * * Average
16105
+ * * Variance
14180
16106
  *
14181
16107
  * @example
14182
16108
  * FIXED
@@ -14200,7 +16126,9 @@ export declare class ListDataQualityResultsResponseBodyPagingInfoDataQualityResu
14200
16126
  errorDataFilter?: string;
14201
16127
  /**
14202
16128
  * @remarks
14203
- * * SAVE_ERROR_DATA
16129
+ * The type of the operation. Valid values:
16130
+ *
16131
+ * * SaveErrorData
14204
16132
  *
14205
16133
  * @example
14206
16134
  * SAVE_ERROR_DATA
@@ -14219,20 +16147,23 @@ export declare class ListDataQualityResultsResponseBodyPagingInfoDataQualityResu
14219
16147
  export declare class ListDataQualityResultsResponseBodyPagingInfoDataQualityResultsRuleSamplingConfig extends $tea.Model {
14220
16148
  /**
14221
16149
  * @remarks
14222
- * *
14223
- * *
14224
- * *
14225
- * *
14226
- * *
14227
- * *
14228
- * *
14229
- * *
14230
- * *
14231
- * *
14232
- * *
14233
- * *
14234
- * *
14235
- * *
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.
14236
16167
  *
14237
16168
  * @example
14238
16169
  * COUNT
@@ -14266,13 +16197,15 @@ export declare class ListDataQualityResultsResponseBodyPagingInfoDataQualityResu
14266
16197
  export declare class ListDataQualityResultsResponseBodyPagingInfoDataQualityResultsRuleTarget extends $tea.Model {
14267
16198
  /**
14268
16199
  * @remarks
14269
- * * MAX_COMPUTE
14270
- * * EMR
14271
- * * CDH
14272
- * * HOLOGRES
14273
- * * ANALYTICDB_FOR_POSTGRESQL
14274
- * * ANALYTICDB_FOR_MYSQL
14275
- * * STAR_ROCKS
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
14276
16209
  *
14277
16210
  * @example
14278
16211
  * MAX_COMPUTE
@@ -14290,7 +16223,9 @@ export declare class ListDataQualityResultsResponseBodyPagingInfoDataQualityResu
14290
16223
  tableGuid?: string;
14291
16224
  /**
14292
16225
  * @remarks
14293
- * * TABLE
16226
+ * The type of the monitored object. Valid values:
16227
+ *
16228
+ * * Table
14294
16229
  *
14295
16230
  * @example
14296
16231
  * TABLE
@@ -14307,6 +16242,10 @@ export declare class ListDataQualityResultsResponseBodyPagingInfoDataQualityResu
14307
16242
  });
14308
16243
  }
14309
16244
  export declare class ListDataQualityResultsResponseBodyPagingInfoDataQualityResultsRule extends $tea.Model {
16245
+ /**
16246
+ * @remarks
16247
+ * The check settings for sample data.
16248
+ */
14310
16249
  checkingConfig?: ListDataQualityResultsResponseBodyPagingInfoDataQualityResultsRuleCheckingConfig;
14311
16250
  /**
14312
16251
  * @example
@@ -14318,6 +16257,10 @@ export declare class ListDataQualityResultsResponseBodyPagingInfoDataQualityResu
14318
16257
  * true
14319
16258
  */
14320
16259
  enabled?: boolean;
16260
+ /**
16261
+ * @remarks
16262
+ * The operations that you can perform after the rule-based check fails.
16263
+ */
14321
16264
  errorHandlers?: ListDataQualityResultsResponseBodyPagingInfoDataQualityResultsRuleErrorHandlers[];
14322
16265
  /**
14323
16266
  * @example
@@ -14330,16 +16273,26 @@ export declare class ListDataQualityResultsResponseBodyPagingInfoDataQualityResu
14330
16273
  * 100
14331
16274
  */
14332
16275
  projectId?: number;
16276
+ /**
16277
+ * @remarks
16278
+ * The sampling settings.
16279
+ */
14333
16280
  samplingConfig?: ListDataQualityResultsResponseBodyPagingInfoDataQualityResultsRuleSamplingConfig;
14334
16281
  /**
14335
16282
  * @remarks
14336
- * * HIGH
14337
- * * NORMAL
16283
+ * The strength of the rule. Valid values:
16284
+ *
16285
+ * * High
16286
+ * * Normal
14338
16287
  *
14339
16288
  * @example
14340
16289
  * NORMAL
14341
16290
  */
14342
16291
  severity?: string;
16292
+ /**
16293
+ * @remarks
16294
+ * The monitored object of the rule.
16295
+ */
14343
16296
  target?: ListDataQualityResultsResponseBodyPagingInfoDataQualityResultsRuleTarget;
14344
16297
  /**
14345
16298
  * @example
@@ -14367,12 +16320,20 @@ export declare class ListDataQualityResultsResponseBodyPagingInfoDataQualityResu
14367
16320
  * 1708284916414
14368
16321
  */
14369
16322
  createTime?: number;
16323
+ /**
16324
+ * @remarks
16325
+ * The check details.
16326
+ */
14370
16327
  details?: ListDataQualityResultsResponseBodyPagingInfoDataQualityResultsDetails[];
14371
16328
  /**
14372
16329
  * @example
14373
16330
  * 16033
14374
16331
  */
14375
16332
  id?: number;
16333
+ /**
16334
+ * @remarks
16335
+ * The snapshot of the rule configuration when the check starts.
16336
+ */
14376
16337
  rule?: ListDataQualityResultsResponseBodyPagingInfoDataQualityResultsRule;
14377
16338
  /**
14378
16339
  * @example
@@ -14389,11 +16350,13 @@ export declare class ListDataQualityResultsResponseBodyPagingInfoDataQualityResu
14389
16350
  sample?: string;
14390
16351
  /**
14391
16352
  * @remarks
14392
- * * RUNNING
14393
- * * ERROR
14394
- * * PASSED
14395
- * * WARNED
14396
- * * CRITICAL
16353
+ * The status of the check result. Valid values:
16354
+ *
16355
+ * * Running
16356
+ * * Error
16357
+ * * Passed
16358
+ * * Warned
16359
+ * * Critical
14397
16360
  *
14398
16361
  * @example
14399
16362
  * PASSED
@@ -14415,6 +16378,10 @@ export declare class ListDataQualityResultsResponseBodyPagingInfoDataQualityResu
14415
16378
  });
14416
16379
  }
14417
16380
  export declare class ListDataQualityResultsResponseBodyPagingInfo extends $tea.Model {
16381
+ /**
16382
+ * @remarks
16383
+ * The data quality check results.
16384
+ */
14418
16385
  dataQualityResults?: ListDataQualityResultsResponseBodyPagingInfoDataQualityResults[];
14419
16386
  /**
14420
16387
  * @example
@@ -14443,11 +16410,24 @@ export declare class ListDataQualityResultsResponseBodyPagingInfo extends $tea.M
14443
16410
  }
14444
16411
  export declare class ListDataQualityRulesResponseBodyPagingInfoDataQualityRulesCheckingConfigThresholdsCritical extends $tea.Model {
14445
16412
  /**
16413
+ * @remarks
16414
+ * The comparison operator. Valid values:
16415
+ *
16416
+ * * \\>
16417
+ * * \\>=
16418
+ * * <
16419
+ * * <=
16420
+ * * !=
16421
+ * * \\=
16422
+ *
14446
16423
  * @example
14447
16424
  * >
14448
16425
  */
14449
16426
  operator?: string;
14450
16427
  /**
16428
+ * @remarks
16429
+ * The threshold value.
16430
+ *
14451
16431
  * @example
14452
16432
  * 100.0
14453
16433
  */
@@ -14464,11 +16444,24 @@ export declare class ListDataQualityRulesResponseBodyPagingInfoDataQualityRulesC
14464
16444
  }
14465
16445
  export declare class ListDataQualityRulesResponseBodyPagingInfoDataQualityRulesCheckingConfigThresholdsExpected extends $tea.Model {
14466
16446
  /**
16447
+ * @remarks
16448
+ * The comparison operator. Valid values:
16449
+ *
16450
+ * * \\>
16451
+ * * \\>=
16452
+ * * <
16453
+ * * <=
16454
+ * * !=
16455
+ * * \\=
16456
+ *
14467
16457
  * @example
14468
16458
  * >
14469
16459
  */
14470
16460
  operator?: string;
14471
16461
  /**
16462
+ * @remarks
16463
+ * The threshold value.
16464
+ *
14472
16465
  * @example
14473
16466
  * 100.0
14474
16467
  */
@@ -14485,11 +16478,24 @@ export declare class ListDataQualityRulesResponseBodyPagingInfoDataQualityRulesC
14485
16478
  }
14486
16479
  export declare class ListDataQualityRulesResponseBodyPagingInfoDataQualityRulesCheckingConfigThresholdsWarned extends $tea.Model {
14487
16480
  /**
16481
+ * @remarks
16482
+ * The comparison operator. Valid values:
16483
+ *
16484
+ * * \\>
16485
+ * * \\>=
16486
+ * * <
16487
+ * * <=
16488
+ * * !=
16489
+ * * \\=
16490
+ *
14488
16491
  * @example
14489
16492
  * >
14490
16493
  */
14491
16494
  operator?: string;
14492
16495
  /**
16496
+ * @remarks
16497
+ * The threshold value.
16498
+ *
14493
16499
  * @example
14494
16500
  * 100.0
14495
16501
  */
@@ -14505,8 +16511,20 @@ export declare class ListDataQualityRulesResponseBodyPagingInfoDataQualityRulesC
14505
16511
  });
14506
16512
  }
14507
16513
  export declare class ListDataQualityRulesResponseBodyPagingInfoDataQualityRulesCheckingConfigThresholds extends $tea.Model {
16514
+ /**
16515
+ * @remarks
16516
+ * The threshold settings for critical alerts.
16517
+ */
14508
16518
  critical?: ListDataQualityRulesResponseBodyPagingInfoDataQualityRulesCheckingConfigThresholdsCritical;
16519
+ /**
16520
+ * @remarks
16521
+ * The expected threshold setting.
16522
+ */
14509
16523
  expected?: ListDataQualityRulesResponseBodyPagingInfoDataQualityRulesCheckingConfigThresholdsExpected;
16524
+ /**
16525
+ * @remarks
16526
+ * The threshold settings for normal alerts.
16527
+ */
14510
16528
  warned?: ListDataQualityRulesResponseBodyPagingInfoDataQualityRulesCheckingConfigThresholdsWarned;
14511
16529
  static names(): {
14512
16530
  [key: string]: string;
@@ -14520,12 +16538,29 @@ export declare class ListDataQualityRulesResponseBodyPagingInfoDataQualityRulesC
14520
16538
  }
14521
16539
  export declare class ListDataQualityRulesResponseBodyPagingInfoDataQualityRulesCheckingConfig extends $tea.Model {
14522
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
+ *
14523
16544
  * @example
14524
16545
  * { "bizdate": [ "-1", "-7", "-1m" ] }
14525
16546
  */
14526
16547
  referencedSamplesFilter?: string;
16548
+ /**
16549
+ * @remarks
16550
+ * The threshold settings.
16551
+ */
14527
16552
  thresholds?: ListDataQualityRulesResponseBodyPagingInfoDataQualityRulesCheckingConfigThresholds;
14528
16553
  /**
16554
+ * @remarks
16555
+ * The threshold calculation method. Valid values:
16556
+ *
16557
+ * * Fixed
16558
+ * * Fluctation
16559
+ * * FluctationDiscreate
16560
+ * * Auto
16561
+ * * Average
16562
+ * * Variance
16563
+ *
14529
16564
  * @example
14530
16565
  * Fixed
14531
16566
  */
@@ -14542,11 +16577,19 @@ export declare class ListDataQualityRulesResponseBodyPagingInfoDataQualityRulesC
14542
16577
  }
14543
16578
  export declare class ListDataQualityRulesResponseBodyPagingInfoDataQualityRulesErrorHandlers extends $tea.Model {
14544
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
+ *
14545
16583
  * @example
14546
16584
  * SELECT * FROM tb_api_log WHERE id IS NULL
14547
16585
  */
14548
16586
  errorDataFilter?: string;
14549
16587
  /**
16588
+ * @remarks
16589
+ * The type of the operation. Valid values:
16590
+ *
16591
+ * * SaveErrorData
16592
+ *
14550
16593
  * @example
14551
16594
  * SaveErrorData
14552
16595
  */
@@ -14563,21 +16606,49 @@ export declare class ListDataQualityRulesResponseBodyPagingInfoDataQualityRulesE
14563
16606
  }
14564
16607
  export declare class ListDataQualityRulesResponseBodyPagingInfoDataQualityRulesSamplingConfig extends $tea.Model {
14565
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
+ *
14566
16628
  * @example
14567
16629
  * Max
14568
16630
  */
14569
16631
  metric?: string;
14570
16632
  /**
16633
+ * @remarks
16634
+ * The parameters required for sampling.
16635
+ *
14571
16636
  * @example
14572
16637
  * { "Columns": [ "id", "name" ] , "SQL": "select count(1) from table;"}
14573
16638
  */
14574
16639
  metricParameters?: string;
14575
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
+ *
14576
16644
  * @example
14577
16645
  * id IS NULL
14578
16646
  */
14579
16647
  samplingFilter?: string;
14580
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
+ *
14581
16652
  * @example
14582
16653
  * SET odps.sql.udf.timeout=600s;
14583
16654
  * SET odps.sql.python.version=cp27;
@@ -14595,21 +16666,43 @@ export declare class ListDataQualityRulesResponseBodyPagingInfoDataQualityRulesS
14595
16666
  }
14596
16667
  export declare class ListDataQualityRulesResponseBodyPagingInfoDataQualityRulesTarget extends $tea.Model {
14597
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
+ *
14598
16680
  * @example
14599
16681
  * maxcompute
14600
16682
  */
14601
16683
  databaseType?: string;
14602
16684
  /**
16685
+ * @remarks
16686
+ * The configuration of the partitioned table.
16687
+ *
14603
16688
  * @example
14604
16689
  * ds=$[yyyymmdd-1]
14605
16690
  */
14606
16691
  partitionSpec?: string;
14607
16692
  /**
16693
+ * @remarks
16694
+ * The ID of the table that is limited by the rule in Data Map.
16695
+ *
14608
16696
  * @example
14609
16697
  * odps.unit_test.tb_unit_test
14610
16698
  */
14611
16699
  tableGuid?: string;
14612
16700
  /**
16701
+ * @remarks
16702
+ * The type of the monitored object. Valid values:
16703
+ *
16704
+ * * Table
16705
+ *
14613
16706
  * @example
14614
16707
  * Table
14615
16708
  */
@@ -14625,42 +16718,86 @@ export declare class ListDataQualityRulesResponseBodyPagingInfoDataQualityRulesT
14625
16718
  });
14626
16719
  }
14627
16720
  export declare class ListDataQualityRulesResponseBodyPagingInfoDataQualityRules extends $tea.Model {
16721
+ /**
16722
+ * @remarks
16723
+ * The check settings for sample data.
16724
+ */
14628
16725
  checkingConfig?: ListDataQualityRulesResponseBodyPagingInfoDataQualityRulesCheckingConfig;
14629
16726
  /**
16727
+ * @remarks
16728
+ * The description of the rule. The description can be up to 500 characters in length.
16729
+ *
14630
16730
  * @example
14631
16731
  * this is a odps _sql task
14632
16732
  */
14633
16733
  description?: string;
14634
16734
  /**
16735
+ * @remarks
16736
+ * Indicates whether the rule is enabled.
16737
+ *
14635
16738
  * @example
14636
16739
  * true
14637
16740
  */
14638
16741
  enabled?: boolean;
16742
+ /**
16743
+ * @remarks
16744
+ * The operations that you can perform after the rule-based check fails.
16745
+ */
14639
16746
  errorHandlers?: ListDataQualityRulesResponseBodyPagingInfoDataQualityRulesErrorHandlers[];
14640
16747
  /**
16748
+ * @remarks
16749
+ * The rule ID.
16750
+ *
14641
16751
  * @example
14642
16752
  * 22130
14643
16753
  */
14644
16754
  id?: number;
16755
+ /**
16756
+ * @remarks
16757
+ * The rule name.
16758
+ */
14645
16759
  name?: string;
14646
16760
  /**
16761
+ * @remarks
16762
+ * The DataWorks workspace ID.
16763
+ *
14647
16764
  * @example
14648
16765
  * 100001
14649
16766
  */
14650
16767
  projectId?: number;
16768
+ /**
16769
+ * @remarks
16770
+ * The settings for sampling.
16771
+ */
14651
16772
  samplingConfig?: ListDataQualityRulesResponseBodyPagingInfoDataQualityRulesSamplingConfig;
14652
16773
  /**
16774
+ * @remarks
16775
+ * The strength of the rule. Valid values:
16776
+ *
16777
+ * * Normal
16778
+ * * High
16779
+ *
14653
16780
  * @example
14654
16781
  * High
14655
16782
  */
14656
16783
  severity?: string;
16784
+ /**
16785
+ * @remarks
16786
+ * The monitored object of the rule.
16787
+ */
14657
16788
  target?: ListDataQualityRulesResponseBodyPagingInfoDataQualityRulesTarget;
14658
16789
  /**
16790
+ * @remarks
16791
+ * The ID of the template used by the rule.
16792
+ *
14659
16793
  * @example
14660
16794
  * system::user_defined
14661
16795
  */
14662
16796
  templateCode?: string;
14663
16797
  /**
16798
+ * @remarks
16799
+ * The ID of the DataWorks tenant.
16800
+ *
14664
16801
  * @example
14665
16802
  * 100001
14666
16803
  */
@@ -14676,18 +16813,31 @@ export declare class ListDataQualityRulesResponseBodyPagingInfoDataQualityRules
14676
16813
  });
14677
16814
  }
14678
16815
  export declare class ListDataQualityRulesResponseBodyPagingInfo extends $tea.Model {
16816
+ /**
16817
+ * @remarks
16818
+ * The rules.
16819
+ */
14679
16820
  dataQualityRules?: ListDataQualityRulesResponseBodyPagingInfoDataQualityRules[];
14680
16821
  /**
16822
+ * @remarks
16823
+ * The page number.
16824
+ *
14681
16825
  * @example
14682
16826
  * 1
14683
16827
  */
14684
16828
  pageNumber?: number;
14685
16829
  /**
16830
+ * @remarks
16831
+ * The number of entries per page.
16832
+ *
14686
16833
  * @example
14687
16834
  * 10
14688
16835
  */
14689
16836
  pageSize?: number;
14690
16837
  /**
16838
+ * @remarks
16839
+ * The total number of entries returned.
16840
+ *
14691
16841
  * @example
14692
16842
  * 294
14693
16843
  */
@@ -15186,6 +17336,7 @@ export declare class ListDownstreamTaskInstancesResponseBodyPagingInfoTaskInstan
15186
17336
  * 100
15187
17337
  */
15188
17338
  owner?: string;
17339
+ periodNumber?: number;
15189
17340
  /**
15190
17341
  * @example
15191
17342
  * 1
@@ -15422,6 +17573,7 @@ export declare class ListDownstreamTasksResponseBodyPagingInfoTasks extends $tea
15422
17573
  * 1234
15423
17574
  */
15424
17575
  id?: number;
17576
+ instanceMode?: string;
15425
17577
  /**
15426
17578
  * @example
15427
17579
  * 1710239005403
@@ -15469,6 +17621,7 @@ export declare class ListDownstreamTasksResponseBodyPagingInfoTasks extends $tea
15469
17621
  */
15470
17622
  rerunTimes?: number;
15471
17623
  runtimeResource?: ListDownstreamTasksResponseBodyPagingInfoTasksRuntimeResource;
17624
+ stepType?: string;
15472
17625
  /**
15473
17626
  * @example
15474
17627
  * 1
@@ -17362,12 +19515,25 @@ export declare class ListNodesResponseBodyPagingInfo extends $tea.Model {
17362
19515
  }
17363
19516
  export declare class ListProjectMembersResponseBodyPagingInfoProjectMembersRoles extends $tea.Model {
17364
19517
  /**
19518
+ * @remarks
19519
+ * The code of the role.
19520
+ *
17365
19521
  * @example
17366
19522
  * role_project_guest
17367
19523
  */
17368
19524
  code?: string;
19525
+ /**
19526
+ * @remarks
19527
+ * The name of the role.
19528
+ */
17369
19529
  name?: string;
17370
19530
  /**
19531
+ * @remarks
19532
+ * The type of the role. Valid values:
19533
+ *
19534
+ * * UserCustom: custom role
19535
+ * * System: built-in role
19536
+ *
17371
19537
  * @example
17372
19538
  * System
17373
19539
  */
@@ -17384,17 +19550,33 @@ export declare class ListProjectMembersResponseBodyPagingInfoProjectMembersRoles
17384
19550
  }
17385
19551
  export declare class ListProjectMembersResponseBodyPagingInfoProjectMembers extends $tea.Model {
17386
19552
  /**
19553
+ * @remarks
19554
+ * The ID of the DataWorks workspace.
19555
+ *
17387
19556
  * @example
17388
19557
  * 62136
17389
19558
  */
17390
- projectId?: number;
19559
+ projectId?: number;
19560
+ /**
19561
+ * @remarks
19562
+ * The roles that are assigned to the member.
19563
+ */
17391
19564
  roles?: ListProjectMembersResponseBodyPagingInfoProjectMembersRoles[];
17392
19565
  /**
19566
+ * @remarks
19567
+ * The status of the member. Valid values:
19568
+ *
19569
+ * * Normal
19570
+ * * Forbidden
19571
+ *
17393
19572
  * @example
17394
19573
  * Normal
17395
19574
  */
17396
19575
  status?: string;
17397
19576
  /**
19577
+ * @remarks
19578
+ * The ID of the account used by the member.
19579
+ *
17398
19580
  * @example
17399
19581
  * 123422344899
17400
19582
  */
@@ -17411,17 +19593,30 @@ export declare class ListProjectMembersResponseBodyPagingInfoProjectMembers exte
17411
19593
  }
17412
19594
  export declare class ListProjectMembersResponseBodyPagingInfo extends $tea.Model {
17413
19595
  /**
19596
+ * @remarks
19597
+ * The page number.
19598
+ *
17414
19599
  * @example
17415
19600
  * 1
17416
19601
  */
17417
19602
  pageNumber?: number;
17418
19603
  /**
19604
+ * @remarks
19605
+ * The number of entries per page.
19606
+ *
17419
19607
  * @example
17420
19608
  * 10
17421
19609
  */
17422
19610
  pageSize?: number;
19611
+ /**
19612
+ * @remarks
19613
+ * The members in the workspace.
19614
+ */
17423
19615
  projectMembers?: ListProjectMembersResponseBodyPagingInfoProjectMembers[];
17424
19616
  /**
19617
+ * @remarks
19618
+ * The total number of entries returned.
19619
+ *
17425
19620
  * @example
17426
19621
  * 12
17427
19622
  */
@@ -18161,6 +20356,7 @@ export declare class ListTaskInstancesResponseBodyPagingInfoTaskInstances extend
18161
20356
  * 1000
18162
20357
  */
18163
20358
  owner?: string;
20359
+ periodNumber?: number;
18164
20360
  /**
18165
20361
  * @example
18166
20362
  * 1
@@ -18451,6 +20647,7 @@ export declare class ListTasksResponseBodyPagingInfoTasks extends $tea.Model {
18451
20647
  * 1234
18452
20648
  */
18453
20649
  id?: number;
20650
+ instanceMode?: string;
18454
20651
  /**
18455
20652
  * @example
18456
20653
  * 1710239005403
@@ -18671,6 +20868,7 @@ export declare class ListUpstreamTaskInstancesResponseBodyPagingInfoTaskInstance
18671
20868
  * 1000
18672
20869
  */
18673
20870
  owner?: string;
20871
+ periodNumber?: number;
18674
20872
  /**
18675
20873
  * @example
18676
20874
  * 1
@@ -18907,6 +21105,7 @@ export declare class ListUpstreamTasksResponseBodyPagingInfoTasks extends $tea.M
18907
21105
  * 1234
18908
21106
  */
18909
21107
  id?: number;
21108
+ instanceMode?: string;
18910
21109
  /**
18911
21110
  * @example
18912
21111
  * 1710239005403
@@ -18954,6 +21153,7 @@ export declare class ListUpstreamTasksResponseBodyPagingInfoTasks extends $tea.M
18954
21153
  */
18955
21154
  rerunTimes?: number;
18956
21155
  runtimeResource?: ListUpstreamTasksResponseBodyPagingInfoTasksRuntimeResource;
21156
+ stepType?: string;
18957
21157
  /**
18958
21158
  * @example
18959
21159
  * 1
@@ -19219,6 +21419,250 @@ export declare class StartDIJobRequestRealtimeStartSettings extends $tea.Model {
19219
21419
  [key: string]: any;
19220
21420
  });
19221
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
+ }
19222
21666
  export declare class UpdateDIAlarmRuleRequestNotificationSettingsNotificationChannels extends $tea.Model {
19223
21667
  channels?: string[];
19224
21668
  /**
@@ -19671,6 +22115,21 @@ export default class Client extends OpenApi {
19671
22115
  * @returns CloneDataSourceResponse
19672
22116
  */
19673
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>;
19674
22133
  /**
19675
22134
  * 创建数据集成报警规则
19676
22135
  *
@@ -19911,6 +22370,21 @@ export default class Client extends OpenApi {
19911
22370
  * @returns CreateWorkflowDefinitionResponse
19912
22371
  */
19913
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>;
19914
22388
  /**
19915
22389
  * Deletes an alert rule configured for a synchronization task.
19916
22390
  *
@@ -20044,7 +22518,7 @@ export default class Client extends OpenApi {
20044
22518
  */
20045
22519
  deleteProject(request: DeleteProjectRequest): Promise<DeleteProjectResponse>;
20046
22520
  /**
20047
- * 移除工作空间成员
22521
+ * Removes a member from a workspace.
20048
22522
  *
20049
22523
  * @param request - DeleteProjectMemberRequest
20050
22524
  * @param runtime - runtime options for this request RuntimeOptions
@@ -20052,7 +22526,7 @@ export default class Client extends OpenApi {
20052
22526
  */
20053
22527
  deleteProjectMemberWithOptions(request: DeleteProjectMemberRequest, runtime: $Util.RuntimeOptions): Promise<DeleteProjectMemberResponse>;
20054
22528
  /**
20055
- * 移除工作空间成员
22529
+ * Removes a member from a workspace.
20056
22530
  *
20057
22531
  * @param request - DeleteProjectMemberRequest
20058
22532
  * @returns DeleteProjectMemberResponse
@@ -20179,6 +22653,21 @@ export default class Client extends OpenApi {
20179
22653
  * @returns ExecDeploymentStageResponse
20180
22654
  */
20181
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>;
20182
22671
  /**
20183
22672
  * 查看数据集成任务
20184
22673
  *
@@ -20308,7 +22797,7 @@ export default class Client extends OpenApi {
20308
22797
  */
20309
22798
  getNode(request: GetNodeRequest): Promise<GetNodeResponse>;
20310
22799
  /**
20311
- * 查询工作空间详情
22800
+ * Queries the information about a DataWorks workspace.
20312
22801
  *
20313
22802
  * @param request - GetProjectRequest
20314
22803
  * @param runtime - runtime options for this request RuntimeOptions
@@ -20316,14 +22805,14 @@ export default class Client extends OpenApi {
20316
22805
  */
20317
22806
  getProjectWithOptions(request: GetProjectRequest, runtime: $Util.RuntimeOptions): Promise<GetProjectResponse>;
20318
22807
  /**
20319
- * 查询工作空间详情
22808
+ * Queries the information about a DataWorks workspace.
20320
22809
  *
20321
22810
  * @param request - GetProjectRequest
20322
22811
  * @returns GetProjectResponse
20323
22812
  */
20324
22813
  getProject(request: GetProjectRequest): Promise<GetProjectResponse>;
20325
22814
  /**
20326
- * 查询工作空间成员详情
22815
+ * Queries the details about a member in a workspace.
20327
22816
  *
20328
22817
  * @param request - GetProjectMemberRequest
20329
22818
  * @param runtime - runtime options for this request RuntimeOptions
@@ -20331,7 +22820,7 @@ export default class Client extends OpenApi {
20331
22820
  */
20332
22821
  getProjectMemberWithOptions(request: GetProjectMemberRequest, runtime: $Util.RuntimeOptions): Promise<GetProjectMemberResponse>;
20333
22822
  /**
20334
- * 查询工作空间成员详情
22823
+ * Queries the details about a member in a workspace.
20335
22824
  *
20336
22825
  * @param request - GetProjectMemberRequest
20337
22826
  * @returns GetProjectMemberResponse
@@ -20409,12 +22898,16 @@ export default class Client extends OpenApi {
20409
22898
  */
20410
22899
  getTask(request: GetTaskRequest): Promise<GetTaskResponse>;
20411
22900
  /**
22901
+ * Queries the information about an instance.
22902
+ *
20412
22903
  * @param request - GetTaskInstanceRequest
20413
22904
  * @param runtime - runtime options for this request RuntimeOptions
20414
22905
  * @returns GetTaskInstanceResponse
20415
22906
  */
20416
22907
  getTaskInstanceWithOptions(request: GetTaskInstanceRequest, runtime: $Util.RuntimeOptions): Promise<GetTaskInstanceResponse>;
20417
22908
  /**
22909
+ * Queries the information about an instance.
22910
+ *
20418
22911
  * @param request - GetTaskInstanceRequest
20419
22912
  * @returns GetTaskInstanceResponse
20420
22913
  */
@@ -20446,7 +22939,7 @@ export default class Client extends OpenApi {
20446
22939
  */
20447
22940
  getWorkflowDefinition(request: GetWorkflowDefinitionRequest): Promise<GetWorkflowDefinitionResponse>;
20448
22941
  /**
20449
- * 授予工作空间成员角色
22942
+ * Assigns roles to members in a workspace.
20450
22943
  *
20451
22944
  * @param tmpReq - GrantMemberProjectRolesRequest
20452
22945
  * @param runtime - runtime options for this request RuntimeOptions
@@ -20454,7 +22947,7 @@ export default class Client extends OpenApi {
20454
22947
  */
20455
22948
  grantMemberProjectRolesWithOptions(tmpReq: GrantMemberProjectRolesRequest, runtime: $Util.RuntimeOptions): Promise<GrantMemberProjectRolesResponse>;
20456
22949
  /**
20457
- * 授予工作空间成员角色
22950
+ * Assigns roles to members in a workspace.
20458
22951
  *
20459
22952
  * @param request - GrantMemberProjectRolesRequest
20460
22953
  * @returns GrantMemberProjectRolesResponse
@@ -20475,6 +22968,21 @@ export default class Client extends OpenApi {
20475
22968
  * @returns ImportWorkflowDefinitionResponse
20476
22969
  */
20477
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>;
20478
22986
  /**
20479
22987
  * 查看数据集成报警规则
20480
22988
  *
@@ -20551,7 +23059,7 @@ export default class Client extends OpenApi {
20551
23059
  */
20552
23060
  listDIJobs(request: ListDIJobsRequest): Promise<ListDIJobsResponse>;
20553
23061
  /**
20554
- * ListDataQualityEvaluationTaskInstances
23062
+ * Queries a list of instances generated by a data quality monitoring task by page.
20555
23063
  *
20556
23064
  * @param request - ListDataQualityEvaluationTaskInstancesRequest
20557
23065
  * @param runtime - runtime options for this request RuntimeOptions
@@ -20559,19 +23067,23 @@ export default class Client extends OpenApi {
20559
23067
  */
20560
23068
  listDataQualityEvaluationTaskInstancesWithOptions(request: ListDataQualityEvaluationTaskInstancesRequest, runtime: $Util.RuntimeOptions): Promise<ListDataQualityEvaluationTaskInstancesResponse>;
20561
23069
  /**
20562
- * ListDataQualityEvaluationTaskInstances
23070
+ * Queries a list of instances generated by a data quality monitoring task by page.
20563
23071
  *
20564
23072
  * @param request - ListDataQualityEvaluationTaskInstancesRequest
20565
23073
  * @returns ListDataQualityEvaluationTaskInstancesResponse
20566
23074
  */
20567
23075
  listDataQualityEvaluationTaskInstances(request: ListDataQualityEvaluationTaskInstancesRequest): Promise<ListDataQualityEvaluationTaskInstancesResponse>;
20568
23076
  /**
23077
+ * Queries a list of data quality monitoring tasks by page.
23078
+ *
20569
23079
  * @param request - ListDataQualityEvaluationTasksRequest
20570
23080
  * @param runtime - runtime options for this request RuntimeOptions
20571
23081
  * @returns ListDataQualityEvaluationTasksResponse
20572
23082
  */
20573
23083
  listDataQualityEvaluationTasksWithOptions(request: ListDataQualityEvaluationTasksRequest, runtime: $Util.RuntimeOptions): Promise<ListDataQualityEvaluationTasksResponse>;
20574
23084
  /**
23085
+ * Queries a list of data quality monitoring tasks by page.
23086
+ *
20575
23087
  * @param request - ListDataQualityEvaluationTasksRequest
20576
23088
  * @returns ListDataQualityEvaluationTasksResponse
20577
23089
  */
@@ -20588,7 +23100,7 @@ export default class Client extends OpenApi {
20588
23100
  */
20589
23101
  listDataQualityResults(request: ListDataQualityResultsRequest): Promise<ListDataQualityResultsResponse>;
20590
23102
  /**
20591
- * 质量监控规则分页查询
23103
+ * Queries a list of data quality monitoring rules by page.
20592
23104
  *
20593
23105
  * @param request - ListDataQualityRulesRequest
20594
23106
  * @param runtime - runtime options for this request RuntimeOptions
@@ -20596,7 +23108,7 @@ export default class Client extends OpenApi {
20596
23108
  */
20597
23109
  listDataQualityRulesWithOptions(request: ListDataQualityRulesRequest, runtime: $Util.RuntimeOptions): Promise<ListDataQualityRulesResponse>;
20598
23110
  /**
20599
- * 质量监控规则分页查询
23111
+ * Queries a list of data quality monitoring rules by page.
20600
23112
  *
20601
23113
  * @param request - ListDataQualityRulesRequest
20602
23114
  * @returns ListDataQualityRulesResponse
@@ -20730,7 +23242,7 @@ export default class Client extends OpenApi {
20730
23242
  */
20731
23243
  listNodes(request: ListNodesRequest): Promise<ListNodesResponse>;
20732
23244
  /**
20733
- * 分页查询工作空间成员详情
23245
+ * Queries details about members in a workspace.
20734
23246
  *
20735
23247
  * @param tmpReq - ListProjectMembersRequest
20736
23248
  * @param runtime - runtime options for this request RuntimeOptions
@@ -20738,7 +23250,7 @@ export default class Client extends OpenApi {
20738
23250
  */
20739
23251
  listProjectMembersWithOptions(tmpReq: ListProjectMembersRequest, runtime: $Util.RuntimeOptions): Promise<ListProjectMembersResponse>;
20740
23252
  /**
20741
- * 分页查询工作空间成员详情
23253
+ * Queries details about members in a workspace.
20742
23254
  *
20743
23255
  * @param request - ListProjectMembersRequest
20744
23256
  * @returns ListProjectMembersResponse
@@ -21054,7 +23566,7 @@ export default class Client extends OpenApi {
21054
23566
  */
21055
23567
  resumeTaskInstances(request: ResumeTaskInstancesRequest): Promise<ResumeTaskInstancesResponse>;
21056
23568
  /**
21057
- * 撤销工作空间成员的角色
23569
+ * Revokes roles that are assigned to a member in a workspace.
21058
23570
  *
21059
23571
  * @param tmpReq - RevokeMemberProjectRolesRequest
21060
23572
  * @param runtime - runtime options for this request RuntimeOptions
@@ -21062,7 +23574,7 @@ export default class Client extends OpenApi {
21062
23574
  */
21063
23575
  revokeMemberProjectRolesWithOptions(tmpReq: RevokeMemberProjectRolesRequest, runtime: $Util.RuntimeOptions): Promise<RevokeMemberProjectRolesResponse>;
21064
23576
  /**
21065
- * 撤销工作空间成员的角色
23577
+ * Revokes roles that are assigned to a member in a workspace.
21066
23578
  *
21067
23579
  * @param request - RevokeMemberProjectRolesRequest
21068
23580
  * @returns RevokeMemberProjectRolesResponse
@@ -21142,6 +23654,21 @@ export default class Client extends OpenApi {
21142
23654
  * @returns TriggerSchedulerTaskInstanceResponse
21143
23655
  */
21144
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>;
21145
23672
  /**
21146
23673
  * 更新数据集成报警规则
21147
23674
  *