@alicloud/dataworks-public20240518 6.1.1 → 6.1.3

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
@@ -4503,36 +4503,57 @@ export declare class GetAlertRuleResponseBodyAlertRule extends $dara.Model {
4503
4503
  }
4504
4504
  export declare class GetCertificateResponseBodyCertificate extends $dara.Model {
4505
4505
  /**
4506
+ * @remarks
4507
+ * The time when the certificate file was created. The value is a UNIX timestamp. Unit: milliseconds.
4508
+ *
4506
4509
  * @example
4507
4510
  * 1730217600000
4508
4511
  */
4509
4512
  createTime?: number;
4510
4513
  /**
4514
+ * @remarks
4515
+ * The ID of the user who created the certificate file.
4516
+ *
4511
4517
  * @example
4512
4518
  * 1107550004253538
4513
4519
  */
4514
4520
  createUser?: string;
4515
4521
  /**
4522
+ * @remarks
4523
+ * The description.
4524
+ *
4516
4525
  * @example
4517
4526
  * This is a file
4518
4527
  */
4519
4528
  description?: string;
4520
4529
  /**
4530
+ * @remarks
4531
+ * The size of the certificate file, in bytes.
4532
+ *
4521
4533
  * @example
4522
4534
  * 77549
4523
4535
  */
4524
4536
  fileSizeInBytes?: number;
4525
4537
  /**
4538
+ * @remarks
4539
+ * The ID of the certificate file.
4540
+ *
4526
4541
  * @example
4527
4542
  * 676303114031776
4528
4543
  */
4529
4544
  id?: number;
4530
4545
  /**
4546
+ * @remarks
4547
+ * The name of the certificate file.
4548
+ *
4531
4549
  * @example
4532
4550
  * ca1.crt
4533
4551
  */
4534
4552
  name?: string;
4535
4553
  /**
4554
+ * @remarks
4555
+ * The ID of the workspace to which the certificate file belongs.
4556
+ *
4536
4557
  * @example
4537
4558
  * 177161
4538
4559
  */
@@ -5240,6 +5261,17 @@ export declare class GetDIJobResponseBodyPagingInfo extends $dara.Model {
5240
5261
  * Running
5241
5262
  */
5242
5263
  jobStatus?: string;
5264
+ /**
5265
+ * @remarks
5266
+ * DatabaseRealtimeMigration (Full Database Real-Time): Perform stream synchronization of multiple tables from multiple source databases. Supports full data only, incremental only, or full + incremental.
5267
+ *
5268
+ * DatabaseOfflineMigration (Full Database Offline): Perform batch synchronization of multiple tables from multiple source databases. Supports full data only, incremental only, or full + incremental.
5269
+ *
5270
+ * SingleTableRealtimeMigration (Single Table Real-Time): Perform stream synchronization of a single table from the source.
5271
+ *
5272
+ * @example
5273
+ * DatabaseRealtimeMigration
5274
+ */
5243
5275
  jobType?: string;
5244
5276
  /**
5245
5277
  * @remarks
@@ -5621,13 +5653,190 @@ export declare class GetDataQualityEvaluationTaskResponseBodyDataQualityEvaluati
5621
5653
  [key: string]: any;
5622
5654
  });
5623
5655
  }
5656
+ export declare class GetDataQualityEvaluationTaskInstanceResponseBodyDataQualityEvaluationTaskInstanceResultsDetails extends $dara.Model {
5657
+ checkedValue?: string;
5658
+ referencedValue?: string;
5659
+ status?: string;
5660
+ static names(): {
5661
+ [key: string]: string;
5662
+ };
5663
+ static types(): {
5664
+ [key: string]: any;
5665
+ };
5666
+ validate(): void;
5667
+ constructor(map?: {
5668
+ [key: string]: any;
5669
+ });
5670
+ }
5671
+ export declare class GetDataQualityEvaluationTaskInstanceResponseBodyDataQualityEvaluationTaskInstanceResultsRuleCheckingConfigThresholdsCritical extends $dara.Model {
5672
+ expression?: string;
5673
+ operator?: string;
5674
+ value?: string;
5675
+ static names(): {
5676
+ [key: string]: string;
5677
+ };
5678
+ static types(): {
5679
+ [key: string]: any;
5680
+ };
5681
+ validate(): void;
5682
+ constructor(map?: {
5683
+ [key: string]: any;
5684
+ });
5685
+ }
5686
+ export declare class GetDataQualityEvaluationTaskInstanceResponseBodyDataQualityEvaluationTaskInstanceResultsRuleCheckingConfigThresholdsExpected extends $dara.Model {
5687
+ expression?: string;
5688
+ operator?: string;
5689
+ value?: string;
5690
+ static names(): {
5691
+ [key: string]: string;
5692
+ };
5693
+ static types(): {
5694
+ [key: string]: any;
5695
+ };
5696
+ validate(): void;
5697
+ constructor(map?: {
5698
+ [key: string]: any;
5699
+ });
5700
+ }
5701
+ export declare class GetDataQualityEvaluationTaskInstanceResponseBodyDataQualityEvaluationTaskInstanceResultsRuleCheckingConfigThresholdsWarned extends $dara.Model {
5702
+ expression?: string;
5703
+ operator?: string;
5704
+ value?: string;
5705
+ static names(): {
5706
+ [key: string]: string;
5707
+ };
5708
+ static types(): {
5709
+ [key: string]: any;
5710
+ };
5711
+ validate(): void;
5712
+ constructor(map?: {
5713
+ [key: string]: any;
5714
+ });
5715
+ }
5716
+ export declare class GetDataQualityEvaluationTaskInstanceResponseBodyDataQualityEvaluationTaskInstanceResultsRuleCheckingConfigThresholds extends $dara.Model {
5717
+ critical?: GetDataQualityEvaluationTaskInstanceResponseBodyDataQualityEvaluationTaskInstanceResultsRuleCheckingConfigThresholdsCritical;
5718
+ expected?: GetDataQualityEvaluationTaskInstanceResponseBodyDataQualityEvaluationTaskInstanceResultsRuleCheckingConfigThresholdsExpected;
5719
+ warned?: GetDataQualityEvaluationTaskInstanceResponseBodyDataQualityEvaluationTaskInstanceResultsRuleCheckingConfigThresholdsWarned;
5720
+ static names(): {
5721
+ [key: string]: string;
5722
+ };
5723
+ static types(): {
5724
+ [key: string]: any;
5725
+ };
5726
+ validate(): void;
5727
+ constructor(map?: {
5728
+ [key: string]: any;
5729
+ });
5730
+ }
5731
+ export declare class GetDataQualityEvaluationTaskInstanceResponseBodyDataQualityEvaluationTaskInstanceResultsRuleCheckingConfig extends $dara.Model {
5732
+ referencedSamplesFilter?: string;
5733
+ thresholds?: GetDataQualityEvaluationTaskInstanceResponseBodyDataQualityEvaluationTaskInstanceResultsRuleCheckingConfigThresholds;
5734
+ type?: string;
5735
+ static names(): {
5736
+ [key: string]: string;
5737
+ };
5738
+ static types(): {
5739
+ [key: string]: any;
5740
+ };
5741
+ validate(): void;
5742
+ constructor(map?: {
5743
+ [key: string]: any;
5744
+ });
5745
+ }
5746
+ export declare class GetDataQualityEvaluationTaskInstanceResponseBodyDataQualityEvaluationTaskInstanceResultsRuleErrorHandlers extends $dara.Model {
5747
+ errorDataFilter?: string;
5748
+ type?: string;
5749
+ static names(): {
5750
+ [key: string]: string;
5751
+ };
5752
+ static types(): {
5753
+ [key: string]: any;
5754
+ };
5755
+ validate(): void;
5756
+ constructor(map?: {
5757
+ [key: string]: any;
5758
+ });
5759
+ }
5760
+ export declare class GetDataQualityEvaluationTaskInstanceResponseBodyDataQualityEvaluationTaskInstanceResultsRuleSamplingConfig extends $dara.Model {
5761
+ metric?: string;
5762
+ metricParameters?: string;
5763
+ samplingFilter?: string;
5764
+ settingConfig?: string;
5765
+ static names(): {
5766
+ [key: string]: string;
5767
+ };
5768
+ static types(): {
5769
+ [key: string]: any;
5770
+ };
5771
+ validate(): void;
5772
+ constructor(map?: {
5773
+ [key: string]: any;
5774
+ });
5775
+ }
5776
+ export declare class GetDataQualityEvaluationTaskInstanceResponseBodyDataQualityEvaluationTaskInstanceResultsRuleTarget extends $dara.Model {
5777
+ databaseType?: string;
5778
+ tableGuid?: string;
5779
+ type?: string;
5780
+ static names(): {
5781
+ [key: string]: string;
5782
+ };
5783
+ static types(): {
5784
+ [key: string]: any;
5785
+ };
5786
+ validate(): void;
5787
+ constructor(map?: {
5788
+ [key: string]: any;
5789
+ });
5790
+ }
5791
+ export declare class GetDataQualityEvaluationTaskInstanceResponseBodyDataQualityEvaluationTaskInstanceResultsRule extends $dara.Model {
5792
+ checkingConfig?: GetDataQualityEvaluationTaskInstanceResponseBodyDataQualityEvaluationTaskInstanceResultsRuleCheckingConfig;
5793
+ description?: string;
5794
+ enabled?: boolean;
5795
+ errorHandlers?: GetDataQualityEvaluationTaskInstanceResponseBodyDataQualityEvaluationTaskInstanceResultsRuleErrorHandlers[];
5796
+ id?: number;
5797
+ name?: string;
5798
+ projectId?: number;
5799
+ samplingConfig?: GetDataQualityEvaluationTaskInstanceResponseBodyDataQualityEvaluationTaskInstanceResultsRuleSamplingConfig;
5800
+ severity?: string;
5801
+ target?: GetDataQualityEvaluationTaskInstanceResponseBodyDataQualityEvaluationTaskInstanceResultsRuleTarget;
5802
+ templateCode?: string;
5803
+ static names(): {
5804
+ [key: string]: string;
5805
+ };
5806
+ static types(): {
5807
+ [key: string]: any;
5808
+ };
5809
+ validate(): void;
5810
+ constructor(map?: {
5811
+ [key: string]: any;
5812
+ });
5813
+ }
5814
+ export declare class GetDataQualityEvaluationTaskInstanceResponseBodyDataQualityEvaluationTaskInstanceResults extends $dara.Model {
5815
+ createTime?: number;
5816
+ details?: GetDataQualityEvaluationTaskInstanceResponseBodyDataQualityEvaluationTaskInstanceResultsDetails[];
5817
+ id?: number;
5818
+ rule?: GetDataQualityEvaluationTaskInstanceResponseBodyDataQualityEvaluationTaskInstanceResultsRule;
5819
+ sample?: string;
5820
+ status?: string;
5821
+ taskInstanceId?: number;
5822
+ static names(): {
5823
+ [key: string]: string;
5824
+ };
5825
+ static types(): {
5826
+ [key: string]: any;
5827
+ };
5828
+ validate(): void;
5829
+ constructor(map?: {
5830
+ [key: string]: any;
5831
+ });
5832
+ }
5624
5833
  export declare class GetDataQualityEvaluationTaskInstanceResponseBodyDataQualityEvaluationTaskInstanceTaskHooks extends $dara.Model {
5625
5834
  /**
5626
5835
  * @remarks
5627
5836
  * The hook trigger condition. When this condition is met, the hook action is triggered. Only two conditional expressions are supported:
5628
5837
  *
5629
5838
  * * Specify only one group of rule strength type and rule check status, such as `${severity} == "High" AND ${status} == "Critical"`. In this expression, the hook trigger condition is met if severity is High and status is Critical.
5630
- * * Specify multiple groups of rule strength types and rule check status, such as `(${severity} == "High"AND ${status} == "Critical") OR (${severity} == "Normal" AND ${status} == "Critical") OR (${severity} == "Normal" AND ${status} == "Error")`. In this expression, the hook trigger condition is met if severity is High and status is Critical, severity is Normal and status is Critical, or severity is Normal and status is Error. The enumeration of severity in a conditional expression is the same as the enumeration of severity in DataQualityRule. The enumeration of status in a conditional expression is the same as the enumeration of status in DataQualityResult.
5839
+ * * Specify multiple groups of rule strength types and rule check status, such as `(${severity} == "High" AND ${status} == "Critical") OR (${severity} == "Normal" AND ${status} == "Critical") OR (${severity} == "Normal" AND ${status} == "Error")`. In this expression, the hook trigger condition is met if severity is High and status is Critical, severity is Normal and status is Critical, or severity is Normal and status is Error. The enumeration of severity in a conditional expression is the same as the enumeration of severity in DataQualityRule. The enumeration of status in a conditional expression is the same as the enumeration of status in DataQualityResult.
5631
5840
  *
5632
5841
  * @example
5633
5842
  * (${severity} == "High" AND ${status} == "Critical") OR (${severity} == "Normal" AND ${status} == "Critical") OR (${severity} == "Normal" AND ${status} == "Error")
@@ -5734,7 +5943,7 @@ export declare class GetDataQualityEvaluationTaskInstanceResponseBodyDataQuality
5734
5943
  * The notification trigger condition. When this condition is met, the alert notification is triggered. Only two conditional expressions are supported:
5735
5944
  *
5736
5945
  * * Specify only one group of rule strength type and rule check status, such as `${severity} == "High" AND ${status} == "Critical"`. In this expression, the hook trigger condition is met if severity is High and status is Critical.
5737
- * * Specify multiple groups of rule strength types and rule check status, such as `(${severity} == "High"AND ${status} == "Critical") OR (${severity} == "Normal" AND ${status} == "Critical") OR (${severity} == "Normal" AND ${status} == "Error")`. In this expression, the hook trigger condition is met if severity is High and status is Critical, severity is Normal and status is Critical, or severity is Normal and status is Error. The enumeration of severity in a conditional expression is the same as the enumeration of severity in DataQualityRule. The enumeration of status in a conditional expression is the same as the enumeration of status in DataQualityResult.
5946
+ * * Specify multiple groups of rule strength types and rule check status, such as `(${severity} == "High" AND ${status} == "Critical") OR (${severity} == "Normal" AND ${status} == "Critical") OR (${severity} == "Normal" AND ${status} == "Error")`. In this expression, the hook trigger condition is met if severity is High and status is Critical, severity is Normal and status is Critical, or severity is Normal and status is Error. The enumeration of severity in a conditional expression is the same as the enumeration of severity in DataQualityRule. The enumeration of status in a conditional expression is the same as the enumeration of status in DataQualityResult.
5738
5947
  *
5739
5948
  * @example
5740
5949
  * ${severity} == "High" AND ${status} == "Critical"
@@ -5948,6 +6157,7 @@ export declare class GetDataQualityEvaluationTaskInstanceResponseBodyDataQuality
5948
6157
  * 98330
5949
6158
  */
5950
6159
  projectId?: number;
6160
+ results?: GetDataQualityEvaluationTaskInstanceResponseBodyDataQualityEvaluationTaskInstanceResults[];
5951
6161
  /**
5952
6162
  * @remarks
5953
6163
  * The status of the data quality monitoring instance.
@@ -10755,31 +10965,49 @@ export declare class ListAlertRulesResponseBodyPagingInfo extends $dara.Model {
10755
10965
  }
10756
10966
  export declare class ListCertificatesResponseBodyPagingInfoCertificates extends $dara.Model {
10757
10967
  /**
10968
+ * @remarks
10969
+ * The time when the certificate file was created. This value is a UNIX timestamp.
10970
+ *
10758
10971
  * @example
10759
10972
  * 1730217600000
10760
10973
  */
10761
10974
  createTime?: number;
10762
10975
  /**
10976
+ * @remarks
10977
+ * The ID of the user who created the certificate file.
10978
+ *
10763
10979
  * @example
10764
10980
  * 1107550004253538
10765
10981
  */
10766
10982
  createUser?: string;
10767
10983
  /**
10984
+ * @remarks
10985
+ * The description.
10986
+ *
10768
10987
  * @example
10769
10988
  * This is a file
10770
10989
  */
10771
10990
  description?: string;
10772
10991
  /**
10992
+ * @remarks
10993
+ * The size of the certificate file, in bytes.
10994
+ *
10773
10995
  * @example
10774
10996
  * 1024
10775
10997
  */
10776
10998
  fileSizeInBytes?: number;
10777
10999
  /**
11000
+ * @remarks
11001
+ * The ID of the certificate file.
11002
+ *
10778
11003
  * @example
10779
11004
  * 676303114031776
10780
11005
  */
10781
11006
  id?: number;
10782
11007
  /**
11008
+ * @remarks
11009
+ * The name of the certificate file.
11010
+ *
10783
11011
  * @example
10784
11012
  * ca1.crt
10785
11013
  */
@@ -10796,18 +11024,31 @@ export declare class ListCertificatesResponseBodyPagingInfoCertificates extends
10796
11024
  });
