@alicloud/dataworks-public20200518 6.2.3 → 7.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/src/client.ts CHANGED
@@ -1067,6 +1067,7 @@ export class CreateMetaCategoryResponseBodyData extends $dara.Model {
1067
1067
  }
1068
1068
 
1069
1069
  export class CreatePermissionApplyOrderRequestApplyObjectColumnMetaList extends $dara.Model {
1070
+ actions?: string;
1070
1071
  /**
1071
1072
  * @remarks
1072
1073
  * The field on which you want to request permissions. If you want to request permissions on an entire table, enter all fields in the table. You can request permissions on specific fields of a table in a MaxCompute project only after LabelSecurity is enabled for this project. If LabelSecurity is disabled, you can request permissions only on an entire table.
@@ -1079,12 +1080,14 @@ export class CreatePermissionApplyOrderRequestApplyObjectColumnMetaList extends
1079
1080
  name?: string;
1080
1081
  static names(): { [key: string]: string } {
1081
1082
  return {
1083
+ actions: 'Actions',
1082
1084
  name: 'Name',
1083
1085
  };
1084
1086
  }
1085
1087
 
1086
1088
  static types(): { [key: string]: any } {
1087
1089
  return {
1090
+ actions: 'string',
1088
1091
  name: 'string',
1089
1092
  };
1090
1093
  }
@@ -1103,8 +1106,6 @@ export class CreatePermissionApplyOrderRequestApplyObject extends $dara.Model {
1103
1106
  * @remarks
1104
1107
  * The permission that you want to request. If you want to request multiple permissions at the same time, separate them with commas (,). You can request only the following permissions: Select, Describe, Drop, Alter, Update, and Download.
1105
1108
  *
1106
- * This parameter is required.
1107
- *
1108
1109
  * @example
1109
1110
  * Select,Describe
1110
1111
  */
@@ -1112,8 +1113,6 @@ export class CreatePermissionApplyOrderRequestApplyObject extends $dara.Model {
1112
1113
  /**
1113
1114
  * @remarks
1114
1115
  * The fields on which you want to request permissions.
1115
- *
1116
- * This parameter is required.
1117
1116
  */
1118
1117
  columnMetaList?: CreatePermissionApplyOrderRequestApplyObjectColumnMetaList[];
1119
1118
  /**
@@ -6728,9 +6727,10 @@ export class GetDISyncInstanceInfoResponseBodyData extends $dara.Model {
6728
6727
  export class GetDISyncTaskResponseBodyDataAlarmListAlarmRuleList extends $dara.Model {
6729
6728
  /**
6730
6729
  * @remarks
6731
- * The calculation method of indicators,
6732
- * - avg interval average
6733
- * - max interval takes the maximum value
6730
+ * The calculation method of a metric. Valid values:
6731
+ *
6732
+ * * avg
6733
+ * * max
6734
6734
  *
6735
6735
  * @example
6736
6736
  * avg
@@ -6738,10 +6738,11 @@ export class GetDISyncTaskResponseBodyDataAlarmListAlarmRuleList extends $dara.M
6738
6738
  aggregator?: string;
6739
6739
  /**
6740
6740
  * @remarks
6741
- * Comparison method of comparison symbols, indicators and alarm rules
6742
- * - \\"=\\"
6743
- * - \\"<\\"
6744
- * - \\">\\"
6741
+ * The comparison operator, which indicates the method used to compare a metric with the alert rule.
6742
+ *
6743
+ * * \\"=\\"
6744
+ * * \\"<\\"
6745
+ * * \\">\\"
6745
6746
  *
6746
6747
  * @example
6747
6748
  * =
@@ -6749,7 +6750,7 @@ export class GetDISyncTaskResponseBodyDataAlarmListAlarmRuleList extends $dara.M
6749
6750
  comparator?: string;
6750
6751
  /**
6751
6752
  * @remarks
6752
- * Duration: How long does this condition last before an alarm is triggered, in minutes.
6753
+ * The duration that a condition is met before an alert is triggered. Unit: minutes.
6753
6754
  *
6754
6755
  * @example
6755
6756
  * 3
@@ -6757,8 +6758,8 @@ export class GetDISyncTaskResponseBodyDataAlarmListAlarmRuleList extends $dara.M
6757
6758
  duration?: number;
6758
6759
  /**
6759
6760
  * @remarks
6760
- * - WARNING WARNING: alert
6761
- * - CRITICAL CRITICAL: alarm
6761
+ * * WARNING
6762
+ * * CRITICAL
6762
6763
  *
6763
6764
  * @example
6764
6765
  * WARNING
@@ -6766,7 +6767,7 @@ export class GetDISyncTaskResponseBodyDataAlarmListAlarmRuleList extends $dara.M
6766
6767
  level?: string;
6767
6768
  /**
6768
6769
  * @remarks
6769
- * Comparison threshold between metrics and alarm rules.
6770
+ * The threshold for the comparison between a metric and the alert rule.
6770
6771
  *
6771
6772
  * @example
6772
6773
  * 1
@@ -6804,12 +6805,12 @@ export class GetDISyncTaskResponseBodyDataAlarmListAlarmRuleList extends $dara.M
6804
6805
  export class GetDISyncTaskResponseBodyDataAlarmListNotifyRule extends $dara.Model {
6805
6806
  /**
6806
6807
  * @remarks
6807
- * Critical-level alert notification list.
6808
+ * The settings for Critical-level alert notifications.
6808
6809
  */
6809
6810
  critical?: string[];
6810
6811
  /**
6811
6812
  * @remarks
6812
- * Alarm interval, in minutes.
6813
+ * The alert interval. Unit: minutes.
6813
6814
  *
6814
6815
  * @example
6815
6816
  * 5
@@ -6817,7 +6818,7 @@ export class GetDISyncTaskResponseBodyDataAlarmListNotifyRule extends $dara.Mode
6817
6818
  interval?: number;
6818
6819
  /**
6819
6820
  * @remarks
6820
- * Warning-level alert notification list.
6821
+ * The settings for Warning-level alert notifications.
6821
6822
  */
6822
6823
  warning?: string[];
6823
6824
  static names(): { [key: string]: string } {
@@ -6854,12 +6855,12 @@ export class GetDISyncTaskResponseBodyDataAlarmListNotifyRule extends $dara.Mode
6854
6855
  export class GetDISyncTaskResponseBodyDataAlarmList extends $dara.Model {
6855
6856
  /**
6856
6857
  * @remarks
6857
- * Alarm Notification configuration array.
6858
+ * The alert notification settings. The value of this parameter is an array.
6858
6859
  */
6859
6860
  alarmRuleList?: GetDISyncTaskResponseBodyDataAlarmListAlarmRuleList[];
6860
6861
  /**
6861
6862
  * @remarks
6862
- * Alarm rule description.
6863
+ * The description of the alert rule.
6863
6864
  *
6864
6865
  * @example
6865
6866
  * Description
@@ -6867,7 +6868,7 @@ export class GetDISyncTaskResponseBodyDataAlarmList extends $dara.Model {
6867
6868
  description?: string;
6868
6869
  /**
6869
6870
  * @remarks
6870
- * Whether alarm rules are enabled.
6871
+ * Indicates whether the alert rule is enabled.
6871
6872
  *
6872
6873
  * @example
6873
6874
  * true
@@ -6875,7 +6876,7 @@ export class GetDISyncTaskResponseBodyDataAlarmList extends $dara.Model {
6875
6876
  enabled?: boolean;
6876
6877
  /**
6877
6878
  * @remarks
6878
- * Alarm rule id.
6879
+ * The ID of the alert rule.
6879
6880
  *
6880
6881
  * @example
6881
6882
  * 45242
@@ -6883,14 +6884,14 @@ export class GetDISyncTaskResponseBodyDataAlarmList extends $dara.Model {
6883
6884
  id?: number;
6884
6885
  /**
6885
6886
  * @remarks
6886
- * Alarm Type:
6887
+ * The alert type. Valid values:
6887
6888
  *
6888
- * - taskStatus: task status
6889
- * - bizDelay: business latency
6890
- * - taskFailoverCount: monitoring Failover
6891
- * - ddlUnsupport: DDL is not supported
6892
- * - ddlReport: DDL notifications
6893
- * - totalDirtyRecordWriteInLines: dirty data
6889
+ * * taskStatus
6890
+ * * bizDelay
6891
+ * * taskFailoverCount
6892
+ * * ddlUnsupport
6893
+ * * ddlReport
6894
+ * * totalDirtyRecordWriteInLines
6894
6895
  *
6895
6896
  * @example
6896
6897
  * taskStatus
@@ -6898,12 +6899,12 @@ export class GetDISyncTaskResponseBodyDataAlarmList extends $dara.Model {
6898
6899
  metric?: string;
6899
6900
  /**
6900
6901
  * @remarks
6901
- * Alert notification rule array.
6902
+ * The settings for alert notification rules. The value of this parameter is an array.
6902
6903
  */
6903
6904
  notifyRule?: GetDISyncTaskResponseBodyDataAlarmListNotifyRule;
6904
6905
  /**
6905
6906
  * @remarks
6906
- * Alarm rule name.
6907
+ * The name of the alert rule.
6907
6908
  *
6908
6909
  * @example
6909
6910
  * Delay alert rule name 1
@@ -7092,7 +7093,7 @@ export class GetDISyncTaskResponseBodyDataSolutionDetail extends $dara.Model {
7092
7093
  export class GetDISyncTaskResponseBodyData extends $dara.Model {
7093
7094
  /**
7094
7095
  * @remarks
7095
- * Array of alarm rules associated with real-time tasks.
7096
+ * The alert rules that are associated with the real-time synchronization task. The value of this parameter is an array.
7096
7097
  */
7097
7098
  alarmList?: GetDISyncTaskResponseBodyDataAlarmList[];
7098
7099
  /**
@@ -11165,6 +11166,13 @@ export class GetFileResponseBodyDataNodeConfiguration extends $dara.Model {
11165
11166
  * true
11166
11167
  */
11167
11168
  ignoreParentSkipRunningProperty?: string;
11169
+ /**
11170
+ * @remarks
11171
+ * The ID of the custom image.
11172
+ *
11173
+ * @example
11174
+ * m-bp1h4b5a8ogkbll2f3tr
11175
+ */
11168
11176
  imageId?: string;
11169
11177
  /**
11170
11178
  * @remarks
@@ -16988,6 +16996,7 @@ export class GetPermissionApplyOrderDetailResponseBodyApplyOrderDetailApproveAcc
16988
16996
  }
16989
16997
 
16990
16998
  export class GetPermissionApplyOrderDetailResponseBodyApplyOrderDetailApproveContentProjectMetaObjectMetaListColumnMetaList extends $dara.Model {
16999
+ columnActions?: string[];
16991
17000
  /**
16992
17001
  * @remarks
16993
17002
  * The description of the column on which you request permissions.
@@ -17014,6 +17023,7 @@ export class GetPermissionApplyOrderDetailResponseBodyApplyOrderDetailApproveCon
17014
17023
  securityLevel?: string;
17015
17024
  static names(): { [key: string]: string } {
17016
17025
  return {
17026
+ columnActions: 'ColumnActions',
17017
17027
  columnComment: 'ColumnComment',
17018
17028
  columnName: 'ColumnName',
17019
17029
  securityLevel: 'SecurityLevel',
@@ -17022,6 +17032,7 @@ export class GetPermissionApplyOrderDetailResponseBodyApplyOrderDetailApproveCon
17022
17032
 
17023
17033
  static types(): { [key: string]: any } {
17024
17034
  return {
17035
+ columnActions: { 'type': 'array', 'itemType': 'string' },
17025
17036
  columnComment: 'string',
17026
17037
  columnName: 'string',
17027
17038
  securityLevel: 'string',
@@ -17029,6 +17040,9 @@ export class GetPermissionApplyOrderDetailResponseBodyApplyOrderDetailApproveCon
17029
17040
  }
17030
17041
 
17031
17042
  validate() {
17043
+ if(Array.isArray(this.columnActions)) {
17044
+ $dara.Model.validateArray(this.columnActions);
17045
+ }
17032
17046
  super.validate();
17033
17047
  }
17034
17048
 
@@ -17038,6 +17052,7 @@ export class GetPermissionApplyOrderDetailResponseBodyApplyOrderDetailApproveCon
17038
17052
  }
17039
17053
 
17040
17054
  export class GetPermissionApplyOrderDetailResponseBodyApplyOrderDetailApproveContentProjectMetaObjectMetaList extends $dara.Model {
17055
+ actions?: string[];
17041
17056
  /**
17042
17057
  * @remarks
17043
17058
  * The information about the column fields in the object on which you request permissions.
@@ -17053,6 +17068,7 @@ export class GetPermissionApplyOrderDetailResponseBodyApplyOrderDetailApproveCon
17053
17068
  objectName?: string;
17054
17069
  static names(): { [key: string]: string } {
17055
17070
  return {
17071
+ actions: 'Actions',
17056
17072
  columnMetaList: 'ColumnMetaList',
17057
17073
  objectName: 'ObjectName',
17058
17074
  };
@@ -17060,12 +17076,16 @@ export class GetPermissionApplyOrderDetailResponseBodyApplyOrderDetailApproveCon
17060
17076
 
17061
17077
  static types(): { [key: string]: any } {
17062
17078
  return {
17079
+ actions: { 'type': 'array', 'itemType': 'string' },
17063
17080
  columnMetaList: { 'type': 'array', 'itemType': GetPermissionApplyOrderDetailResponseBodyApplyOrderDetailApproveContentProjectMetaObjectMetaListColumnMetaList },
17064
17081
  objectName: 'string',
17065
17082
  };
17066
17083
  }
17067
17084
 
17068
17085
  validate() {
17086
+ if(Array.isArray(this.actions)) {
17087
+ $dara.Model.validateArray(this.actions);
17088
+ }
17069
17089
  if(Array.isArray(this.columnMetaList)) {
17070
17090
  $dara.Model.validateArray(this.columnMetaList);
17071
17091
  }
@@ -18385,6 +18405,9 @@ export class GetQualityRuleResponseBodyData extends $dara.Model {
18385
18405
  /**
18386
18406
  * @remarks
18387
18407
  * The description of the monitoring rule.
18408
+ *
18409
+ * @example
18410
+ * Verify that the primary key is unique
18388
18411
  */
18389
18412
  comment?: string;
18390
18413
  /**
@@ -18497,6 +18520,9 @@ export class GetQualityRuleResponseBodyData extends $dara.Model {
18497
18520
  /**
18498
18521
  * @remarks
18499
18522
  * The name of the monitoring rule.
18523
+ *
18524
+ * @example
18525
+ * View table fluctuations
18500
18526
  */
18501
18527
  ruleName?: string;
18502
18528
  /**
@@ -18507,6 +18533,13 @@ export class GetQualityRuleResponseBodyData extends $dara.Model {
18507
18533
  * 0
18508
18534
  */
18509
18535
  ruleType?: number;
18536
+ /**
18537
+ * @remarks
18538
+ * The variable settings inserted before the custom rule. Format: x=a,y=b.
18539
+ *
18540
+ * @example
18541
+ * x=a,y=b
18542
+ */
18510
18543
  taskSetting?: string;
18511
18544
  /**
18512
18545
  * @remarks
@@ -19652,7 +19685,7 @@ export class GetTopicInfluenceResponseBodyDataInfluences extends $dara.Model {
19652
19685
  export class GetTopicInfluenceResponseBodyData extends $dara.Model {
19653
19686
  /**
19654
19687
  * @remarks
19655
- * The list of affected baseline instances.
19688
+ * The affected baseline instances.
19656
19689
  */
19657
19690
  influences?: GetTopicInfluenceResponseBodyDataInfluences[];
19658
19691
  /**
@@ -20482,6 +20515,14 @@ export class ListBaselineStatusesResponseBodyDataBaselineStatuses extends $dara.
20482
20515
  * Baseline name
20483
20516
  */
20484
20517
  baselineName?: string;
20518
+ /**
20519
+ * @remarks
20520
+ * The type of the baseline, including DAILY and HOURLY. Separate multiple types with commas (,).
20521
+ *
20522
+ * @example
20523
+ * DAILY,HOURLY
20524
+ */
20525
+ baselineType?: string;
20485
20526
  /**
20486
20527
  * @remarks
20487
20528
  * The data timestamp.
@@ -20582,6 +20623,7 @@ export class ListBaselineStatusesResponseBodyDataBaselineStatuses extends $dara.
20582
20623
  return {
20583
20624
  baselineId: 'BaselineId',
20584
20625
  baselineName: 'BaselineName',
20626
+ baselineType: 'BaselineType',
20585
20627
  bizdate: 'Bizdate',
20586
20628
  buffer: 'Buffer',
20587
20629
  endCast: 'EndCast',
@@ -20601,6 +20643,7 @@ export class ListBaselineStatusesResponseBodyDataBaselineStatuses extends $dara.
20601
20643
  return {
20602
20644
  baselineId: 'number',
20603
20645
  baselineName: 'string',
20646
+ baselineType: 'string',
20604
20647
  bizdate: 'number',
20605
20648
  buffer: 'number',
20606
20649
  endCast: 'number',
@@ -26394,7 +26437,7 @@ export class ListDataSourcesResponseBodyDataDataSources extends $dara.Model {
26394
26437
  * "authType": "2"
26395
26438
  * }
26396
26439
  *
26397
- * * MySQL
26440
+ * * mysql
26398
26441
  *
26399
26442
  * {
26400
26443
  * "configType": "1",
@@ -26406,7 +26449,7 @@ export class ListDataSourcesResponseBodyDataDataSources extends $dara.Model {
26406
26449
  * "username": "mysql_db111"
26407
26450
  * }
26408
26451
  *
26409
- * * ApsaraDB RDS for SQL Server
26452
+ * * sqlserver
26410
26453
  *
26411
26454
  * {
26412
26455
  * "configType": "1",
@@ -26416,18 +26459,18 @@ export class ListDataSourcesResponseBodyDataDataSources extends $dara.Model {
26416
26459
  * "username": "sqlserver_db111"
26417
26460
  * }
26418
26461
  *
26419
- * * Object Storage Service (OSS)
26462
+ * * oss
26420
26463
  *
26421
26464
  * {
26422
- * "accessId": "LTAINbR9Uxxxx",
26423
- * "accessKey": "***",
26465
+ * "accessId": "***********",
26466
+ * "accessKey": "***********",
26424
26467
  * "bucket": "bigxxx1223",
26425
26468
  * "configType": "1",
26426
26469
  * "endpoint": "http://oss-cn-hangzhou.aliyuncs.com",
26427
26470
  * "tag": "public"
26428
26471
  * }
26429
26472
  *
26430
- * * ApsaraDB RDS for PostgreSQL
26473
+ * * postgresql
26431
26474
  *
26432
26475
  * {
26433
26476
  * "configType": "1",
@@ -26439,7 +26482,7 @@ export class ListDataSourcesResponseBodyDataDataSources extends $dara.Model {
26439
26482
  * "username": "cdp_xxx"
26440
26483
  * }
26441
26484
  *
26442
- * * AnalyticDB for MySQL
26485
+ * * ads
26443
26486
  *
26444
26487
  * {
26445
26488
  * "configType": "1",
@@ -27447,7 +27490,7 @@ export class ListFileVersionsResponseBodyDataFileVersions extends $dara.Model {
27447
27490
  export class ListFileVersionsResponseBodyData extends $dara.Model {
27448
27491
  /**
27449
27492
  * @remarks
27450
- * The details of the file version.
27493
+ * The details of file versions.
27451
27494
  */
27452
27495
  fileVersions?: ListFileVersionsResponseBodyDataFileVersions[];
27453
27496
  /**
@@ -27507,7 +27550,7 @@ export class ListFileVersionsResponseBodyData extends $dara.Model {
27507
27550
  export class ListFilesResponseBodyDataFiles extends $dara.Model {
27508
27551
  /**
27509
27552
  * @remarks
27510
- * The path of the folder where the file is located.
27553
+ * The path of the folder to which the file belongs.
27511
27554
  *
27512
27555
  * @example
27513
27556
  * Business_process/my_first_business_process/MaxCompute/ods_layer
@@ -28846,7 +28889,8 @@ export class ListLineageResponseBodyDataDataEntityListRelationList extends $dara
28846
28889
  * @remarks
28847
28890
  * The data channel. Valid values:
28848
28891
  *
28849
- * FIRST_PARTY: DataWorks platformTHIRD_PARTY: user registration
28892
+ * * **FIRST_PARTY: DataWorks platform**
28893
+ * * **THIRD_PARTY: user registration**
28850
28894
  *
28851
28895
  * @example
28852
28896
  * THIRD_PARTY
@@ -28854,7 +28898,7 @@ export class ListLineageResponseBodyDataDataEntityListRelationList extends $dara
28854
28898
  channel?: string;
28855
28899
  /**
28856
28900
  * @remarks
28857
- * The name of the data source.
28901
+ * The data source.
28858
28902
  *
28859
28903
  * @example
28860
28904
  * mysql
@@ -32689,7 +32733,7 @@ export class ListQualityRulesResponseBodyDataRules extends $dara.Model {
32689
32733
  checkerId?: number;
32690
32734
  /**
32691
32735
  * @remarks
32692
- * The description of the system defense rule.
32736
+ * The description of the monitoring rule.
32693
32737
  *
32694
32738
  * @example
32695
32739
  * Verify table rules
@@ -32973,7 +33017,7 @@ export class ListQualityRulesResponseBodyData extends $dara.Model {
32973
33017
  pageSize?: number;
32974
33018
  /**
32975
33019
  * @remarks
32976
- * The details of the monitoring rule.
33020
+ * The details of the monitoring rules.
32977
33021
  */
32978
33022
  rules?: ListQualityRulesResponseBodyDataRules[];
32979
33023
  /**
@@ -33730,7 +33774,7 @@ export class ListShiftPersonnelsResponseBodyPaging extends $dara.Model {
33730
33774
  pageSize?: number;
33731
33775
  /**
33732
33776
  * @remarks
33733
- * A list of on-duty engineers in a shift schedule.
33777
+ * The on-duty engineers in the shift schedule.
33734
33778
  */
33735
33779
  shiftPersons?: ListShiftPersonnelsResponseBodyPagingShiftPersons[];
33736
33780
  /**
@@ -34364,7 +34408,7 @@ export class ListTablesResponseBodyDataTableEntityListEntityContent extends $dar
34364
34408
  export class ListTablesResponseBodyDataTableEntityList extends $dara.Model {
34365
34409
  /**
34366
34410
  * @remarks
34367
- * Table entity information.
34411
+ * The information about the table.
34368
34412
  */
34369
34413
  entityContent?: ListTablesResponseBodyDataTableEntityListEntityContent;
34370
34414
  /**
@@ -34412,7 +34456,7 @@ export class ListTablesResponseBodyData extends $dara.Model {
34412
34456
  nextToken?: string;
34413
34457
  /**
34414
34458
  * @remarks
34415
- * Entity array.
34459
+ * An array of entities.
34416
34460
  */
34417
34461
  tableEntityList?: ListTablesResponseBodyDataTableEntityList[];
34418
34462
  /**
@@ -35872,7 +35916,7 @@ export class UpdateBaselineRequestAlertSettings extends $dara.Model {
35872
35916
  export class UpdateBaselineRequestOvertimeSettings extends $dara.Model {
35873
35917
  /**
35874
35918
  * @remarks
35875
- * The cycle that corresponds to the committed completion time. For a day-level baseline, set this parameter to 1. For an hour-level baseline, set this parameter to a value that does not exceed 24.
35919
+ * The cycle that corresponds to the committed completion time. For a day-level baseline, set this parameter to 1. For an hour-level baseline, set this parameter to a value that is no more than 24.
35876
35920
  *
35877
35921
  * @example
35878
35922
  * 1
@@ -42349,8 +42393,8 @@ export class CreateDataSourceRequest extends $dara.Model {
42349
42393
  * * odps
42350
42394
  *
42351
42395
  * {
42352
- * "accessId": "xssssss",
42353
- * "accessKey": "xsaxsaxsa",
42396
+ * "accessId": "*****",
42397
+ * "accessKey": "*****",
42354
42398
  * "authType": 2,
42355
42399
  * "endpoint": "http://service.odps.aliyun.com/api",
42356
42400
  * "project": "xsaxsax",
@@ -42384,8 +42428,8 @@ export class CreateDataSourceRequest extends $dara.Model {
42384
42428
  * * oss
42385
42429
  *
42386
42430
  * {
42387
- * "accessId": "sssssxx",
42388
- * "accessKey": "xsaxaxsaxs",
42431
+ * "accessId": "*****",
42432
+ * "accessKey": "*****",
42389
42433
  * "bucket": "xsa-xs-xs",
42390
42434
  * "endpoint": "http://oss-cn-shanghai.aliyuncs.com",
42391
42435
  * "tag": "public"
@@ -42442,11 +42486,11 @@ export class CreateDataSourceRequest extends $dara.Model {
42442
42486
  * * emr
42443
42487
  *
42444
42488
  * {
42445
- * "accessId": "xsaxsa",
42489
+ * "accessId": "*****",
42446
42490
  * "emrClusterId": "C-dsads",
42447
42491
  * "emrResourceQueueName": "default",
42448
42492
  * "emrEndpoint": "emr.aliyuncs.com",
42449
- * "accessKey": "dsadsad",
42493
+ * "accessKey": "*****",
42450
42494
  * "emrUserId": "224833315798889783",
42451
42495
  * "name": "sasdsadsa",
42452
42496
  * "emrAccessMode": "simple",
@@ -42489,8 +42533,8 @@ export class CreateDataSourceRequest extends $dara.Model {
42489
42533
  * * holo
42490
42534
  *
42491
42535
  * {
42492
- * "accessId": "xsaxsaxs",
42493
- * "accessKey": "xsaxsaxsa",
42536
+ * "accessId": "*****",
42537
+ * "accessKey": "*****",
42494
42538
  * "database": "xsaxsaxsa",
42495
42539
  * "instanceId": "xsaxa",
42496
42540
  * "tag": "aliyun"
@@ -43103,6 +43147,13 @@ export class CreateFileRequest extends $dara.Model {
43103
43147
  * false
43104
43148
  */
43105
43149
  ignoreParentSkipRunningProperty?: boolean;
43150
+ /**
43151
+ * @remarks
43152
+ * Custom image ID
43153
+ *
43154
+ * @example
43155
+ * m-bp1h4b5a8ogkbll2f3tr
43156
+ */
43106
43157
  imageId?: string;
43107
43158
  /**
43108
43159
  * @remarks
@@ -44620,6 +44671,7 @@ export class CreatePermissionApplyOrderRequest extends $dara.Model {
44620
44671
  * I need to use this table
44621
44672
  */
44622
44673
  applyReason?: string;
44674
+ applyType?: string;
44623
44675
  /**
44624
44676
  * @remarks
44625
44677
  * The ID of the Alibaba Cloud account for which you want to request permissions. If you want to request permissions for multiple Alibaba Cloud accounts, separate the IDs of the accounts with commas (,).
@@ -44630,6 +44682,7 @@ export class CreatePermissionApplyOrderRequest extends $dara.Model {
44630
44682
  * 267842600408993176,267842600408993177
44631
44683
  */
44632
44684
  applyUserIds?: string;
44685
+ catalogName?: string;
44633
44686
  /**
44634
44687
  * @remarks
44635
44688
  * The expiration time of the permissions that you request. This value is a UNIX timestamp. The default value is January 1, 2065. If LabelSecurity is disabled for the MaxCompute project in which you want to request permissions on the fields of a table, or the security level of the fields is 0 or is lower than or equal to the security level of the Alibaba Cloud account for which you want to request permissions, you can request only permanent permissions. You can go to the Workspace Management page in the DataWorks console, click MaxCompute Management in the left-side navigation pane, and then check whether column-level access control is enabled. You can go to your DataWorks workspace, view the security level of the fields in Data Map, and then view the security level of the Alibaba Cloud account on the User Management page.
@@ -44650,8 +44703,6 @@ export class CreatePermissionApplyOrderRequest extends $dara.Model {
44650
44703
  * @remarks
44651
44704
  * The name of the MaxCompute project in which you request permissions on the fields of a table.
44652
44705
  *
44653
- * This parameter is required.
44654
- *
44655
44706
  * @example
44656
44707
  * aMaxcomputeProjectName
44657
44708
  */
@@ -44668,8 +44719,6 @@ export class CreatePermissionApplyOrderRequest extends $dara.Model {
44668
44719
  * @remarks
44669
44720
  * The ID of the DataWorks workspace that is associated with the MaxCompute project in which you want to request permissions on the fields of a table. You can go to the SettingCenter page in the DataWorks console to view the workspace ID.
44670
44721
  *
44671
- * This parameter is required.
44672
- *
44673
44722
  * @example
44674
44723
  * 12345
44675
44724
  */
@@ -44678,7 +44727,9 @@ export class CreatePermissionApplyOrderRequest extends $dara.Model {
44678
44727
  return {
44679
44728
  applyObject: 'ApplyObject',
44680
44729
  applyReason: 'ApplyReason',
44730
+ applyType: 'ApplyType',
44681
44731
  applyUserIds: 'ApplyUserIds',
44732
+ catalogName: 'CatalogName',
44682
44733
  deadline: 'Deadline',
44683
44734
  engineType: 'EngineType',
44684
44735
  maxComputeProjectName: 'MaxComputeProjectName',
@@ -44691,7 +44742,9 @@ export class CreatePermissionApplyOrderRequest extends $dara.Model {
44691
44742
  return {
44692
44743
  applyObject: { 'type': 'array', 'itemType': CreatePermissionApplyOrderRequestApplyObject },
44693
44744
  applyReason: 'string',
44745
+ applyType: 'string',
44694
44746
  applyUserIds: 'string',
44747
+ catalogName: 'string',
44695
44748
  deadline: 'number',
44696
44749
  engineType: 'string',
44697
44750
  maxComputeProjectName: 'string',
@@ -65596,7 +65649,7 @@ export class GetMigrationSummaryRequest extends $dara.Model {
65596
65649
  * @remarks
65597
65650
  * The migration task ID.
65598
65651
  *
65599
- * You can call the [CreateImportMigration](https://help.aliyun.com/document_detail/2809123.html) operation to obtain the ID of the import task and call the [CreateExportMigration](https://help.aliyun.com/document_detail/3241603.html) operation to obtain the ID of the export task.
65652
+ * You can call the [CreateImportMigration](https://help.aliyun.com/document_detail/2780280.html) operation to obtain the ID of the import task and call the [CreateExportMigration](https://help.aliyun.com/document_detail/2780281.html) operation to obtain the ID of the export task.
65600
65653
  *
65601
65654
  * This parameter is required.
65602
65655
  *
@@ -68626,7 +68679,7 @@ export class GetTopicInfluenceRequest extends $dara.Model {
68626
68679
  export class GetTopicInfluenceResponseBody extends $dara.Model {
68627
68680
  /**
68628
68681
  * @remarks
68629
- * The list of baseline instances affected by the event.
68682
+ * The data returned.
68630
68683
  */
68631
68684
  data?: GetTopicInfluenceResponseBodyData;
68632
68685
  /**
@@ -74187,7 +74240,7 @@ export class ListFileVersionsRequest extends $dara.Model {
74187
74240
  export class ListFileVersionsResponseBody extends $dara.Model {
74188
74241
  /**
74189
74242
  * @remarks
74190
- * The file versions returned.
74243
+ * The file versions.
74191
74244
  */
74192
74245
  data?: ListFileVersionsResponseBodyData;
74193
74246
  /**
@@ -74310,7 +74363,7 @@ export class ListFilesRequest extends $dara.Model {
74310
74363
  exactFileName?: string;
74311
74364
  /**
74312
74365
  * @remarks
74313
- * The path of the files.
74366
+ * The path of the folder to which files belong.
74314
74367
  *
74315
74368
  * @example
74316
74369
  * Business_process/my_first_business_process/MaxCompute/ods_layer
@@ -74342,6 +74395,7 @@ export class ListFilesRequest extends $dara.Model {
74342
74395
  * ods
74343
74396
  */
74344
74397
  keyword?: string;
74398
+ lastEditUser?: string;
74345
74399
  /**
74346
74400
  * @remarks
74347
74401
  * Whether the query result contains the path of the folder where the file is located.
@@ -74432,6 +74486,7 @@ export class ListFilesRequest extends $dara.Model {
74432
74486
  fileIdIn: 'FileIdIn',
74433
74487
  fileTypes: 'FileTypes',
74434
74488
  keyword: 'Keyword',
74489
+ lastEditUser: 'LastEditUser',
74435
74490
  needAbsoluteFolderPath: 'NeedAbsoluteFolderPath',
74436
74491
  needContent: 'NeedContent',
74437
74492
  nodeId: 'NodeId',
@@ -74451,6 +74506,7 @@ export class ListFilesRequest extends $dara.Model {
74451
74506
  fileIdIn: 'string',
74452
74507
  fileTypes: 'string',
74453
74508
  keyword: 'string',
74509
+ lastEditUser: 'string',
74454
74510
  needAbsoluteFolderPath: 'boolean',
74455
74511
  needContent: 'boolean',
74456
74512
  nodeId: 'number',
@@ -75532,9 +75588,10 @@ export class ListInstancesResponse extends $dara.Model {
75532
75588
  export class ListLineageRequest extends $dara.Model {
75533
75589
  /**
75534
75590
  * @remarks
75535
- * The lineage type. Valid values:\\
75536
- * up: ancestor lineage\\
75537
- * down: descendant lineage
75591
+ * The lineage type. Valid values:
75592
+ *
75593
+ * * up: ancestor lineage
75594
+ * * down: descendant lineage
75538
75595
  *
75539
75596
  * This parameter is required.
75540
75597
  *
@@ -75647,9 +75704,8 @@ export class ListLineageResponseBody extends $dara.Model {
75647
75704
  * @remarks
75648
75705
  * Indicates whether the request was successful. Valid values:
75649
75706
  *
75650
- * true
75651
- *
75652
- * false
75707
+ * * true
75708
+ * * false
75653
75709
  *
75654
75710
  * @example
75655
75711
  * true
@@ -77669,6 +77725,8 @@ export class ListNodesByOutputResponse extends $dara.Model {
77669
77725
  }
77670
77726
 
77671
77727
  export class ListPermissionApplyOrdersRequest extends $dara.Model {
77728
+ applyType?: string;
77729
+ catalogName?: string;
77672
77730
  /**
77673
77731
  * @remarks
77674
77732
  * The end of the time range to query. You can query all the permissions request orders that have been submitted before the time. The parameter value is a UNIX timestamp. If you do not specify the parameter, all permission request orders that are submitted before the current time are queried.
@@ -77681,8 +77739,6 @@ export class ListPermissionApplyOrdersRequest extends $dara.Model {
77681
77739
  * @remarks
77682
77740
  * The type of the compute engine with which the permission request order is associated. The parameter value is odps and cannot be changed. This value indicates that you can request permissions only on fields of tables in the MaxCompute compute engine.
77683
77741
  *
77684
- * This parameter is required.
77685
- *
77686
77742
  * @example
77687
77743
  * odps
77688
77744
  */
@@ -77721,8 +77777,6 @@ export class ListPermissionApplyOrdersRequest extends $dara.Model {
77721
77777
  * @remarks
77722
77778
  * The type of the permission request order. The parameter value is 1 and cannot be changed. This value indicates ACL-based authorization.
77723
77779
  *
77724
- * This parameter is required.
77725
- *
77726
77780
  * @example
77727
77781
  * 1
77728
77782
  */
@@ -77782,6 +77836,8 @@ export class ListPermissionApplyOrdersRequest extends $dara.Model {
77782
77836
  workspaceId?: number;
77783
77837
  static names(): { [key: string]: string } {
77784
77838
  return {
77839
+ applyType: 'ApplyType',
77840
+ catalogName: 'CatalogName',
77785
77841
  endTime: 'EndTime',
77786
77842
  engineType: 'EngineType',
77787
77843
  flowStatus: 'FlowStatus',
@@ -77798,6 +77854,8 @@ export class ListPermissionApplyOrdersRequest extends $dara.Model {
77798
77854
 
77799
77855
  static types(): { [key: string]: any } {
77800
77856
  return {
77857
+ applyType: 'string',
77858
+ catalogName: 'string',
77801
77859
  endTime: 'number',
77802
77860
  engineType: 'string',
77803
77861
  flowStatus: 'number',
@@ -79916,7 +79974,7 @@ export class ListShiftPersonnelsRequest extends $dara.Model {
79916
79974
  export class ListShiftPersonnelsResponseBody extends $dara.Model {
79917
79975
  /**
79918
79976
  * @remarks
79919
- * The pagination data.
79977
+ * The pagination information.
79920
79978
  */
79921
79979
  paging?: ListShiftPersonnelsResponseBodyPaging;
79922
79980
  /**
@@ -80051,7 +80109,7 @@ export class ListShiftSchedulesRequest extends $dara.Model {
80051
80109
  export class ListShiftSchedulesResponseBody extends $dara.Model {
80052
80110
  /**
80053
80111
  * @remarks
80054
- * The pagination data.
80112
+ * The pagination information.
80055
80113
  */
80056
80114
  paging?: ListShiftSchedulesResponseBodyPaging;
80057
80115
  /**
@@ -80947,180 +81005,6 @@ export class ListTopicsResponse extends $dara.Model {
80947
81005
  }
80948
81006
  }
80949
81007
 
80950
- export class MountDirectoryRequest extends $dara.Model {
80951
- /**
80952
- * @remarks
80953
- * The ID of the directory that you want to add to the left-side navigation pane of DataAnalysis. This parameter is used together with the TargetType parameter. For example, if you set the TargetType parameter to META_ALBUM, you must set the TargetId parameter to the ID of the related data album. You can call the [ListMetaCollections](https://help.aliyun.com/document_detail/469938.html) operation to obtain the ID of the data album. The ID is indicated by the QualifiedName parameter.
80954
- *
80955
- * @example
80956
- * album.339
80957
- */
80958
- targetId?: string;
80959
- /**
80960
- * @remarks
80961
- * The type of the directory that you want to add to the left-side navigation pane of DataAnalysis. Example: META_ALBUM, which indicates the data album.
80962
- *
80963
- * @example
80964
- * META_ALBUM
80965
- */
80966
- targetType?: string;
80967
- /**
80968
- * @remarks
80969
- * The ID of the user in the tenant.
80970
- *
80971
- * * If you do not configure TargetUserId, the specified directory belongs to you.
80972
- * * If you configure TargetUserId, the specified directory belongs to the user specified by using TargetUserId.
80973
- *
80974
- * @example
80975
- * 1234567890
80976
- */
80977
- targetUserId?: string;
80978
- static names(): { [key: string]: string } {
80979
- return {
80980
- targetId: 'TargetId',
80981
- targetType: 'TargetType',
80982
- targetUserId: 'TargetUserId',
80983
- };
80984
- }
80985
-
80986
- static types(): { [key: string]: any } {
80987
- return {
80988
- targetId: 'string',
80989
- targetType: 'string',
80990
- targetUserId: 'string',
80991
- };
80992
- }
80993
-
80994
- validate() {
80995
- super.validate();
80996
- }
80997
-
80998
- constructor(map?: { [key: string]: any }) {
80999
- super(map);
81000
- }
81001
- }
81002
-
81003
- export class MountDirectoryResponseBody extends $dara.Model {
81004
- /**
81005
- * @remarks
81006
- * The number of directories that are added. Valid values:
81007
- *
81008
- * * 0: No directories are added. The left-side navigation pane may contain the specified directory.
81009
- * * 1: One directory is added.
81010
- *
81011
- * @example
81012
- * 1
81013
- */
81014
- data?: number;
81015
- /**
81016
- * @remarks
81017
- * The error code. The value 200 indicates that the task is successful.
81018
- *
81019
- * @example
81020
- * 200
81021
- */
81022
- errorCode?: string;
81023
- /**
81024
- * @remarks
81025
- * The error message.
81026
- *
81027
- * @example
81028
- * You have no permission.
81029
- */
81030
- errorMessage?: string;
81031
- /**
81032
- * @remarks
81033
- * The HTTP status code.
81034
- *
81035
- * @example
81036
- * 200
81037
- */
81038
- httpStatusCode?: number;
81039
- /**
81040
- * @remarks
81041
- * The request ID. You can use the ID to troubleshoot issues.
81042
- *
81043
- * @example
81044
- * C27D4FB9-C59B-5E17-BD6C-1099B9D6A381
81045
- */
81046
- requestId?: string;
81047
- /**
81048
- * @remarks
81049
- * Indicates whether the request was successful. Valid values:
81050
- *
81051
- * * true
81052
- * * false
81053
- *
81054
- * @example
81055
- * true
81056
- */
81057
- success?: boolean;
81058
- static names(): { [key: string]: string } {
81059
- return {
81060
- data: 'Data',
81061
- errorCode: 'ErrorCode',
81062
- errorMessage: 'ErrorMessage',
81063
- httpStatusCode: 'HttpStatusCode',
81064
- requestId: 'RequestId',
81065
- success: 'Success',
81066
- };
81067
- }
81068
-
81069
- static types(): { [key: string]: any } {
81070
- return {
81071
- data: 'number',
81072
- errorCode: 'string',
81073
- errorMessage: 'string',
81074
- httpStatusCode: 'number',
81075
- requestId: 'string',
81076
- success: 'boolean',
81077
- };
81078
- }
81079
-
81080
- validate() {
81081
- super.validate();
81082
- }
81083
-
81084
- constructor(map?: { [key: string]: any }) {
81085
- super(map);
81086
- }
81087
- }
81088
-
81089
- export class MountDirectoryResponse extends $dara.Model {
81090
- headers?: { [key: string]: string };
81091
- statusCode?: number;
81092
- body?: MountDirectoryResponseBody;
81093
- static names(): { [key: string]: string } {
81094
- return {
81095
- headers: 'headers',
81096
- statusCode: 'statusCode',
81097
- body: 'body',
81098
- };
81099
- }
81100
-
81101
- static types(): { [key: string]: any } {
81102
- return {
81103
- headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
81104
- statusCode: 'number',
81105
- body: MountDirectoryResponseBody,
81106
- };
81107
- }
81108
-
81109
- validate() {
81110
- if(this.headers) {
81111
- $dara.Model.validateMap(this.headers);
81112
- }
81113
- if(this.body && typeof (this.body as any).validate === 'function') {
81114
- (this.body as any).validate();
81115
- }
81116
- super.validate();
81117
- }
81118
-
81119
- constructor(map?: { [key: string]: any }) {
81120
- super(map);
81121
- }
81122
- }
81123
-
81124
81008
  export class OfflineNodeRequest extends $dara.Model {
81125
81009
  /**
81126
81010
  * @remarks
@@ -83668,174 +83552,6 @@ export class ResumeInstanceResponse extends $dara.Model {
83668
83552
  }
83669
83553
  }
83670
83554
 
83671
- export class RevokeColumnPermissionRequest extends $dara.Model {
83672
- /**
83673
- * @remarks
83674
- * The fields for which you want to revoke permissions from a user. Separate multiple fields with commas (,). You can revoke the permissions on the fields only in MaxCompute tables.
83675
- *
83676
- * This parameter is required.
83677
- *
83678
- * @example
83679
- * id,name
83680
- */
83681
- columns?: string;
83682
- /**
83683
- * @remarks
83684
- * The name of the MaxCompute project to which the fields belong. You can log on to the DataWorks console and go to the SettingCenter page to obtain the name of the MaxCompute project that you associate with the workspace.
83685
- *
83686
- * This parameter is required.
83687
- *
83688
- * @example
83689
- * aMaxcomputeProjectName
83690
- */
83691
- maxComputeProjectName?: string;
83692
- /**
83693
- * @remarks
83694
- * The ID of the Alibaba Cloud account of the user from which you want to revoke permissions. You can log on to the DataWorks console and go to the Security Settings page to obtain the ID. You must specify either this parameter or the RevokeUserName parameter. If you specify both this parameter and the RevokeUserName parameter and the parameter values are different, the value of this parameter prevails.
83695
- *
83696
- * @example
83697
- * 267842600408993176
83698
- */
83699
- revokeUserId?: string;
83700
- /**
83701
- * @remarks
83702
- * The Alibaba Cloud account from which you want to revoke permissions. Specify this parameter in the format that is the same as the format of the account used to access the MaxCompute project.
83703
- *
83704
- * * If the account is an Alibaba Cloud account, the value is in the ALIYUN$+Account name format.
83705
- * * If the account is a RAM user, the value is in the RAM$+Account name format.
83706
- *
83707
- * You must specify either this parameter or the RevokeUserId parameter. If you specify both this parameter and the RevokeUserId parameter and the parameter values are different, the value of the RevokeUserId parameter prevails.
83708
- *
83709
- * @example
83710
- * RAM$dataworks_3h1_1:stsramuser
83711
- */
83712
- revokeUserName?: string;
83713
- /**
83714
- * @remarks
83715
- * The name of the MaxCompute table to which the fields belong. You can call the [SearchMetaTables](https://help.aliyun.com/document_detail/173919.html) operation to query the name of the MaxCompute table.
83716
- *
83717
- * This parameter is required.
83718
- *
83719
- * @example
83720
- * aTableName
83721
- */
83722
- tableName?: string;
83723
- /**
83724
- * @remarks
83725
- * The ID of the DataWorks workspace with which the MaxCompute project is associated. You can log on to the DataWorks console and go to the Workspace page to obtain the ID.
83726
- *
83727
- * This parameter is required.
83728
- *
83729
- * @example
83730
- * 12345
83731
- */
83732
- workspaceId?: number;
83733
- static names(): { [key: string]: string } {
83734
- return {
83735
- columns: 'Columns',
83736
- maxComputeProjectName: 'MaxComputeProjectName',
83737
- revokeUserId: 'RevokeUserId',
83738
- revokeUserName: 'RevokeUserName',
83739
- tableName: 'TableName',
83740
- workspaceId: 'WorkspaceId',
83741
- };
83742
- }
83743
-
83744
- static types(): { [key: string]: any } {
83745
- return {
83746
- columns: 'string',
83747
- maxComputeProjectName: 'string',
83748
- revokeUserId: 'string',
83749
- revokeUserName: 'string',
83750
- tableName: 'string',
83751
- workspaceId: 'number',
83752
- };
83753
- }
83754
-
83755
- validate() {
83756
- super.validate();
83757
- }
83758
-
83759
- constructor(map?: { [key: string]: any }) {
83760
- super(map);
83761
- }
83762
- }
83763
-
83764
- export class RevokeColumnPermissionResponseBody extends $dara.Model {
83765
- /**
83766
- * @remarks
83767
- * The request ID.
83768
- *
83769
- * @example
83770
- * 0bc1ec92159376****
83771
- */
83772
- requestId?: string;
83773
- /**
83774
- * @remarks
83775
- * Indicates whether the permissions are revoked.
83776
- *
83777
- * @example
83778
- * true
83779
- */
83780
- revokeSuccess?: boolean;
83781
- static names(): { [key: string]: string } {
83782
- return {
83783
- requestId: 'RequestId',
83784
- revokeSuccess: 'RevokeSuccess',
83785
- };
83786
- }
83787
-
83788
- static types(): { [key: string]: any } {
83789
- return {
83790
- requestId: 'string',
83791
- revokeSuccess: 'boolean',
83792
- };
83793
- }
83794
-
83795
- validate() {
83796
- super.validate();
83797
- }
83798
-
83799
- constructor(map?: { [key: string]: any }) {
83800
- super(map);
83801
- }
83802
- }
83803
-
83804
- export class RevokeColumnPermissionResponse extends $dara.Model {
83805
- headers?: { [key: string]: string };
83806
- statusCode?: number;
83807
- body?: RevokeColumnPermissionResponseBody;
83808
- static names(): { [key: string]: string } {
83809
- return {
83810
- headers: 'headers',
83811
- statusCode: 'statusCode',
83812
- body: 'body',
83813
- };
83814
- }
83815
-
83816
- static types(): { [key: string]: any } {
83817
- return {
83818
- headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
83819
- statusCode: 'number',
83820
- body: RevokeColumnPermissionResponseBody,
83821
- };
83822
- }
83823
-
83824
- validate() {
83825
- if(this.headers) {
83826
- $dara.Model.validateMap(this.headers);
83827
- }
83828
- if(this.body && typeof (this.body as any).validate === 'function') {
83829
- (this.body as any).validate();
83830
- }
83831
- super.validate();
83832
- }
83833
-
83834
- constructor(map?: { [key: string]: any }) {
83835
- super(map);
83836
- }
83837
- }
83838
-
83839
83555
  export class RevokeTablePermissionRequest extends $dara.Model {
83840
83556
  /**
83841
83557
  * @remarks
@@ -88131,180 +87847,6 @@ export class TopTenErrorTimesInstanceResponse extends $dara.Model {
88131
87847
  }
88132
87848
  }
88133
87849
 
88134
- export class UmountDirectoryRequest extends $dara.Model {
88135
- /**
88136
- * @remarks
88137
- * The ID of the directory that you want to remove from the left-side navigation pane of DataAnalysis. This parameter is used together with the TargetType parameter. For example, if you set the TargetType parameter to META_ALBUM, you must set the TargetId parameter to the ID of the metadata data album. You can call the [ListMetaCollections](https://help.aliyun.com/document_detail/469938.html) operation to obtain the ID of the data album. The ID is indicated by the QualifiedName parameter.
88138
- *
88139
- * @example
88140
- * album.339
88141
- */
88142
- targetId?: string;
88143
- /**
88144
- * @remarks
88145
- * The type of the directory that you want to remove from the left-side navigation pane of DataAnalysis. Example: META_ALBUM, which indicates the metadata data album.
88146
- *
88147
- * @example
88148
- * META_ALBUM
88149
- */
88150
- targetType?: string;
88151
- /**
88152
- * @remarks
88153
- * The ID of the user in the tenant.
88154
- *
88155
- * * If you do not configure TargetUserId, the directory belongs to you.
88156
- * * If you configure TargetUserId, the directory belongs to the user specified by using TargetUserId.
88157
- *
88158
- * @example
88159
- * 1234567890
88160
- */
88161
- targetUserId?: string;
88162
- static names(): { [key: string]: string } {
88163
- return {
88164
- targetId: 'TargetId',
88165
- targetType: 'TargetType',
88166
- targetUserId: 'TargetUserId',
88167
- };
88168
- }
88169
-
88170
- static types(): { [key: string]: any } {
88171
- return {
88172
- targetId: 'string',
88173
- targetType: 'string',
88174
- targetUserId: 'string',
88175
- };
88176
- }
88177
-
88178
- validate() {
88179
- super.validate();
88180
- }
88181
-
88182
- constructor(map?: { [key: string]: any }) {
88183
- super(map);
88184
- }
88185
- }
88186
-
88187
- export class UmountDirectoryResponseBody extends $dara.Model {
88188
- /**
88189
- * @remarks
88190
- * The number of directories that are removed. Valid values:
88191
- *
88192
- * * 0: No directories are removed. The left-side navigation pane may not contain the specified directory.
88193
- * * 1: One directory is removed.
88194
- *
88195
- * @example
88196
- * 1
88197
- */
88198
- data?: number;
88199
- /**
88200
- * @remarks
88201
- * The error code. The value 200 indicates that the task is successful.
88202
- *
88203
- * @example
88204
- * 200
88205
- */
88206
- errorCode?: string;
88207
- /**
88208
- * @remarks
88209
- * The error message.
88210
- *
88211
- * @example
88212
- * You have no permission.
88213
- */
88214
- errorMessage?: string;
88215
- /**
88216
- * @remarks
88217
- * The HTTP status code. The value 200 indicates that the request was successful.
88218
- *
88219
- * @example
88220
- * 200
88221
- */
88222
- httpStatusCode?: number;
88223
- /**
88224
- * @remarks
88225
- * The request ID. You can use the ID to troubleshoot issues.
88226
- *
88227
- * @example
88228
- * 0bc5aa2716455247597991794e65bd
88229
- */
88230
- requestId?: string;
88231
- /**
88232
- * @remarks
88233
- * Indicates whether the request was successful. Valid values:
88234
- *
88235
- * * true
88236
- * * false
88237
- *
88238
- * @example
88239
- * true
88240
- */
88241
- success?: boolean;
88242
- static names(): { [key: string]: string } {
88243
- return {
88244
- data: 'Data',
88245
- errorCode: 'ErrorCode',
88246
- errorMessage: 'ErrorMessage',
88247
- httpStatusCode: 'HttpStatusCode',
88248
- requestId: 'RequestId',
88249
- success: 'Success',
88250
- };
88251
- }
88252
-
88253
- static types(): { [key: string]: any } {
88254
- return {
88255
- data: 'number',
88256
- errorCode: 'string',
88257
- errorMessage: 'string',
88258
- httpStatusCode: 'number',
88259
- requestId: 'string',
88260
- success: 'boolean',
88261
- };
88262
- }
88263
-
88264
- validate() {
88265
- super.validate();
88266
- }
88267
-
88268
- constructor(map?: { [key: string]: any }) {
88269
- super(map);
88270
- }
88271
- }
88272
-
88273
- export class UmountDirectoryResponse extends $dara.Model {
88274
- headers?: { [key: string]: string };
88275
- statusCode?: number;
88276
- body?: UmountDirectoryResponseBody;
88277
- static names(): { [key: string]: string } {
88278
- return {
88279
- headers: 'headers',
88280
- statusCode: 'statusCode',
88281
- body: 'body',
88282
- };
88283
- }
88284
-
88285
- static types(): { [key: string]: any } {
88286
- return {
88287
- headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
88288
- statusCode: 'number',
88289
- body: UmountDirectoryResponseBody,
88290
- };
88291
- }
88292
-
88293
- validate() {
88294
- if(this.headers) {
88295
- $dara.Model.validateMap(this.headers);
88296
- }
88297
- if(this.body && typeof (this.body as any).validate === 'function') {
88298
- (this.body as any).validate();
88299
- }
88300
- super.validate();
88301
- }
88302
-
88303
- constructor(map?: { [key: string]: any }) {
88304
- super(map);
88305
- }
88306
- }
88307
-
88308
87850
  export class UpdateBaselineRequest extends $dara.Model {
88309
87851
  /**
88310
87852
  * @remarks
@@ -90937,7 +90479,7 @@ export class UpdateFileRequest extends $dara.Model {
90937
90479
  advancedSettings?: string;
90938
90480
  /**
90939
90481
  * @remarks
90940
- * Whether the scheduling configuration takes effect immediately after the release.
90482
+ * Specifies whether scheduling configurations immediately take effect after the node is deployed.
90941
90483
  *
90942
90484
  * @example
90943
90485
  * true
@@ -91096,12 +90638,19 @@ export class UpdateFileRequest extends $dara.Model {
91096
90638
  fileName?: string;
91097
90639
  /**
91098
90640
  * @remarks
91099
- * Scheduling configuration-> previous cycle-> whether to skip the upstream empty run attribute.
90641
+ * Specifies whether to skip the dry-run property of the ancestor nodes of the node. This parameter corresponds to the Skip the dry-run property of the ancestor node parameter that is displayed after you configure the Depend On parameter in the Dependencies section of the Properties tab in the DataWorks console.
91100
90642
  *
91101
90643
  * @example
91102
90644
  * true
91103
90645
  */
91104
90646
  ignoreParentSkipRunningProperty?: boolean;
90647
+ /**
90648
+ * @remarks
90649
+ * The ID of the custom image.
90650
+ *
90651
+ * @example
90652
+ * m-uf6d7npxk1hhek8ng0cb
90653
+ */
91105
90654
  imageId?: string;
91106
90655
  /**
91107
90656
  * @remarks
@@ -96142,6 +95691,9 @@ export default class Client extends OpenApi {
96142
95691
  /**
96143
95692
  * Creates a data synchronization task.
96144
95693
  *
95694
+ * @remarks
95695
+ * You cannot configure scheduling properties for a task by calling this operation. If you want to configure scheduling properties for a task, you can call the UpdateFile operation.[](~~2780137~~)
95696
+ *
96145
95697
  * @param request - CreateDISyncTaskRequest
96146
95698
  * @param runtime - runtime options for this request RuntimeOptions
96147
95699
  * @returns CreateDISyncTaskResponse
@@ -96200,6 +95752,9 @@ export default class Client extends OpenApi {
96200
95752
  /**
96201
95753
  * Creates a data synchronization task.
96202
95754
  *
95755
+ * @remarks
95756
+ * You cannot configure scheduling properties for a task by calling this operation. If you want to configure scheduling properties for a task, you can call the UpdateFile operation.[](~~2780137~~)
95757
+ *
96203
95758
  * @param request - CreateDISyncTaskRequest
96204
95759
  * @returns CreateDISyncTaskResponse
96205
95760
  */
@@ -97451,10 +97006,18 @@ export default class Client extends OpenApi {
97451
97006
  query["ApplyReason"] = request.applyReason;
97452
97007
  }
97453
97008
 
97009
+ if (!$dara.isNull(request.applyType)) {
97010
+ query["ApplyType"] = request.applyType;
97011
+ }
97012
+
97454
97013
  if (!$dara.isNull(request.applyUserIds)) {
97455
97014
  query["ApplyUserIds"] = request.applyUserIds;
97456
97015
  }
97457
97016
 
97017
+ if (!$dara.isNull(request.catalogName)) {
97018
+ query["CatalogName"] = request.catalogName;
97019
+ }
97020
+
97458
97021
  if (!$dara.isNull(request.deadline)) {
97459
97022
  query["Deadline"] = request.deadline;
97460
97023
  }
@@ -107494,6 +107057,10 @@ export default class Client extends OpenApi {
107494
107057
  body["Keyword"] = request.keyword;
107495
107058
  }
107496
107059
 
107060
+ if (!$dara.isNull(request.lastEditUser)) {
107061
+ body["LastEditUser"] = request.lastEditUser;
107062
+ }
107063
+
107497
107064
  if (!$dara.isNull(request.needAbsoluteFolderPath)) {
107498
107065
  body["NeedAbsoluteFolderPath"] = request.needAbsoluteFolderPath;
107499
107066
  }
@@ -108640,6 +108207,14 @@ export default class Client extends OpenApi {
108640
108207
  async listPermissionApplyOrdersWithOptions(request: ListPermissionApplyOrdersRequest, runtime: $dara.RuntimeOptions): Promise<ListPermissionApplyOrdersResponse> {
108641
108208
  request.validate();
108642
108209
  let query = { };
108210
+ if (!$dara.isNull(request.applyType)) {
108211
+ query["ApplyType"] = request.applyType;
108212
+ }
108213
+
108214
+ if (!$dara.isNull(request.catalogName)) {
108215
+ query["CatalogName"] = request.catalogName;
108216
+ }
108217
+
108643
108218
  if (!$dara.isNull(request.endTime)) {
108644
108219
  query["EndTime"] = request.endTime;
108645
108220
  }
@@ -109809,61 +109384,6 @@ export default class Client extends OpenApi {
109809
109384
  return await this.listTopicsWithOptions(request, runtime);
109810
109385
  }
109811
109386
 
109812
- /**
109813
- * Adds a directory to the left-side navigation pane of DataAnalysis.
109814
- *
109815
- * @param request - MountDirectoryRequest
109816
- * @param runtime - runtime options for this request RuntimeOptions
109817
- * @returns MountDirectoryResponse
109818
- */
109819
- async mountDirectoryWithOptions(request: MountDirectoryRequest, runtime: $dara.RuntimeOptions): Promise<MountDirectoryResponse> {
109820
- request.validate();
109821
- let body : {[key: string ]: any} = { };
109822
- if (!$dara.isNull(request.targetId)) {
109823
- body["TargetId"] = request.targetId;
109824
- }
109825
-
109826
- if (!$dara.isNull(request.targetType)) {
109827
- body["TargetType"] = request.targetType;
109828
- }
109829
-
109830
- if (!$dara.isNull(request.targetUserId)) {
109831
- body["TargetUserId"] = request.targetUserId;
109832
- }
109833
-
109834
- let req = new $OpenApiUtil.OpenApiRequest({
109835
- body: OpenApiUtil.parseToMap(body),
109836
- });
109837
- let params = new $OpenApiUtil.Params({
109838
- action: "MountDirectory",
109839
- version: "2020-05-18",
109840
- protocol: "HTTPS",
109841
- pathname: "/",
109842
- method: "POST",
109843
- authType: "AK",
109844
- style: "RPC",
109845
- reqBodyType: "formData",
109846
- bodyType: "json",
109847
- });
109848
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
109849
- return $dara.cast<MountDirectoryResponse>(await this.callApi(params, req, runtime), new MountDirectoryResponse({}));
109850
- } else {
109851
- return $dara.cast<MountDirectoryResponse>(await this.execute(params, req, runtime), new MountDirectoryResponse({}));
109852
- }
109853
-
109854
- }
109855
-
109856
- /**
109857
- * Adds a directory to the left-side navigation pane of DataAnalysis.
109858
- *
109859
- * @param request - MountDirectoryRequest
109860
- * @returns MountDirectoryResponse
109861
- */
109862
- async mountDirectory(request: MountDirectoryRequest): Promise<MountDirectoryResponse> {
109863
- let runtime = new $dara.RuntimeOptions({ });
109864
- return await this.mountDirectoryWithOptions(request, runtime);
109865
- }
109866
-
109867
109387
  /**
109868
109388
  * Undeploys a node.
109869
109389
  *
@@ -110726,73 +110246,6 @@ export default class Client extends OpenApi {
110726
110246
  return await this.resumeInstanceWithOptions(request, runtime);
110727
110247
  }
110728
110248
 
110729
- /**
110730
- * Revokes permissions on table fields from a user.
110731
- *
110732
- * @param request - RevokeColumnPermissionRequest
110733
- * @param runtime - runtime options for this request RuntimeOptions
110734
- * @returns RevokeColumnPermissionResponse
110735
- */
110736
- async revokeColumnPermissionWithOptions(request: RevokeColumnPermissionRequest, runtime: $dara.RuntimeOptions): Promise<RevokeColumnPermissionResponse> {
110737
- request.validate();
110738
- let query = { };
110739
- if (!$dara.isNull(request.columns)) {
110740
- query["Columns"] = request.columns;
110741
- }
110742
-
110743
- if (!$dara.isNull(request.maxComputeProjectName)) {
110744
- query["MaxComputeProjectName"] = request.maxComputeProjectName;
110745
- }
110746
-
110747
- if (!$dara.isNull(request.revokeUserId)) {
110748
- query["RevokeUserId"] = request.revokeUserId;
110749
- }
110750
-
110751
- if (!$dara.isNull(request.revokeUserName)) {
110752
- query["RevokeUserName"] = request.revokeUserName;
110753
- }
110754
-
110755
- if (!$dara.isNull(request.tableName)) {
110756
- query["TableName"] = request.tableName;
110757
- }
110758
-
110759
- if (!$dara.isNull(request.workspaceId)) {
110760
- query["WorkspaceId"] = request.workspaceId;
110761
- }
110762
-
110763
- let req = new $OpenApiUtil.OpenApiRequest({
110764
- query: OpenApiUtil.query(query),
110765
- });
110766
- let params = new $OpenApiUtil.Params({
110767
- action: "RevokeColumnPermission",
110768
- version: "2020-05-18",
110769
- protocol: "HTTPS",
110770
- pathname: "/",
110771
- method: "POST",
110772
- authType: "AK",
110773
- style: "RPC",
110774
- reqBodyType: "formData",
110775
- bodyType: "json",
110776
- });
110777
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
110778
- return $dara.cast<RevokeColumnPermissionResponse>(await this.callApi(params, req, runtime), new RevokeColumnPermissionResponse({}));
110779
- } else {
110780
- return $dara.cast<RevokeColumnPermissionResponse>(await this.execute(params, req, runtime), new RevokeColumnPermissionResponse({}));
110781
- }
110782
-
110783
- }
110784
-
110785
- /**
110786
- * Revokes permissions on table fields from a user.
110787
- *
110788
- * @param request - RevokeColumnPermissionRequest
110789
- * @returns RevokeColumnPermissionResponse
110790
- */
110791
- async revokeColumnPermission(request: RevokeColumnPermissionRequest): Promise<RevokeColumnPermissionResponse> {
110792
- let runtime = new $dara.RuntimeOptions({ });
110793
- return await this.revokeColumnPermissionWithOptions(request, runtime);
110794
- }
110795
-
110796
110249
  /**
110797
110250
  * Revokes permissions on a table from a user.
110798
110251
  *
@@ -112371,61 +111824,6 @@ export default class Client extends OpenApi {
112371
111824
  return await this.topTenErrorTimesInstanceWithOptions(request, runtime);
112372
111825
  }
112373
111826
 
112374
- /**
112375
- * Removes a directory from the left-side navigation pane of DataAnalysis.
112376
- *
112377
- * @param request - UmountDirectoryRequest
112378
- * @param runtime - runtime options for this request RuntimeOptions
112379
- * @returns UmountDirectoryResponse
112380
- */
112381
- async umountDirectoryWithOptions(request: UmountDirectoryRequest, runtime: $dara.RuntimeOptions): Promise<UmountDirectoryResponse> {
112382
- request.validate();
112383
- let body : {[key: string ]: any} = { };
112384
- if (!$dara.isNull(request.targetId)) {
112385
- body["TargetId"] = request.targetId;
112386
- }
112387
-
112388
- if (!$dara.isNull(request.targetType)) {
112389
- body["TargetType"] = request.targetType;
112390
- }
112391
-
112392
- if (!$dara.isNull(request.targetUserId)) {
112393
- body["TargetUserId"] = request.targetUserId;
112394
- }
112395
-
112396
- let req = new $OpenApiUtil.OpenApiRequest({
112397
- body: OpenApiUtil.parseToMap(body),
112398
- });
112399
- let params = new $OpenApiUtil.Params({
112400
- action: "UmountDirectory",
112401
- version: "2020-05-18",
112402
- protocol: "HTTPS",
112403
- pathname: "/",
112404
- method: "POST",
112405
- authType: "AK",
112406
- style: "RPC",
112407
- reqBodyType: "formData",
112408
- bodyType: "json",
112409
- });
112410
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
112411
- return $dara.cast<UmountDirectoryResponse>(await this.callApi(params, req, runtime), new UmountDirectoryResponse({}));
112412
- } else {
112413
- return $dara.cast<UmountDirectoryResponse>(await this.execute(params, req, runtime), new UmountDirectoryResponse({}));
112414
- }
112415
-
112416
- }
112417
-
112418
- /**
112419
- * Removes a directory from the left-side navigation pane of DataAnalysis.
112420
- *
112421
- * @param request - UmountDirectoryRequest
112422
- * @returns UmountDirectoryResponse
112423
- */
112424
- async umountDirectory(request: UmountDirectoryRequest): Promise<UmountDirectoryResponse> {
112425
- let runtime = new $dara.RuntimeOptions({ });
112426
- return await this.umountDirectoryWithOptions(request, runtime);
112427
- }
112428
-
112429
111827
  /**
112430
111828
  * Updates a baseline.
112431
111829
  *