@alicloud/dataworks-public20200518 6.2.2 → 6.2.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 +984 -123
- package/dist/client.js +50 -8
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +998 -123
package/src/client.ts
CHANGED
|
@@ -4125,7 +4125,7 @@ export class GetBaselineResponseBodyDataOverTimeSettings extends $dara.Model {
|
|
|
4125
4125
|
cycle?: number;
|
|
4126
4126
|
/**
|
|
4127
4127
|
* @remarks
|
|
4128
|
-
*
|
|
4128
|
+
* Commitment time, hh:mm format, hh value range is [0,47],mm value range is [0,59].
|
|
4129
4129
|
*
|
|
4130
4130
|
* @example
|
|
4131
4131
|
* 00:00
|
|
@@ -6726,10 +6726,51 @@ export class GetDISyncInstanceInfoResponseBodyData extends $dara.Model {
|
|
|
6726
6726
|
}
|
|
6727
6727
|
|
|
6728
6728
|
export class GetDISyncTaskResponseBodyDataAlarmListAlarmRuleList extends $dara.Model {
|
|
6729
|
+
/**
|
|
6730
|
+
* @remarks
|
|
6731
|
+
* The calculation method of indicators,
|
|
6732
|
+
* - avg interval average
|
|
6733
|
+
* - max interval takes the maximum value
|
|
6734
|
+
*
|
|
6735
|
+
* @example
|
|
6736
|
+
* avg
|
|
6737
|
+
*/
|
|
6729
6738
|
aggregator?: string;
|
|
6739
|
+
/**
|
|
6740
|
+
* @remarks
|
|
6741
|
+
* Comparison method of comparison symbols, indicators and alarm rules
|
|
6742
|
+
* - \\"=\\"
|
|
6743
|
+
* - \\"<\\"
|
|
6744
|
+
* - \\">\\"
|
|
6745
|
+
*
|
|
6746
|
+
* @example
|
|
6747
|
+
* =
|
|
6748
|
+
*/
|
|
6730
6749
|
comparator?: string;
|
|
6750
|
+
/**
|
|
6751
|
+
* @remarks
|
|
6752
|
+
* Duration: How long does this condition last before an alarm is triggered, in minutes.
|
|
6753
|
+
*
|
|
6754
|
+
* @example
|
|
6755
|
+
* 3
|
|
6756
|
+
*/
|
|
6731
6757
|
duration?: number;
|
|
6758
|
+
/**
|
|
6759
|
+
* @remarks
|
|
6760
|
+
* - WARNING WARNING: alert
|
|
6761
|
+
* - CRITICAL CRITICAL: alarm
|
|
6762
|
+
*
|
|
6763
|
+
* @example
|
|
6764
|
+
* WARNING
|
|
6765
|
+
*/
|
|
6732
6766
|
level?: string;
|
|
6767
|
+
/**
|
|
6768
|
+
* @remarks
|
|
6769
|
+
* Comparison threshold between metrics and alarm rules.
|
|
6770
|
+
*
|
|
6771
|
+
* @example
|
|
6772
|
+
* 1
|
|
6773
|
+
*/
|
|
6733
6774
|
threshold?: number;
|
|
6734
6775
|
static names(): { [key: string]: string } {
|
|
6735
6776
|
return {
|
|
@@ -6761,8 +6802,23 @@ export class GetDISyncTaskResponseBodyDataAlarmListAlarmRuleList extends $dara.M
|
|
|
6761
6802
|
}
|
|
6762
6803
|
|
|
6763
6804
|
export class GetDISyncTaskResponseBodyDataAlarmListNotifyRule extends $dara.Model {
|
|
6805
|
+
/**
|
|
6806
|
+
* @remarks
|
|
6807
|
+
* Critical-level alert notification list.
|
|
6808
|
+
*/
|
|
6764
6809
|
critical?: string[];
|
|
6810
|
+
/**
|
|
6811
|
+
* @remarks
|
|
6812
|
+
* Alarm interval, in minutes.
|
|
6813
|
+
*
|
|
6814
|
+
* @example
|
|
6815
|
+
* 5
|
|
6816
|
+
*/
|
|
6765
6817
|
interval?: number;
|
|
6818
|
+
/**
|
|
6819
|
+
* @remarks
|
|
6820
|
+
* Warning-level alert notification list.
|
|
6821
|
+
*/
|
|
6766
6822
|
warning?: string[];
|
|
6767
6823
|
static names(): { [key: string]: string } {
|
|
6768
6824
|
return {
|
|
@@ -6796,12 +6852,62 @@ export class GetDISyncTaskResponseBodyDataAlarmListNotifyRule extends $dara.Mode
|
|
|
6796
6852
|
}
|
|
6797
6853
|
|
|
6798
6854
|
export class GetDISyncTaskResponseBodyDataAlarmList extends $dara.Model {
|
|
6855
|
+
/**
|
|
6856
|
+
* @remarks
|
|
6857
|
+
* Alarm Notification configuration array.
|
|
6858
|
+
*/
|
|
6799
6859
|
alarmRuleList?: GetDISyncTaskResponseBodyDataAlarmListAlarmRuleList[];
|
|
6860
|
+
/**
|
|
6861
|
+
* @remarks
|
|
6862
|
+
* Alarm rule description.
|
|
6863
|
+
*
|
|
6864
|
+
* @example
|
|
6865
|
+
* Description
|
|
6866
|
+
*/
|
|
6800
6867
|
description?: string;
|
|
6868
|
+
/**
|
|
6869
|
+
* @remarks
|
|
6870
|
+
* Whether alarm rules are enabled.
|
|
6871
|
+
*
|
|
6872
|
+
* @example
|
|
6873
|
+
* true
|
|
6874
|
+
*/
|
|
6801
6875
|
enabled?: boolean;
|
|
6876
|
+
/**
|
|
6877
|
+
* @remarks
|
|
6878
|
+
* Alarm rule id.
|
|
6879
|
+
*
|
|
6880
|
+
* @example
|
|
6881
|
+
* 45242
|
|
6882
|
+
*/
|
|
6802
6883
|
id?: number;
|
|
6884
|
+
/**
|
|
6885
|
+
* @remarks
|
|
6886
|
+
* Alarm Type:
|
|
6887
|
+
*
|
|
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
|
|
6894
|
+
*
|
|
6895
|
+
* @example
|
|
6896
|
+
* taskStatus
|
|
6897
|
+
*/
|
|
6803
6898
|
metric?: string;
|
|
6899
|
+
/**
|
|
6900
|
+
* @remarks
|
|
6901
|
+
* Alert notification rule array.
|
|
6902
|
+
*/
|
|
6804
6903
|
notifyRule?: GetDISyncTaskResponseBodyDataAlarmListNotifyRule;
|
|
6904
|
+
/**
|
|
6905
|
+
* @remarks
|
|
6906
|
+
* Alarm rule name.
|
|
6907
|
+
*
|
|
6908
|
+
* @example
|
|
6909
|
+
* Delay alert rule name 1
|
|
6910
|
+
*/
|
|
6805
6911
|
ruleName?: string;
|
|
6806
6912
|
static names(): { [key: string]: string } {
|
|
6807
6913
|
return {
|
|
@@ -6984,6 +7090,10 @@ export class GetDISyncTaskResponseBodyDataSolutionDetail extends $dara.Model {
|
|
|
6984
7090
|
}
|
|
6985
7091
|
|
|
6986
7092
|
export class GetDISyncTaskResponseBodyData extends $dara.Model {
|
|
7093
|
+
/**
|
|
7094
|
+
* @remarks
|
|
7095
|
+
* Array of alarm rules associated with real-time tasks.
|
|
7096
|
+
*/
|
|
6987
7097
|
alarmList?: GetDISyncTaskResponseBodyDataAlarmList[];
|
|
6988
7098
|
/**
|
|
6989
7099
|
* @remarks
|
|
@@ -10147,7 +10257,7 @@ export class GetDeploymentResponseBodyDataDeployment extends $dara.Model {
|
|
|
10147
10257
|
creatorId?: string;
|
|
10148
10258
|
/**
|
|
10149
10259
|
* @remarks
|
|
10150
|
-
* The error message that was returned when the deployment
|
|
10260
|
+
* The error message that was returned when the deployment package failed. In this case, the value of the Status parameter is 2.
|
|
10151
10261
|
*
|
|
10152
10262
|
* @example
|
|
10153
10263
|
* Success
|
|
@@ -10248,7 +10358,7 @@ export class GetDeploymentResponseBodyData extends $dara.Model {
|
|
|
10248
10358
|
deployedItems?: GetDeploymentResponseBodyDataDeployedItems[];
|
|
10249
10359
|
/**
|
|
10250
10360
|
* @remarks
|
|
10251
|
-
* The details of the deployment
|
|
10361
|
+
* The details of the deployment package.
|
|
10252
10362
|
*/
|
|
10253
10363
|
deployment?: GetDeploymentResponseBodyDataDeployment;
|
|
10254
10364
|
static names(): { [key: string]: string } {
|
|
@@ -11049,12 +11159,13 @@ export class GetFileResponseBodyDataNodeConfiguration extends $dara.Model {
|
|
|
11049
11159
|
endEffectDate?: number;
|
|
11050
11160
|
/**
|
|
11051
11161
|
* @remarks
|
|
11052
|
-
*
|
|
11162
|
+
* Indicates whether to skip the dry-run property of the ancestor nodes of the node that corresponds to the file. 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.
|
|
11053
11163
|
*
|
|
11054
11164
|
* @example
|
|
11055
11165
|
* true
|
|
11056
11166
|
*/
|
|
11057
11167
|
ignoreParentSkipRunningProperty?: string;
|
|
11168
|
+
imageId?: string;
|
|
11058
11169
|
/**
|
|
11059
11170
|
* @remarks
|
|
11060
11171
|
* The output names of the parent files on which the current file depends.
|
|
@@ -11161,7 +11272,7 @@ export class GetFileResponseBodyDataNodeConfiguration extends $dara.Model {
|
|
|
11161
11272
|
stop?: boolean;
|
|
11162
11273
|
/**
|
|
11163
11274
|
* @remarks
|
|
11164
|
-
*
|
|
11275
|
+
* The timeout period.
|
|
11165
11276
|
*
|
|
11166
11277
|
* @example
|
|
11167
11278
|
* 1
|
|
@@ -11178,6 +11289,7 @@ export class GetFileResponseBodyDataNodeConfiguration extends $dara.Model {
|
|
|
11178
11289
|
dependentType: 'DependentType',
|
|
11179
11290
|
endEffectDate: 'EndEffectDate',
|
|
11180
11291
|
ignoreParentSkipRunningProperty: 'IgnoreParentSkipRunningProperty',
|
|
11292
|
+
imageId: 'ImageId',
|
|
11181
11293
|
inputList: 'InputList',
|
|
11182
11294
|
inputParameters: 'InputParameters',
|
|
11183
11295
|
outputList: 'OutputList',
|
|
@@ -11204,6 +11316,7 @@ export class GetFileResponseBodyDataNodeConfiguration extends $dara.Model {
|
|
|
11204
11316
|
dependentType: 'string',
|
|
11205
11317
|
endEffectDate: 'number',
|
|
11206
11318
|
ignoreParentSkipRunningProperty: 'string',
|
|
11319
|
+
imageId: 'string',
|
|
11207
11320
|
inputList: { 'type': 'array', 'itemType': GetFileResponseBodyDataNodeConfigurationInputList },
|
|
11208
11321
|
inputParameters: { 'type': 'array', 'itemType': GetFileResponseBodyDataNodeConfigurationInputParameters },
|
|
11209
11322
|
outputList: { 'type': 'array', 'itemType': GetFileResponseBodyDataNodeConfigurationOutputList },
|
|
@@ -11243,7 +11356,7 @@ export class GetFileResponseBodyDataNodeConfiguration extends $dara.Model {
|
|
|
11243
11356
|
export class GetFileResponseBodyDataResourceDownloadLink extends $dara.Model {
|
|
11244
11357
|
/**
|
|
11245
11358
|
* @remarks
|
|
11246
|
-
*
|
|
11359
|
+
* The download URL of the resource.
|
|
11247
11360
|
*
|
|
11248
11361
|
* @example
|
|
11249
11362
|
* http://xx
|
|
@@ -11283,7 +11396,7 @@ export class GetFileResponseBodyData extends $dara.Model {
|
|
|
11283
11396
|
nodeConfiguration?: GetFileResponseBodyDataNodeConfiguration;
|
|
11284
11397
|
/**
|
|
11285
11398
|
* @remarks
|
|
11286
|
-
*
|
|
11399
|
+
* The download URL of the resource.
|
|
11287
11400
|
*/
|
|
11288
11401
|
resourceDownloadLink?: GetFileResponseBodyDataResourceDownloadLink;
|
|
11289
11402
|
static names(): { [key: string]: string } {
|
|
@@ -14687,7 +14800,7 @@ export class GetMetaTableColumnResponseBodyData extends $dara.Model {
|
|
|
14687
14800
|
export class GetMetaTableFullInfoResponseBodyDataColumnList extends $dara.Model {
|
|
14688
14801
|
/**
|
|
14689
14802
|
* @remarks
|
|
14690
|
-
* The description of the
|
|
14803
|
+
* The description of the field.
|
|
14691
14804
|
*
|
|
14692
14805
|
* @example
|
|
14693
14806
|
* data comment
|
|
@@ -14695,7 +14808,7 @@ export class GetMetaTableFullInfoResponseBodyDataColumnList extends $dara.Model
|
|
|
14695
14808
|
caption?: string;
|
|
14696
14809
|
/**
|
|
14697
14810
|
* @remarks
|
|
14698
|
-
* The unique identifier of the
|
|
14811
|
+
* The unique identifier of the field.
|
|
14699
14812
|
*
|
|
14700
14813
|
* @example
|
|
14701
14814
|
* odps.engine_name.table_name.1
|
|
@@ -14703,7 +14816,7 @@ export class GetMetaTableFullInfoResponseBodyDataColumnList extends $dara.Model
|
|
|
14703
14816
|
columnGuid?: string;
|
|
14704
14817
|
/**
|
|
14705
14818
|
* @remarks
|
|
14706
|
-
* The name of the
|
|
14819
|
+
* The name of the field.
|
|
14707
14820
|
*
|
|
14708
14821
|
* @example
|
|
14709
14822
|
* 1
|
|
@@ -14711,7 +14824,7 @@ export class GetMetaTableFullInfoResponseBodyDataColumnList extends $dara.Model
|
|
|
14711
14824
|
columnName?: string;
|
|
14712
14825
|
/**
|
|
14713
14826
|
* @remarks
|
|
14714
|
-
* The type of the
|
|
14827
|
+
* The data type of the field.
|
|
14715
14828
|
*
|
|
14716
14829
|
* @example
|
|
14717
14830
|
* string
|
|
@@ -14719,7 +14832,7 @@ export class GetMetaTableFullInfoResponseBodyDataColumnList extends $dara.Model
|
|
|
14719
14832
|
columnType?: string;
|
|
14720
14833
|
/**
|
|
14721
14834
|
* @remarks
|
|
14722
|
-
* The
|
|
14835
|
+
* The remarks of the field.
|
|
14723
14836
|
*
|
|
14724
14837
|
* @example
|
|
14725
14838
|
* comment
|
|
@@ -14727,9 +14840,10 @@ export class GetMetaTableFullInfoResponseBodyDataColumnList extends $dara.Model
|
|
|
14727
14840
|
comment?: string;
|
|
14728
14841
|
/**
|
|
14729
14842
|
* @remarks
|
|
14730
|
-
*
|
|
14731
|
-
*
|
|
14732
|
-
*
|
|
14843
|
+
* Indicates whether the field is a foreign key. Valid values:
|
|
14844
|
+
*
|
|
14845
|
+
* * true
|
|
14846
|
+
* * false
|
|
14733
14847
|
*
|
|
14734
14848
|
* @example
|
|
14735
14849
|
* true
|
|
@@ -14737,9 +14851,10 @@ export class GetMetaTableFullInfoResponseBodyDataColumnList extends $dara.Model
|
|
|
14737
14851
|
isForeignKey?: boolean;
|
|
14738
14852
|
/**
|
|
14739
14853
|
* @remarks
|
|
14740
|
-
* Indicates whether the
|
|
14741
|
-
*
|
|
14742
|
-
*
|
|
14854
|
+
* Indicates whether the field is a partition field. Valid values:
|
|
14855
|
+
*
|
|
14856
|
+
* * true
|
|
14857
|
+
* * false
|
|
14743
14858
|
*
|
|
14744
14859
|
* @example
|
|
14745
14860
|
* true
|
|
@@ -14747,9 +14862,10 @@ export class GetMetaTableFullInfoResponseBodyDataColumnList extends $dara.Model
|
|
|
14747
14862
|
isPartitionColumn?: boolean;
|
|
14748
14863
|
/**
|
|
14749
14864
|
* @remarks
|
|
14750
|
-
* Indicates whether the
|
|
14751
|
-
*
|
|
14752
|
-
*
|
|
14865
|
+
* Indicates whether the field is a primary key. Valid values:
|
|
14866
|
+
*
|
|
14867
|
+
* * true
|
|
14868
|
+
* * false
|
|
14753
14869
|
*
|
|
14754
14870
|
* @example
|
|
14755
14871
|
* false
|
|
@@ -14757,7 +14873,7 @@ export class GetMetaTableFullInfoResponseBodyDataColumnList extends $dara.Model
|
|
|
14757
14873
|
isPrimaryKey?: boolean;
|
|
14758
14874
|
/**
|
|
14759
14875
|
* @remarks
|
|
14760
|
-
* The
|
|
14876
|
+
* The sequence number of the field.
|
|
14761
14877
|
*
|
|
14762
14878
|
* @example
|
|
14763
14879
|
* 1
|
|
@@ -14803,7 +14919,7 @@ export class GetMetaTableFullInfoResponseBodyDataColumnList extends $dara.Model
|
|
|
14803
14919
|
export class GetMetaTableFullInfoResponseBodyData extends $dara.Model {
|
|
14804
14920
|
/**
|
|
14805
14921
|
* @remarks
|
|
14806
|
-
* The
|
|
14922
|
+
* The EMR cluster ID.
|
|
14807
14923
|
*
|
|
14808
14924
|
* @example
|
|
14809
14925
|
* C-010A704DA760****
|
|
@@ -14811,12 +14927,12 @@ export class GetMetaTableFullInfoResponseBodyData extends $dara.Model {
|
|
|
14811
14927
|
clusterId?: string;
|
|
14812
14928
|
/**
|
|
14813
14929
|
* @remarks
|
|
14814
|
-
*
|
|
14930
|
+
* The fields in the table.
|
|
14815
14931
|
*/
|
|
14816
14932
|
columnList?: GetMetaTableFullInfoResponseBodyDataColumnList[];
|
|
14817
14933
|
/**
|
|
14818
14934
|
* @remarks
|
|
14819
|
-
* The comment
|
|
14935
|
+
* The comment on the table.
|
|
14820
14936
|
*
|
|
14821
14937
|
* @example
|
|
14822
14938
|
* comment
|
|
@@ -14824,7 +14940,7 @@ export class GetMetaTableFullInfoResponseBodyData extends $dara.Model {
|
|
|
14824
14940
|
comment?: string;
|
|
14825
14941
|
/**
|
|
14826
14942
|
* @remarks
|
|
14827
|
-
* The time when the table was created.
|
|
14943
|
+
* The time when the table was created. A timestamp is returned for this parameter. You can convert the timestamp to the related date based on the time zone that you use.
|
|
14828
14944
|
*
|
|
14829
14945
|
* @example
|
|
14830
14946
|
* 1589870293000
|
|
@@ -14832,7 +14948,7 @@ export class GetMetaTableFullInfoResponseBodyData extends $dara.Model {
|
|
|
14832
14948
|
createTime?: number;
|
|
14833
14949
|
/**
|
|
14834
14950
|
* @remarks
|
|
14835
|
-
* The storage space
|
|
14951
|
+
* The size of the storage space that is consumed by the table. Unit: bytes.
|
|
14836
14952
|
*
|
|
14837
14953
|
* @example
|
|
14838
14954
|
* 10
|
|
@@ -14848,9 +14964,10 @@ export class GetMetaTableFullInfoResponseBodyData extends $dara.Model {
|
|
|
14848
14964
|
databaseName?: string;
|
|
14849
14965
|
/**
|
|
14850
14966
|
* @remarks
|
|
14851
|
-
*
|
|
14852
|
-
*
|
|
14853
|
-
*
|
|
14967
|
+
* The type of the environment. Valid values:
|
|
14968
|
+
*
|
|
14969
|
+
* * 0: indicates that the table resides in the development environment.
|
|
14970
|
+
* * 1: indicates that the table resides in the production environment.
|
|
14854
14971
|
*
|
|
14855
14972
|
* @example
|
|
14856
14973
|
* 1
|
|
@@ -14858,11 +14975,12 @@ export class GetMetaTableFullInfoResponseBodyData extends $dara.Model {
|
|
|
14858
14975
|
envType?: number;
|
|
14859
14976
|
/**
|
|
14860
14977
|
* @remarks
|
|
14861
|
-
*
|
|
14862
|
-
*
|
|
14863
|
-
*
|
|
14864
|
-
*
|
|
14865
|
-
*
|
|
14978
|
+
* The scope in which the table is visible. Valid values:
|
|
14979
|
+
*
|
|
14980
|
+
* * 0: indicates that the table is visible to workspace members.
|
|
14981
|
+
* * 1: indicates that the table is visible to users within a tenant.
|
|
14982
|
+
* * 2: indicates that the table is visible to all tenants.
|
|
14983
|
+
* * 3: indicates that the table is visible only to the table owner.
|
|
14866
14984
|
*
|
|
14867
14985
|
* @example
|
|
14868
14986
|
* 1
|
|
@@ -14870,7 +14988,7 @@ export class GetMetaTableFullInfoResponseBodyData extends $dara.Model {
|
|
|
14870
14988
|
isVisible?: number;
|
|
14871
14989
|
/**
|
|
14872
14990
|
* @remarks
|
|
14873
|
-
* The
|
|
14991
|
+
* The time when the table was last accessed. A timestamp is returned for this parameter. You can convert the timestamp to the related date based on the time zone that you use.
|
|
14874
14992
|
*
|
|
14875
14993
|
* @example
|
|
14876
14994
|
* 1589870294000
|
|
@@ -14878,7 +14996,7 @@ export class GetMetaTableFullInfoResponseBodyData extends $dara.Model {
|
|
|
14878
14996
|
lastAccessTime?: number;
|
|
14879
14997
|
/**
|
|
14880
14998
|
* @remarks
|
|
14881
|
-
* The
|
|
14999
|
+
* The time when the schema of the table was last changed. A timestamp is returned for this parameter. You can convert the timestamp to the related date based on the time zone that you use.
|
|
14882
15000
|
*
|
|
14883
15001
|
* @example
|
|
14884
15002
|
* 1589870294000
|
|
@@ -14886,7 +15004,7 @@ export class GetMetaTableFullInfoResponseBodyData extends $dara.Model {
|
|
|
14886
15004
|
lastDdlTime?: number;
|
|
14887
15005
|
/**
|
|
14888
15006
|
* @remarks
|
|
14889
|
-
* The
|
|
15007
|
+
* The time when the table was last updated. A timestamp is returned for this parameter. You can convert the timestamp to the related date based on the time zone that you use.
|
|
14890
15008
|
*
|
|
14891
15009
|
* @example
|
|
14892
15010
|
* 1589870294000
|
|
@@ -14894,7 +15012,7 @@ export class GetMetaTableFullInfoResponseBodyData extends $dara.Model {
|
|
|
14894
15012
|
lastModifyTime?: number;
|
|
14895
15013
|
/**
|
|
14896
15014
|
* @remarks
|
|
14897
|
-
* The lifecycle of the table
|
|
15015
|
+
* The lifecycle of the table. Unit: days.
|
|
14898
15016
|
*
|
|
14899
15017
|
* @example
|
|
14900
15018
|
* 5
|
|
@@ -14902,7 +15020,7 @@ export class GetMetaTableFullInfoResponseBodyData extends $dara.Model {
|
|
|
14902
15020
|
lifeCycle?: number;
|
|
14903
15021
|
/**
|
|
14904
15022
|
* @remarks
|
|
14905
|
-
* The storage
|
|
15023
|
+
* The storage path of the Hive table.
|
|
14906
15024
|
*
|
|
14907
15025
|
* @example
|
|
14908
15026
|
* hdfs://localhost:777/user/hadoop/test.txt
|
|
@@ -14918,7 +15036,7 @@ export class GetMetaTableFullInfoResponseBodyData extends $dara.Model {
|
|
|
14918
15036
|
ownerId?: string;
|
|
14919
15037
|
/**
|
|
14920
15038
|
* @remarks
|
|
14921
|
-
*
|
|
15039
|
+
* The partition key column.
|
|
14922
15040
|
*
|
|
14923
15041
|
* @example
|
|
14924
15042
|
* abc
|
|
@@ -14926,7 +15044,7 @@ export class GetMetaTableFullInfoResponseBodyData extends $dara.Model {
|
|
|
14926
15044
|
partitionKeys?: string;
|
|
14927
15045
|
/**
|
|
14928
15046
|
* @remarks
|
|
14929
|
-
* The ID of the workspace
|
|
15047
|
+
* The ID of the workspace to which the table belongs.
|
|
14930
15048
|
*
|
|
14931
15049
|
* @example
|
|
14932
15050
|
* 22
|
|
@@ -14934,12 +15052,19 @@ export class GetMetaTableFullInfoResponseBodyData extends $dara.Model {
|
|
|
14934
15052
|
projectId?: number;
|
|
14935
15053
|
/**
|
|
14936
15054
|
* @remarks
|
|
14937
|
-
* The name of the workspace
|
|
15055
|
+
* The name of the workspace to which the table belongs.
|
|
14938
15056
|
*
|
|
14939
15057
|
* @example
|
|
14940
15058
|
* test
|
|
14941
15059
|
*/
|
|
14942
15060
|
projectName?: string;
|
|
15061
|
+
/**
|
|
15062
|
+
* @remarks
|
|
15063
|
+
* The schema information of the table.
|
|
15064
|
+
*
|
|
15065
|
+
* @example
|
|
15066
|
+
* default
|
|
15067
|
+
*/
|
|
14943
15068
|
schema?: string;
|
|
14944
15069
|
/**
|
|
14945
15070
|
* @remarks
|
|
@@ -14967,7 +15092,7 @@ export class GetMetaTableFullInfoResponseBodyData extends $dara.Model {
|
|
|
14967
15092
|
tenantId?: number;
|
|
14968
15093
|
/**
|
|
14969
15094
|
* @remarks
|
|
14970
|
-
* The total number of
|
|
15095
|
+
* The total number of fields.
|
|
14971
15096
|
*
|
|
14972
15097
|
* @example
|
|
14973
15098
|
* 22
|
|
@@ -16063,6 +16188,13 @@ export class GetNodeResponseBodyData extends $dara.Model {
|
|
|
16063
16188
|
* odps_first_dev
|
|
16064
16189
|
*/
|
|
16065
16190
|
connection?: string;
|
|
16191
|
+
/**
|
|
16192
|
+
* @remarks
|
|
16193
|
+
* The creation time.
|
|
16194
|
+
*
|
|
16195
|
+
* @example
|
|
16196
|
+
* 1727280000000
|
|
16197
|
+
*/
|
|
16066
16198
|
createTime?: number;
|
|
16067
16199
|
/**
|
|
16068
16200
|
* @remarks
|
|
@@ -16072,6 +16204,13 @@ export class GetNodeResponseBodyData extends $dara.Model {
|
|
|
16072
16204
|
* 00 00 00 * * ?
|
|
16073
16205
|
*/
|
|
16074
16206
|
cronExpress?: string;
|
|
16207
|
+
/**
|
|
16208
|
+
* @remarks
|
|
16209
|
+
* The deployment date.
|
|
16210
|
+
*
|
|
16211
|
+
* @example
|
|
16212
|
+
* 1727280000000
|
|
16213
|
+
*/
|
|
16075
16214
|
deployDate?: number;
|
|
16076
16215
|
/**
|
|
16077
16216
|
* @remarks
|
|
@@ -16097,9 +16236,37 @@ export class GetNodeResponseBodyData extends $dara.Model {
|
|
|
16097
16236
|
* 1
|
|
16098
16237
|
*/
|
|
16099
16238
|
dqcType?: number;
|
|
16239
|
+
/**
|
|
16240
|
+
* @remarks
|
|
16241
|
+
* The ID of the file.
|
|
16242
|
+
*
|
|
16243
|
+
* @example
|
|
16244
|
+
* 123
|
|
16245
|
+
*/
|
|
16100
16246
|
fileId?: number;
|
|
16247
|
+
/**
|
|
16248
|
+
* @remarks
|
|
16249
|
+
* The file type. Different file types have different codes. For more information, see [DataWorks node collection](https://help.aliyun.com/document_detail/600169.html).
|
|
16250
|
+
*
|
|
16251
|
+
* @example
|
|
16252
|
+
* 10
|
|
16253
|
+
*/
|
|
16101
16254
|
fileType?: number;
|
|
16255
|
+
/**
|
|
16256
|
+
* @remarks
|
|
16257
|
+
* The version of the file.
|
|
16258
|
+
*
|
|
16259
|
+
* @example
|
|
16260
|
+
* 1
|
|
16261
|
+
*/
|
|
16102
16262
|
fileVersion?: number;
|
|
16263
|
+
/**
|
|
16264
|
+
* @remarks
|
|
16265
|
+
* The modification time.
|
|
16266
|
+
*
|
|
16267
|
+
* @example
|
|
16268
|
+
* 1727280000000
|
|
16269
|
+
*/
|
|
16103
16270
|
modifyTime?: number;
|
|
16104
16271
|
/**
|
|
16105
16272
|
* @remarks
|
|
@@ -16178,6 +16345,13 @@ export class GetNodeResponseBodyData extends $dara.Model {
|
|
|
16178
16345
|
* 60
|
|
16179
16346
|
*/
|
|
16180
16347
|
repeatInterval?: number;
|
|
16348
|
+
/**
|
|
16349
|
+
* @remarks
|
|
16350
|
+
* Rerun mode. 0 indicates that you can rerun only if you fail, 1 indicates that you can rerun in all cases, and 2 indicates that you cannot rerun in all cases.
|
|
16351
|
+
*
|
|
16352
|
+
* @example
|
|
16353
|
+
* 1
|
|
16354
|
+
*/
|
|
16181
16355
|
repeatMode?: number;
|
|
16182
16356
|
/**
|
|
16183
16357
|
* @remarks
|
|
@@ -16187,6 +16361,13 @@ export class GetNodeResponseBodyData extends $dara.Model {
|
|
|
16187
16361
|
* true
|
|
16188
16362
|
*/
|
|
16189
16363
|
repeatability?: string;
|
|
16364
|
+
/**
|
|
16365
|
+
* @remarks
|
|
16366
|
+
* The unique identifier of the resource group.
|
|
16367
|
+
*
|
|
16368
|
+
* @example
|
|
16369
|
+
* group_123
|
|
16370
|
+
*/
|
|
16190
16371
|
resGroupIdentifier?: string;
|
|
16191
16372
|
/**
|
|
16192
16373
|
* @remarks
|
|
@@ -16810,6 +16991,9 @@ export class GetPermissionApplyOrderDetailResponseBodyApplyOrderDetailApproveCon
|
|
|
16810
16991
|
/**
|
|
16811
16992
|
* @remarks
|
|
16812
16993
|
* The description of the column on which you request permissions.
|
|
16994
|
+
*
|
|
16995
|
+
* @example
|
|
16996
|
+
* Field description
|
|
16813
16997
|
*/
|
|
16814
16998
|
columnComment?: string;
|
|
16815
16999
|
/**
|
|
@@ -18057,38 +18241,78 @@ export class GetQualityEntityResponseBodyData extends $dara.Model {
|
|
|
18057
18241
|
|
|
18058
18242
|
export class GetQualityFollowerResponseBodyData extends $dara.Model {
|
|
18059
18243
|
/**
|
|
18244
|
+
* @remarks
|
|
18245
|
+
* The alert mode. The value is as follows:
|
|
18246
|
+
*
|
|
18247
|
+
* - 1 (Mail)
|
|
18248
|
+
* - 2 (email and SMS)
|
|
18249
|
+
* - 4 (DingTalk groups of robots or hook)
|
|
18250
|
+
* - 5 (DingTalk groups of robots @ ALL)
|
|
18251
|
+
*
|
|
18060
18252
|
* @example
|
|
18061
18253
|
* 1
|
|
18062
18254
|
*/
|
|
18063
18255
|
alarmMode?: number;
|
|
18256
|
+
/**
|
|
18257
|
+
* @remarks
|
|
18258
|
+
* The time when the data quality rule subscription configuration was created.
|
|
18259
|
+
*
|
|
18260
|
+
* @example
|
|
18261
|
+
* 1541576644000
|
|
18262
|
+
*/
|
|
18064
18263
|
createTime?: number;
|
|
18065
18264
|
/**
|
|
18265
|
+
* @remarks
|
|
18266
|
+
* The ID of the partition expression.
|
|
18267
|
+
*
|
|
18066
18268
|
* @example
|
|
18067
18269
|
* 1234
|
|
18068
18270
|
*/
|
|
18069
18271
|
entityId?: string;
|
|
18070
18272
|
/**
|
|
18273
|
+
* @remarks
|
|
18274
|
+
* The subscriber to receive alert information.
|
|
18275
|
+
*
|
|
18071
18276
|
* @example
|
|
18072
18277
|
* 1234
|
|
18073
18278
|
*/
|
|
18074
18279
|
follower?: string;
|
|
18075
18280
|
/**
|
|
18281
|
+
* @remarks
|
|
18282
|
+
* The Alibaba Cloud account name of the subscriber.
|
|
18283
|
+
*
|
|
18076
18284
|
* @example
|
|
18077
18285
|
* test
|
|
18078
18286
|
*/
|
|
18079
18287
|
followerAccountName?: string;
|
|
18080
18288
|
/**
|
|
18289
|
+
* @remarks
|
|
18290
|
+
* The ID of the subscription relationship.
|
|
18291
|
+
*
|
|
18081
18292
|
* @example
|
|
18082
18293
|
* 123
|
|
18083
18294
|
*/
|
|
18084
18295
|
id?: number;
|
|
18296
|
+
/**
|
|
18297
|
+
* @remarks
|
|
18298
|
+
* The update time of the data quality rule subscription configuration.
|
|
18299
|
+
*
|
|
18300
|
+
* @example
|
|
18301
|
+
* 1541576644000
|
|
18302
|
+
*/
|
|
18085
18303
|
modifyTime?: number;
|
|
18086
18304
|
/**
|
|
18305
|
+
* @remarks
|
|
18306
|
+
* The name of the engine or data source.
|
|
18307
|
+
*
|
|
18087
18308
|
* @example
|
|
18088
18309
|
* autotest
|
|
18089
18310
|
*/
|
|
18090
18311
|
projectName?: string;
|
|
18091
18312
|
/**
|
|
18313
|
+
* @remarks
|
|
18314
|
+
* The name of the partitioned table.
|
|
18315
|
+
*
|
|
18092
18316
|
* @example
|
|
18093
18317
|
* dual
|
|
18094
18318
|
*/
|
|
@@ -18405,6 +18629,9 @@ export class GetRemindResponseBodyDataBaselines extends $dara.Model {
|
|
|
18405
18629
|
/**
|
|
18406
18630
|
* @remarks
|
|
18407
18631
|
* The name of the baseline.
|
|
18632
|
+
*
|
|
18633
|
+
* @example
|
|
18634
|
+
* Baseline name
|
|
18408
18635
|
*/
|
|
18409
18636
|
baselineName?: string;
|
|
18410
18637
|
static names(): { [key: string]: string } {
|
|
@@ -18442,6 +18669,9 @@ export class GetRemindResponseBodyDataBizProcesses extends $dara.Model {
|
|
|
18442
18669
|
/**
|
|
18443
18670
|
* @remarks
|
|
18444
18671
|
* The name of the workflow.
|
|
18672
|
+
*
|
|
18673
|
+
* @example
|
|
18674
|
+
* Business process name
|
|
18445
18675
|
*/
|
|
18446
18676
|
bizProcessName?: string;
|
|
18447
18677
|
static names(): { [key: string]: string } {
|
|
@@ -18479,6 +18709,9 @@ export class GetRemindResponseBodyDataNodes extends $dara.Model {
|
|
|
18479
18709
|
/**
|
|
18480
18710
|
* @remarks
|
|
18481
18711
|
* The name of the node.
|
|
18712
|
+
*
|
|
18713
|
+
* @example
|
|
18714
|
+
* Node name
|
|
18482
18715
|
*/
|
|
18483
18716
|
nodeName?: string;
|
|
18484
18717
|
/**
|
|
@@ -18555,8 +18788,19 @@ export class GetRemindResponseBodyDataProjects extends $dara.Model {
|
|
|
18555
18788
|
}
|
|
18556
18789
|
|
|
18557
18790
|
export class GetRemindResponseBodyDataReceivers extends $dara.Model {
|
|
18791
|
+
/**
|
|
18792
|
+
* @remarks
|
|
18793
|
+
* The alert recipient.
|
|
18794
|
+
*/
|
|
18558
18795
|
alertTargets?: string[];
|
|
18559
18796
|
/**
|
|
18797
|
+
* @remarks
|
|
18798
|
+
* The type of the alert recipient. For more information about alert recipients, see the Receivers parameter. Valid values:
|
|
18799
|
+
*
|
|
18800
|
+
* * OWNER: indicate the task owner.
|
|
18801
|
+
* * OTHER: indicates specified personnel.
|
|
18802
|
+
* * SHIFT_SCHEDULE: indicates personnel in a shift schedule.
|
|
18803
|
+
*
|
|
18560
18804
|
* @example
|
|
18561
18805
|
* OWNER
|
|
18562
18806
|
*/
|
|
@@ -18638,22 +18882,30 @@ export class GetRemindResponseBodyData extends $dara.Model {
|
|
|
18638
18882
|
alertInterval?: number;
|
|
18639
18883
|
/**
|
|
18640
18884
|
* @remarks
|
|
18641
|
-
* The
|
|
18885
|
+
* The notification method.
|
|
18642
18886
|
*/
|
|
18643
18887
|
alertMethods?: string[];
|
|
18644
18888
|
/**
|
|
18645
18889
|
* @remarks
|
|
18646
|
-
* The description of the alert recipient.
|
|
18890
|
+
* The description of the alert recipient. For more information about alert recipients, see the Receivers parameter.
|
|
18647
18891
|
*/
|
|
18648
18892
|
alertTargets?: string[];
|
|
18649
18893
|
/**
|
|
18650
18894
|
* @remarks
|
|
18651
|
-
* The
|
|
18895
|
+
* The type of the alert recipient. For more information about alert recipient types, see the Receivers parameter. Valid values:
|
|
18896
|
+
*
|
|
18897
|
+
* * OWNER: the task owner
|
|
18898
|
+
* * OTHER: specified personnel
|
|
18899
|
+
* * SHIFT_SCHEDULE: personnel in a shift schedule
|
|
18652
18900
|
*
|
|
18653
18901
|
* @example
|
|
18654
18902
|
* OWNER
|
|
18655
18903
|
*/
|
|
18656
18904
|
alertUnit?: string;
|
|
18905
|
+
/**
|
|
18906
|
+
* @remarks
|
|
18907
|
+
* The IDs of the nodes that are added to a whitelist.
|
|
18908
|
+
*/
|
|
18657
18909
|
allowNodes?: number[];
|
|
18658
18910
|
/**
|
|
18659
18911
|
* @remarks
|
|
@@ -18719,6 +18971,10 @@ export class GetRemindResponseBodyData extends $dara.Model {
|
|
|
18719
18971
|
* The workspaces to which the custom alert rule is applied. This parameter is returned if the value of the RemindUnit parameter is PROJECT.
|
|
18720
18972
|
*/
|
|
18721
18973
|
projects?: GetRemindResponseBodyDataProjects[];
|
|
18974
|
+
/**
|
|
18975
|
+
* @remarks
|
|
18976
|
+
* The information about the alert recipients.
|
|
18977
|
+
*/
|
|
18722
18978
|
receivers?: GetRemindResponseBodyDataReceivers[];
|
|
18723
18979
|
/**
|
|
18724
18980
|
* @remarks
|
|
@@ -18731,6 +18987,9 @@ export class GetRemindResponseBodyData extends $dara.Model {
|
|
|
18731
18987
|
/**
|
|
18732
18988
|
* @remarks
|
|
18733
18989
|
* The name of the rule.
|
|
18990
|
+
*
|
|
18991
|
+
* @example
|
|
18992
|
+
* Rule name
|
|
18734
18993
|
*/
|
|
18735
18994
|
remindName?: string;
|
|
18736
18995
|
/**
|
|
@@ -18764,7 +19023,7 @@ export class GetRemindResponseBodyData extends $dara.Model {
|
|
|
18764
19023
|
useflag?: boolean;
|
|
18765
19024
|
/**
|
|
18766
19025
|
* @remarks
|
|
18767
|
-
*
|
|
19026
|
+
* WebHook URL
|
|
18768
19027
|
*/
|
|
18769
19028
|
webhooks?: string[];
|
|
18770
19029
|
static names(): { [key: string]: string } {
|
|
@@ -19082,6 +19341,9 @@ export class GetTopicResponseBodyData extends $dara.Model {
|
|
|
19082
19341
|
/**
|
|
19083
19342
|
* @remarks
|
|
19084
19343
|
* The name of the baseline to which the worst baseline instance belongs.
|
|
19344
|
+
*
|
|
19345
|
+
* @example
|
|
19346
|
+
* Baseline name
|
|
19085
19347
|
*/
|
|
19086
19348
|
baselineName?: string;
|
|
19087
19349
|
/**
|
|
@@ -19159,6 +19421,9 @@ export class GetTopicResponseBodyData extends $dara.Model {
|
|
|
19159
19421
|
/**
|
|
19160
19422
|
* @remarks
|
|
19161
19423
|
* The name of the node that triggered the event.
|
|
19424
|
+
*
|
|
19425
|
+
* @example
|
|
19426
|
+
* Node name
|
|
19162
19427
|
*/
|
|
19163
19428
|
nodeName?: string;
|
|
19164
19429
|
/**
|
|
@@ -19188,6 +19453,9 @@ export class GetTopicResponseBodyData extends $dara.Model {
|
|
|
19188
19453
|
/**
|
|
19189
19454
|
* @remarks
|
|
19190
19455
|
* The name of the event.
|
|
19456
|
+
*
|
|
19457
|
+
* @example
|
|
19458
|
+
* 1234 error
|
|
19191
19459
|
*/
|
|
19192
19460
|
topicName?: string;
|
|
19193
19461
|
/**
|
|
@@ -19274,44 +19542,72 @@ export class GetTopicResponseBodyData extends $dara.Model {
|
|
|
19274
19542
|
export class GetTopicInfluenceResponseBodyDataInfluences extends $dara.Model {
|
|
19275
19543
|
/**
|
|
19276
19544
|
* @remarks
|
|
19277
|
-
* The baseline
|
|
19545
|
+
* The ID of the baseline.
|
|
19278
19546
|
*
|
|
19279
19547
|
* @example
|
|
19280
|
-
*
|
|
19548
|
+
* 12345
|
|
19281
19549
|
*/
|
|
19282
19550
|
baselineId?: number;
|
|
19551
|
+
/**
|
|
19552
|
+
* @remarks
|
|
19553
|
+
* The name of the baseline.
|
|
19554
|
+
*
|
|
19555
|
+
* @example
|
|
19556
|
+
* Baseline name
|
|
19557
|
+
*/
|
|
19283
19558
|
baselineName?: string;
|
|
19284
19559
|
/**
|
|
19560
|
+
* @remarks
|
|
19561
|
+
* The data timestamp of the baseline instance.
|
|
19562
|
+
*
|
|
19285
19563
|
* @example
|
|
19286
19564
|
* 1553356800000
|
|
19287
19565
|
*/
|
|
19288
19566
|
bizdate?: number;
|
|
19289
19567
|
/**
|
|
19568
|
+
* @remarks
|
|
19569
|
+
* The margin of the baseline instance. Unit: seconds.
|
|
19570
|
+
*
|
|
19290
19571
|
* @example
|
|
19291
19572
|
* 360
|
|
19292
19573
|
*/
|
|
19293
19574
|
buffer?: number;
|
|
19294
19575
|
/**
|
|
19576
|
+
* @remarks
|
|
19577
|
+
* The ID of the cycle of the baseline instance. For a baseline instance that is scheduled by day, the field value is 1. For a baseline instance that is scheduled by hour, the field value ranges from 1 to 24.
|
|
19578
|
+
*
|
|
19295
19579
|
* @example
|
|
19296
19580
|
* 1
|
|
19297
19581
|
*/
|
|
19298
19582
|
inGroupId?: number;
|
|
19299
19583
|
/**
|
|
19584
|
+
* @remarks
|
|
19585
|
+
* The ID of the Alibaba Cloud account used by the baseline owner. Multiple IDs are separated by commas (,).
|
|
19586
|
+
*
|
|
19300
19587
|
* @example
|
|
19301
19588
|
* 952795****
|
|
19302
19589
|
*/
|
|
19303
19590
|
owner?: string;
|
|
19304
19591
|
/**
|
|
19592
|
+
* @remarks
|
|
19593
|
+
* The priority of the baseline. Valid values: 1, 2, 5, 7, and 8.
|
|
19594
|
+
*
|
|
19305
19595
|
* @example
|
|
19306
19596
|
* 1
|
|
19307
19597
|
*/
|
|
19308
19598
|
priority?: number;
|
|
19309
19599
|
/**
|
|
19600
|
+
* @remarks
|
|
19601
|
+
* The ID of the workspace to which the baseline belongs.
|
|
19602
|
+
*
|
|
19310
19603
|
* @example
|
|
19311
19604
|
* 1234
|
|
19312
19605
|
*/
|
|
19313
19606
|
projectId?: number;
|
|
19314
19607
|
/**
|
|
19608
|
+
* @remarks
|
|
19609
|
+
* The status of the baseline. Valid values: ERROR, SAFE, DANGROUS, and OVER. The value ERROR indicates that no nodes are associated with the baseline, or all nodes associated with the baseline are suspended. The value SAFE indicates that nodes are run before the alert duration begins. The value DANGROUS indicates that nodes are still running after the alert duration ends but the committed time does not arrive. The value OVER indicates that nodes are still running after the committed time.
|
|
19610
|
+
*
|
|
19315
19611
|
* @example
|
|
19316
19612
|
* SAFE
|
|
19317
19613
|
*/
|
|
@@ -19356,10 +19652,13 @@ export class GetTopicInfluenceResponseBodyDataInfluences extends $dara.Model {
|
|
|
19356
19652
|
export class GetTopicInfluenceResponseBodyData extends $dara.Model {
|
|
19357
19653
|
/**
|
|
19358
19654
|
* @remarks
|
|
19359
|
-
* The affected baseline instances.
|
|
19655
|
+
* The list of affected baseline instances.
|
|
19360
19656
|
*/
|
|
19361
19657
|
influences?: GetTopicInfluenceResponseBodyDataInfluences[];
|
|
19362
19658
|
/**
|
|
19659
|
+
* @remarks
|
|
19660
|
+
* The ID of the event.
|
|
19661
|
+
*
|
|
19363
19662
|
* @example
|
|
19364
19663
|
* 1234
|
|
19365
19664
|
*/
|
|
@@ -19453,6 +19752,9 @@ export class ListAlertMessagesResponseBodyDataAlertMessagesInstances extends $da
|
|
|
19453
19752
|
/**
|
|
19454
19753
|
* @remarks
|
|
19455
19754
|
* The name of the node.
|
|
19755
|
+
*
|
|
19756
|
+
* @example
|
|
19757
|
+
* Node name
|
|
19456
19758
|
*/
|
|
19457
19759
|
nodeName?: string;
|
|
19458
19760
|
/**
|
|
@@ -19512,6 +19814,9 @@ export class ListAlertMessagesResponseBodyDataAlertMessagesNodes extends $dara.M
|
|
|
19512
19814
|
/**
|
|
19513
19815
|
* @remarks
|
|
19514
19816
|
* The name of the node.
|
|
19817
|
+
*
|
|
19818
|
+
* @example
|
|
19819
|
+
* Node name
|
|
19515
19820
|
*/
|
|
19516
19821
|
nodeName?: string;
|
|
19517
19822
|
/**
|
|
@@ -19569,6 +19874,9 @@ export class ListAlertMessagesResponseBodyDataAlertMessagesSlaAlert extends $dar
|
|
|
19569
19874
|
/**
|
|
19570
19875
|
* @remarks
|
|
19571
19876
|
* The name of the baseline.
|
|
19877
|
+
*
|
|
19878
|
+
* @example
|
|
19879
|
+
* Baseline name
|
|
19572
19880
|
*/
|
|
19573
19881
|
baselineName?: string;
|
|
19574
19882
|
/**
|
|
@@ -19672,6 +19980,9 @@ export class ListAlertMessagesResponseBodyDataAlertMessagesTopics extends $dara.
|
|
|
19672
19980
|
/**
|
|
19673
19981
|
* @remarks
|
|
19674
19982
|
* The name of the event.
|
|
19983
|
+
*
|
|
19984
|
+
* @example
|
|
19985
|
+
* 9527 error
|
|
19675
19986
|
*/
|
|
19676
19987
|
topicName?: string;
|
|
19677
19988
|
/**
|
|
@@ -19765,6 +20076,9 @@ export class ListAlertMessagesResponseBodyDataAlertMessages extends $dara.Model
|
|
|
19765
20076
|
/**
|
|
19766
20077
|
* @remarks
|
|
19767
20078
|
* The content of the alert.
|
|
20079
|
+
*
|
|
20080
|
+
* @example
|
|
20081
|
+
* Node error
|
|
19768
20082
|
*/
|
|
19769
20083
|
content?: string;
|
|
19770
20084
|
/**
|
|
@@ -19791,6 +20105,9 @@ export class ListAlertMessagesResponseBodyDataAlertMessages extends $dara.Model
|
|
|
19791
20105
|
/**
|
|
19792
20106
|
* @remarks
|
|
19793
20107
|
* The name of the custom alert rule that was triggered. This parameter is returned if the value of the Source parameter is REMIND_ALERT.
|
|
20108
|
+
*
|
|
20109
|
+
* @example
|
|
20110
|
+
* Custom monitoring rule name
|
|
19794
20111
|
*/
|
|
19795
20112
|
remindName?: string;
|
|
19796
20113
|
/**
|
|
@@ -19940,6 +20257,9 @@ export class ListBaselineConfigsResponseBodyDataBaselines extends $dara.Model {
|
|
|
19940
20257
|
/**
|
|
19941
20258
|
* @remarks
|
|
19942
20259
|
* The name of the baseline.
|
|
20260
|
+
*
|
|
20261
|
+
* @example
|
|
20262
|
+
* Baseline name
|
|
19943
20263
|
*/
|
|
19944
20264
|
baselineName?: string;
|
|
19945
20265
|
/**
|
|
@@ -21058,46 +21378,76 @@ export class ListCalcEnginesResponseBodyData extends $dara.Model {
|
|
|
21058
21378
|
|
|
21059
21379
|
export class ListCheckProcessesResponseBodyPagingInfoCheckProcesses extends $dara.Model {
|
|
21060
21380
|
/**
|
|
21381
|
+
* @remarks
|
|
21382
|
+
* Extension point event encoding.
|
|
21383
|
+
*
|
|
21061
21384
|
* @example
|
|
21062
21385
|
* commit-file
|
|
21063
21386
|
*/
|
|
21064
21387
|
eventCode?: string;
|
|
21065
21388
|
/**
|
|
21389
|
+
* @remarks
|
|
21390
|
+
* The name of the extension point event.
|
|
21391
|
+
*
|
|
21066
21392
|
* @example
|
|
21067
21393
|
* DnsEvent
|
|
21068
21394
|
*/
|
|
21069
21395
|
eventName?: string;
|
|
21070
21396
|
/**
|
|
21397
|
+
* @remarks
|
|
21398
|
+
* The English name of the event.
|
|
21399
|
+
*
|
|
21071
21400
|
* @example
|
|
21072
21401
|
* Pre-event for Node Commit
|
|
21073
21402
|
*/
|
|
21074
21403
|
eventNameEn?: string;
|
|
21075
21404
|
/**
|
|
21405
|
+
* @remarks
|
|
21406
|
+
* DataWorks the message ID of the open message. After an extended point event is triggered, you can obtain the message ID from the received event message.
|
|
21407
|
+
*
|
|
21076
21408
|
* @example
|
|
21077
21409
|
* b824a5de-4223-4315-af3e-c4449d236db4
|
|
21078
21410
|
*/
|
|
21079
21411
|
messageId?: string;
|
|
21080
21412
|
/**
|
|
21413
|
+
* @remarks
|
|
21414
|
+
* The operator ID.
|
|
21415
|
+
*
|
|
21081
21416
|
* @example
|
|
21082
21417
|
* 297635
|
|
21083
21418
|
*/
|
|
21084
21419
|
operator?: string;
|
|
21085
21420
|
/**
|
|
21421
|
+
* @remarks
|
|
21422
|
+
* The ID of the process instance.
|
|
21423
|
+
*
|
|
21086
21424
|
* @example
|
|
21087
21425
|
* rdk_generate_d395da25-b0d3-4114-b2a5-d0247444a661_none_3496903_365203
|
|
21088
21426
|
*/
|
|
21089
21427
|
processId?: string;
|
|
21090
21428
|
/**
|
|
21429
|
+
* @remarks
|
|
21430
|
+
* The name of the check object, such as the file name or node name.
|
|
21431
|
+
*
|
|
21091
21432
|
* @example
|
|
21092
21433
|
* odps_sql_test
|
|
21093
21434
|
*/
|
|
21094
21435
|
processName?: string;
|
|
21095
21436
|
/**
|
|
21437
|
+
* @remarks
|
|
21438
|
+
* The ID of the DataWorks workspace.
|
|
21439
|
+
*
|
|
21096
21440
|
* @example
|
|
21097
21441
|
* 32563
|
|
21098
21442
|
*/
|
|
21099
21443
|
projectId?: number;
|
|
21100
21444
|
/**
|
|
21445
|
+
* @remarks
|
|
21446
|
+
* The status of the extender check.
|
|
21447
|
+
* - CHECKING CHECKING
|
|
21448
|
+
* - PASSED the pass check
|
|
21449
|
+
* - BLOCKED check failed
|
|
21450
|
+
*
|
|
21101
21451
|
* @example
|
|
21102
21452
|
* CHECKING
|
|
21103
21453
|
*/
|
|
@@ -21140,18 +21490,31 @@ export class ListCheckProcessesResponseBodyPagingInfoCheckProcesses extends $dar
|
|
|
21140
21490
|
}
|
|
21141
21491
|
|
|
21142
21492
|
export class ListCheckProcessesResponseBodyPagingInfo extends $dara.Model {
|
|
21493
|
+
/**
|
|
21494
|
+
* @remarks
|
|
21495
|
+
* The check details of the extension.
|
|
21496
|
+
*/
|
|
21143
21497
|
checkProcesses?: ListCheckProcessesResponseBodyPagingInfoCheckProcesses[];
|
|
21144
21498
|
/**
|
|
21499
|
+
* @remarks
|
|
21500
|
+
* The page number.
|
|
21501
|
+
*
|
|
21145
21502
|
* @example
|
|
21146
21503
|
* 1
|
|
21147
21504
|
*/
|
|
21148
21505
|
pageNumber?: number;
|
|
21149
21506
|
/**
|
|
21507
|
+
* @remarks
|
|
21508
|
+
* The number of entries displayed on each page.
|
|
21509
|
+
*
|
|
21150
21510
|
* @example
|
|
21151
21511
|
* 10
|
|
21152
21512
|
*/
|
|
21153
21513
|
pageSize?: number;
|
|
21154
21514
|
/**
|
|
21515
|
+
* @remarks
|
|
21516
|
+
* The total number of entries returned.
|
|
21517
|
+
*
|
|
21155
21518
|
* @example
|
|
21156
21519
|
* 12
|
|
21157
21520
|
*/
|
|
@@ -21924,6 +22287,9 @@ export class ListDIAlarmRulesResponseBodyDIAlarmRulePagingDIJobAlarmRules extend
|
|
|
21924
22287
|
/**
|
|
21925
22288
|
* @remarks
|
|
21926
22289
|
* The description of the alert rule.
|
|
22290
|
+
*
|
|
22291
|
+
* @example
|
|
22292
|
+
* mysql synchronizes to hologres heartbeat alert
|
|
21927
22293
|
*/
|
|
21928
22294
|
description?: string;
|
|
21929
22295
|
/**
|
|
@@ -23733,6 +24099,9 @@ export class ListDataServiceApisResponseBodyDataApis extends $dara.Model {
|
|
|
23733
24099
|
/**
|
|
23734
24100
|
* @remarks
|
|
23735
24101
|
* The name of the API.
|
|
24102
|
+
*
|
|
24103
|
+
* @example
|
|
24104
|
+
* My API name
|
|
23736
24105
|
*/
|
|
23737
24106
|
apiName?: string;
|
|
23738
24107
|
/**
|
|
@@ -23762,6 +24131,9 @@ export class ListDataServiceApisResponseBodyDataApis extends $dara.Model {
|
|
|
23762
24131
|
/**
|
|
23763
24132
|
* @remarks
|
|
23764
24133
|
* The description of the API.
|
|
24134
|
+
*
|
|
24135
|
+
* @example
|
|
24136
|
+
* Test API description
|
|
23765
24137
|
*/
|
|
23766
24138
|
description?: string;
|
|
23767
24139
|
/**
|
|
@@ -25713,6 +26085,9 @@ export class ListDataServicePublishedApisResponseBodyDataApis extends $dara.Mode
|
|
|
25713
26085
|
/**
|
|
25714
26086
|
* @remarks
|
|
25715
26087
|
* The name of the API.
|
|
26088
|
+
*
|
|
26089
|
+
* @example
|
|
26090
|
+
* My API name
|
|
25716
26091
|
*/
|
|
25717
26092
|
apiName?: string;
|
|
25718
26093
|
/**
|
|
@@ -25742,6 +26117,9 @@ export class ListDataServicePublishedApisResponseBodyDataApis extends $dara.Mode
|
|
|
25742
26117
|
/**
|
|
25743
26118
|
* @remarks
|
|
25744
26119
|
* The description.
|
|
26120
|
+
*
|
|
26121
|
+
* @example
|
|
26122
|
+
* Test API description
|
|
25745
26123
|
*/
|
|
25746
26124
|
description?: string;
|
|
25747
26125
|
/**
|
|
@@ -26516,11 +26894,17 @@ export class ListEnabledExtensionsForProjectResponseBodyExtensions extends $dara
|
|
|
26516
26894
|
/**
|
|
26517
26895
|
* @remarks
|
|
26518
26896
|
* The description of the extension.
|
|
26897
|
+
*
|
|
26898
|
+
* @example
|
|
26899
|
+
* ODPS SQL compatible Spark engine detection
|
|
26519
26900
|
*/
|
|
26520
26901
|
extensionDesc?: string;
|
|
26521
26902
|
/**
|
|
26522
26903
|
* @remarks
|
|
26523
26904
|
* The name of the extension.
|
|
26905
|
+
*
|
|
26906
|
+
* @example
|
|
26907
|
+
* max_pt function is not allowed.
|
|
26524
26908
|
*/
|
|
26525
26909
|
extensionName?: string;
|
|
26526
26910
|
/**
|
|
@@ -26642,6 +27026,9 @@ export class ListExtensionsResponseBodyPagingInfoExtensionsBindEventList extends
|
|
|
26642
27026
|
/**
|
|
26643
27027
|
* @remarks
|
|
26644
27028
|
* The name of the event.
|
|
27029
|
+
*
|
|
27030
|
+
* @example
|
|
27031
|
+
* File submission pre-event
|
|
26645
27032
|
*/
|
|
26646
27033
|
eventName?: string;
|
|
26647
27034
|
static names(): { [key: string]: string } {
|
|
@@ -26676,16 +27063,25 @@ export class ListExtensionsResponseBodyPagingInfoExtensions extends $dara.Model
|
|
|
26676
27063
|
/**
|
|
26677
27064
|
* @remarks
|
|
26678
27065
|
* The unique code of the extension.
|
|
27066
|
+
*
|
|
27067
|
+
* @example
|
|
27068
|
+
* Extension Code
|
|
26679
27069
|
*/
|
|
26680
27070
|
extensionCode?: string;
|
|
26681
27071
|
/**
|
|
26682
27072
|
* @remarks
|
|
26683
27073
|
* The description of the extension.
|
|
27074
|
+
*
|
|
27075
|
+
* @example
|
|
27076
|
+
* This is a description
|
|
26684
27077
|
*/
|
|
26685
27078
|
extensionDesc?: string;
|
|
26686
27079
|
/**
|
|
26687
27080
|
* @remarks
|
|
26688
27081
|
* The name of the extension.
|
|
27082
|
+
*
|
|
27083
|
+
* @example
|
|
27084
|
+
* Extension name
|
|
26689
27085
|
*/
|
|
26690
27086
|
extensionName?: string;
|
|
26691
27087
|
/**
|
|
@@ -26910,6 +27306,9 @@ export class ListFileVersionsResponseBodyDataFileVersions extends $dara.Model {
|
|
|
26910
27306
|
/**
|
|
26911
27307
|
* @remarks
|
|
26912
27308
|
* The description of the file version.
|
|
27309
|
+
*
|
|
27310
|
+
* @example
|
|
27311
|
+
* Second version submission
|
|
26913
27312
|
*/
|
|
26914
27313
|
comment?: string;
|
|
26915
27314
|
/**
|
|
@@ -27106,6 +27505,13 @@ export class ListFileVersionsResponseBodyData extends $dara.Model {
|
|
|
27106
27505
|
}
|
|
27107
27506
|
|
|
27108
27507
|
export class ListFilesResponseBodyDataFiles extends $dara.Model {
|
|
27508
|
+
/**
|
|
27509
|
+
* @remarks
|
|
27510
|
+
* The path of the folder where the file is located.
|
|
27511
|
+
*
|
|
27512
|
+
* @example
|
|
27513
|
+
* Business_process/my_first_business_process/MaxCompute/ods_layer
|
|
27514
|
+
*/
|
|
27109
27515
|
absoluteFolderPath?: string;
|
|
27110
27516
|
/**
|
|
27111
27517
|
* @remarks
|
|
@@ -27424,6 +27830,9 @@ export class ListFoldersResponseBodyDataFolders extends $dara.Model {
|
|
|
27424
27830
|
/**
|
|
27425
27831
|
* @remarks
|
|
27426
27832
|
* The path of the folder.
|
|
27833
|
+
*
|
|
27834
|
+
* @example
|
|
27835
|
+
* Business_process/my_first_business_process/MaxCompute/ods_layer
|
|
27427
27836
|
*/
|
|
27428
27837
|
folderPath?: string;
|
|
27429
27838
|
static names(): { [key: string]: string } {
|
|
@@ -27641,6 +28050,9 @@ export class ListInnerNodesResponseBodyPagingNodes extends $dara.Model {
|
|
|
27641
28050
|
/**
|
|
27642
28051
|
* @remarks
|
|
27643
28052
|
* The name of the resource group.
|
|
28053
|
+
*
|
|
28054
|
+
* @example
|
|
28055
|
+
* Default Resource Group
|
|
27644
28056
|
*/
|
|
27645
28057
|
resGroupName?: string;
|
|
27646
28058
|
/**
|
|
@@ -29097,6 +29509,9 @@ export class ListMigrationsResponseBodyDataMigrations extends $dara.Model {
|
|
|
29097
29509
|
/**
|
|
29098
29510
|
* @remarks
|
|
29099
29511
|
* The description of the export task.
|
|
29512
|
+
*
|
|
29513
|
+
* @example
|
|
29514
|
+
* Automated Test creation
|
|
29100
29515
|
*/
|
|
29101
29516
|
description?: string;
|
|
29102
29517
|
/**
|
|
@@ -29447,6 +29862,13 @@ export class ListNodesResponseBodyDataNodes extends $dara.Model {
|
|
|
29447
29862
|
* odps_first
|
|
29448
29863
|
*/
|
|
29449
29864
|
connection?: string;
|
|
29865
|
+
/**
|
|
29866
|
+
* @remarks
|
|
29867
|
+
* The timestamp when the node was created. Unit: milliseconds.
|
|
29868
|
+
*
|
|
29869
|
+
* @example
|
|
29870
|
+
* 1593879116000
|
|
29871
|
+
*/
|
|
29450
29872
|
createTime?: number;
|
|
29451
29873
|
/**
|
|
29452
29874
|
* @remarks
|
|
@@ -29456,6 +29878,13 @@ export class ListNodesResponseBodyDataNodes extends $dara.Model {
|
|
|
29456
29878
|
* 00 00 00 * * ?
|
|
29457
29879
|
*/
|
|
29458
29880
|
cronExpress?: string;
|
|
29881
|
+
/**
|
|
29882
|
+
* @remarks
|
|
29883
|
+
* The timestamp when the node was deployed. Unit: milliseconds.
|
|
29884
|
+
*
|
|
29885
|
+
* @example
|
|
29886
|
+
* 1734537600000
|
|
29887
|
+
*/
|
|
29459
29888
|
deployDate?: number;
|
|
29460
29889
|
/**
|
|
29461
29890
|
* @remarks
|
|
@@ -29481,9 +29910,38 @@ export class ListNodesResponseBodyDataNodes extends $dara.Model {
|
|
|
29481
29910
|
* 1
|
|
29482
29911
|
*/
|
|
29483
29912
|
dqcType?: number;
|
|
29913
|
+
/**
|
|
29914
|
+
* @remarks
|
|
29915
|
+
* The file ID. You can call the ListFiles operation to query the ID.
|
|
29916
|
+
*
|
|
29917
|
+
* @example
|
|
29918
|
+
* 20
|
|
29919
|
+
*/
|
|
29484
29920
|
fileId?: number;
|
|
29921
|
+
/**
|
|
29922
|
+
* @remarks
|
|
29923
|
+
* Different file types have different codes. For more information, see [DataWorks node collection](https://help.aliyun.com/document_detail/600169.html).
|
|
29924
|
+
* You can also call the [ListFileType](https://help.aliyun.com/document_detail/212428.html) interface to query the code type of the file.
|
|
29925
|
+
*
|
|
29926
|
+
* @example
|
|
29927
|
+
* 10
|
|
29928
|
+
*/
|
|
29485
29929
|
fileType?: number;
|
|
29930
|
+
/**
|
|
29931
|
+
* @remarks
|
|
29932
|
+
* The latest version number of the file.
|
|
29933
|
+
*
|
|
29934
|
+
* @example
|
|
29935
|
+
* 3
|
|
29936
|
+
*/
|
|
29486
29937
|
fileVersion?: number;
|
|
29938
|
+
/**
|
|
29939
|
+
* @remarks
|
|
29940
|
+
* The timestamp when the node was modified. Unit: milliseconds.
|
|
29941
|
+
*
|
|
29942
|
+
* @example
|
|
29943
|
+
* 1593879116000
|
|
29944
|
+
*/
|
|
29487
29945
|
modifyTime?: number;
|
|
29488
29946
|
/**
|
|
29489
29947
|
* @remarks
|
|
@@ -29557,6 +30015,13 @@ export class ListNodesResponseBodyDataNodes extends $dara.Model {
|
|
|
29557
30015
|
* 60
|
|
29558
30016
|
*/
|
|
29559
30017
|
repeatInterval?: number;
|
|
30018
|
+
/**
|
|
30019
|
+
* @remarks
|
|
30020
|
+
* The rerun mode. The value 0 indicates that rerun can be performed only if a failure occurs. The value 1 indicates that rerun can be performed in all cases. The value 2 indicates that rerun cannot be performed in all cases.
|
|
30021
|
+
*
|
|
30022
|
+
* @example
|
|
30023
|
+
* 1
|
|
30024
|
+
*/
|
|
29560
30025
|
repeatMode?: number;
|
|
29561
30026
|
/**
|
|
29562
30027
|
* @remarks
|
|
@@ -29566,6 +30031,13 @@ export class ListNodesResponseBodyDataNodes extends $dara.Model {
|
|
|
29566
30031
|
* true
|
|
29567
30032
|
*/
|
|
29568
30033
|
repeatability?: boolean;
|
|
30034
|
+
/**
|
|
30035
|
+
* @remarks
|
|
30036
|
+
* The identifier of the resource group.
|
|
30037
|
+
*
|
|
30038
|
+
* @example
|
|
30039
|
+
* group_123
|
|
30040
|
+
*/
|
|
29569
30041
|
resGroupIdentifier?: string;
|
|
29570
30042
|
/**
|
|
29571
30043
|
* @remarks
|
|
@@ -29659,12 +30131,7 @@ export class ListNodesResponseBodyDataNodes extends $dara.Model {
|
|
|
29659
30131
|
export class ListNodesResponseBodyData extends $dara.Model {
|
|
29660
30132
|
/**
|
|
29661
30133
|
* @remarks
|
|
29662
|
-
* The
|
|
29663
|
-
*
|
|
29664
|
-
* * NORMAL: indicates that the node is a normal auto triggered node.
|
|
29665
|
-
* * MANUAL: indicates that the node is a manually triggered node.
|
|
29666
|
-
* * PAUSE: indicates that the node is a paused node.
|
|
29667
|
-
* * SKIP: indicates that the node is a dry-run node. Dry-run nodes are started as scheduled but the system sets the status of the nodes to successful when it starts to run them.
|
|
30134
|
+
* The information about the nodes.
|
|
29668
30135
|
*/
|
|
29669
30136
|
nodes?: ListNodesResponseBodyDataNodes[];
|
|
29670
30137
|
/**
|
|
@@ -29733,6 +30200,9 @@ export class ListNodesByBaselineResponseBodyData extends $dara.Model {
|
|
|
29733
30200
|
/**
|
|
29734
30201
|
* @remarks
|
|
29735
30202
|
* The name of the node.
|
|
30203
|
+
*
|
|
30204
|
+
* @example
|
|
30205
|
+
* Node name
|
|
29736
30206
|
*/
|
|
29737
30207
|
nodeName?: string;
|
|
29738
30208
|
/**
|
|
@@ -29920,6 +30390,9 @@ export class ListNodesByOutputResponseBodyDataNodeList extends $dara.Model {
|
|
|
29920
30390
|
/**
|
|
29921
30391
|
* @remarks
|
|
29922
30392
|
* The name of the resource group.
|
|
30393
|
+
*
|
|
30394
|
+
* @example
|
|
30395
|
+
* Default Resource Group
|
|
29923
30396
|
*/
|
|
29924
30397
|
resGroupName?: string;
|
|
29925
30398
|
/**
|
|
@@ -31139,6 +31612,9 @@ export class ListQualityResultsByEntityResponseBodyDataRuleChecks extends $dara.
|
|
|
31139
31612
|
/**
|
|
31140
31613
|
* @remarks
|
|
31141
31614
|
* The description of the monitoring rule.
|
|
31615
|
+
*
|
|
31616
|
+
* @example
|
|
31617
|
+
* The description of the rule.
|
|
31142
31618
|
*/
|
|
31143
31619
|
comment?: string;
|
|
31144
31620
|
/**
|
|
@@ -31310,6 +31786,9 @@ export class ListQualityResultsByEntityResponseBodyDataRuleChecks extends $dara.
|
|
|
31310
31786
|
/**
|
|
31311
31787
|
* @remarks
|
|
31312
31788
|
* The name of the monitoring rule.
|
|
31789
|
+
*
|
|
31790
|
+
* @example
|
|
31791
|
+
* The name of the rule.
|
|
31313
31792
|
*/
|
|
31314
31793
|
ruleName?: string;
|
|
31315
31794
|
/**
|
|
@@ -31344,6 +31823,9 @@ export class ListQualityResultsByEntityResponseBodyDataRuleChecks extends $dara.
|
|
|
31344
31823
|
/**
|
|
31345
31824
|
* @remarks
|
|
31346
31825
|
* The name of the monitoring template.
|
|
31826
|
+
*
|
|
31827
|
+
* @example
|
|
31828
|
+
* Expected value verification
|
|
31347
31829
|
*/
|
|
31348
31830
|
templateName?: string;
|
|
31349
31831
|
/**
|
|
@@ -31752,6 +32234,9 @@ export class ListQualityResultsByRuleResponseBodyDataRuleChecks extends $dara.Mo
|
|
|
31752
32234
|
/**
|
|
31753
32235
|
* @remarks
|
|
31754
32236
|
* The description of the monitoring rule.
|
|
32237
|
+
*
|
|
32238
|
+
* @example
|
|
32239
|
+
* The description of the rule.
|
|
31755
32240
|
*/
|
|
31756
32241
|
comment?: string;
|
|
31757
32242
|
/**
|
|
@@ -31931,6 +32416,9 @@ export class ListQualityResultsByRuleResponseBodyDataRuleChecks extends $dara.Mo
|
|
|
31931
32416
|
/**
|
|
31932
32417
|
* @remarks
|
|
31933
32418
|
* The name of the monitoring rule.
|
|
32419
|
+
*
|
|
32420
|
+
* @example
|
|
32421
|
+
* The name of the rule.
|
|
31934
32422
|
*/
|
|
31935
32423
|
ruleName?: string;
|
|
31936
32424
|
/**
|
|
@@ -31965,6 +32453,9 @@ export class ListQualityResultsByRuleResponseBodyDataRuleChecks extends $dara.Mo
|
|
|
31965
32453
|
/**
|
|
31966
32454
|
* @remarks
|
|
31967
32455
|
* The name of the monitoring template.
|
|
32456
|
+
*
|
|
32457
|
+
* @example
|
|
32458
|
+
* Expected value verification
|
|
31968
32459
|
*/
|
|
31969
32460
|
templateName?: string;
|
|
31970
32461
|
/**
|
|
@@ -32199,6 +32690,9 @@ export class ListQualityRulesResponseBodyDataRules extends $dara.Model {
|
|
|
32199
32690
|
/**
|
|
32200
32691
|
* @remarks
|
|
32201
32692
|
* The description of the system defense rule.
|
|
32693
|
+
*
|
|
32694
|
+
* @example
|
|
32695
|
+
* Verify table rules
|
|
32202
32696
|
*/
|
|
32203
32697
|
comment?: string;
|
|
32204
32698
|
/**
|
|
@@ -32368,6 +32862,9 @@ export class ListQualityRulesResponseBodyDataRules extends $dara.Model {
|
|
|
32368
32862
|
/**
|
|
32369
32863
|
* @remarks
|
|
32370
32864
|
* The name of the monitoring template.
|
|
32865
|
+
*
|
|
32866
|
+
* @example
|
|
32867
|
+
* Number of SQL task table rows, 1, 7, and 30 days wave detection
|
|
32371
32868
|
*/
|
|
32372
32869
|
templateName?: string;
|
|
32373
32870
|
/**
|
|
@@ -33174,6 +33671,9 @@ export class ListShiftPersonnelsResponseBodyPagingShiftPersons extends $dara.Mod
|
|
|
33174
33671
|
/**
|
|
33175
33672
|
* @remarks
|
|
33176
33673
|
* The name of the on-duty engineer.
|
|
33674
|
+
*
|
|
33675
|
+
* @example
|
|
33676
|
+
* Zhang San
|
|
33177
33677
|
*/
|
|
33178
33678
|
shiftPersonName?: string;
|
|
33179
33679
|
/**
|
|
@@ -33283,6 +33783,9 @@ export class ListShiftSchedulesResponseBodyPagingShiftSchedules extends $dara.Mo
|
|
|
33283
33783
|
/**
|
|
33284
33784
|
* @remarks
|
|
33285
33785
|
* The name of the shift schedule.
|
|
33786
|
+
*
|
|
33787
|
+
* @example
|
|
33788
|
+
* Duty table name
|
|
33286
33789
|
*/
|
|
33287
33790
|
shiftScheduleName?: string;
|
|
33288
33791
|
static names(): { [key: string]: string } {
|
|
@@ -33780,31 +34283,49 @@ export class ListTableThemeResponseBodyData extends $dara.Model {
|
|
|
33780
34283
|
|
|
33781
34284
|
export class ListTablesResponseBodyDataTableEntityListEntityContent extends $dara.Model {
|
|
33782
34285
|
/**
|
|
34286
|
+
* @remarks
|
|
34287
|
+
* The unique identifier of the data source.
|
|
34288
|
+
*
|
|
33783
34289
|
* @example
|
|
33784
34290
|
* accountId:cn-shanghai:odps:project
|
|
33785
34291
|
*/
|
|
33786
34292
|
dataSourceQualifiedName?: string;
|
|
33787
34293
|
/**
|
|
34294
|
+
* @remarks
|
|
34295
|
+
* The unique ID of the data source identifier.
|
|
34296
|
+
*
|
|
33788
34297
|
* @example
|
|
33789
34298
|
* e70f92239d491057f6a2563b545bdaf8cc6b537d9dc55ec84c55f7cfefg
|
|
33790
34299
|
*/
|
|
33791
34300
|
dataSourceUniqueId?: string;
|
|
33792
34301
|
/**
|
|
34302
|
+
* @remarks
|
|
34303
|
+
* The name of the database.
|
|
34304
|
+
*
|
|
33793
34305
|
* @example
|
|
33794
34306
|
* database
|
|
33795
34307
|
*/
|
|
33796
34308
|
databaseName?: string;
|
|
33797
34309
|
/**
|
|
34310
|
+
* @remarks
|
|
34311
|
+
* The ID of the data source instance.
|
|
34312
|
+
*
|
|
33798
34313
|
* @example
|
|
33799
34314
|
* rm-uf6rn0123
|
|
33800
34315
|
*/
|
|
33801
34316
|
instanceId?: string;
|
|
33802
34317
|
/**
|
|
34318
|
+
* @remarks
|
|
34319
|
+
* The name of the ODPS project.
|
|
34320
|
+
*
|
|
33803
34321
|
* @example
|
|
33804
34322
|
* project
|
|
33805
34323
|
*/
|
|
33806
34324
|
projectName?: string;
|
|
33807
34325
|
/**
|
|
34326
|
+
* @remarks
|
|
34327
|
+
* The name of the table.
|
|
34328
|
+
*
|
|
33808
34329
|
* @example
|
|
33809
34330
|
* table
|
|
33810
34331
|
*/
|
|
@@ -33841,8 +34362,15 @@ export class ListTablesResponseBodyDataTableEntityListEntityContent extends $dar
|
|
|
33841
34362
|
}
|
|
33842
34363
|
|
|
33843
34364
|
export class ListTablesResponseBodyDataTableEntityList extends $dara.Model {
|
|
34365
|
+
/**
|
|
34366
|
+
* @remarks
|
|
34367
|
+
* Table entity information.
|
|
34368
|
+
*/
|
|
33844
34369
|
entityContent?: ListTablesResponseBodyDataTableEntityListEntityContent;
|
|
33845
34370
|
/**
|
|
34371
|
+
* @remarks
|
|
34372
|
+
* The unique identifier of the table entity.
|
|
34373
|
+
*
|
|
33846
34374
|
* @example
|
|
33847
34375
|
* maxcompute-table.project.table
|
|
33848
34376
|
*/
|
|
@@ -33875,12 +34403,22 @@ export class ListTablesResponseBodyDataTableEntityList extends $dara.Model {
|
|
|
33875
34403
|
|
|
33876
34404
|
export class ListTablesResponseBodyData extends $dara.Model {
|
|
33877
34405
|
/**
|
|
34406
|
+
* @remarks
|
|
34407
|
+
* Pagination information, which specifies the starting point of the next read.
|
|
34408
|
+
*
|
|
33878
34409
|
* @example
|
|
33879
34410
|
* AAAAAVY3rYiv9VoUJQSiCitgjgSwg+byk0FIjirFkm4zfM4G0xYwM/FQvOhgrTHsCPIZ5yqXYu2NG6qRCRC52HvwbOA=
|
|
33880
34411
|
*/
|
|
33881
34412
|
nextToken?: string;
|
|
34413
|
+
/**
|
|
34414
|
+
* @remarks
|
|
34415
|
+
* Entity array.
|
|
34416
|
+
*/
|
|
33882
34417
|
tableEntityList?: ListTablesResponseBodyDataTableEntityList[];
|
|
33883
34418
|
/**
|
|
34419
|
+
* @remarks
|
|
34420
|
+
* The total number.
|
|
34421
|
+
*
|
|
33884
34422
|
* @example
|
|
33885
34423
|
* 100
|
|
33886
34424
|
*/
|
|
@@ -34862,6 +35400,9 @@ export class TestNetworkConnectionResponseBodyTaskList extends $dara.Model {
|
|
|
34862
35400
|
/**
|
|
34863
35401
|
* @remarks
|
|
34864
35402
|
* The reason why the data source and resource group failed the connectivity test. If data source and the resource group passed the connectivity test, this parameter is left empty.
|
|
35403
|
+
*
|
|
35404
|
+
* @example
|
|
35405
|
+
* Connectable
|
|
34865
35406
|
*/
|
|
34866
35407
|
connectMessage?: string;
|
|
34867
35408
|
/**
|
|
@@ -34934,6 +35475,9 @@ export class TopTenElapsedTimeInstanceResponseBodyInstanceConsumeTimeRankConsume
|
|
|
34934
35475
|
/**
|
|
34935
35476
|
* @remarks
|
|
34936
35477
|
* The name of the node.
|
|
35478
|
+
*
|
|
35479
|
+
* @example
|
|
35480
|
+
* Node name
|
|
34937
35481
|
*/
|
|
34938
35482
|
nodeName?: string;
|
|
34939
35483
|
/**
|
|
@@ -35045,6 +35589,9 @@ export class TopTenErrorTimesInstanceResponseBodyInstanceErrorRankErrorRank exte
|
|
|
35045
35589
|
/**
|
|
35046
35590
|
* @remarks
|
|
35047
35591
|
* The name of the node.
|
|
35592
|
+
*
|
|
35593
|
+
* @example
|
|
35594
|
+
* Node name
|
|
35048
35595
|
*/
|
|
35049
35596
|
nodeName?: string;
|
|
35050
35597
|
/**
|
|
@@ -35601,6 +36148,9 @@ export class UpdateDIJobRequestJobSettingsColumnDataTypeSettings extends $dara.M
|
|
|
35601
36148
|
|
|
35602
36149
|
export class UpdateDIJobRequestJobSettingsCycleScheduleSettings extends $dara.Model {
|
|
35603
36150
|
/**
|
|
36151
|
+
* @remarks
|
|
36152
|
+
* The scheduling parameters.
|
|
36153
|
+
*
|
|
35604
36154
|
* @example
|
|
35605
36155
|
* bizdate=$bizdate
|
|
35606
36156
|
*/
|
|
@@ -35683,14 +36233,14 @@ export class UpdateDIJobRequestJobSettingsRuntimeSettings extends $dara.Model {
|
|
|
35683
36233
|
* @remarks
|
|
35684
36234
|
* The name of the configuration item. Valid values:
|
|
35685
36235
|
*
|
|
35686
|
-
* * runtime.offline.speed.limit.mb:
|
|
35687
|
-
* * runtime.offline.speed.limit.enable:
|
|
35688
|
-
* * dst.offline.connection.max:
|
|
35689
|
-
* * runtime.offline.concurrent:
|
|
35690
|
-
* * dst.realtime.connection.max:
|
|
35691
|
-
* * runtime.enable.auto.create.schema:
|
|
35692
|
-
* * src.offline.datasource.max.connection:
|
|
35693
|
-
* * runtime.realtime.concurrent:
|
|
36236
|
+
* * runtime.offline.speed.limit.mb: specifies the maximum transmission rate that is allowed for a batch synchronization task. This configuration item takes effect only when runtime.offline.speed.limit.enable is set to true.
|
|
36237
|
+
* * runtime.offline.speed.limit.enable: specifies whether throttling is enabled for a batch synchronization task.
|
|
36238
|
+
* * dst.offline.connection.max: specifies the maximum number of connections that are allowed for writing data to the destination of a batch synchronization task.
|
|
36239
|
+
* * runtime.offline.concurrent: specifies the maximum number of parallel threads that are allowed for a batch synchronization task.
|
|
36240
|
+
* * dst.realtime.connection.max: specifies the maximum number of connections that are allowed for writing data to the destination of a real-time synchronization task.
|
|
36241
|
+
* * runtime.enable.auto.create.schema: specifies whether schemas are automatically created in the destination of a synchronization task.
|
|
36242
|
+
* * src.offline.datasource.max.connection: specifies the maximum number of connections that are allowed for reading data from the source of a batch synchronization task.
|
|
36243
|
+
* * runtime.realtime.concurrent: specifies the maximum number of parallel threads that are allowed for a real-time synchronization task.
|
|
35694
36244
|
*
|
|
35695
36245
|
* @example
|
|
35696
36246
|
* runtime.offline.concurrent
|
|
@@ -35729,6 +36279,9 @@ export class UpdateDIJobRequestJobSettingsRuntimeSettings extends $dara.Model {
|
|
|
35729
36279
|
|
|
35730
36280
|
export class UpdateDIJobRequestJobSettings extends $dara.Model {
|
|
35731
36281
|
/**
|
|
36282
|
+
* @remarks
|
|
36283
|
+
* The channel control settings for the synchronization task. The value of this parameter must be a JSON string.
|
|
36284
|
+
*
|
|
35732
36285
|
* @example
|
|
35733
36286
|
* {"structInfo":"MANAGED","storageType":"TEXTFILE","writeMode":"APPEND","partitionColumns":[{"columnName":"pt","columnType":"STRING","comment":""}],"fieldDelimiter":""}
|
|
35734
36287
|
*/
|
|
@@ -35738,6 +36291,10 @@ export class UpdateDIJobRequestJobSettings extends $dara.Model {
|
|
|
35738
36291
|
* The settings for data type mappings between source fields and destination fields. The value of this parameter must be an array.
|
|
35739
36292
|
*/
|
|
35740
36293
|
columnDataTypeSettings?: UpdateDIJobRequestJobSettingsColumnDataTypeSettings[];
|
|
36294
|
+
/**
|
|
36295
|
+
* @remarks
|
|
36296
|
+
* The settings for periodic scheduling.
|
|
36297
|
+
*/
|
|
35741
36298
|
cycleScheduleSettings?: UpdateDIJobRequestJobSettingsCycleScheduleSettings;
|
|
35742
36299
|
/**
|
|
35743
36300
|
* @remarks
|
|
@@ -35862,6 +36419,9 @@ export class UpdateDIJobRequestResourceSettings extends $dara.Model {
|
|
|
35862
36419
|
*/
|
|
35863
36420
|
realtimeResourceSettings?: UpdateDIJobRequestResourceSettingsRealtimeResourceSettings;
|
|
35864
36421
|
/**
|
|
36422
|
+
* @remarks
|
|
36423
|
+
* The number of compute units (CUs) in the resource group that are used for full and incremental synchronization.
|
|
36424
|
+
*
|
|
35865
36425
|
* @example
|
|
35866
36426
|
* 2.0
|
|
35867
36427
|
*/
|
|
@@ -35949,6 +36509,10 @@ export class UpdateDIJobRequestTableMappingsTransformationRules extends $dara.Mo
|
|
|
35949
36509
|
* * Rename
|
|
35950
36510
|
* * AddColumn
|
|
35951
36511
|
* * HandleDml
|
|
36512
|
+
* * DefineIncrementalCondition
|
|
36513
|
+
* * DefineCycleScheduleSettings
|
|
36514
|
+
* * DefineRuntimeSettings
|
|
36515
|
+
* * DefinePartitionKey
|
|
35952
36516
|
*
|
|
35953
36517
|
* @example
|
|
35954
36518
|
* Rename
|
|
@@ -36001,12 +36565,12 @@ export class UpdateDIJobRequestTableMappingsTransformationRules extends $dara.Mo
|
|
|
36001
36565
|
export class UpdateDIJobRequestTableMappings extends $dara.Model {
|
|
36002
36566
|
/**
|
|
36003
36567
|
* @remarks
|
|
36004
|
-
* The
|
|
36568
|
+
* The list of rules that you want to use to select synchronization objects in the source.
|
|
36005
36569
|
*/
|
|
36006
36570
|
sourceObjectSelectionRules?: UpdateDIJobRequestTableMappingsSourceObjectSelectionRules[];
|
|
36007
36571
|
/**
|
|
36008
36572
|
* @remarks
|
|
36009
|
-
* The transformation rules that
|
|
36573
|
+
* The list of transformation rules that you want to apply to the synchronization objects selected from the source.
|
|
36010
36574
|
*/
|
|
36011
36575
|
transformationRules?: UpdateDIJobRequestTableMappingsTransformationRules[];
|
|
36012
36576
|
static names(): { [key: string]: string } {
|
|
@@ -36047,6 +36611,10 @@ export class UpdateDIJobRequestTransformationRules extends $dara.Model {
|
|
|
36047
36611
|
* * Rename
|
|
36048
36612
|
* * AddColumn
|
|
36049
36613
|
* * HandleDml
|
|
36614
|
+
* * DefineIncrementalCondition
|
|
36615
|
+
* * DefineCycleScheduleSettings
|
|
36616
|
+
* * DefineRuntimeSettings
|
|
36617
|
+
* * DefinePartitionKey
|
|
36050
36618
|
*
|
|
36051
36619
|
* @example
|
|
36052
36620
|
* Rename
|
|
@@ -36054,17 +36622,17 @@ export class UpdateDIJobRequestTransformationRules extends $dara.Model {
|
|
|
36054
36622
|
ruleActionType?: string;
|
|
36055
36623
|
/**
|
|
36056
36624
|
* @remarks
|
|
36057
|
-
* The expression of the rule. The expression
|
|
36625
|
+
* The expression of the rule. The expression must be a JSON string.
|
|
36058
36626
|
*
|
|
36059
36627
|
* Example of a renaming rule: {"expression":"${srcDatasourceName}_${srcDatabaseName}_0922","variables":[{"variableName":"srcDatabaseName","variableRules":[{"from":"fromdb","to":"todb"}]}]}.
|
|
36060
36628
|
*
|
|
36061
|
-
* expression: the expression of the renaming rule. The expression may contain the following variables: ${srcDatasourceName}, ${srcDatabaseName}, and ${srcTableName}. ${srcDatasourceName}
|
|
36629
|
+
* expression: the expression of the renaming rule. The expression may contain the following variables: ${srcDatasourceName}, ${srcDatabaseName}, and ${srcTableName}. ${srcDatasourceName} specifies the name of the source. ${srcDatabaseName} specifies the name of a source database. ${srcTableName} specifies the name of a source table. variables: the generation rule for a variable used in the expression of the renaming rule. The default value of the specified variable is the original value of the object indicated by the variable. You can define a group of string replacement rules to change the original values based on your business requirements. variableName: the name of the variable. Do not enclose the variable name in ${}. variableRules: the string replacement rules for variables. The system runs the string replacement rules in sequence. from specifies the original string. to specifies the new string. Example of a rule used to add a specific field to the destination and assign a value to the field: {"columns":[{"columnName":"my_add_column","columnValueType":"Constant","columnValue":"123"}]}.
|
|
36062
36630
|
*
|
|
36063
|
-
* If
|
|
36631
|
+
* If you do not configure such a rule, no fields are added to the destination and no values are assigned by default. columnName: the name of the field that you want to add. columnValueType: the value type of the field. Valid values: Constant and Variable. columnValue: the value of the field that you want to add. If you set the valueType parameter to Constant, set the columnValue parameter to a custom constant of the STRING type. If you set the valueType parameter to Variable, set the columnValue to a built-in variable. The following built-in variables are supported: EXECUTE_TIME (LONG data type), DB_NAME_SRC (STRING data type), DATASOURCE_NAME_SRC (STRING data type), TABLE_NAME_SRC (STRING data type), DB_NAME_DEST (STRING data type), DATASOURCE_NAME_DEST (STRING data type), TABLE_NAME_DEST (STRING data type), and DB_NAME_SRC_TRANSED (STRING data type). EXECUTE_TIME specifies the execution time. DB_NAME_SRC indicates the name of a source database. DATASOURCE_NAME_SRC specifies the name of the source. TABLE_NAME_SRC specifies the name of a source table. DB_NAME_DEST specifies the name of a destination database. DATASOURCE_NAME_DEST specifies the name of the destination. TABLE_NAME_DEST specifies the name of a destination table. DB_NAME_SRC_TRANSED specifies the database name obtained after a transformation. Example of a rule used to specify primary key fields for a destination table: {"columns":["ukcolumn1","ukcolumn2"]}.
|
|
36064
36632
|
*
|
|
36065
|
-
* If
|
|
36633
|
+
* If you do not configure such a rule, the primary key fields in the mapped source table are used for the destination table by default. If the destination table is an existing table, Data Integration does not modify the schema of the destination table. If the specified primary key fields do not exist in the destination table, an error is reported when the synchronization task starts to run. If the destination table is automatically created by the system, Data Integration automatically creates the schema of the destination table. The schema contains the primary key fields that you specify. If the specified primary key fields do not exist in the destination table, an error is reported when the synchronization task starts to run. Example of a rule used to process DML messages: {"dmlPolicies":[{"dmlType":"Delete","dmlAction":"Filter","filterCondition":"id > 1"}]}.
|
|
36066
36634
|
*
|
|
36067
|
-
* If
|
|
36635
|
+
* If you do not configure such a rule, the default processing policy for messages generated for insert, update, and delete operations is Normal. dmlType: the DML operation. Valid values: Insert, Update, and Delete. dmlAction: the processing policy for DML messages. Valid values: Normal, Ignore, Filter, and LogicalDelete. Filter indicates conditional processing. You can set the dmlAction parameter to Filter only when the dmlType parameter is set to Update or Delete. filterCondition: the condition used to filter DML messages. This parameter is required only when the dmlAction parameter is set to Filter.
|
|
36068
36636
|
*
|
|
36069
36637
|
* @example
|
|
36070
36638
|
* {"expression":"${srcDatasoureName}_${srcDatabaseName}"}
|
|
@@ -39248,10 +39816,10 @@ export class CreateBusinessRequest extends $dara.Model {
|
|
|
39248
39816
|
projectIdentifier?: string;
|
|
39249
39817
|
/**
|
|
39250
39818
|
* @remarks
|
|
39251
|
-
* The module to which the
|
|
39819
|
+
* The module to which the workflow belongs. Valid values:
|
|
39252
39820
|
*
|
|
39253
|
-
*
|
|
39254
|
-
*
|
|
39821
|
+
* * NORMAL: The workflow belongs to auto triggered workflows.
|
|
39822
|
+
* * MANUAL_BIZ: The workflow belongs to manually triggered workflows.
|
|
39255
39823
|
*
|
|
39256
39824
|
* @example
|
|
39257
39825
|
* NORMAL
|
|
@@ -39291,7 +39859,7 @@ export class CreateBusinessRequest extends $dara.Model {
|
|
|
39291
39859
|
export class CreateBusinessResponseBody extends $dara.Model {
|
|
39292
39860
|
/**
|
|
39293
39861
|
* @remarks
|
|
39294
|
-
* The ID
|
|
39862
|
+
* The workflow ID.
|
|
39295
39863
|
*
|
|
39296
39864
|
* @example
|
|
39297
39865
|
* 100001
|
|
@@ -39323,7 +39891,7 @@ export class CreateBusinessResponseBody extends $dara.Model {
|
|
|
39323
39891
|
httpStatusCode?: number;
|
|
39324
39892
|
/**
|
|
39325
39893
|
* @remarks
|
|
39326
|
-
* The request ID.
|
|
39894
|
+
* The request ID.
|
|
39327
39895
|
*
|
|
39328
39896
|
* @example
|
|
39329
39897
|
* 0000-ABCD-EFG****
|
|
@@ -39331,7 +39899,7 @@ export class CreateBusinessResponseBody extends $dara.Model {
|
|
|
39331
39899
|
requestId?: string;
|
|
39332
39900
|
/**
|
|
39333
39901
|
* @remarks
|
|
39334
|
-
* Indicates whether the request
|
|
39902
|
+
* Indicates whether the request was successful.
|
|
39335
39903
|
*
|
|
39336
39904
|
* @example
|
|
39337
39905
|
* true
|
|
@@ -39807,7 +40375,7 @@ export class CreateDIAlarmRuleRequest extends $dara.Model {
|
|
|
39807
40375
|
DIJobId?: number;
|
|
39808
40376
|
/**
|
|
39809
40377
|
* @remarks
|
|
39810
|
-
* The description of the
|
|
40378
|
+
* The description of the task.
|
|
39811
40379
|
*
|
|
39812
40380
|
* @example
|
|
39813
40381
|
* mysql synchronizes to hologres heartbeat alert
|
|
@@ -39899,7 +40467,7 @@ export class CreateDIAlarmRuleShrinkRequest extends $dara.Model {
|
|
|
39899
40467
|
DIJobId?: number;
|
|
39900
40468
|
/**
|
|
39901
40469
|
* @remarks
|
|
39902
|
-
* The description of the
|
|
40470
|
+
* The description of the task.
|
|
39903
40471
|
*
|
|
39904
40472
|
* @example
|
|
39905
40473
|
* mysql synchronizes to hologres heartbeat alert
|
|
@@ -42412,10 +42980,10 @@ export class CreateFileRequest extends $dara.Model {
|
|
|
42412
42980
|
content?: string;
|
|
42413
42981
|
/**
|
|
42414
42982
|
* @remarks
|
|
42415
|
-
*
|
|
42983
|
+
* Specifies whether to automatically create the directory that is specified by the FileFolderPath parameter if the directory does not exist. Valid values:
|
|
42416
42984
|
*
|
|
42417
|
-
*
|
|
42418
|
-
*
|
|
42985
|
+
* * true: The system automatically creates the directory if the directory does not exist.
|
|
42986
|
+
* * false: The system does not automatically create the directory if the directory does not exist. In this case, the call fails.
|
|
42419
42987
|
*
|
|
42420
42988
|
* @example
|
|
42421
42989
|
* false
|
|
@@ -42535,6 +43103,7 @@ export class CreateFileRequest extends $dara.Model {
|
|
|
42535
43103
|
* false
|
|
42536
43104
|
*/
|
|
42537
43105
|
ignoreParentSkipRunningProperty?: boolean;
|
|
43106
|
+
imageId?: string;
|
|
42538
43107
|
/**
|
|
42539
43108
|
* @remarks
|
|
42540
43109
|
* The output name of the parent file on which the current file depends. If you specify multiple output names, separate them with commas (,).
|
|
@@ -42713,6 +43282,7 @@ export class CreateFileRequest extends $dara.Model {
|
|
|
42713
43282
|
fileName: 'FileName',
|
|
42714
43283
|
fileType: 'FileType',
|
|
42715
43284
|
ignoreParentSkipRunningProperty: 'IgnoreParentSkipRunningProperty',
|
|
43285
|
+
imageId: 'ImageId',
|
|
42716
43286
|
inputList: 'InputList',
|
|
42717
43287
|
inputParameters: 'InputParameters',
|
|
42718
43288
|
outputParameters: 'OutputParameters',
|
|
@@ -42751,6 +43321,7 @@ export class CreateFileRequest extends $dara.Model {
|
|
|
42751
43321
|
fileName: 'string',
|
|
42752
43322
|
fileType: 'number',
|
|
42753
43323
|
ignoreParentSkipRunningProperty: 'boolean',
|
|
43324
|
+
imageId: 'string',
|
|
42754
43325
|
inputList: 'string',
|
|
42755
43326
|
inputParameters: 'string',
|
|
42756
43327
|
outputParameters: 'string',
|
|
@@ -42899,7 +43470,7 @@ export class CreateFileResponse extends $dara.Model {
|
|
|
42899
43470
|
export class CreateFolderRequest extends $dara.Model {
|
|
42900
43471
|
/**
|
|
42901
43472
|
* @remarks
|
|
42902
|
-
* The
|
|
43473
|
+
* The path of the folder.
|
|
42903
43474
|
*
|
|
42904
43475
|
* This parameter is required.
|
|
42905
43476
|
*
|
|
@@ -45356,7 +45927,7 @@ export class CreateQualityRuleRequest extends $dara.Model {
|
|
|
45356
45927
|
checker?: number;
|
|
45357
45928
|
/**
|
|
45358
45929
|
* @remarks
|
|
45359
|
-
* The description of the
|
|
45930
|
+
* The description of the rule.
|
|
45360
45931
|
*
|
|
45361
45932
|
* @example
|
|
45362
45933
|
* Verification
|
|
@@ -47091,10 +47662,10 @@ export class CreateUdfFileRequest extends $dara.Model {
|
|
|
47091
47662
|
cmdDescription?: string;
|
|
47092
47663
|
/**
|
|
47093
47664
|
* @remarks
|
|
47094
|
-
*
|
|
47665
|
+
* Specifies whether to automatically create the directory that is specified by the FileFolderPath parameter if the directory does not exist. Valid values:
|
|
47095
47666
|
*
|
|
47096
|
-
*
|
|
47097
|
-
*
|
|
47667
|
+
* * true: The system automatically creates the directory if the directory does not exist.
|
|
47668
|
+
* * false: The system does not automatically create the directory if the directory does not exist. In this case, the call fails.
|
|
47098
47669
|
*
|
|
47099
47670
|
* @example
|
|
47100
47671
|
* false
|
|
@@ -47182,7 +47753,7 @@ export class CreateUdfFileRequest extends $dara.Model {
|
|
|
47182
47753
|
returnValue?: string;
|
|
47183
47754
|
/**
|
|
47184
47755
|
* @remarks
|
|
47185
|
-
* The description of the function. This parameter corresponds to the Description parameter in the Register Function section of the configuration tab of the function
|
|
47756
|
+
* The description of the function. This parameter corresponds to the Description parameter in the Register Function section of the configuration tab of the function on the DataStudio page.
|
|
47186
47757
|
*
|
|
47187
47758
|
* @example
|
|
47188
47759
|
* Concatenate several strings to generate a new string
|
|
@@ -53693,7 +54264,7 @@ export class DsgSceneQuerySceneListByNameRequest extends $dara.Model {
|
|
|
53693
54264
|
export class DsgSceneQuerySceneListByNameResponseBody extends $dara.Model {
|
|
53694
54265
|
/**
|
|
53695
54266
|
* @remarks
|
|
53696
|
-
* The data
|
|
54267
|
+
* The returned data.
|
|
53697
54268
|
*/
|
|
53698
54269
|
data?: DsgSceneQuerySceneListByNameResponseBodyData[];
|
|
53699
54270
|
/**
|
|
@@ -63231,7 +63802,9 @@ export class GetMetaTableColumnResponse extends $dara.Model {
|
|
|
63231
63802
|
export class GetMetaTableFullInfoRequest extends $dara.Model {
|
|
63232
63803
|
/**
|
|
63233
63804
|
* @remarks
|
|
63234
|
-
* The ID of the EMR cluster.
|
|
63805
|
+
* The ID of the EMR cluster. This parameter is required only if you set the DataSourceType parameter to emr.
|
|
63806
|
+
*
|
|
63807
|
+
* You can log on to the [EMR console](https://emr.console.aliyun.com/?spm=a2c4g.11186623.0.0.965cc5c2GeiHet#/cn-hangzhou) to query the ID.
|
|
63235
63808
|
*
|
|
63236
63809
|
* @example
|
|
63237
63810
|
* C-010A704DA760****
|
|
@@ -63239,7 +63812,7 @@ export class GetMetaTableFullInfoRequest extends $dara.Model {
|
|
|
63239
63812
|
clusterId?: string;
|
|
63240
63813
|
/**
|
|
63241
63814
|
* @remarks
|
|
63242
|
-
*
|
|
63815
|
+
* The type of the data source. Set the value to emr.
|
|
63243
63816
|
*
|
|
63244
63817
|
* @example
|
|
63245
63818
|
* emr
|
|
@@ -63247,7 +63820,9 @@ export class GetMetaTableFullInfoRequest extends $dara.Model {
|
|
|
63247
63820
|
dataSourceType?: string;
|
|
63248
63821
|
/**
|
|
63249
63822
|
* @remarks
|
|
63250
|
-
* The name of the
|
|
63823
|
+
* The name of the database. This parameter is required only if you set the DataSourceType parameter to emr.
|
|
63824
|
+
*
|
|
63825
|
+
* You can call the [ListMetaDB](https://help.aliyun.com/document_detail/185662.html) operation to query the database name.
|
|
63251
63826
|
*
|
|
63252
63827
|
* @example
|
|
63253
63828
|
* abc
|
|
@@ -63271,7 +63846,7 @@ export class GetMetaTableFullInfoRequest extends $dara.Model {
|
|
|
63271
63846
|
pageSize?: number;
|
|
63272
63847
|
/**
|
|
63273
63848
|
* @remarks
|
|
63274
|
-
* The unique identifier of the table. You can
|
|
63849
|
+
* The unique identifier of the table. You can call the [GetMetaDBTableList](https://help.aliyun.com/document_detail/173916.html) operation to query the unique identifier of the table.
|
|
63275
63850
|
*
|
|
63276
63851
|
* @example
|
|
63277
63852
|
* odps.engine_name.table_name
|
|
@@ -63279,7 +63854,9 @@ export class GetMetaTableFullInfoRequest extends $dara.Model {
|
|
|
63279
63854
|
tableGuid?: string;
|
|
63280
63855
|
/**
|
|
63281
63856
|
* @remarks
|
|
63282
|
-
* The name of the EMR
|
|
63857
|
+
* The name of the table in the EMR cluster. This parameter is required only if you set the DataSourceType parameter to emr.
|
|
63858
|
+
*
|
|
63859
|
+
* You can call the [GetMetaDBTableList](https://help.aliyun.com/document_detail/173916.html) operation to query the table name.
|
|
63283
63860
|
*
|
|
63284
63861
|
* @example
|
|
63285
63862
|
* abc
|
|
@@ -63321,12 +63898,12 @@ export class GetMetaTableFullInfoRequest extends $dara.Model {
|
|
|
63321
63898
|
export class GetMetaTableFullInfoResponseBody extends $dara.Model {
|
|
63322
63899
|
/**
|
|
63323
63900
|
* @remarks
|
|
63324
|
-
*
|
|
63901
|
+
* The business data.
|
|
63325
63902
|
*/
|
|
63326
63903
|
data?: GetMetaTableFullInfoResponseBodyData;
|
|
63327
63904
|
/**
|
|
63328
63905
|
* @remarks
|
|
63329
|
-
*
|
|
63906
|
+
* The error code.
|
|
63330
63907
|
*
|
|
63331
63908
|
* @example
|
|
63332
63909
|
* 1031203110005
|
|
@@ -63334,7 +63911,7 @@ export class GetMetaTableFullInfoResponseBody extends $dara.Model {
|
|
|
63334
63911
|
errorCode?: string;
|
|
63335
63912
|
/**
|
|
63336
63913
|
* @remarks
|
|
63337
|
-
*
|
|
63914
|
+
* The error message.
|
|
63338
63915
|
*
|
|
63339
63916
|
* @example
|
|
63340
63917
|
* The specified parameters are invalid.
|
|
@@ -63342,7 +63919,7 @@ export class GetMetaTableFullInfoResponseBody extends $dara.Model {
|
|
|
63342
63919
|
errorMessage?: string;
|
|
63343
63920
|
/**
|
|
63344
63921
|
* @remarks
|
|
63345
|
-
* HTTP status code.
|
|
63922
|
+
* The HTTP status code.
|
|
63346
63923
|
*
|
|
63347
63924
|
* @example
|
|
63348
63925
|
* 200
|
|
@@ -63350,7 +63927,7 @@ export class GetMetaTableFullInfoResponseBody extends $dara.Model {
|
|
|
63350
63927
|
httpStatusCode?: number;
|
|
63351
63928
|
/**
|
|
63352
63929
|
* @remarks
|
|
63353
|
-
*
|
|
63930
|
+
* The request ID.
|
|
63354
63931
|
*
|
|
63355
63932
|
* @example
|
|
63356
63933
|
* 0bc1411515937****
|
|
@@ -63358,7 +63935,7 @@ export class GetMetaTableFullInfoResponseBody extends $dara.Model {
|
|
|
63358
63935
|
requestId?: string;
|
|
63359
63936
|
/**
|
|
63360
63937
|
* @remarks
|
|
63361
|
-
*
|
|
63938
|
+
* Indicates whether the request was successful.
|
|
63362
63939
|
*
|
|
63363
63940
|
* @example
|
|
63364
63941
|
* true
|
|
@@ -65161,7 +65738,7 @@ export class GetNodeRequest extends $dara.Model {
|
|
|
65161
65738
|
nodeId?: number;
|
|
65162
65739
|
/**
|
|
65163
65740
|
* @remarks
|
|
65164
|
-
* The
|
|
65741
|
+
* The environment of the workspace. Valid values: PROD and DEV.
|
|
65165
65742
|
*
|
|
65166
65743
|
* This parameter is required.
|
|
65167
65744
|
*
|
|
@@ -66141,10 +66718,13 @@ export class GetOpRiskDataRequest extends $dara.Model {
|
|
|
66141
66718
|
pageSize?: number;
|
|
66142
66719
|
/**
|
|
66143
66720
|
* @remarks
|
|
66144
|
-
* The method that you use to identify risks.
|
|
66721
|
+
* The method that you use to identify risks.
|
|
66145
66722
|
*
|
|
66146
66723
|
* * You can manually identify risks.
|
|
66147
66724
|
* * You can also use a sensitive data identification rule to identify risks. You can log on to the DataWorks console and go to the Risk Identification Rules page in Data Security Guard to obtain the name of the rule.
|
|
66725
|
+
*
|
|
66726
|
+
* @example
|
|
66727
|
+
* Manual identification
|
|
66148
66728
|
*/
|
|
66149
66729
|
riskType?: string;
|
|
66150
66730
|
static names(): { [key: string]: string } {
|
|
@@ -66195,6 +66775,21 @@ export class GetOpRiskDataResponseBody extends $dara.Model {
|
|
|
66195
66775
|
* * sql: the SQL statement that is executed
|
|
66196
66776
|
* * opAccount: the account that is used to perform the operation
|
|
66197
66777
|
* * opTime: the time when the operation was performed
|
|
66778
|
+
*
|
|
66779
|
+
* @example
|
|
66780
|
+
* {
|
|
66781
|
+
* "opRiskDatas": [
|
|
66782
|
+
* {
|
|
66783
|
+
* "riskType": "Hierarchical dimension, EMR engine dimension and project dimension, EMR engine project dimension operation data, export method dimension, EMR engine",
|
|
66784
|
+
* "opTime": "2021-01-04 23:39:13",
|
|
66785
|
+
* "opType": "SQL_SELECT",
|
|
66786
|
+
* "opAccount": "user",
|
|
66787
|
+
* "sensType": "Email/name/mobile phone number",
|
|
66788
|
+
* "sql": "SELECT * FROM default.jiade_1219_test_create LIMIT 20"
|
|
66789
|
+
* }
|
|
66790
|
+
* ],
|
|
66791
|
+
* "totalCount": 499
|
|
66792
|
+
* }
|
|
66198
66793
|
*/
|
|
66199
66794
|
riskData?: string;
|
|
66200
66795
|
static names(): { [key: string]: string } {
|
|
@@ -66357,6 +66952,9 @@ export class GetOpSensitiveDataResponseBody extends $dara.Model {
|
|
|
66357
66952
|
* * sql: the SQL statement that is executed.
|
|
66358
66953
|
* * opAccount: the account that is used to perform the operation.
|
|
66359
66954
|
* * opTime: the time when the operation was performed.
|
|
66955
|
+
*
|
|
66956
|
+
* @example
|
|
66957
|
+
* "opSensDatas": [ { "sensLevel": "L4", "opTime": "2021-02-07 00:14:51", "opAccount": "ALIYUN$dsg_test", "sensType": "Mobile phone number", "sql": "select * from dsg_demo.tbl_phonebook where phone_no = '1331111****';" } ], "totalCount": 6
|
|
66360
66958
|
*/
|
|
66361
66959
|
opSensitiveData?: string;
|
|
66362
66960
|
/**
|
|
@@ -67114,15 +67712,26 @@ export class GetQualityEntityResponse extends $dara.Model {
|
|
|
67114
67712
|
export class GetQualityFollowerRequest extends $dara.Model {
|
|
67115
67713
|
/**
|
|
67116
67714
|
* @remarks
|
|
67715
|
+
* The ID of the partition filter expression.
|
|
67716
|
+
*
|
|
67117
67717
|
* This parameter is required.
|
|
67118
67718
|
*
|
|
67119
67719
|
* @example
|
|
67120
67720
|
* 1234
|
|
67121
67721
|
*/
|
|
67122
67722
|
entityId?: number;
|
|
67723
|
+
/**
|
|
67724
|
+
* @remarks
|
|
67725
|
+
* The ID of the DataWorks workspace.
|
|
67726
|
+
*
|
|
67727
|
+
* @example
|
|
67728
|
+
* 27
|
|
67729
|
+
*/
|
|
67123
67730
|
projectId?: number;
|
|
67124
67731
|
/**
|
|
67125
67732
|
* @remarks
|
|
67733
|
+
* The name of the engine or data source.
|
|
67734
|
+
*
|
|
67126
67735
|
* This parameter is required.
|
|
67127
67736
|
*
|
|
67128
67737
|
* @example
|
|
@@ -67155,28 +67764,47 @@ export class GetQualityFollowerRequest extends $dara.Model {
|
|
|
67155
67764
|
}
|
|
67156
67765
|
|
|
67157
67766
|
export class GetQualityFollowerResponseBody extends $dara.Model {
|
|
67767
|
+
/**
|
|
67768
|
+
* @remarks
|
|
67769
|
+
* The information about the subscription relationship.
|
|
67770
|
+
*/
|
|
67158
67771
|
data?: GetQualityFollowerResponseBodyData[];
|
|
67159
67772
|
/**
|
|
67773
|
+
* @remarks
|
|
67774
|
+
* The error code.
|
|
67775
|
+
*
|
|
67160
67776
|
* @example
|
|
67161
67777
|
* Invalid.Tenant.ConnectionNotExists
|
|
67162
67778
|
*/
|
|
67163
67779
|
errorCode?: string;
|
|
67164
67780
|
/**
|
|
67781
|
+
* @remarks
|
|
67782
|
+
* The error message.
|
|
67783
|
+
*
|
|
67165
67784
|
* @example
|
|
67166
67785
|
* You have no permission.
|
|
67167
67786
|
*/
|
|
67168
67787
|
errorMessage?: string;
|
|
67169
67788
|
/**
|
|
67789
|
+
* @remarks
|
|
67790
|
+
* The HTTP return code.
|
|
67791
|
+
*
|
|
67170
67792
|
* @example
|
|
67171
67793
|
* 200
|
|
67172
67794
|
*/
|
|
67173
67795
|
httpStatusCode?: number;
|
|
67174
67796
|
/**
|
|
67797
|
+
* @remarks
|
|
67798
|
+
* The ID of the request.
|
|
67799
|
+
*
|
|
67175
67800
|
* @example
|
|
67176
67801
|
* 38cbdef0-f6cf-49
|
|
67177
67802
|
*/
|
|
67178
67803
|
requestId?: string;
|
|
67179
67804
|
/**
|
|
67805
|
+
* @remarks
|
|
67806
|
+
* Whether the call is successful.
|
|
67807
|
+
*
|
|
67180
67808
|
* @example
|
|
67181
67809
|
* true
|
|
67182
67810
|
*/
|
|
@@ -67483,7 +68111,7 @@ export class GetRemindResponseBody extends $dara.Model {
|
|
|
67483
68111
|
httpStatusCode?: number;
|
|
67484
68112
|
/**
|
|
67485
68113
|
* @remarks
|
|
67486
|
-
* The request ID.
|
|
68114
|
+
* The request ID.
|
|
67487
68115
|
*
|
|
67488
68116
|
* @example
|
|
67489
68117
|
* 0000-ABCD-EFGH-IJKLMNOPQ
|
|
@@ -67966,6 +68594,8 @@ export class GetTopicResponse extends $dara.Model {
|
|
|
67966
68594
|
export class GetTopicInfluenceRequest extends $dara.Model {
|
|
67967
68595
|
/**
|
|
67968
68596
|
* @remarks
|
|
68597
|
+
* The ID of the event.
|
|
68598
|
+
*
|
|
67969
68599
|
* This parameter is required.
|
|
67970
68600
|
*
|
|
67971
68601
|
* @example
|
|
@@ -67996,30 +68626,45 @@ export class GetTopicInfluenceRequest extends $dara.Model {
|
|
|
67996
68626
|
export class GetTopicInfluenceResponseBody extends $dara.Model {
|
|
67997
68627
|
/**
|
|
67998
68628
|
* @remarks
|
|
67999
|
-
* The
|
|
68629
|
+
* The list of baseline instances affected by the event.
|
|
68000
68630
|
*/
|
|
68001
68631
|
data?: GetTopicInfluenceResponseBodyData;
|
|
68002
68632
|
/**
|
|
68633
|
+
* @remarks
|
|
68634
|
+
* The error code returned.
|
|
68635
|
+
*
|
|
68003
68636
|
* @example
|
|
68004
68637
|
* 1031203110005
|
|
68005
68638
|
*/
|
|
68006
68639
|
errorCode?: string;
|
|
68007
68640
|
/**
|
|
68641
|
+
* @remarks
|
|
68642
|
+
* The error message returned.
|
|
68643
|
+
*
|
|
68008
68644
|
* @example
|
|
68009
68645
|
* The specified parameters are invalid.
|
|
68010
68646
|
*/
|
|
68011
68647
|
errorMessage?: string;
|
|
68012
68648
|
/**
|
|
68649
|
+
* @remarks
|
|
68650
|
+
* The HTTP status code returned.
|
|
68651
|
+
*
|
|
68013
68652
|
* @example
|
|
68014
68653
|
* 200
|
|
68015
68654
|
*/
|
|
68016
68655
|
httpStatusCode?: number;
|
|
68017
68656
|
/**
|
|
68657
|
+
* @remarks
|
|
68658
|
+
* The ID of the request. You can use the ID to troubleshoot issues.
|
|
68659
|
+
*
|
|
68018
68660
|
* @example
|
|
68019
68661
|
* 0000-ABCD-EFG****
|
|
68020
68662
|
*/
|
|
68021
68663
|
requestId?: string;
|
|
68022
68664
|
/**
|
|
68665
|
+
* @remarks
|
|
68666
|
+
* Indicates whether the request was successful.
|
|
68667
|
+
*
|
|
68023
68668
|
* @example
|
|
68024
68669
|
* true
|
|
68025
68670
|
*/
|
|
@@ -68521,6 +69166,9 @@ export class ListBaselineConfigsRequest extends $dara.Model {
|
|
|
68521
69166
|
/**
|
|
68522
69167
|
* @remarks
|
|
68523
69168
|
* The keyword in the baseline name, which is used to search for the baseline.
|
|
69169
|
+
*
|
|
69170
|
+
* @example
|
|
69171
|
+
* Baseline name search keywords
|
|
68524
69172
|
*/
|
|
68525
69173
|
searchText?: string;
|
|
68526
69174
|
/**
|
|
@@ -69533,12 +70181,21 @@ export class ListCalcEnginesResponse extends $dara.Model {
|
|
|
69533
70181
|
export class ListCheckProcessesRequest extends $dara.Model {
|
|
69534
70182
|
/**
|
|
69535
70183
|
* @remarks
|
|
70184
|
+
* Extension point event encoding.
|
|
70185
|
+
*
|
|
69536
70186
|
* This parameter is required.
|
|
69537
70187
|
*
|
|
69538
70188
|
* @example
|
|
69539
70189
|
* commit-file
|
|
69540
70190
|
*/
|
|
69541
70191
|
eventCode?: string;
|
|
70192
|
+
/**
|
|
70193
|
+
* @remarks
|
|
70194
|
+
* The message ID in DataWorks OpenEvent. You can obtain the ID from a received message when an extension point event is triggered.
|
|
70195
|
+
*
|
|
70196
|
+
* @example
|
|
70197
|
+
* 03400b03-b721-4c34-8727-2****1
|
|
70198
|
+
*/
|
|
69542
70199
|
messageId?: string;
|
|
69543
70200
|
/**
|
|
69544
70201
|
* @remarks
|
|
@@ -69549,21 +70206,37 @@ export class ListCheckProcessesRequest extends $dara.Model {
|
|
|
69549
70206
|
*/
|
|
69550
70207
|
operator?: string;
|
|
69551
70208
|
/**
|
|
70209
|
+
* @remarks
|
|
70210
|
+
* The page number. Default value: 1.
|
|
70211
|
+
*
|
|
69552
70212
|
* @example
|
|
69553
70213
|
* 1
|
|
69554
70214
|
*/
|
|
69555
70215
|
pageNumber?: number;
|
|
69556
70216
|
/**
|
|
70217
|
+
* @remarks
|
|
70218
|
+
* The number of entries per page.
|
|
70219
|
+
*
|
|
69557
70220
|
* @example
|
|
69558
70221
|
* 10
|
|
69559
70222
|
*/
|
|
69560
70223
|
pageSize?: number;
|
|
69561
70224
|
/**
|
|
70225
|
+
* @remarks
|
|
70226
|
+
* The ID of the workspace.
|
|
70227
|
+
*
|
|
69562
70228
|
* @example
|
|
69563
70229
|
* 123465
|
|
69564
70230
|
*/
|
|
69565
70231
|
projectId?: number;
|
|
69566
70232
|
/**
|
|
70233
|
+
* @remarks
|
|
70234
|
+
* The check status of the extension. Valid values:
|
|
70235
|
+
*
|
|
70236
|
+
* * CHECKING
|
|
70237
|
+
* * PASSED
|
|
70238
|
+
* * BLOCKED
|
|
70239
|
+
*
|
|
69567
70240
|
* @example
|
|
69568
70241
|
* True
|
|
69569
70242
|
*/
|
|
@@ -69602,8 +70275,15 @@ export class ListCheckProcessesRequest extends $dara.Model {
|
|
|
69602
70275
|
}
|
|
69603
70276
|
|
|
69604
70277
|
export class ListCheckProcessesResponseBody extends $dara.Model {
|
|
70278
|
+
/**
|
|
70279
|
+
* @remarks
|
|
70280
|
+
* The pagination information.
|
|
70281
|
+
*/
|
|
69605
70282
|
pagingInfo?: ListCheckProcessesResponseBodyPagingInfo;
|
|
69606
70283
|
/**
|
|
70284
|
+
* @remarks
|
|
70285
|
+
* The ID of the request.
|
|
70286
|
+
*
|
|
69607
70287
|
* @example
|
|
69608
70288
|
* 0000-ABCD-EF****
|
|
69609
70289
|
*/
|
|
@@ -71128,6 +71808,9 @@ export class ListDataServiceApisRequest extends $dara.Model {
|
|
|
71128
71808
|
/**
|
|
71129
71809
|
* @remarks
|
|
71130
71810
|
* The keyword in API names. The keyword is used to search for the APIs whose names contain the keyword.
|
|
71811
|
+
*
|
|
71812
|
+
* @example
|
|
71813
|
+
* My API name
|
|
71131
71814
|
*/
|
|
71132
71815
|
apiNameKeyword?: string;
|
|
71133
71816
|
/**
|
|
@@ -72000,6 +72683,9 @@ export class ListDataServicePublishedApisRequest extends $dara.Model {
|
|
|
72000
72683
|
/**
|
|
72001
72684
|
* @remarks
|
|
72002
72685
|
* The keyword in API names. The keyword is used to search for the APIs whose names contain the keyword.
|
|
72686
|
+
*
|
|
72687
|
+
* @example
|
|
72688
|
+
* My API name
|
|
72003
72689
|
*/
|
|
72004
72690
|
apiNameKeyword?: string;
|
|
72005
72691
|
/**
|
|
@@ -73615,6 +74301,9 @@ export class ListFileVersionsResponse extends $dara.Model {
|
|
|
73615
74301
|
|
|
73616
74302
|
export class ListFilesRequest extends $dara.Model {
|
|
73617
74303
|
/**
|
|
74304
|
+
* @remarks
|
|
74305
|
+
* The exact matching file name. The file name of the query result is exactly the same as this parameter.
|
|
74306
|
+
*
|
|
73618
74307
|
* @example
|
|
73619
74308
|
* ods_create.sql
|
|
73620
74309
|
*/
|
|
@@ -73622,9 +74311,15 @@ export class ListFilesRequest extends $dara.Model {
|
|
|
73622
74311
|
/**
|
|
73623
74312
|
* @remarks
|
|
73624
74313
|
* The path of the files.
|
|
74314
|
+
*
|
|
74315
|
+
* @example
|
|
74316
|
+
* Business_process/my_first_business_process/MaxCompute/ods_layer
|
|
73625
74317
|
*/
|
|
73626
74318
|
fileFolderPath?: string;
|
|
73627
74319
|
/**
|
|
74320
|
+
* @remarks
|
|
74321
|
+
* The file ID list. The File ID set of the query result can only be a subset of the list. You can specify up to 50 fileids at a time.
|
|
74322
|
+
*
|
|
73628
74323
|
* @example
|
|
73629
74324
|
* 78237,816123
|
|
73630
74325
|
*/
|
|
@@ -73648,11 +74343,17 @@ export class ListFilesRequest extends $dara.Model {
|
|
|
73648
74343
|
*/
|
|
73649
74344
|
keyword?: string;
|
|
73650
74345
|
/**
|
|
74346
|
+
* @remarks
|
|
74347
|
+
* Whether the query result contains the path of the folder where the file is located.
|
|
74348
|
+
*
|
|
73651
74349
|
* @example
|
|
73652
74350
|
* false
|
|
73653
74351
|
*/
|
|
73654
74352
|
needAbsoluteFolderPath?: boolean;
|
|
73655
74353
|
/**
|
|
74354
|
+
* @remarks
|
|
74355
|
+
* Whether the query results contain file content (for files with more content, there may be a long network transmission delay).
|
|
74356
|
+
*
|
|
73656
74357
|
* @example
|
|
73657
74358
|
* false
|
|
73658
74359
|
*/
|
|
@@ -73915,6 +74616,9 @@ export class ListFoldersRequest extends $dara.Model {
|
|
|
73915
74616
|
* The path of the parent folder.
|
|
73916
74617
|
*
|
|
73917
74618
|
* This parameter is required.
|
|
74619
|
+
*
|
|
74620
|
+
* @example
|
|
74621
|
+
* Business_process/my_first_business_process/MaxCompute
|
|
73918
74622
|
*/
|
|
73919
74623
|
parentFolderPath?: string;
|
|
73920
74624
|
/**
|
|
@@ -74579,6 +75283,16 @@ export class ListInstancesRequest extends $dara.Model {
|
|
|
74579
75283
|
* openmr_8****
|
|
74580
75284
|
*/
|
|
74581
75285
|
nodeName?: string;
|
|
75286
|
+
/**
|
|
75287
|
+
* @remarks
|
|
75288
|
+
* The sorting rule of the instances to be returned. Valid values:
|
|
75289
|
+
*
|
|
75290
|
+
* * CREATE_TIME_DESC: The instances are sorted in descending order of their creation time.
|
|
75291
|
+
* * INSTANCE_ID_DESC (default): The instances are sorted in descending order of their IDs.
|
|
75292
|
+
*
|
|
75293
|
+
* @example
|
|
75294
|
+
* INSTANCE_ID_DESC
|
|
75295
|
+
*/
|
|
74582
75296
|
orderBy?: string;
|
|
74583
75297
|
/**
|
|
74584
75298
|
* @remarks
|
|
@@ -74614,7 +75328,7 @@ export class ListInstancesRequest extends $dara.Model {
|
|
|
74614
75328
|
programType?: string;
|
|
74615
75329
|
/**
|
|
74616
75330
|
* @remarks
|
|
74617
|
-
* The
|
|
75331
|
+
* The environment in which the node runs. Valid values: DEV and PROD.
|
|
74618
75332
|
*
|
|
74619
75333
|
* This parameter is required.
|
|
74620
75334
|
*
|
|
@@ -74634,7 +75348,16 @@ export class ListInstancesRequest extends $dara.Model {
|
|
|
74634
75348
|
projectId?: number;
|
|
74635
75349
|
/**
|
|
74636
75350
|
* @remarks
|
|
74637
|
-
* The
|
|
75351
|
+
* The status of the node. Valid values:
|
|
75352
|
+
*
|
|
75353
|
+
* * NOT_RUN: The node is not run.
|
|
75354
|
+
* * WAIT_TIME: The node is waiting for the scheduling time to arrive.
|
|
75355
|
+
* * WAIT_RESOURCE: The node is waiting for resources.
|
|
75356
|
+
* * RUNNING: The node is running.
|
|
75357
|
+
* * CHECKING: Data quality is being checked for the node.
|
|
75358
|
+
* * CHECKING_CONDITION: Branch conditions are being checked for the node.
|
|
75359
|
+
* * FAILURE: The node fails to run.
|
|
75360
|
+
* * SUCCESS: The node is successfully run.
|
|
74638
75361
|
*
|
|
74639
75362
|
* @example
|
|
74640
75363
|
* NOT_RUN
|
|
@@ -76433,7 +77156,7 @@ export class ListNodesRequest extends $dara.Model {
|
|
|
76433
77156
|
owner?: string;
|
|
76434
77157
|
/**
|
|
76435
77158
|
* @remarks
|
|
76436
|
-
* The number
|
|
77159
|
+
* The page number. Minimum value: 1. Maximum value: 100.
|
|
76437
77160
|
*
|
|
76438
77161
|
* @example
|
|
76439
77162
|
* 1
|
|
@@ -76441,7 +77164,7 @@ export class ListNodesRequest extends $dara.Model {
|
|
|
76441
77164
|
pageNumber?: number;
|
|
76442
77165
|
/**
|
|
76443
77166
|
* @remarks
|
|
76444
|
-
* The
|
|
77167
|
+
* The number of entries per page. Default value: 10. Maximum value: 100.
|
|
76445
77168
|
*
|
|
76446
77169
|
* @example
|
|
76447
77170
|
* 10
|
|
@@ -76457,7 +77180,7 @@ export class ListNodesRequest extends $dara.Model {
|
|
|
76457
77180
|
programType?: string;
|
|
76458
77181
|
/**
|
|
76459
77182
|
* @remarks
|
|
76460
|
-
* The
|
|
77183
|
+
* The environment in which the node runs. Valid values: DEV and PROD.
|
|
76461
77184
|
*
|
|
76462
77185
|
* This parameter is required.
|
|
76463
77186
|
*
|
|
@@ -76475,6 +77198,17 @@ export class ListNodesRequest extends $dara.Model {
|
|
|
76475
77198
|
* 1234
|
|
76476
77199
|
*/
|
|
76477
77200
|
projectId?: number;
|
|
77201
|
+
/**
|
|
77202
|
+
* @remarks
|
|
77203
|
+
* The scheduling type. Valid values:
|
|
77204
|
+
*
|
|
77205
|
+
* * NORMAL: Nodes are scheduled as expected.
|
|
77206
|
+
* * PAUSE: Nodes are paused.
|
|
77207
|
+
* * SKIP: Nodes are dry-run. Dry-run nodes are started as scheduled, but the system sets the status of the nodes to successful when it starts to run them.
|
|
77208
|
+
*
|
|
77209
|
+
* @example
|
|
77210
|
+
* NORMAL
|
|
77211
|
+
*/
|
|
76478
77212
|
schedulerType?: string;
|
|
76479
77213
|
static names(): { [key: string]: string } {
|
|
76480
77214
|
return {
|
|
@@ -76516,7 +77250,7 @@ export class ListNodesRequest extends $dara.Model {
|
|
|
76516
77250
|
export class ListNodesResponseBody extends $dara.Model {
|
|
76517
77251
|
/**
|
|
76518
77252
|
* @remarks
|
|
76519
|
-
* The
|
|
77253
|
+
* The nodes.
|
|
76520
77254
|
*/
|
|
76521
77255
|
data?: ListNodesResponseBodyData;
|
|
76522
77256
|
/**
|
|
@@ -79282,6 +80016,9 @@ export class ListShiftSchedulesRequest extends $dara.Model {
|
|
|
79282
80016
|
/**
|
|
79283
80017
|
* @remarks
|
|
79284
80018
|
* The keyword used to perform a fuzzy search on shift schedules.
|
|
80019
|
+
*
|
|
80020
|
+
* @example
|
|
80021
|
+
* Duty table name keyword
|
|
79285
80022
|
*/
|
|
79286
80023
|
shiftScheduleName?: string;
|
|
79287
80024
|
static names(): { [key: string]: string } {
|
|
@@ -79850,6 +80587,8 @@ export class ListTableThemeResponse extends $dara.Model {
|
|
|
79850
80587
|
export class ListTablesRequest extends $dara.Model {
|
|
79851
80588
|
/**
|
|
79852
80589
|
* @remarks
|
|
80590
|
+
* The type of the data source. Valid values: ODPS, emr, mysql, holo, analyticdb_for_mysql, oracle, postgresql, sqlserver, clickhouse, and starrocks.
|
|
80591
|
+
*
|
|
79853
80592
|
* This parameter is required.
|
|
79854
80593
|
*
|
|
79855
80594
|
* @example
|
|
@@ -79860,11 +80599,17 @@ export class ListTablesRequest extends $dara.Model {
|
|
|
79860
80599
|
*/
|
|
79861
80600
|
dataSourceType?: string;
|
|
79862
80601
|
/**
|
|
80602
|
+
* @remarks
|
|
80603
|
+
* Pagination information, which specifies the starting point of this read.
|
|
80604
|
+
*
|
|
79863
80605
|
* @example
|
|
79864
80606
|
* 12222
|
|
79865
80607
|
*/
|
|
79866
80608
|
nextToken?: string;
|
|
79867
80609
|
/**
|
|
80610
|
+
* @remarks
|
|
80611
|
+
* The number of entries displayed on each page. The default value is 10 and the maximum value is 100.
|
|
80612
|
+
*
|
|
79868
80613
|
* @example
|
|
79869
80614
|
* 10
|
|
79870
80615
|
*/
|
|
@@ -80860,6 +81605,9 @@ export class QueryDefaultTemplateResponseBody extends $dara.Model {
|
|
|
80860
81605
|
* The returned data about the default data category and data sensitivity level template. The data is in the JSON array format.
|
|
80861
81606
|
*
|
|
80862
81607
|
* This parameter is required.
|
|
81608
|
+
*
|
|
81609
|
+
* @example
|
|
81610
|
+
* [{"gmtModified":1709022365000,"fileName":"default file","isDelete":false,"isDefaultTemplate":true}]
|
|
80863
81611
|
*/
|
|
80864
81612
|
data?: any;
|
|
80865
81613
|
/**
|
|
@@ -80877,6 +81625,9 @@ export class QueryDefaultTemplateResponseBody extends $dara.Model {
|
|
|
80877
81625
|
* The error message.
|
|
80878
81626
|
*
|
|
80879
81627
|
* This parameter is required.
|
|
81628
|
+
*
|
|
81629
|
+
* @example
|
|
81630
|
+
* Parameter error
|
|
80880
81631
|
*/
|
|
80881
81632
|
errorMessage?: string;
|
|
80882
81633
|
/**
|
|
@@ -81166,6 +81917,9 @@ export class QueryRecognizeDataByRuleTypeResponseBody extends $dara.Model {
|
|
|
81166
81917
|
/**
|
|
81167
81918
|
* @remarks
|
|
81168
81919
|
* The error message.
|
|
81920
|
+
*
|
|
81921
|
+
* @example
|
|
81922
|
+
* Missing parameter
|
|
81169
81923
|
*/
|
|
81170
81924
|
errorMessage?: string;
|
|
81171
81925
|
/**
|
|
@@ -81267,6 +82021,9 @@ export class QueryRecognizeRuleDetailRequest extends $dara.Model {
|
|
|
81267
82021
|
* The name of the sensitive field. To obtain the name of the sensitive field, call the [QuerySensNodeInfo](https://help.aliyun.com/document_detail/2747189.html) operation or log on to the [DataWorks console](https://workbench.data.aliyun.com/console) and go to the Data Category and Sensitivity Level page.
|
|
81268
82022
|
*
|
|
81269
82023
|
* This parameter is required.
|
|
82024
|
+
*
|
|
82025
|
+
* @example
|
|
82026
|
+
* Name
|
|
81270
82027
|
*/
|
|
81271
82028
|
sensitiveName?: string;
|
|
81272
82029
|
/**
|
|
@@ -81306,6 +82063,9 @@ export class QueryRecognizeRuleDetailResponseBody extends $dara.Model {
|
|
|
81306
82063
|
/**
|
|
81307
82064
|
* @remarks
|
|
81308
82065
|
* The details of the sensitive field in the JSON format.
|
|
82066
|
+
*
|
|
82067
|
+
* @example
|
|
82068
|
+
* {"nodeName":"basic unit overview","gmtModified":1709017449000,"hitThreshold":30,"sensitiveName":"mobile-yinni","templateId":"8222abeb-9784-4417-b420-0322926d5cbf","recognizeRulesType":2,"delete":false,"bydAccuracy":1,"colScan":"," defineType ":1,": ydAccuracy ":{" contentRule ":))," operationType ":0}," nodeParent ":" unit/unit basic information/unit basic overview "," level ":6," keyRuleId ":" 228248921215042mobile-yinni "," isDelete ":false," levelName ":" 6level "," sensitive ":false," operationType ":0," sourceName ": dsg-test-zuoyue","nodeId":"bea2fc81-90c9-45f3-b7a9-26d534208a0d","status":1}
|
|
81309
82069
|
*/
|
|
81310
82070
|
data?: any;
|
|
81311
82071
|
/**
|
|
@@ -81319,6 +82079,9 @@ export class QueryRecognizeRuleDetailResponseBody extends $dara.Model {
|
|
|
81319
82079
|
/**
|
|
81320
82080
|
* @remarks
|
|
81321
82081
|
* The error message.
|
|
82082
|
+
*
|
|
82083
|
+
* @example
|
|
82084
|
+
* Missing parameter
|
|
81322
82085
|
*/
|
|
81323
82086
|
errorMessage?: string;
|
|
81324
82087
|
/**
|
|
@@ -81434,6 +82197,9 @@ export class QueryRecognizeRulesTypeResponseBody extends $dara.Model {
|
|
|
81434
82197
|
/**
|
|
81435
82198
|
* @remarks
|
|
81436
82199
|
* The error message.
|
|
82200
|
+
*
|
|
82201
|
+
* @example
|
|
82202
|
+
* Missing parameter
|
|
81437
82203
|
*/
|
|
81438
82204
|
errorMessage?: string;
|
|
81439
82205
|
/**
|
|
@@ -81593,6 +82359,9 @@ export class QuerySensClassificationResponseBody extends $dara.Model {
|
|
|
81593
82359
|
/**
|
|
81594
82360
|
* @remarks
|
|
81595
82361
|
* The error message.
|
|
82362
|
+
*
|
|
82363
|
+
* @example
|
|
82364
|
+
* Missing parameter
|
|
81596
82365
|
*/
|
|
81597
82366
|
errorMessage?: string;
|
|
81598
82367
|
/**
|
|
@@ -81752,6 +82521,9 @@ export class QuerySensLevelResponseBody extends $dara.Model {
|
|
|
81752
82521
|
/**
|
|
81753
82522
|
* @remarks
|
|
81754
82523
|
* The error message.
|
|
82524
|
+
*
|
|
82525
|
+
* @example
|
|
82526
|
+
* Missing parameter
|
|
81755
82527
|
*/
|
|
81756
82528
|
errorMessage?: string;
|
|
81757
82529
|
/**
|
|
@@ -81875,6 +82647,9 @@ export class QuerySensNodeInfoRequest extends $dara.Model {
|
|
|
81875
82647
|
/**
|
|
81876
82648
|
* @remarks
|
|
81877
82649
|
* The name of the sensitive field. You can log on to the [DataWorks console](https://workbench.data.aliyun.com/console) and go to the Data Security Guard page to obtain the name.
|
|
82650
|
+
*
|
|
82651
|
+
* @example
|
|
82652
|
+
* ID card
|
|
81878
82653
|
*/
|
|
81879
82654
|
sensitiveName?: string;
|
|
81880
82655
|
/**
|
|
@@ -81945,6 +82720,9 @@ export class QuerySensNodeInfoResponseBody extends $dara.Model {
|
|
|
81945
82720
|
/**
|
|
81946
82721
|
* @remarks
|
|
81947
82722
|
* The returned business data in the JSON format.
|
|
82723
|
+
*
|
|
82724
|
+
* @example
|
|
82725
|
+
* {"success": true, "httpStatusCode": 200, "data": { "result": [ { "sensitiveName": "certificate expiration date", "sensitiveId": "fd4ff5a2-9537-43d1-8e4f-1d0b5ffaac12", "status": 0, "templateName": "built-in classification and grading template", "keyRuleId": "228248921215042 certificate expiration date"} ], "totalCount": 1, "currentPage": 1, "pageSize": 10 }, "requestId": 10000001}
|
|
81948
82726
|
*/
|
|
81949
82727
|
data?: any;
|
|
81950
82728
|
/**
|
|
@@ -81958,6 +82736,9 @@ export class QuerySensNodeInfoResponseBody extends $dara.Model {
|
|
|
81958
82736
|
/**
|
|
81959
82737
|
* @remarks
|
|
81960
82738
|
* The error message.
|
|
82739
|
+
*
|
|
82740
|
+
* @example
|
|
82741
|
+
* Missing parameter
|
|
81961
82742
|
*/
|
|
81962
82743
|
errorMessage?: string;
|
|
81963
82744
|
/**
|
|
@@ -82146,7 +82927,7 @@ export class RegisterLineageRelationResponseBody extends $dara.Model {
|
|
|
82146
82927
|
lineageRelation?: RegisterLineageRelationResponseBodyLineageRelation;
|
|
82147
82928
|
/**
|
|
82148
82929
|
* @remarks
|
|
82149
|
-
* The request ID.
|
|
82930
|
+
* The request ID. You can locate logs and troubleshoot issues based on the ID.
|
|
82150
82931
|
*
|
|
82151
82932
|
* @example
|
|
82152
82933
|
* EE50E05E-028C-182B-9xxx
|
|
@@ -83594,6 +84375,9 @@ export class RunManualDagNodesRequest extends $dara.Model {
|
|
|
83594
84375
|
* The environment type of Operation Center. Valid values: PROD and DEV. The value PROD indicates the production environment. The value DEV indicates the development environment.
|
|
83595
84376
|
*
|
|
83596
84377
|
* This parameter is required.
|
|
84378
|
+
*
|
|
84379
|
+
* @example
|
|
84380
|
+
* PROD or DEV
|
|
83597
84381
|
*/
|
|
83598
84382
|
projectEnv?: string;
|
|
83599
84383
|
/**
|
|
@@ -84099,6 +84883,9 @@ export class SaveDataServiceApiTestResultRequest extends $dara.Model {
|
|
|
84099
84883
|
/**
|
|
84100
84884
|
* @remarks
|
|
84101
84885
|
* The sample failure response of the API. This parameter is optional.
|
|
84886
|
+
*
|
|
84887
|
+
* @example
|
|
84888
|
+
* {"apiLog": null, "data": null, "errCode": 1108110622, "errMsg": "data Source query failed", "requestId": "0 bc14a **** 5902762031 ****"}
|
|
84102
84889
|
*/
|
|
84103
84890
|
failResultSample?: string;
|
|
84104
84891
|
/**
|
|
@@ -86323,6 +87110,9 @@ export class SubmitFileRequest extends $dara.Model {
|
|
|
86323
87110
|
/**
|
|
86324
87111
|
* @remarks
|
|
86325
87112
|
* The description of the commit operation.
|
|
87113
|
+
*
|
|
87114
|
+
* @example
|
|
87115
|
+
* Submit a task for the first time
|
|
86326
87116
|
*/
|
|
86327
87117
|
comment?: string;
|
|
86328
87118
|
/**
|
|
@@ -88144,11 +88934,15 @@ export class UpdateClusterConfigsRequest extends $dara.Model {
|
|
|
88144
88934
|
configType?: string;
|
|
88145
88935
|
/**
|
|
88146
88936
|
* @remarks
|
|
88937
|
+
* The configuration information of the cluster submodule.
|
|
88938
|
+
*
|
|
88147
88939
|
* This parameter is required.
|
|
88148
88940
|
*/
|
|
88149
88941
|
configValues?: ClusterConfig[];
|
|
88150
88942
|
/**
|
|
88151
88943
|
* @remarks
|
|
88944
|
+
* The ID of the workspace.
|
|
88945
|
+
*
|
|
88152
88946
|
* This parameter is required.
|
|
88153
88947
|
*
|
|
88154
88948
|
* @example
|
|
@@ -88210,11 +89004,15 @@ export class UpdateClusterConfigsShrinkRequest extends $dara.Model {
|
|
|
88210
89004
|
configType?: string;
|
|
88211
89005
|
/**
|
|
88212
89006
|
* @remarks
|
|
89007
|
+
* The configuration information of the cluster submodule.
|
|
89008
|
+
*
|
|
88213
89009
|
* This parameter is required.
|
|
88214
89010
|
*/
|
|
88215
89011
|
configValuesShrink?: string;
|
|
88216
89012
|
/**
|
|
88217
89013
|
* @remarks
|
|
89014
|
+
* The ID of the workspace.
|
|
89015
|
+
*
|
|
88218
89016
|
* This parameter is required.
|
|
88219
89017
|
*
|
|
88220
89018
|
* @example
|
|
@@ -88261,21 +89059,33 @@ export class UpdateClusterConfigsResponseBody extends $dara.Model {
|
|
|
88261
89059
|
*/
|
|
88262
89060
|
data?: boolean;
|
|
88263
89061
|
/**
|
|
89062
|
+
* @remarks
|
|
89063
|
+
* The error code.
|
|
89064
|
+
*
|
|
88264
89065
|
* @example
|
|
88265
89066
|
* 101011005
|
|
88266
89067
|
*/
|
|
88267
89068
|
errorCode?: string;
|
|
88268
89069
|
/**
|
|
89070
|
+
* @remarks
|
|
89071
|
+
* The error message.
|
|
89072
|
+
*
|
|
88269
89073
|
* @example
|
|
88270
89074
|
* Invalid.Cluster.ClusterNotFound
|
|
88271
89075
|
*/
|
|
88272
89076
|
errorMessage?: string;
|
|
88273
89077
|
/**
|
|
89078
|
+
* @remarks
|
|
89079
|
+
* The HTTP status code.
|
|
89080
|
+
*
|
|
88274
89081
|
* @example
|
|
88275
89082
|
* 200
|
|
88276
89083
|
*/
|
|
88277
89084
|
httpStatusCode?: number;
|
|
88278
89085
|
/**
|
|
89086
|
+
* @remarks
|
|
89087
|
+
* The ID of the request. It is used to locate logs and troubleshoot problems.
|
|
89088
|
+
*
|
|
88279
89089
|
* @example
|
|
88280
89090
|
* 0000-ABCD-E****
|
|
88281
89091
|
*/
|
|
@@ -88717,6 +89527,9 @@ export class UpdateDIAlarmRuleRequest extends $dara.Model {
|
|
|
88717
89527
|
/**
|
|
88718
89528
|
* @remarks
|
|
88719
89529
|
* The description of the alert rule.
|
|
89530
|
+
*
|
|
89531
|
+
* @example
|
|
89532
|
+
* mysql synchronizes to hologres heartbeat alert
|
|
88720
89533
|
*/
|
|
88721
89534
|
description?: string;
|
|
88722
89535
|
/**
|
|
@@ -88806,6 +89619,9 @@ export class UpdateDIAlarmRuleShrinkRequest extends $dara.Model {
|
|
|
88806
89619
|
/**
|
|
88807
89620
|
* @remarks
|
|
88808
89621
|
* The description of the alert rule.
|
|
89622
|
+
*
|
|
89623
|
+
* @example
|
|
89624
|
+
* mysql synchronizes to hologres heartbeat alert
|
|
88809
89625
|
*/
|
|
88810
89626
|
description?: string;
|
|
88811
89627
|
/**
|
|
@@ -88952,6 +89768,9 @@ export class UpdateDIJobRequest extends $dara.Model {
|
|
|
88952
89768
|
/**
|
|
88953
89769
|
* @remarks
|
|
88954
89770
|
* The description of the synchronization task.
|
|
89771
|
+
*
|
|
89772
|
+
* @example
|
|
89773
|
+
* Synchronize mysql to hologres
|
|
88955
89774
|
*/
|
|
88956
89775
|
description?: string;
|
|
88957
89776
|
/**
|
|
@@ -88971,7 +89790,7 @@ export class UpdateDIJobRequest extends $dara.Model {
|
|
|
88971
89790
|
tableMappings?: UpdateDIJobRequestTableMappings[];
|
|
88972
89791
|
/**
|
|
88973
89792
|
* @remarks
|
|
88974
|
-
* The list of transformation rules
|
|
89793
|
+
* The list of transformation rules that you want to apply to the synchronization objects selected from the source. Each entry in the list defines a transformation rule.
|
|
88975
89794
|
*/
|
|
88976
89795
|
transformationRules?: UpdateDIJobRequestTransformationRules[];
|
|
88977
89796
|
static names(): { [key: string]: string } {
|
|
@@ -89029,6 +89848,9 @@ export class UpdateDIJobShrinkRequest extends $dara.Model {
|
|
|
89029
89848
|
/**
|
|
89030
89849
|
* @remarks
|
|
89031
89850
|
* The description of the synchronization task.
|
|
89851
|
+
*
|
|
89852
|
+
* @example
|
|
89853
|
+
* Synchronize mysql to hologres
|
|
89032
89854
|
*/
|
|
89033
89855
|
description?: string;
|
|
89034
89856
|
/**
|
|
@@ -89048,7 +89870,7 @@ export class UpdateDIJobShrinkRequest extends $dara.Model {
|
|
|
89048
89870
|
tableMappingsShrink?: string;
|
|
89049
89871
|
/**
|
|
89050
89872
|
* @remarks
|
|
89051
|
-
* The list of transformation rules
|
|
89873
|
+
* The list of transformation rules that you want to apply to the synchronization objects selected from the source. Each entry in the list defines a transformation rule.
|
|
89052
89874
|
*/
|
|
89053
89875
|
transformationRulesShrink?: string;
|
|
89054
89876
|
static names(): { [key: string]: string } {
|
|
@@ -90114,6 +90936,9 @@ export class UpdateFileRequest extends $dara.Model {
|
|
|
90114
90936
|
*/
|
|
90115
90937
|
advancedSettings?: string;
|
|
90116
90938
|
/**
|
|
90939
|
+
* @remarks
|
|
90940
|
+
* Whether the scheduling configuration takes effect immediately after the release.
|
|
90941
|
+
*
|
|
90117
90942
|
* @example
|
|
90118
90943
|
* true
|
|
90119
90944
|
*/
|
|
@@ -90236,11 +91061,17 @@ export class UpdateFileRequest extends $dara.Model {
|
|
|
90236
91061
|
/**
|
|
90237
91062
|
* @remarks
|
|
90238
91063
|
* The description of the file.
|
|
91064
|
+
*
|
|
91065
|
+
* @example
|
|
91066
|
+
* Here is the file description
|
|
90239
91067
|
*/
|
|
90240
91068
|
fileDescription?: string;
|
|
90241
91069
|
/**
|
|
90242
91070
|
* @remarks
|
|
90243
91071
|
* The path of the file.
|
|
91072
|
+
*
|
|
91073
|
+
* @example
|
|
91074
|
+
* Business_process/First_Business_Process/data_integration/Folder_1/Folder_2
|
|
90244
91075
|
*/
|
|
90245
91076
|
fileFolderPath?: string;
|
|
90246
91077
|
/**
|
|
@@ -90264,10 +91095,14 @@ export class UpdateFileRequest extends $dara.Model {
|
|
|
90264
91095
|
*/
|
|
90265
91096
|
fileName?: string;
|
|
90266
91097
|
/**
|
|
91098
|
+
* @remarks
|
|
91099
|
+
* Scheduling configuration-> previous cycle-> whether to skip the upstream empty run attribute.
|
|
91100
|
+
*
|
|
90267
91101
|
* @example
|
|
90268
91102
|
* true
|
|
90269
91103
|
*/
|
|
90270
91104
|
ignoreParentSkipRunningProperty?: boolean;
|
|
91105
|
+
imageId?: string;
|
|
90271
91106
|
/**
|
|
90272
91107
|
* @remarks
|
|
90273
91108
|
* The output name of the parent file on which the current file depends. If you specify multiple output names, separate them with commas (,).
|
|
@@ -90451,6 +91286,7 @@ export class UpdateFileRequest extends $dara.Model {
|
|
|
90451
91286
|
fileId: 'FileId',
|
|
90452
91287
|
fileName: 'FileName',
|
|
90453
91288
|
ignoreParentSkipRunningProperty: 'IgnoreParentSkipRunningProperty',
|
|
91289
|
+
imageId: 'ImageId',
|
|
90454
91290
|
inputList: 'InputList',
|
|
90455
91291
|
inputParameters: 'InputParameters',
|
|
90456
91292
|
outputList: 'OutputList',
|
|
@@ -90488,6 +91324,7 @@ export class UpdateFileRequest extends $dara.Model {
|
|
|
90488
91324
|
fileId: 'number',
|
|
90489
91325
|
fileName: 'string',
|
|
90490
91326
|
ignoreParentSkipRunningProperty: 'boolean',
|
|
91327
|
+
imageId: 'string',
|
|
90491
91328
|
inputList: 'string',
|
|
90492
91329
|
inputParameters: 'string',
|
|
90493
91330
|
outputList: 'string',
|
|
@@ -93836,7 +94673,7 @@ export class UpdateUdfFileRequest extends $dara.Model {
|
|
|
93836
94673
|
returnValue?: string;
|
|
93837
94674
|
/**
|
|
93838
94675
|
* @remarks
|
|
93839
|
-
* The description of the function. This parameter corresponds to the Description parameter in the Register Function section of the configuration tab of the function
|
|
94676
|
+
* The description of the function. This parameter corresponds to the Description parameter in the Register Function section of the configuration tab of the function on the DataStudio page.
|
|
93840
94677
|
*
|
|
93841
94678
|
* @example
|
|
93842
94679
|
* Concatenate several strings to generate a new string
|
|
@@ -96053,6 +96890,10 @@ export default class Client extends OpenApi {
|
|
|
96053
96890
|
body["IgnoreParentSkipRunningProperty"] = request.ignoreParentSkipRunningProperty;
|
|
96054
96891
|
}
|
|
96055
96892
|
|
|
96893
|
+
if (!$dara.isNull(request.imageId)) {
|
|
96894
|
+
body["ImageId"] = request.imageId;
|
|
96895
|
+
}
|
|
96896
|
+
|
|
96056
96897
|
if (!$dara.isNull(request.inputList)) {
|
|
96057
96898
|
body["InputList"] = request.inputList;
|
|
96058
96899
|
}
|
|
@@ -103051,7 +103892,10 @@ export default class Client extends OpenApi {
|
|
|
103051
103892
|
}
|
|
103052
103893
|
|
|
103053
103894
|
/**
|
|
103054
|
-
*
|
|
103895
|
+
* Queries the complete information about a table, including information about fields in the table.
|
|
103896
|
+
*
|
|
103897
|
+
* @remarks
|
|
103898
|
+
* You can call this operation to query only the information about a table of the E-MapReduce (EMR) compute engine type.
|
|
103055
103899
|
*
|
|
103056
103900
|
* @param request - GetMetaTableFullInfoRequest
|
|
103057
103901
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -103083,7 +103927,10 @@ export default class Client extends OpenApi {
|
|
|
103083
103927
|
}
|
|
103084
103928
|
|
|
103085
103929
|
/**
|
|
103086
|
-
*
|
|
103930
|
+
* Queries the complete information about a table, including information about fields in the table.
|
|
103931
|
+
*
|
|
103932
|
+
* @remarks
|
|
103933
|
+
* You can call this operation to query only the information about a table of the E-MapReduce (EMR) compute engine type.
|
|
103087
103934
|
*
|
|
103088
103935
|
* @param request - GetMetaTableFullInfoRequest
|
|
103089
103936
|
* @returns GetMetaTableFullInfoResponse
|
|
@@ -104306,6 +105153,8 @@ export default class Client extends OpenApi {
|
|
|
104306
105153
|
}
|
|
104307
105154
|
|
|
104308
105155
|
/**
|
|
105156
|
+
* Queries the subscribers of a partition filter expression.
|
|
105157
|
+
*
|
|
104309
105158
|
* @param request - GetQualityFollowerRequest
|
|
104310
105159
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
104311
105160
|
* @returns GetQualityFollowerResponse
|
|
@@ -104348,6 +105197,8 @@ export default class Client extends OpenApi {
|
|
|
104348
105197
|
}
|
|
104349
105198
|
|
|
104350
105199
|
/**
|
|
105200
|
+
* Queries the subscribers of a partition filter expression.
|
|
105201
|
+
*
|
|
104351
105202
|
* @param request - GetQualityFollowerRequest
|
|
104352
105203
|
* @returns GetQualityFollowerResponse
|
|
104353
105204
|
*/
|
|
@@ -104616,6 +105467,12 @@ export default class Client extends OpenApi {
|
|
|
104616
105467
|
}
|
|
104617
105468
|
|
|
104618
105469
|
/**
|
|
105470
|
+
* Queries baseline instances affected by an event.
|
|
105471
|
+
*
|
|
105472
|
+
* @remarks
|
|
105473
|
+
* ## Debugging
|
|
105474
|
+
* [OpenAPI Explorer automatically calculates the signature value. For your convenience, we recommend that you call this operation in OpenAPI Explorer. OpenAPI Explorer dynamically generates the sample code of the operation for different SDKs.](https://api.aliyun.com/#product=dataworks-public\\&api=GetTopicInfluence\\&type=RPC\\&version=2020-05-18)
|
|
105475
|
+
*
|
|
104619
105476
|
* @param request - GetTopicInfluenceRequest
|
|
104620
105477
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
104621
105478
|
* @returns GetTopicInfluenceResponse
|
|
@@ -104650,6 +105507,12 @@ export default class Client extends OpenApi {
|
|
|
104650
105507
|
}
|
|
104651
105508
|
|
|
104652
105509
|
/**
|
|
105510
|
+
* Queries baseline instances affected by an event.
|
|
105511
|
+
*
|
|
105512
|
+
* @remarks
|
|
105513
|
+
* ## Debugging
|
|
105514
|
+
* [OpenAPI Explorer automatically calculates the signature value. For your convenience, we recommend that you call this operation in OpenAPI Explorer. OpenAPI Explorer dynamically generates the sample code of the operation for different SDKs.](https://api.aliyun.com/#product=dataworks-public\\&api=GetTopicInfluence\\&type=RPC\\&version=2020-05-18)
|
|
105515
|
+
*
|
|
104653
105516
|
* @param request - GetTopicInfluenceRequest
|
|
104654
105517
|
* @returns GetTopicInfluenceResponse
|
|
104655
105518
|
*/
|
|
@@ -105162,7 +106025,7 @@ export default class Client extends OpenApi {
|
|
|
105162
106025
|
}
|
|
105163
106026
|
|
|
105164
106027
|
/**
|
|
105165
|
-
*
|
|
106028
|
+
* Queries the check results of extension point events.
|
|
105166
106029
|
*
|
|
105167
106030
|
* @param request - ListCheckProcessesRequest
|
|
105168
106031
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -105222,7 +106085,7 @@ export default class Client extends OpenApi {
|
|
|
105222
106085
|
}
|
|
105223
106086
|
|
|
105224
106087
|
/**
|
|
105225
|
-
*
|
|
106088
|
+
* Queries the check results of extension point events.
|
|
105226
106089
|
*
|
|
105227
106090
|
* @param request - ListCheckProcessesRequest
|
|
105228
106091
|
* @returns ListCheckProcessesResponse
|
|
@@ -106539,6 +107402,8 @@ export default class Client extends OpenApi {
|
|
|
106539
107402
|
}
|
|
106540
107403
|
|
|
106541
107404
|
/**
|
|
107405
|
+
* Queries a list of file versions.
|
|
107406
|
+
*
|
|
106542
107407
|
* @param request - ListFileVersionsRequest
|
|
106543
107408
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
106544
107409
|
* @returns ListFileVersionsResponse
|
|
@@ -106589,6 +107454,8 @@ export default class Client extends OpenApi {
|
|
|
106589
107454
|
}
|
|
106590
107455
|
|
|
106591
107456
|
/**
|
|
107457
|
+
* Queries a list of file versions.
|
|
107458
|
+
*
|
|
106592
107459
|
* @param request - ListFileVersionsRequest
|
|
106593
107460
|
* @returns ListFileVersionsResponse
|
|
106594
107461
|
*/
|
|
@@ -106598,6 +107465,8 @@ export default class Client extends OpenApi {
|
|
|
106598
107465
|
}
|
|
106599
107466
|
|
|
106600
107467
|
/**
|
|
107468
|
+
* Queries a list of files.
|
|
107469
|
+
*
|
|
106601
107470
|
* @param request - ListFilesRequest
|
|
106602
107471
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
106603
107472
|
* @returns ListFilesResponse
|
|
@@ -106684,6 +107553,8 @@ export default class Client extends OpenApi {
|
|
|
106684
107553
|
}
|
|
106685
107554
|
|
|
106686
107555
|
/**
|
|
107556
|
+
* Queries a list of files.
|
|
107557
|
+
*
|
|
106687
107558
|
* @param request - ListFilesRequest
|
|
106688
107559
|
* @returns ListFilesResponse
|
|
106689
107560
|
*/
|
|
@@ -106933,7 +107804,7 @@ export default class Client extends OpenApi {
|
|
|
106933
107804
|
}
|
|
106934
107805
|
|
|
106935
107806
|
/**
|
|
106936
|
-
*
|
|
107807
|
+
* Queries a list of instances.
|
|
106937
107808
|
*
|
|
106938
107809
|
* @param request - ListInstancesRequest
|
|
106939
107810
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -107025,7 +107896,7 @@ export default class Client extends OpenApi {
|
|
|
107025
107896
|
}
|
|
107026
107897
|
|
|
107027
107898
|
/**
|
|
107028
|
-
*
|
|
107899
|
+
* Queries a list of instances.
|
|
107029
107900
|
*
|
|
107030
107901
|
* @param request - ListInstancesRequest
|
|
107031
107902
|
* @returns ListInstancesResponse
|
|
@@ -111728,7 +112599,7 @@ export default class Client extends OpenApi {
|
|
|
111728
112599
|
}
|
|
111729
112600
|
|
|
111730
112601
|
/**
|
|
111731
|
-
*
|
|
112602
|
+
* Updates the configurations of submodules in a workspace. You can configure SPARK parameters.
|
|
111732
112603
|
*
|
|
111733
112604
|
* @param tmpReq - UpdateClusterConfigsRequest
|
|
111734
112605
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -111784,7 +112655,7 @@ export default class Client extends OpenApi {
|
|
|
111784
112655
|
}
|
|
111785
112656
|
|
|
111786
112657
|
/**
|
|
111787
|
-
*
|
|
112658
|
+
* Updates the configurations of submodules in a workspace. You can configure SPARK parameters.
|
|
111788
112659
|
*
|
|
111789
112660
|
* @param request - UpdateClusterConfigsRequest
|
|
111790
112661
|
* @returns UpdateClusterConfigsResponse
|
|
@@ -112402,6 +113273,10 @@ export default class Client extends OpenApi {
|
|
|
112402
113273
|
body["IgnoreParentSkipRunningProperty"] = request.ignoreParentSkipRunningProperty;
|
|
112403
113274
|
}
|
|
112404
113275
|
|
|
113276
|
+
if (!$dara.isNull(request.imageId)) {
|
|
113277
|
+
body["ImageId"] = request.imageId;
|
|
113278
|
+
}
|
|
113279
|
+
|
|
112405
113280
|
if (!$dara.isNull(request.inputList)) {
|
|
112406
113281
|
body["InputList"] = request.inputList;
|
|
112407
113282
|
}
|