10797
11025
  }
10798
11026
  export declare class ListCertificatesResponseBodyPagingInfo extends $dara.Model {
11027
+ /**
11028
+ * @remarks
11029
+ * The certificate files.
11030
+ */
10799
11031
  certificates?: ListCertificatesResponseBodyPagingInfoCertificates[];
10800
11032
  /**
11033
+ * @remarks
11034
+ * The page number.
11035
+ *
10801
11036
  * @example
10802
11037
  * 1
10803
11038
  */
10804
11039
  pageNumber?: number;
10805
11040
  /**
11041
+ * @remarks
11042
+ * The number of entries per page.
11043
+ *
10806
11044
  * @example
10807
11045
  * 10
10808
11046
  */
10809
11047
  pageSize?: number;
10810
11048
  /**
11049
+ * @remarks
11050
+ * The total number of entries returned.
11051
+ *
10811
11052
  * @example
10812
11053
  * 100
10813
11054
  */
@@ -12617,6 +12858,7 @@ export declare class ListDataQualityEvaluationTasksResponseBodyPagingInfoDataQua
12617
12858
  });
12618
12859
  }
12619
12860
  export declare class ListDataQualityEvaluationTasksResponseBodyPagingInfoDataQualityEvaluationTasks extends $dara.Model {
12861
+ dataSourceId?: number;
12620
12862
  /**
12621
12863
  * @remarks
12622
12864
  * The description of the data quality monitoring task. The description can be up to 65,535 characters in length.
@@ -14865,8 +15107,8 @@ export declare class ListDownstreamTaskInstancesResponseBodyPagingInfoDownstream
14865
15107
  * @remarks
14866
15108
  * The scheduling dependency type. Valid values:
14867
15109
  *
14868
- * * Normal: same-cycle scheduling dependency
14869
- * * CrossCycle: cross-cycle scheduling dependency
15110
+ * * Normal
15111
+ * * CrossCycle
14870
15112
  *
14871
15113
  * @example
14872
15114
  * Normal
@@ -17637,6 +17879,7 @@ export declare class ListNodesResponseBodyPagingInfoNodesOutputs extends $dara.M
17637
17879
  });
17638
17880
  }
17639
17881
  export declare class ListNodesResponseBodyPagingInfoNodesRuntimeResource extends $dara.Model {
17882
+ resourceGroup?: string;
17640
17883
  /**
17641
17884
  * @remarks
17642
17885
  * The resource group ID.
@@ -21810,9 +22053,6 @@ export declare class ListWorkflowDefinitionsResponseBodyPagingInfo extends $dara
21810
22053
  }
21811
22054
  export declare class ListWorkflowInstancesResponseBodyPagingInfoWorkflowInstances extends $dara.Model {
21812
22055
  /**
21813
- * @remarks
21814
- * 业务日期。
21815
- *
21816
22056
  * @example
21817
22057
  * 1710239005403
21818
22058
  */
@@ -21918,14 +22158,6 @@ export declare class ListWorkflowInstancesResponseBodyPagingInfoWorkflowInstance
21918
22158
  */
21919
22159
  status?: string;
21920
22160
  /**
21921
- * @remarks
21922
- * 工作流实例的类型。
21923
- * - Normal:周期调度
21924
- * - Manual:手动任务
21925
- * - SmokeTest:测试
21926
- * - SupplementData:补数据
21927
- * - ManualWorkflow:手动工作流
21928
- *
21929
22161
  * @example
21930
22162
  * Normal
21931
22163
  */
@@ -22209,7 +22441,7 @@ export declare class ListWorkflowsResponseBodyPagingInfo extends $dara.Model {
22209
22441
  export declare class StartDIJobRequestRealtimeStartSettingsFailoverSettings extends $dara.Model {
22210
22442
  /**
22211
22443
  * @remarks
22212
- * The failover interval. Unit: minutes.
22444
+ * This parameter is deprecated. Use advanced parameters for failover settings when you create a task.
22213
22445
  *
22214
22446
  * @example
22215
22447
  * 10
@@ -22219,7 +22451,7 @@ export declare class StartDIJobRequestRealtimeStartSettingsFailoverSettings exte
22219
22451
  interval?: number;
22220
22452
  /**
22221
22453
  * @remarks
22222
- * The maximum number of failovers allowed.
22454
+ * This parameter is deprecated. Use advanced parameters for failover settings when you create a task.
22223
22455
  *
22224
22456
  * @example
22225
22457
  * 30
@@ -22241,7 +22473,7 @@ export declare class StartDIJobRequestRealtimeStartSettingsFailoverSettings exte
22241
22473
  export declare class StartDIJobRequestRealtimeStartSettings extends $dara.Model {
22242
22474
  /**
22243
22475
  * @remarks
22244
- * The failover settings.
22476
+ * This parameter is deprecated. Use advanced parameters for failover settings when you create a task.
22245
22477
  *
22246
22478
  * @deprecated
22247
22479
  */
@@ -23150,7 +23382,7 @@ export declare class UpdateDIJobRequestResourceSettingsOfflineResourceSettings e
23150
23382
  requestedCu?: number;
23151
23383
  /**
23152
23384
  * @remarks
23153
- * The identifier of the resource group for Data Integration used for batch synchronization.
23385
+ * The name of the resource group for Data Integration used for batch synchronization.
23154
23386
  *
23155
23387
  * @example
23156
23388
  * S_res_group_111_222
@@ -23178,7 +23410,7 @@ export declare class UpdateDIJobRequestResourceSettingsRealtimeResourceSettings
23178
23410
  requestedCu?: number;
23179
23411
  /**
23180
23412
  * @remarks
23181
- * The identifier of the resource group for Data Integration used for real-time synchronization.
23413
+ * The name of the resource group for Data Integration used for real-time synchronization.
23182
23414
  *
23183
23415
  * @example
23184
23416
  * S_res_group_111_222
@@ -23206,7 +23438,7 @@ export declare class UpdateDIJobRequestResourceSettingsScheduleResourceSettings
23206
23438
  requestedCu?: number;
23207
23439
  /**
23208
23440
  * @remarks
23209
- * The identifier of the resource group for scheduling used for batch synchronization.
23441
+ * The name of the resource group for scheduling used for batch synchronization.
23210
23442
  *
23211
23443
  * @example
23212
23444
  * S_res_group_235454102432001_1721021993437
@@ -24775,7 +25007,7 @@ export declare class UpdateTaskRequestTrigger extends $dara.Model {
24775
25007
  cron?: string;
24776
25008
  /**
24777
25009
  * @remarks
24778
- * The end time of the time range during which the task is periodically scheduled. This parameter takes effect only if the Type parameter is set to Scheduler.
25010
+ * The end time of the time range during which the task is periodically scheduled. This parameter takes effect only if the Type parameter is set to Scheduler. The value of this parameter is in the `yyyy-mm-dd hh:mm:ss` format.
24779
25011
  *
24780
25012
  * @example
24781
25013
  * 9999-01-01 00:00:00
@@ -24795,7 +25027,7 @@ export declare class UpdateTaskRequestTrigger extends $dara.Model {
24795
25027
  recurrence?: string;
24796
25028
  /**
24797
25029
  * @remarks
24798
- * The start time of the time range during which the task is periodically scheduled. This parameter takes effect only if the Type parameter is set to Scheduler.
25030
+ * The start time of the time range during which the task is periodically scheduled. This parameter takes effect only if the Type parameter is set to Scheduler. The value of this parameter is in the `yyyy-mm-dd hh:mm:ss` format.
24799
25031
  *
24800
25032
  * @example
24801
25033
  * 1970-01-01 00:00:00
@@ -24805,8 +25037,8 @@ export declare class UpdateTaskRequestTrigger extends $dara.Model {
24805
25037
  * @remarks
24806
25038
  * The trigger type. Valid values:
24807
25039
  *
24808
- * * Scheduler: periodic scheduling
24809
- * * Manual: manual scheduling
25040
+ * * Scheduler: scheduling cycle-based trigger
25041
+ * * Manual: manual trigger
24810
25042
  *
24811
25043
  * This parameter is required.
24812
25044
  *
@@ -25391,8 +25623,6 @@ export declare class UpdateWorkflowRequestTasks extends $dara.Model {
25391
25623
  * @remarks
25392
25624
  * The task ID. If you configure this parameter, full update is performed on the task. If you do not configure this parameter, another task is created.
25393
25625
  *
25394
- * This parameter is required.
25395
- *
25396
25626
  * @example
25397
25627
  * 1234
25398
25628
  */
@@ -25521,7 +25751,7 @@ export declare class UpdateWorkflowRequestTrigger extends $dara.Model {
25521
25751
  cron?: string;
25522
25752
  /**
25523
25753
  * @remarks
25524
- * The end time of the time range during which the workflow is periodically scheduled. This parameter takes effect only if the Type parameter is set to Scheduler.
25754
+ * The end time of the time range during which the workflow is periodically scheduled. This parameter takes effect only if the Type parameter is set to Scheduler. The value of this parameter is in the `yyyy-mm-dd hh:mm:ss` format.
25525
25755
  *
25526
25756
  * @example
25527
25757
  * 9999-01-01 00:00:00
@@ -25529,7 +25759,7 @@ export declare class UpdateWorkflowRequestTrigger extends $dara.Model {
25529
25759
  endTime?: string;
25530
25760
  /**
25531
25761
  * @remarks
25532
- * The start time of the time range during which the workflow is periodically scheduled. This parameter takes effect only if the Type parameter is set to Scheduler.
25762
+ * The start time of the time range during which the workflow is periodically scheduled. This parameter takes effect only if the Type parameter is set to Scheduler. The value of this parameter is in the `yyyy-mm-dd hh:mm:ss` format.
25533
25763
  *
25534
25764
  * @example
25535
25765
  * 1970-01-01 00:00:00
@@ -25539,8 +25769,8 @@ export declare class UpdateWorkflowRequestTrigger extends $dara.Model {
25539
25769
  * @remarks
25540
25770
  * The trigger type. Valid values:
25541
25771
  *
25542
- * * Scheduler: periodic scheduling
25543
- * * Manual: manual scheduling
25772
+ * * Scheduler: scheduling cycle-based trigger
25773
+ * * Manual: manual trigger
25544
25774
  *
25545
25775
  * This parameter is required.
25546
25776
  *
@@ -26665,16 +26895,29 @@ export declare class CreateDIJobRequest extends $dara.Model {
26665
26895
  * The settings for the dimension of the synchronization task. The settings include processing policies for DDL messages, policies for data type mappings between source fields and destination fields, and runtime parameters of the synchronization task.
26666
26896
  */
26667
26897
  jobSettings?: CreateDIJobRequestJobSettings;
26898
+ /**
26899
+ * @remarks
26900
+ * 任务类型,可选
26901
+ *
26902
+ * - DatabaseRealtimeMigration(整库实时):将源端多个库的多个表进行流同步,支持仅全量,仅增量,或全量+增量。
26903
+ *
26904
+ * - DatabaseOfflineMigration(整库离线):将源端多个库的多个表进行批同步,支持仅全量,仅增量,或全量+增量。
26905
+ *
26906
+ * - SingleTableRealtimeMigration(单表实时):将源端单个表进行流同步
26907
+ *
26908
+ * @example
26909
+ * DatabaseRealtimeMigration
26910
+ */
26668
26911
  jobType?: string;
26669
26912
  /**
26670
26913
  * @remarks
26671
26914
  * The synchronization type. Valid values:
26672
26915
  *
26673
- * * FullAndRealtimeIncremental: one-time full synchronization and real-time incremental synchronization
26674
- * * RealtimeIncremental: real-time incremental synchronization
26675
- * * Full: full synchronization
26676
- * * OfflineIncremental: batch incremental synchronization
26677
- * * FullAndOfflineIncremental: one-time full synchronization and batch incremental synchronization
26916
+ * * FullAndRealtimeIncremental: full synchronization and real-time incremental synchronization of data in an entire database
26917
+ * * RealtimeIncremental: real-time incremental synchronization of data in a single table
26918
+ * * Full: full batch synchronization of data in an entire database
26919
+ * * OfflineIncremental: batch incremental synchronization of data in an entire database
26920
+ * * FullAndOfflineIncremental: full synchronization and batch incremental synchronization of data in an entire database
26678
26921
  *
26679
26922
  * This parameter is required.
26680
26923
  *
@@ -26792,16 +27035,29 @@ export declare class CreateDIJobShrinkRequest extends $dara.Model {
26792
27035
  * The settings for the dimension of the synchronization task. The settings include processing policies for DDL messages, policies for data type mappings between source fields and destination fields, and runtime parameters of the synchronization task.
26793
27036
  */
26794
27037
  jobSettingsShrink?: string;
27038
+ /**
27039
+ * @remarks
27040
+ * 任务类型,可选
27041
+ *
27042
+ * - DatabaseRealtimeMigration(整库实时):将源端多个库的多个表进行流同步,支持仅全量,仅增量,或全量+增量。
27043
+ *
27044
+ * - DatabaseOfflineMigration(整库离线):将源端多个库的多个表进行批同步,支持仅全量,仅增量,或全量+增量。
27045
+ *
27046
+ * - SingleTableRealtimeMigration(单表实时):将源端单个表进行流同步
27047
+ *
27048
+ * @example
27049
+ * DatabaseRealtimeMigration
27050
+ */
26795
27051
  jobType?: string;
26796
27052
  /**
26797
27053
  * @remarks
26798
27054
  * The synchronization type. Valid values:
26799
27055
  *
26800
- * * FullAndRealtimeIncremental: one-time full synchronization and real-time incremental synchronization
26801
- * * RealtimeIncremental: real-time incremental synchronization
26802
- * * Full: full synchronization
26803
- * * OfflineIncremental: batch incremental synchronization
26804
- * * FullAndOfflineIncremental: one-time full synchronization and batch incremental synchronization
27056
+ * * FullAndRealtimeIncremental: full synchronization and real-time incremental synchronization of data in an entire database
27057
+ * * RealtimeIncremental: real-time incremental synchronization of data in a single table
27058
+ * * Full: full batch synchronization of data in an entire database
27059
+ * * OfflineIncremental: batch incremental synchronization of data in an entire database
27060
+ * * FullAndOfflineIncremental: full synchronization and batch incremental synchronization of data in an entire database
26805
27061
  *
26806
27062
  * This parameter is required.
26807
27063
  *
@@ -31977,6 +32233,8 @@ export declare class GetAlertRuleResponse extends $dara.Model {
31977
32233
  export declare class GetCertificateRequest extends $dara.Model {
31978
32234
  /**
31979
32235
  * @remarks
32236
+ * The ID of the certificate file.
32237
+ *
31980
32238
  * This parameter is required.
31981
32239
  *
31982
32240
  * @example
@@ -31984,6 +32242,9 @@ export declare class GetCertificateRequest extends $dara.Model {
31984
32242
  */
31985
32243
  id?: number;
31986
32244
  /**
32245
+ * @remarks
32246
+ * The ID of the workspace to which the certificate file belongs.
32247
+ *
31987
32248
  * @example
31988
32249
  * 1065601
31989
32250
  */
@@ -32000,8 +32261,15 @@ export declare class GetCertificateRequest extends $dara.Model {
32000
32261
  });
32001
32262
  }
32002
32263
  export declare class GetCertificateResponseBody extends $dara.Model {
32264
+ /**
32265
+ * @remarks
32266
+ * The details of the certificate file.
32267
+ */
32003
32268
  certificate?: GetCertificateResponseBodyCertificate;
32004
32269
  /**
32270
+ * @remarks
32271
+ * The request ID.
32272
+ *
32005
32273
  * @example
32006
32274
  * 0000-ABCD-EFG****
32007
32275
  */
@@ -34478,37 +34746,57 @@ export declare class ListAlertRulesResponse extends $dara.Model {
34478
34746
  }
34479
34747
  export declare class ListCertificatesRequest extends $dara.Model {
34480
34748
  /**
34749
+ * @remarks
34750
+ * The ID of the user who created the certificate files.
34751
+ *
34481
34752
  * @example
34482
34753
  * 1107550004253538
34483
34754
  */
34484
34755
  createUser?: string;
34485
34756
  /**
34757
+ * @remarks
34758
+ * The time when the certificate file was created. You can call this operation to query the files that are created before the time. Unit: milliseconds.
34759
+ *
34486
34760
  * @example
34487
34761
  * 1593877765000
34488
34762
  */
34489
34763
  endCreateTime?: number;
34490
34764
  /**
34765
+ * @remarks
34766
+ * The name of the certificate file. Fuzzy match by file name is supported.
34767
+ *
34491
34768
  * @example
34492
34769
  * xm_create_test
34493
34770
  */
34494
34771
  name?: string;
34495
34772
  /**
34773
+ * @remarks
34774
+ * The order in which you want to sort the certificate files. Valid values: Desc: descending order ASC: ascending order Default value: Asc
34775
+ *
34496
34776
  * @example
34497
34777
  * Asc
34498
34778
  */
34499
34779
  order?: string;
34500
34780
  /**
34781
+ * @remarks
34782
+ * The page number. Default value: 1.
34783
+ *
34501
34784
  * @example
34502
34785
  * 1
34503
34786
  */
34504
34787
  pageNumber?: number;
34505
34788
  /**
34789
+ * @remarks
34790
+ * The number of entries per page. Default value: 10. Maximum value: 100.
34791
+ *
34506
34792
  * @example
34507
34793
  * 10
34508
34794
  */
34509
34795
  pageSize?: number;
34510
34796
  /**
34511
34797
  * @remarks
34798
+ * The ID of the workspace to which the certificate file belongs.
34799
+ *
34512
34800
  * This parameter is required.
34513
34801
  *
34514
34802
  * @example
@@ -34516,11 +34804,17 @@ export declare class ListCertificatesRequest extends $dara.Model {
34516
34804
  */
34517
34805
  projectId?: number;
34518
34806
  /**
34807
+ * @remarks
34808
+ * The field used to sort the certificate files. Valid values: CreateTime Id Name Default value: Id
34809
+ *
34519
34810
  * @example
34520
34811
  * Id
34521
34812
  */
34522
34813
  sortBy?: string;
34523
34814
  /**
34815
+ * @remarks
34816
+ * The time when the certificate file was created. You can call this operation to query the files that are created after the time. Unit: milliseconds.
34817
+ *
34524
34818
  * @example
34525
34819
  * 1730217600000
34526
34820
  */
@@ -34537,8 +34831,15 @@ export declare class ListCertificatesRequest extends $dara.Model {
34537
34831
  });
34538
34832
  }
34539
34833
  export declare class ListCertificatesResponseBody extends $dara.Model {
34834
+ /**
34835
+ * @remarks
34836
+ * The pagination information.
34837
+ */
34540
34838
  pagingInfo?: ListCertificatesResponseBodyPagingInfo;
34541
34839
  /**
34840
+ * @remarks
34841
+ * The request ID.
34842
+ *
34542
34843
  * @example
34543
34844
  * ecb967ec-c137-48****
34544
34845
  */
@@ -35144,9 +35445,7 @@ export declare class ListDIJobsResponse extends $dara.Model {
35144
35445
  export declare class ListDataAssetTagsRequest extends $dara.Model {
35145
35446
  /**
35146
35447
  * @remarks
35147
- * The type of the tag.
35148
- *
35149
- * Valid values:
35448
+ * The type of the tag. Valid values:
35150
35449
  *
35151
35450
  * * Normal
35152
35451
  * * System
@@ -37655,7 +37954,7 @@ export declare class ListResourceGroupsRequest extends $dara.Model {
37655
37954
  * * Status (Desc/Asc): the status of the resource group
37656
37955
  * * Spec (Desc/Asc): the specifications of the resource group
37657
37956
  * * CreateUser (Desc/Asc): the creator of the resource group
37658
- * * CreateTime (Desc/Asc): the time when the route is created
37957
+ * * CreateTime (Desc/Asc): the time when the resource group is created
37659
37958
  *
37660
37959
  * Default value: CreateTime Asc
37661
37960
  *
@@ -37752,7 +38051,7 @@ export declare class ListResourceGroupsShrinkRequest extends $dara.Model {
37752
38051
  * * Status (Desc/Asc): the status of the resource group
37753
38052
  * * Spec (Desc/Asc): the specifications of the resource group
37754
38053
  * * CreateUser (Desc/Asc): the creator of the resource group
37755
- * * CreateTime (Desc/Asc): the time when the route is created
38054
+ * * CreateTime (Desc/Asc): the time when the resource group is created
37756
38055
  *
37757
38056
  * Default value: CreateTime Asc
37758
38057
  *
@@ -38044,7 +38343,7 @@ export declare class ListRoutesResponse extends $dara.Model {
38044
38343
  export declare class ListTaskInstanceOperationLogsRequest extends $dara.Model {
38045
38344
  /**
38046
38345
  * @remarks
38047
- * The operation date, accurate to the day. The default value is the current day. You can query only the operation logs generated within the previous 31 days.
38346
+ * The operation date, accurate to the day. The default value is the current day. You can query only the operation logs generated within the previous 31 days. This value is a UNIX timestamp.
38048
38347
  *
38049
38348
  * @example
38050
38349
  * 1710239005403
@@ -38269,7 +38568,7 @@ export declare class ListTaskInstancesRequest extends $dara.Model {
38269
38568
  triggerRecurrence?: string;
38270
38569
  /**
38271
38570
  * @remarks
38272
- * The trigger type.
38571
+ * The trigger type. Valid values:
38273
38572
  *
38274
38573
  * * Scheduler: scheduling cycle-based trigger
38275
38574
  * * Manual: manual trigger
@@ -38459,7 +38758,7 @@ export declare class ListTaskInstancesShrinkRequest extends $dara.Model {
38459
38758
  triggerRecurrence?: string;
38460
38759
  /**
38461
38760
  * @remarks
38462
- * The trigger type.
38761
+ * The trigger type. Valid values:
38463
38762
  *
38464
38763
  * * Scheduler: scheduling cycle-based trigger
38465
38764
  * * Manual: manual trigger
@@ -39289,8 +39588,6 @@ export declare class ListWorkflowDefinitionsResponse extends $dara.Model {
39289
39588
  export declare class ListWorkflowInstancesRequest extends $dara.Model {
39290
39589
  /**
39291
39590
  * @remarks
39292
- * 业务日期。
39293
- *
39294
39591
  * This parameter is required.
39295
39592
  *
39296
39593
  * @example
@@ -39362,12 +39659,13 @@ export declare class ListWorkflowInstancesRequest extends $dara.Model {
39362
39659
  sortBy?: string;
39363
39660
  /**
39364
39661
  * @remarks
39365
- * 工作流实例的类型。
39366
- * - Normal:周期调度
39367
- * - Manual:手动任务
39368
- * - SmokeTest:测试
39369
- * - SupplementData:补数据
39370
- * - ManualWorkflow:手动工作流
39662
+ * The type of the workflow instance. Valid values:
39663
+ *
39664
+ * * Normal
39665
+ * * Manual
39666
+ * * SmokeTest
39667
+ * * SupplementData
39668
+ * * ManualWorkflow
39371
39669
  *
39372
39670
  * @example
39373
39671
  * Normal
@@ -39395,8 +39693,6 @@ export declare class ListWorkflowInstancesRequest extends $dara.Model {
39395
39693
  export declare class ListWorkflowInstancesShrinkRequest extends $dara.Model {
39396
39694
  /**
39397
39695
  * @remarks
39398
- * 业务日期。
39399
- *
39400
39696
  * This parameter is required.
39401
39697
  *
39402
39698
  * @example
@@ -39468,12 +39764,13 @@ export declare class ListWorkflowInstancesShrinkRequest extends $dara.Model {
39468
39764
  sortBy?: string;
39469
39765
  /**
39470
39766
  * @remarks
39471
- * 工作流实例的类型。
39472
- * - Normal:周期调度
39473
- * - Manual:手动任务
39474
- * - SmokeTest:测试
39475
- * - SupplementData:补数据
39476
- * - ManualWorkflow:手动工作流
39767
+ * The type of the workflow instance. Valid values:
39768
+ *
39769
+ * * Normal
39770
+ * * Manual
39771
+ * * SmokeTest
39772
+ * * SupplementData
39773
+ * * ManualWorkflow
39477
39774
  *
39478
39775
  * @example
39479
39776
  * Normal
@@ -41037,7 +41334,10 @@ export declare class StartDIJobRequest extends $dara.Model {
41037
41334
  DIJobId?: number;
41038
41335
  /**
41039
41336
  * @remarks
41040
- * Deprecated
41337
+ * Specifies whether to forcefully rerun all synchronization steps. If you do not configure this parameter, the system does not perform the forcible rerun operation.
41338
+ *
41339
+ * * If the system does not perform the forcible rerun operation, only the steps that are not run start to run.
41340
+ * * If the system performs the forcible rerun operation, all steps start to rerun.
41041
41341
  *
41042
41342
  * @example
41043
41343
  * false
@@ -41054,6 +41354,10 @@ export declare class StartDIJobRequest extends $dara.Model {
41054
41354
  /**
41055
41355
  * @remarks
41056
41356
  * The settings for starting real-time synchronization.
41357
+ *
41358
+ * {
41359
+ * "StartTime":1663765058
41360
+ * }
41057
41361
  */
41058
41362
  realtimeStartSettings?: StartDIJobRequestRealtimeStartSettings;
41059
41363
  static names(): {
@@ -41080,7 +41384,10 @@ export declare class StartDIJobShrinkRequest extends $dara.Model {
41080
41384
  DIJobId?: number;
41081
41385
  /**
41082
41386
  * @remarks
41083
- * Deprecated
41387
+ * Specifies whether to forcefully rerun all synchronization steps. If you do not configure this parameter, the system does not perform the forcible rerun operation.
41388
+ *
41389
+ * * If the system does not perform the forcible rerun operation, only the steps that are not run start to run.
41390
+ * * If the system performs the forcible rerun operation, all steps start to rerun.
41084
41391
  *
41085
41392
  * @example
41086
41393
  * false
@@ -41097,6 +41404,10 @@ export declare class StartDIJobShrinkRequest extends $dara.Model {
41097
41404
  /**
41098
41405
  * @remarks
41099
41406
  * The settings for starting real-time synchronization.
41407
+ *
41408
+ * {
41409
+ * "StartTime":1663765058
41410
+ * }
41100
41411
  */
41101
41412
  realtimeStartSettingsShrink?: string;
41102
41413
  static names(): {
@@ -41916,7 +42227,7 @@ export declare class TriggerSchedulerTaskInstanceRequest extends $dara.Model {
41916
42227
  taskId?: number;
41917
42228
  /**
41918
42229
  * @remarks
41919
- * The time defined by the HTTP Trigger node.
42230
+ * The time defined by the HTTP Trigger node. This value is a UNIX timestamp.
41920
42231
  *
41921
42232
  * This parameter is required.
41922
42233
  *
@@ -44304,7 +44615,7 @@ export declare class UpdateTaskRequest extends $dara.Model {
44304
44615
  instanceMode?: string;
44305
44616
  /**
44306
44617
  * @remarks
44307
- * The name of the task.
44618
+ * The name.
44308
44619
  *
44309
44620
  * This parameter is required.
44310
44621
  *
@@ -44466,7 +44777,7 @@ export declare class UpdateTaskShrinkRequest extends $dara.Model {
44466
44777
  instanceMode?: string;
44467
44778
  /**
44468
44779
  * @remarks
44469
- * The name of the task.
44780
+ * The name.
44470
44781
  *
44471
44782
  * This parameter is required.
44472
44783
  *
@@ -46113,7 +46424,7 @@ export default class Client extends OpenApi {
46113
46424
  */
46114
46425
  executeAdhocWorkflowInstance(request: ExecuteAdhocWorkflowInstanceRequest): Promise<ExecuteAdhocWorkflowInstanceResponse>;
46115
46426
  /**
46116
- * Queries a list of custom alert monitoring rules.
46427
+ * Queries a custom alert monitoring rule.
46117
46428
  *
46118
46429
  * @param request - GetAlertRuleRequest
46119
46430
  * @param runtime - runtime options for this request RuntimeOptions
@@ -46121,14 +46432,18 @@ export default class Client extends OpenApi {
46121
46432
  */
46122
46433
  getAlertRuleWithOptions(request: GetAlertRuleRequest, runtime: $dara.RuntimeOptions): Promise<GetAlertRuleResponse>;
46123
46434
  /**
46124
- * Queries a list of custom alert monitoring rules.
46435
+ * Queries a custom alert monitoring rule.
46125
46436
  *
46126
46437
  * @param request - GetAlertRuleRequest
46127
46438
  * @returns GetAlertRuleResponse
46128
46439
  */
46129
46440
  getAlertRule(request: GetAlertRuleRequest): Promise<GetAlertRuleResponse>;
46130
46441
  /**
46131
- * 查看认证文件
46442
+ * Queries a certificate file.
46443
+ *
46444
+ * @remarks
46445
+ * 1. This API operation is available for all DataWorks editions.
46446
+ * 2. You can call this operation only if you are assigned one of the following roles in DataWorks: Tenant Owner, Workspace Administrator, Deploy, Develop, Workspace Owner, and O\\&M.
46132
46447
  *
46133
46448
  * @param request - GetCertificateRequest
46134
46449
  * @param runtime - runtime options for this request RuntimeOptions
@@ -46136,7 +46451,11 @@ export default class Client extends OpenApi {
46136
46451
  */
46137
46452
  getCertificateWithOptions(request: GetCertificateRequest, runtime: $dara.RuntimeOptions): Promise<GetCertificateResponse>;
46138
46453
  /**
46139
- * 查看认证文件
46454
+ * Queries a certificate file.
46455
+ *
46456
+ * @remarks
46457
+ * 1. This API operation is available for all DataWorks editions.
46458
+ * 2. You can call this operation only if you are assigned one of the following roles in DataWorks: Tenant Owner, Workspace Administrator, Deploy, Develop, Workspace Owner, and O\\&M.
46140
46459
  *
46141
46460
  * @param request - GetCertificateRequest
46142
46461
  * @returns GetCertificateResponse
@@ -46680,7 +46999,7 @@ export default class Client extends OpenApi {
46680
46999
  */
46681
47000
  importWorkflowDefinition(request: ImportWorkflowDefinitionRequest): Promise<ImportWorkflowDefinitionResponse>;
46682
47001
  /**
46683
- * Queries a list of custom monitoring alert rule by page.
47002
+ * Queries a list of custom monitoring alert rules.
46684
47003
  *
46685
47004
  * @param tmpReq - ListAlertRulesRequest
46686
47005
  * @param runtime - runtime options for this request RuntimeOptions
@@ -46688,14 +47007,18 @@ export default class Client extends OpenApi {
46688
47007
  */
46689
47008
  listAlertRulesWithOptions(tmpReq: ListAlertRulesRequest, runtime: $dara.RuntimeOptions): Promise<ListAlertRulesResponse>;
46690
47009
  /**
46691
- * Queries a list of custom monitoring alert rule by page.
47010
+ * Queries a list of custom monitoring alert rules.
46692
47011
  *
46693
47012
  * @param request - ListAlertRulesRequest
46694
47013
  * @returns ListAlertRulesResponse
46695
47014
  */
46696
47015
  listAlertRules(request: ListAlertRulesRequest): Promise<ListAlertRulesResponse>;
46697
47016
  /**
46698
- * 查询认证文件列表
47017
+ * Queries a list of certificate files.
47018
+ *
47019
+ * @remarks
47020
+ * 1. This API operation is available for all DataWorks editions.
47021
+ * 2. You can call this operation only if you are assigned one of the following roles in DataWorks: Tenant Owner, Workspace Administrator, Deploy, Develop, Visitor, Workspace Owner, O\\&M, Model Designer, Security Administrator, Data Analyst, OpenPlatform Administrator, and Data Governance Administrator.
46699
47022
  *
46700
47023
  * @param request - ListCertificatesRequest
46701
47024
  * @param runtime - runtime options for this request RuntimeOptions
@@ -46703,7 +47026,11 @@ export default class Client extends OpenApi {
46703
47026
  */
46704
47027
  listCertificatesWithOptions(request: ListCertificatesRequest, runtime: $dara.RuntimeOptions): Promise<ListCertificatesResponse>;
46705
47028
  /**
46706
- * 查询认证文件列表
47029
+ * Queries a list of certificate files.
47030
+ *
47031
+ * @remarks
47032
+ * 1. This API operation is available for all DataWorks editions.
47033
+ * 2. You can call this operation only if you are assigned one of the following roles in DataWorks: Tenant Owner, Workspace Administrator, Deploy, Develop, Visitor, Workspace Owner, O\\&M, Model Designer, Security Administrator, Data Analyst, OpenPlatform Administrator, and Data Governance Administrator.
46707
47034
  *
46708
47035
  * @param request - ListCertificatesRequest
46709
47036
  * @returns ListCertificatesResponse
@@ -47768,7 +48095,7 @@ export default class Client extends OpenApi {
47768
48095
  */
47769
48096
  tagDataAssets(request: TagDataAssetsRequest): Promise<TagDataAssetsResponse>;
47770
48097
  /**
47771
- * Tests the network connectivity between a resource group and a data source.
48098
+ * Tests the connectivity between a data source and a resource group.
47772
48099
  *
47773
48100
  * @remarks
47774
48101
  * 1. This API operation is available for all DataWorks editions.
@@ -47780,7 +48107,7 @@ export default class Client extends OpenApi {
47780
48107
  */
47781
48108
  testDataSourceConnectivityWithOptions(request: TestDataSourceConnectivityRequest, runtime: $dara.RuntimeOptions): Promise<TestDataSourceConnectivityResponse>;
47782
48109
  /**
47783
- * Tests the network connectivity between a resource group and a data source.
48110
+ * Tests the connectivity between a data source and a resource group.
47784
48111
  *
47785
48112
  * @remarks
47786
48113
  * 1. This API operation is available for all DataWorks editions.
@@ -47833,7 +48160,7 @@ export default class Client extends OpenApi {
47833
48160
  */
47834
48161
  unTagDataAssets(request: UnTagDataAssetsRequest): Promise<UnTagDataAssetsResponse>;
47835
48162
  /**
47836
- * Updates a custom alert monitoring rule.
48163
+ * Updates the information about a custom alert monitoring rule.
47837
48164
  *
47838
48165
  * @param tmpReq - UpdateAlertRuleRequest
47839
48166
  * @param runtime - runtime options for this request RuntimeOptions
@@ -47841,7 +48168,7 @@ export default class Client extends OpenApi {
47841
48168
  */
47842
48169
  updateAlertRuleWithOptions(tmpReq: UpdateAlertRuleRequest, runtime: $dara.RuntimeOptions): Promise<UpdateAlertRuleResponse>;
47843
48170
  /**
47844
- * Updates a custom alert monitoring rule.
48171
+ * Updates the information about a custom alert monitoring rule.
47845
48172
  *
47846
48173
  * @param request - UpdateAlertRuleRequest
47847
48174
  * @returns UpdateAlertRuleResponse