@alicloud/dataworks-public20240518 6.1.2 → 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 +230 -80
- package/dist/client.js +30 -12
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +232 -80
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
|
|
@@ -5804,7 +5836,7 @@ export declare class GetDataQualityEvaluationTaskInstanceResponseBodyDataQuality
|
|
|
5804
5836
|
* The hook trigger condition. When this condition is met, the hook action is triggered. Only two conditional expressions are supported:
|
|
5805
5837
|
*
|
|
5806
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.
|
|
5807
|
-
* * 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.
|
|
5808
5840
|
*
|
|
5809
5841
|
* @example
|
|
5810
5842
|
* (${severity} == "High" AND ${status} == "Critical") OR (${severity} == "Normal" AND ${status} == "Critical") OR (${severity} == "Normal" AND ${status} == "Error")
|
|
@@ -5911,7 +5943,7 @@ export declare class GetDataQualityEvaluationTaskInstanceResponseBodyDataQuality
|
|
|
5911
5943
|
* The notification trigger condition. When this condition is met, the alert notification is triggered. Only two conditional expressions are supported:
|
|
5912
5944
|
*
|
|
5913
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.
|
|
5914
|
-
* * 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.
|
|
5915
5947
|
*
|
|
5916
5948
|
* @example
|
|
5917
5949
|
* ${severity} == "High" AND ${status} == "Critical"
|
|
@@ -10933,31 +10965,49 @@ export declare class ListAlertRulesResponseBodyPagingInfo extends $dara.Model {
|
|
|
10933
10965
|
}
|
|
10934
10966
|
export declare class ListCertificatesResponseBodyPagingInfoCertificates extends $dara.Model {
|
|
10935
10967
|
/**
|
|
10968
|
+
* @remarks
|
|
10969
|
+
* The time when the certificate file was created. This value is a UNIX timestamp.
|
|
10970
|
+
*
|
|
10936
10971
|
* @example
|
|
10937
10972
|
* 1730217600000
|
|
10938
10973
|
*/
|
|
10939
10974
|
createTime?: number;
|
|
10940
10975
|
/**
|
|
10976
|
+
* @remarks
|
|
10977
|
+
* The ID of the user who created the certificate file.
|
|
10978
|
+
*
|
|
10941
10979
|
* @example
|
|
10942
10980
|
* 1107550004253538
|
|
10943
10981
|
*/
|
|
10944
10982
|
createUser?: string;
|
|
10945
10983
|
/**
|
|
10984
|
+
* @remarks
|
|
10985
|
+
* The description.
|
|
10986
|
+
*
|
|
10946
10987
|
* @example
|
|
10947
10988
|
* This is a file
|
|
10948
10989
|
*/
|
|
10949
10990
|
description?: string;
|
|
10950
10991
|
/**
|
|
10992
|
+
* @remarks
|
|
10993
|
+
* The size of the certificate file, in bytes.
|
|
10994
|
+
*
|
|
10951
10995
|
* @example
|
|
10952
10996
|
* 1024
|
|
10953
10997
|
*/
|
|
10954
10998
|
fileSizeInBytes?: number;
|
|
10955
10999
|
/**
|
|
11000
|
+
* @remarks
|
|
11001
|
+
* The ID of the certificate file.
|
|
11002
|
+
*
|
|
10956
11003
|
* @example
|
|
10957
11004
|
* 676303114031776
|
|
10958
11005
|
*/
|
|
10959
11006
|
id?: number;
|
|
10960
11007
|
/**
|
|
11008
|
+
* @remarks
|
|
11009
|
+
* The name of the certificate file.
|
|
11010
|
+
*
|
|
10961
11011
|
* @example
|
|
10962
11012
|
* ca1.crt
|
|
10963
11013
|
*/
|
|
@@ -10974,18 +11024,31 @@ export declare class ListCertificatesResponseBodyPagingInfoCertificates extends
|
|
|
10974
11024
|
});
|
|
10975
11025
|
}
|
|
10976
11026
|
export declare class ListCertificatesResponseBodyPagingInfo extends $dara.Model {
|
|
11027
|
+
/**
|
|
11028
|
+
* @remarks
|
|
11029
|
+
* The certificate files.
|
|
11030
|
+
*/
|
|
10977
11031
|
certificates?: ListCertificatesResponseBodyPagingInfoCertificates[];
|
|
10978
11032
|
/**
|
|
11033
|
+
* @remarks
|
|
11034
|
+
* The page number.
|
|
11035
|
+
*
|
|
10979
11036
|
* @example
|
|
10980
11037
|
* 1
|
|
10981
11038
|
*/
|
|
10982
11039
|
pageNumber?: number;
|
|
10983
11040
|
/**
|
|
11041
|
+
* @remarks
|
|
11042
|
+
* The number of entries per page.
|
|
11043
|
+
*
|
|
10984
11044
|
* @example
|
|
10985
11045
|
* 10
|
|
10986
11046
|
*/
|
|
10987
11047
|
pageSize?: number;
|
|
10988
11048
|
/**
|
|
11049
|
+
* @remarks
|
|
11050
|
+
* The total number of entries returned.
|
|
11051
|
+
*
|
|
10989
11052
|
* @example
|
|
10990
11053
|
* 100
|
|
10991
11054
|
*/
|
|
@@ -15044,8 +15107,8 @@ export declare class ListDownstreamTaskInstancesResponseBodyPagingInfoDownstream
|
|
|
15044
15107
|
* @remarks
|
|
15045
15108
|
* The scheduling dependency type. Valid values:
|
|
15046
15109
|
*
|
|
15047
|
-
* * Normal
|
|
15048
|
-
* * CrossCycle
|
|
15110
|
+
* * Normal
|
|
15111
|
+
* * CrossCycle
|
|
15049
15112
|
*
|
|
15050
15113
|
* @example
|
|
15051
15114
|
* Normal
|
|
@@ -17816,6 +17879,7 @@ export declare class ListNodesResponseBodyPagingInfoNodesOutputs extends $dara.M
|
|
|
17816
17879
|
});
|
|
17817
17880
|
}
|
|
17818
17881
|
export declare class ListNodesResponseBodyPagingInfoNodesRuntimeResource extends $dara.Model {
|
|
17882
|
+
resourceGroup?: string;
|
|
17819
17883
|
/**
|
|
17820
17884
|
* @remarks
|
|
17821
17885
|
* The resource group ID.
|
|
@@ -21989,9 +22053,6 @@ export declare class ListWorkflowDefinitionsResponseBodyPagingInfo extends $dara
|
|
|
21989
22053
|
}
|
|
21990
22054
|
export declare class ListWorkflowInstancesResponseBodyPagingInfoWorkflowInstances extends $dara.Model {
|
|
21991
22055
|
/**
|
|
21992
|
-
* @remarks
|
|
21993
|
-
* 业务日期。
|
|
21994
|
-
*
|
|
21995
22056
|
* @example
|
|
21996
22057
|
* 1710239005403
|
|
21997
22058
|
*/
|
|
@@ -22097,14 +22158,6 @@ export declare class ListWorkflowInstancesResponseBodyPagingInfoWorkflowInstance
|
|
|
22097
22158
|
*/
|
|
22098
22159
|
status?: string;
|
|
22099
22160
|
/**
|
|
22100
|
-
* @remarks
|
|
22101
|
-
* 工作流实例的类型。
|
|
22102
|
-
* - Normal:周期调度
|
|
22103
|
-
* - Manual:手动任务
|
|
22104
|
-
* - SmokeTest:测试
|
|
22105
|
-
* - SupplementData:补数据
|
|
22106
|
-
* - ManualWorkflow:手动工作流
|
|
22107
|
-
*
|
|
22108
22161
|
* @example
|
|
22109
22162
|
* Normal
|
|
22110
22163
|
*/
|
|
@@ -22388,7 +22441,7 @@ export declare class ListWorkflowsResponseBodyPagingInfo extends $dara.Model {
|
|
|
22388
22441
|
export declare class StartDIJobRequestRealtimeStartSettingsFailoverSettings extends $dara.Model {
|
|
22389
22442
|
/**
|
|
22390
22443
|
* @remarks
|
|
22391
|
-
*
|
|
22444
|
+
* This parameter is deprecated. Use advanced parameters for failover settings when you create a task.
|
|
22392
22445
|
*
|
|
22393
22446
|
* @example
|
|
22394
22447
|
* 10
|
|
@@ -22398,7 +22451,7 @@ export declare class StartDIJobRequestRealtimeStartSettingsFailoverSettings exte
|
|
|
22398
22451
|
interval?: number;
|
|
22399
22452
|
/**
|
|
22400
22453
|
* @remarks
|
|
22401
|
-
*
|
|
22454
|
+
* This parameter is deprecated. Use advanced parameters for failover settings when you create a task.
|
|
22402
22455
|
*
|
|
22403
22456
|
* @example
|
|
22404
22457
|
* 30
|
|
@@ -22420,7 +22473,7 @@ export declare class StartDIJobRequestRealtimeStartSettingsFailoverSettings exte
|
|
|
22420
22473
|
export declare class StartDIJobRequestRealtimeStartSettings extends $dara.Model {
|
|
22421
22474
|
/**
|
|
22422
22475
|
* @remarks
|
|
22423
|
-
*
|
|
22476
|
+
* This parameter is deprecated. Use advanced parameters for failover settings when you create a task.
|
|
22424
22477
|
*
|
|
22425
22478
|
* @deprecated
|
|
22426
22479
|
*/
|
|
@@ -23329,7 +23382,7 @@ export declare class UpdateDIJobRequestResourceSettingsOfflineResourceSettings e
|
|
|
23329
23382
|
requestedCu?: number;
|
|
23330
23383
|
/**
|
|
23331
23384
|
* @remarks
|
|
23332
|
-
* The
|
|
23385
|
+
* The name of the resource group for Data Integration used for batch synchronization.
|
|
23333
23386
|
*
|
|
23334
23387
|
* @example
|
|
23335
23388
|
* S_res_group_111_222
|
|
@@ -23357,7 +23410,7 @@ export declare class UpdateDIJobRequestResourceSettingsRealtimeResourceSettings
|
|
|
23357
23410
|
requestedCu?: number;
|
|
23358
23411
|
/**
|
|
23359
23412
|
* @remarks
|
|
23360
|
-
* The
|
|
23413
|
+
* The name of the resource group for Data Integration used for real-time synchronization.
|
|
23361
23414
|
*
|
|
23362
23415
|
* @example
|
|
23363
23416
|
* S_res_group_111_222
|
|
@@ -23385,7 +23438,7 @@ export declare class UpdateDIJobRequestResourceSettingsScheduleResourceSettings
|
|
|
23385
23438
|
requestedCu?: number;
|
|
23386
23439
|
/**
|
|
23387
23440
|
* @remarks
|
|
23388
|
-
* The
|
|
23441
|
+
* The name of the resource group for scheduling used for batch synchronization.
|
|
23389
23442
|
*
|
|
23390
23443
|
* @example
|
|
23391
23444
|
* S_res_group_235454102432001_1721021993437
|
|
@@ -24954,7 +25007,7 @@ export declare class UpdateTaskRequestTrigger extends $dara.Model {
|
|
|
24954
25007
|
cron?: string;
|
|
24955
25008
|
/**
|
|
24956
25009
|
* @remarks
|
|
24957
|
-
* 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.
|
|
24958
25011
|
*
|
|
24959
25012
|
* @example
|
|
24960
25013
|
* 9999-01-01 00:00:00
|
|
@@ -24974,7 +25027,7 @@ export declare class UpdateTaskRequestTrigger extends $dara.Model {
|
|
|
24974
25027
|
recurrence?: string;
|
|
24975
25028
|
/**
|
|
24976
25029
|
* @remarks
|
|
24977
|
-
* 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.
|
|
24978
25031
|
*
|
|
24979
25032
|
* @example
|
|
24980
25033
|
* 1970-01-01 00:00:00
|
|
@@ -24984,8 +25037,8 @@ export declare class UpdateTaskRequestTrigger extends $dara.Model {
|
|
|
24984
25037
|
* @remarks
|
|
24985
25038
|
* The trigger type. Valid values:
|
|
24986
25039
|
*
|
|
24987
|
-
* * Scheduler:
|
|
24988
|
-
* * Manual: manual
|
|
25040
|
+
* * Scheduler: scheduling cycle-based trigger
|
|
25041
|
+
* * Manual: manual trigger
|
|
24989
25042
|
*
|
|
24990
25043
|
* This parameter is required.
|
|
24991
25044
|
*
|
|
@@ -25698,7 +25751,7 @@ export declare class UpdateWorkflowRequestTrigger extends $dara.Model {
|
|
|
25698
25751
|
cron?: string;
|
|
25699
25752
|
/**
|
|
25700
25753
|
* @remarks
|
|
25701
|
-
* 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.
|
|
25702
25755
|
*
|
|
25703
25756
|
* @example
|
|
25704
25757
|
* 9999-01-01 00:00:00
|
|
@@ -25706,7 +25759,7 @@ export declare class UpdateWorkflowRequestTrigger extends $dara.Model {
|
|
|
25706
25759
|
endTime?: string;
|
|
25707
25760
|
/**
|
|
25708
25761
|
* @remarks
|
|
25709
|
-
* 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.
|
|
25710
25763
|
*
|
|
25711
25764
|
* @example
|
|
25712
25765
|
* 1970-01-01 00:00:00
|
|
@@ -25716,8 +25769,8 @@ export declare class UpdateWorkflowRequestTrigger extends $dara.Model {
|
|
|
25716
25769
|
* @remarks
|
|
25717
25770
|
* The trigger type. Valid values:
|
|
25718
25771
|
*
|
|
25719
|
-
* * Scheduler:
|
|
25720
|
-
* * Manual: manual
|
|
25772
|
+
* * Scheduler: scheduling cycle-based trigger
|
|
25773
|
+
* * Manual: manual trigger
|
|
25721
25774
|
*
|
|
25722
25775
|
* This parameter is required.
|
|
25723
25776
|
*
|
|
@@ -26842,16 +26895,29 @@ export declare class CreateDIJobRequest extends $dara.Model {
|
|
|
26842
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.
|
|
26843
26896
|
*/
|
|
26844
26897
|
jobSettings?: CreateDIJobRequestJobSettings;
|
|
26898
|
+
/**
|
|
26899
|
+
* @remarks
|
|
26900
|
+
* 任务类型,可选
|
|
26901
|
+
*
|
|
26902
|
+
* - DatabaseRealtimeMigration(整库实时):将源端多个库的多个表进行流同步,支持仅全量,仅增量,或全量+增量。
|
|
26903
|
+
*
|
|
26904
|
+
* - DatabaseOfflineMigration(整库离线):将源端多个库的多个表进行批同步,支持仅全量,仅增量,或全量+增量。
|
|
26905
|
+
*
|
|
26906
|
+
* - SingleTableRealtimeMigration(单表实时):将源端单个表进行流同步
|
|
26907
|
+
*
|
|
26908
|
+
* @example
|
|
26909
|
+
* DatabaseRealtimeMigration
|
|
26910
|
+
*/
|
|
26845
26911
|
jobType?: string;
|
|
26846
26912
|
/**
|
|
26847
26913
|
* @remarks
|
|
26848
26914
|
* The synchronization type. Valid values:
|
|
26849
26915
|
*
|
|
26850
|
-
* * FullAndRealtimeIncremental:
|
|
26851
|
-
* * RealtimeIncremental: real-time incremental synchronization
|
|
26852
|
-
* * Full: full synchronization
|
|
26853
|
-
* * OfflineIncremental: batch incremental synchronization
|
|
26854
|
-
* * FullAndOfflineIncremental:
|
|
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
|
|
26855
26921
|
*
|
|
26856
26922
|
* This parameter is required.
|
|
26857
26923
|
*
|
|
@@ -26969,16 +27035,29 @@ export declare class CreateDIJobShrinkRequest extends $dara.Model {
|
|
|
26969
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.
|
|
26970
27036
|
*/
|
|
26971
27037
|
jobSettingsShrink?: string;
|
|
27038
|
+
/**
|
|
27039
|
+
* @remarks
|
|
27040
|
+
* 任务类型,可选
|
|
27041
|
+
*
|
|
27042
|
+
* - DatabaseRealtimeMigration(整库实时):将源端多个库的多个表进行流同步,支持仅全量,仅增量,或全量+增量。
|
|
27043
|
+
*
|
|
27044
|
+
* - DatabaseOfflineMigration(整库离线):将源端多个库的多个表进行批同步,支持仅全量,仅增量,或全量+增量。
|
|
27045
|
+
*
|
|
27046
|
+
* - SingleTableRealtimeMigration(单表实时):将源端单个表进行流同步
|
|
27047
|
+
*
|
|
27048
|
+
* @example
|
|
27049
|
+
* DatabaseRealtimeMigration
|
|
27050
|
+
*/
|
|
26972
27051
|
jobType?: string;
|
|
26973
27052
|
/**
|
|
26974
27053
|
* @remarks
|
|
26975
27054
|
* The synchronization type. Valid values:
|
|
26976
27055
|
*
|
|
26977
|
-
* * FullAndRealtimeIncremental:
|
|
26978
|
-
* * RealtimeIncremental: real-time incremental synchronization
|
|
26979
|
-
* * Full: full synchronization
|
|
26980
|
-
* * OfflineIncremental: batch incremental synchronization
|
|
26981
|
-
* * FullAndOfflineIncremental:
|
|
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
|
|
26982
27061
|
*
|
|
26983
27062
|
* This parameter is required.
|
|
26984
27063
|
*
|
|
@@ -32154,6 +32233,8 @@ export declare class GetAlertRuleResponse extends $dara.Model {
|
|
|
32154
32233
|
export declare class GetCertificateRequest extends $dara.Model {
|
|
32155
32234
|
/**
|
|
32156
32235
|
* @remarks
|
|
32236
|
+
* The ID of the certificate file.
|
|
32237
|
+
*
|
|
32157
32238
|
* This parameter is required.
|
|
32158
32239
|
*
|
|
32159
32240
|
* @example
|
|
@@ -32161,6 +32242,9 @@ export declare class GetCertificateRequest extends $dara.Model {
|
|
|
32161
32242
|
*/
|
|
32162
32243
|
id?: number;
|
|
32163
32244
|
/**
|
|
32245
|
+
* @remarks
|
|
32246
|
+
* The ID of the workspace to which the certificate file belongs.
|
|
32247
|
+
*
|
|
32164
32248
|
* @example
|
|
32165
32249
|
* 1065601
|
|
32166
32250
|
*/
|
|
@@ -32177,8 +32261,15 @@ export declare class GetCertificateRequest extends $dara.Model {
|
|
|
32177
32261
|
});
|
|
32178
32262
|
}
|
|
32179
32263
|
export declare class GetCertificateResponseBody extends $dara.Model {
|
|
32264
|
+
/**
|
|
32265
|
+
* @remarks
|
|
32266
|
+
* The details of the certificate file.
|
|
32267
|
+
*/
|
|
32180
32268
|
certificate?: GetCertificateResponseBodyCertificate;
|
|
32181
32269
|
/**
|
|
32270
|
+
* @remarks
|
|
32271
|
+
* The request ID.
|
|
32272
|
+
*
|
|
32182
32273
|
* @example
|
|
32183
32274
|
* 0000-ABCD-EFG****
|
|
32184
32275
|
*/
|
|
@@ -34655,37 +34746,57 @@ export declare class ListAlertRulesResponse extends $dara.Model {
|
|
|
34655
34746
|
}
|
|
34656
34747
|
export declare class ListCertificatesRequest extends $dara.Model {
|
|
34657
34748
|
/**
|
|
34749
|
+
* @remarks
|
|
34750
|
+
* The ID of the user who created the certificate files.
|
|
34751
|
+
*
|
|
34658
34752
|
* @example
|
|
34659
34753
|
* 1107550004253538
|
|
34660
34754
|
*/
|
|
34661
34755
|
createUser?: string;
|
|
34662
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
|
+
*
|
|
34663
34760
|
* @example
|
|
34664
34761
|
* 1593877765000
|
|
34665
34762
|
*/
|
|
34666
34763
|
endCreateTime?: number;
|
|
34667
34764
|
/**
|
|
34765
|
+
* @remarks
|
|
34766
|
+
* The name of the certificate file. Fuzzy match by file name is supported.
|
|
34767
|
+
*
|
|
34668
34768
|
* @example
|
|
34669
34769
|
* xm_create_test
|
|
34670
34770
|
*/
|
|
34671
34771
|
name?: string;
|
|
34672
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
|
+
*
|
|
34673
34776
|
* @example
|
|
34674
34777
|
* Asc
|
|
34675
34778
|
*/
|
|
34676
34779
|
order?: string;
|
|
34677
34780
|
/**
|
|
34781
|
+
* @remarks
|
|
34782
|
+
* The page number. Default value: 1.
|
|
34783
|
+
*
|
|
34678
34784
|
* @example
|
|
34679
34785
|
* 1
|
|
34680
34786
|
*/
|
|
34681
34787
|
pageNumber?: number;
|
|
34682
34788
|
/**
|
|
34789
|
+
* @remarks
|
|
34790
|
+
* The number of entries per page. Default value: 10. Maximum value: 100.
|
|
34791
|
+
*
|
|
34683
34792
|
* @example
|
|
34684
34793
|
* 10
|
|
34685
34794
|
*/
|
|
34686
34795
|
pageSize?: number;
|
|
34687
34796
|
/**
|
|
34688
34797
|
* @remarks
|
|
34798
|
+
* The ID of the workspace to which the certificate file belongs.
|
|
34799
|
+
*
|
|
34689
34800
|
* This parameter is required.
|
|
34690
34801
|
*
|
|
34691
34802
|
* @example
|
|
@@ -34693,11 +34804,17 @@ export declare class ListCertificatesRequest extends $dara.Model {
|
|
|
34693
34804
|
*/
|
|
34694
34805
|
projectId?: number;
|
|
34695
34806
|
/**
|
|
34807
|
+
* @remarks
|
|
34808
|
+
* The field used to sort the certificate files. Valid values: CreateTime Id Name Default value: Id
|
|
34809
|
+
*
|
|
34696
34810
|
* @example
|
|
34697
34811
|
* Id
|
|
34698
34812
|
*/
|
|
34699
34813
|
sortBy?: string;
|
|
34700
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
|
+
*
|
|
34701
34818
|
* @example
|
|
34702
34819
|
* 1730217600000
|
|
34703
34820
|
*/
|
|
@@ -34714,8 +34831,15 @@ export declare class ListCertificatesRequest extends $dara.Model {
|
|
|
34714
34831
|
});
|
|
34715
34832
|
}
|
|
34716
34833
|
export declare class ListCertificatesResponseBody extends $dara.Model {
|
|
34834
|
+
/**
|
|
34835
|
+
* @remarks
|
|
34836
|
+
* The pagination information.
|
|
34837
|
+
*/
|
|
34717
34838
|
pagingInfo?: ListCertificatesResponseBodyPagingInfo;
|
|
34718
34839
|
/**
|
|
34840
|
+
* @remarks
|
|
34841
|
+
* The request ID.
|
|
34842
|
+
*
|
|
34719
34843
|
* @example
|
|
34720
34844
|
* ecb967ec-c137-48****
|
|
34721
34845
|
*/
|
|
@@ -35321,9 +35445,7 @@ export declare class ListDIJobsResponse extends $dara.Model {
|
|
|
35321
35445
|
export declare class ListDataAssetTagsRequest extends $dara.Model {
|
|
35322
35446
|
/**
|
|
35323
35447
|
* @remarks
|
|
35324
|
-
* The type of the tag.
|
|
35325
|
-
*
|
|
35326
|
-
* Valid values:
|
|
35448
|
+
* The type of the tag. Valid values:
|
|
35327
35449
|
*
|
|
35328
35450
|
* * Normal
|
|
35329
35451
|
* * System
|
|
@@ -37832,7 +37954,7 @@ export declare class ListResourceGroupsRequest extends $dara.Model {
|
|
|
37832
37954
|
* * Status (Desc/Asc): the status of the resource group
|
|
37833
37955
|
* * Spec (Desc/Asc): the specifications of the resource group
|
|
37834
37956
|
* * CreateUser (Desc/Asc): the creator of the resource group
|
|
37835
|
-
* * CreateTime (Desc/Asc): the time when the
|
|
37957
|
+
* * CreateTime (Desc/Asc): the time when the resource group is created
|
|
37836
37958
|
*
|
|
37837
37959
|
* Default value: CreateTime Asc
|
|
37838
37960
|
*
|
|
@@ -37929,7 +38051,7 @@ export declare class ListResourceGroupsShrinkRequest extends $dara.Model {
|
|
|
37929
38051
|
* * Status (Desc/Asc): the status of the resource group
|
|
37930
38052
|
* * Spec (Desc/Asc): the specifications of the resource group
|
|
37931
38053
|
* * CreateUser (Desc/Asc): the creator of the resource group
|
|
37932
|
-
* * CreateTime (Desc/Asc): the time when the
|
|
38054
|
+
* * CreateTime (Desc/Asc): the time when the resource group is created
|
|
37933
38055
|
*
|
|
37934
38056
|
* Default value: CreateTime Asc
|
|
37935
38057
|
*
|
|
@@ -38221,7 +38343,7 @@ export declare class ListRoutesResponse extends $dara.Model {
|
|
|
38221
38343
|
export declare class ListTaskInstanceOperationLogsRequest extends $dara.Model {
|
|
38222
38344
|
/**
|
|
38223
38345
|
* @remarks
|
|
38224
|
-
* 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.
|
|
38225
38347
|
*
|
|
38226
38348
|
* @example
|
|
38227
38349
|
* 1710239005403
|
|
@@ -38446,7 +38568,7 @@ export declare class ListTaskInstancesRequest extends $dara.Model {
|
|
|
38446
38568
|
triggerRecurrence?: string;
|
|
38447
38569
|
/**
|
|
38448
38570
|
* @remarks
|
|
38449
|
-
* The trigger type.
|
|
38571
|
+
* The trigger type. Valid values:
|
|
38450
38572
|
*
|
|
38451
38573
|
* * Scheduler: scheduling cycle-based trigger
|
|
38452
38574
|
* * Manual: manual trigger
|
|
@@ -38636,7 +38758,7 @@ export declare class ListTaskInstancesShrinkRequest extends $dara.Model {
|
|
|
38636
38758
|
triggerRecurrence?: string;
|
|
38637
38759
|
/**
|
|
38638
38760
|
* @remarks
|
|
38639
|
-
* The trigger type.
|
|
38761
|
+
* The trigger type. Valid values:
|
|
38640
38762
|
*
|
|
38641
38763
|
* * Scheduler: scheduling cycle-based trigger
|
|
38642
38764
|
* * Manual: manual trigger
|
|
@@ -39466,8 +39588,6 @@ export declare class ListWorkflowDefinitionsResponse extends $dara.Model {
|
|
|
39466
39588
|
export declare class ListWorkflowInstancesRequest extends $dara.Model {
|
|
39467
39589
|
/**
|
|
39468
39590
|
* @remarks
|
|
39469
|
-
* 业务日期。
|
|
39470
|
-
*
|
|
39471
39591
|
* This parameter is required.
|
|
39472
39592
|
*
|
|
39473
39593
|
* @example
|
|
@@ -39539,12 +39659,13 @@ export declare class ListWorkflowInstancesRequest extends $dara.Model {
|
|
|
39539
39659
|
sortBy?: string;
|
|
39540
39660
|
/**
|
|
39541
39661
|
* @remarks
|
|
39542
|
-
*
|
|
39543
|
-
*
|
|
39544
|
-
*
|
|
39545
|
-
*
|
|
39546
|
-
*
|
|
39547
|
-
*
|
|
39662
|
+
* The type of the workflow instance. Valid values:
|
|
39663
|
+
*
|
|
39664
|
+
* * Normal
|
|
39665
|
+
* * Manual
|
|
39666
|
+
* * SmokeTest
|
|
39667
|
+
* * SupplementData
|
|
39668
|
+
* * ManualWorkflow
|
|
39548
39669
|
*
|
|
39549
39670
|
* @example
|
|
39550
39671
|
* Normal
|
|
@@ -39572,8 +39693,6 @@ export declare class ListWorkflowInstancesRequest extends $dara.Model {
|
|
|
39572
39693
|
export declare class ListWorkflowInstancesShrinkRequest extends $dara.Model {
|
|
39573
39694
|
/**
|
|
39574
39695
|
* @remarks
|
|
39575
|
-
* 业务日期。
|
|
39576
|
-
*
|
|
39577
39696
|
* This parameter is required.
|
|
39578
39697
|
*
|
|
39579
39698
|
* @example
|
|
@@ -39645,12 +39764,13 @@ export declare class ListWorkflowInstancesShrinkRequest extends $dara.Model {
|
|
|
39645
39764
|
sortBy?: string;
|
|
39646
39765
|
/**
|
|
39647
39766
|
* @remarks
|
|
39648
|
-
*
|
|
39649
|
-
*
|
|
39650
|
-
*
|
|
39651
|
-
*
|
|
39652
|
-
*
|
|
39653
|
-
*
|
|
39767
|
+
* The type of the workflow instance. Valid values:
|
|
39768
|
+
*
|
|
39769
|
+
* * Normal
|
|
39770
|
+
* * Manual
|
|
39771
|
+
* * SmokeTest
|
|
39772
|
+
* * SupplementData
|
|
39773
|
+
* * ManualWorkflow
|
|
39654
39774
|
*
|
|
39655
39775
|
* @example
|
|
39656
39776
|
* Normal
|
|
@@ -41214,7 +41334,10 @@ export declare class StartDIJobRequest extends $dara.Model {
|
|
|
41214
41334
|
DIJobId?: number;
|
|
41215
41335
|
/**
|
|
41216
41336
|
* @remarks
|
|
41217
|
-
*
|
|
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.
|
|
41218
41341
|
*
|
|
41219
41342
|
* @example
|
|
41220
41343
|
* false
|
|
@@ -41231,6 +41354,10 @@ export declare class StartDIJobRequest extends $dara.Model {
|
|
|
41231
41354
|
/**
|
|
41232
41355
|
* @remarks
|
|
41233
41356
|
* The settings for starting real-time synchronization.
|
|
41357
|
+
*
|
|
41358
|
+
* {
|
|
41359
|
+
* "StartTime":1663765058
|
|
41360
|
+
* }
|
|
41234
41361
|
*/
|
|
41235
41362
|
realtimeStartSettings?: StartDIJobRequestRealtimeStartSettings;
|
|
41236
41363
|
static names(): {
|
|
@@ -41257,7 +41384,10 @@ export declare class StartDIJobShrinkRequest extends $dara.Model {
|
|
|
41257
41384
|
DIJobId?: number;
|
|
41258
41385
|
/**
|
|
41259
41386
|
* @remarks
|
|
41260
|
-
*
|
|
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.
|
|
41261
41391
|
*
|
|
41262
41392
|
* @example
|
|
41263
41393
|
* false
|
|
@@ -41274,6 +41404,10 @@ export declare class StartDIJobShrinkRequest extends $dara.Model {
|
|
|
41274
41404
|
/**
|
|
41275
41405
|
* @remarks
|
|
41276
41406
|
* The settings for starting real-time synchronization.
|
|
41407
|
+
*
|
|
41408
|
+
* {
|
|
41409
|
+
* "StartTime":1663765058
|
|
41410
|
+
* }
|
|
41277
41411
|
*/
|
|
41278
41412
|
realtimeStartSettingsShrink?: string;
|
|
41279
41413
|
static names(): {
|
|
@@ -42093,7 +42227,7 @@ export declare class TriggerSchedulerTaskInstanceRequest extends $dara.Model {
|
|
|
42093
42227
|
taskId?: number;
|
|
42094
42228
|
/**
|
|
42095
42229
|
* @remarks
|
|
42096
|
-
* The time defined by the HTTP Trigger node.
|
|
42230
|
+
* The time defined by the HTTP Trigger node. This value is a UNIX timestamp.
|
|
42097
42231
|
*
|
|
42098
42232
|
* This parameter is required.
|
|
42099
42233
|
*
|
|
@@ -44481,7 +44615,7 @@ export declare class UpdateTaskRequest extends $dara.Model {
|
|
|
44481
44615
|
instanceMode?: string;
|
|
44482
44616
|
/**
|
|
44483
44617
|
* @remarks
|
|
44484
|
-
* The name
|
|
44618
|
+
* The name.
|
|
44485
44619
|
*
|
|
44486
44620
|
* This parameter is required.
|
|
44487
44621
|
*
|
|
@@ -44643,7 +44777,7 @@ export declare class UpdateTaskShrinkRequest extends $dara.Model {
|
|
|
44643
44777
|
instanceMode?: string;
|
|
44644
44778
|
/**
|
|
44645
44779
|
* @remarks
|
|
44646
|
-
* The name
|
|
44780
|
+
* The name.
|
|
44647
44781
|
*
|
|
44648
44782
|
* This parameter is required.
|
|
44649
44783
|
*
|
|
@@ -46290,7 +46424,7 @@ export default class Client extends OpenApi {
|
|
|
46290
46424
|
*/
|
|
46291
46425
|
executeAdhocWorkflowInstance(request: ExecuteAdhocWorkflowInstanceRequest): Promise<ExecuteAdhocWorkflowInstanceResponse>;
|
|
46292
46426
|
/**
|
|
46293
|
-
* Queries a
|
|
46427
|
+
* Queries a custom alert monitoring rule.
|
|
46294
46428
|
*
|
|
46295
46429
|
* @param request - GetAlertRuleRequest
|
|
46296
46430
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -46298,14 +46432,18 @@ export default class Client extends OpenApi {
|
|
|
46298
46432
|
*/
|
|
46299
46433
|
getAlertRuleWithOptions(request: GetAlertRuleRequest, runtime: $dara.RuntimeOptions): Promise<GetAlertRuleResponse>;
|
|
46300
46434
|
/**
|
|
46301
|
-
* Queries a
|
|
46435
|
+
* Queries a custom alert monitoring rule.
|
|
46302
46436
|
*
|
|
46303
46437
|
* @param request - GetAlertRuleRequest
|
|
46304
46438
|
* @returns GetAlertRuleResponse
|
|
46305
46439
|
*/
|
|
46306
46440
|
getAlertRule(request: GetAlertRuleRequest): Promise<GetAlertRuleResponse>;
|
|
46307
46441
|
/**
|
|
46308
|
-
*
|
|
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.
|
|
46309
46447
|
*
|
|
46310
46448
|
* @param request - GetCertificateRequest
|
|
46311
46449
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -46313,7 +46451,11 @@ export default class Client extends OpenApi {
|
|
|
46313
46451
|
*/
|
|
46314
46452
|
getCertificateWithOptions(request: GetCertificateRequest, runtime: $dara.RuntimeOptions): Promise<GetCertificateResponse>;
|
|
46315
46453
|
/**
|
|
46316
|
-
*
|
|
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.
|
|
46317
46459
|
*
|
|
46318
46460
|
* @param request - GetCertificateRequest
|
|
46319
46461
|
* @returns GetCertificateResponse
|
|
@@ -46857,7 +46999,7 @@ export default class Client extends OpenApi {
|
|
|
46857
46999
|
*/
|
|
46858
47000
|
importWorkflowDefinition(request: ImportWorkflowDefinitionRequest): Promise<ImportWorkflowDefinitionResponse>;
|
|
46859
47001
|
/**
|
|
46860
|
-
* Queries a list of custom monitoring alert
|
|
47002
|
+
* Queries a list of custom monitoring alert rules.
|
|
46861
47003
|
*
|
|
46862
47004
|
* @param tmpReq - ListAlertRulesRequest
|
|
46863
47005
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -46865,14 +47007,18 @@ export default class Client extends OpenApi {
|
|
|
46865
47007
|
*/
|
|
46866
47008
|
listAlertRulesWithOptions(tmpReq: ListAlertRulesRequest, runtime: $dara.RuntimeOptions): Promise<ListAlertRulesResponse>;
|
|
46867
47009
|
/**
|
|
46868
|
-
* Queries a list of custom monitoring alert
|
|
47010
|
+
* Queries a list of custom monitoring alert rules.
|
|
46869
47011
|
*
|
|
46870
47012
|
* @param request - ListAlertRulesRequest
|
|
46871
47013
|
* @returns ListAlertRulesResponse
|
|
46872
47014
|
*/
|
|
46873
47015
|
listAlertRules(request: ListAlertRulesRequest): Promise<ListAlertRulesResponse>;
|
|
46874
47016
|
/**
|
|
46875
|
-
*
|
|
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.
|
|
46876
47022
|
*
|
|
46877
47023
|
* @param request - ListCertificatesRequest
|
|
46878
47024
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -46880,7 +47026,11 @@ export default class Client extends OpenApi {
|
|
|
46880
47026
|
*/
|
|
46881
47027
|
listCertificatesWithOptions(request: ListCertificatesRequest, runtime: $dara.RuntimeOptions): Promise<ListCertificatesResponse>;
|
|
46882
47028
|
/**
|
|
46883
|
-
*
|
|
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.
|
|
46884
47034
|
*
|
|
46885
47035
|
* @param request - ListCertificatesRequest
|
|
46886
47036
|
* @returns ListCertificatesResponse
|
|
@@ -47945,7 +48095,7 @@ export default class Client extends OpenApi {
|
|
|
47945
48095
|
*/
|
|
47946
48096
|
tagDataAssets(request: TagDataAssetsRequest): Promise<TagDataAssetsResponse>;
|
|
47947
48097
|
/**
|
|
47948
|
-
* Tests the
|
|
48098
|
+
* Tests the connectivity between a data source and a resource group.
|
|
47949
48099
|
*
|
|
47950
48100
|
* @remarks
|
|
47951
48101
|
* 1. This API operation is available for all DataWorks editions.
|
|
@@ -47957,7 +48107,7 @@ export default class Client extends OpenApi {
|
|
|
47957
48107
|
*/
|
|
47958
48108
|
testDataSourceConnectivityWithOptions(request: TestDataSourceConnectivityRequest, runtime: $dara.RuntimeOptions): Promise<TestDataSourceConnectivityResponse>;
|
|
47959
48109
|
/**
|
|
47960
|
-
* Tests the
|
|
48110
|
+
* Tests the connectivity between a data source and a resource group.
|
|
47961
48111
|
*
|
|
47962
48112
|
* @remarks
|
|
47963
48113
|
* 1. This API operation is available for all DataWorks editions.
|
|
@@ -48010,7 +48160,7 @@ export default class Client extends OpenApi {
|
|
|
48010
48160
|
*/
|
|
48011
48161
|
unTagDataAssets(request: UnTagDataAssetsRequest): Promise<UnTagDataAssetsResponse>;
|
|
48012
48162
|
/**
|
|
48013
|
-
* Updates a custom alert monitoring rule.
|
|
48163
|
+
* Updates the information about a custom alert monitoring rule.
|
|
48014
48164
|
*
|
|
48015
48165
|
* @param tmpReq - UpdateAlertRuleRequest
|
|
48016
48166
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -48018,7 +48168,7 @@ export default class Client extends OpenApi {
|
|
|
48018
48168
|
*/
|
|
48019
48169
|
updateAlertRuleWithOptions(tmpReq: UpdateAlertRuleRequest, runtime: $dara.RuntimeOptions): Promise<UpdateAlertRuleResponse>;
|
|
48020
48170
|
/**
|
|
48021
|
-
* Updates a custom alert monitoring rule.
|
|
48171
|
+
* Updates the information about a custom alert monitoring rule.
|
|
48022
48172
|
*
|
|
48023
48173
|
* @param request - UpdateAlertRuleRequest
|
|
48024
48174
|
* @returns UpdateAlertRuleResponse
|