@alicloud/dataworks-public20200518 4.7.2 → 4.7.4
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 +2 -0
- package/dist/client.js +10 -0
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +14 -0
package/package.json
CHANGED
package/src/client.ts
CHANGED
|
@@ -3452,6 +3452,7 @@ export class CreateQualityRuleRequest extends $tea.Model {
|
|
|
3452
3452
|
propertyType?: string;
|
|
3453
3453
|
ruleName?: string;
|
|
3454
3454
|
ruleType?: number;
|
|
3455
|
+
taskSetting?: string;
|
|
3455
3456
|
templateId?: number;
|
|
3456
3457
|
trend?: string;
|
|
3457
3458
|
warningThreshold?: string;
|
|
@@ -3473,6 +3474,7 @@ export class CreateQualityRuleRequest extends $tea.Model {
|
|
|
3473
3474
|
propertyType: 'PropertyType',
|
|
3474
3475
|
ruleName: 'RuleName',
|
|
3475
3476
|
ruleType: 'RuleType',
|
|
3477
|
+
taskSetting: 'TaskSetting',
|
|
3476
3478
|
templateId: 'TemplateId',
|
|
3477
3479
|
trend: 'Trend',
|
|
3478
3480
|
warningThreshold: 'WarningThreshold',
|
|
@@ -3497,6 +3499,7 @@ export class CreateQualityRuleRequest extends $tea.Model {
|
|
|
3497
3499
|
propertyType: 'string',
|
|
3498
3500
|
ruleName: 'string',
|
|
3499
3501
|
ruleType: 'number',
|
|
3502
|
+
taskSetting: 'string',
|
|
3500
3503
|
templateId: 'number',
|
|
3501
3504
|
trend: 'string',
|
|
3502
3505
|
warningThreshold: 'string',
|
|
@@ -22903,6 +22906,7 @@ export class UpdateQualityRuleRequest extends $tea.Model {
|
|
|
22903
22906
|
propertyType?: string;
|
|
22904
22907
|
ruleName?: string;
|
|
22905
22908
|
ruleType?: number;
|
|
22909
|
+
taskSetting?: string;
|
|
22906
22910
|
templateId?: number;
|
|
22907
22911
|
trend?: string;
|
|
22908
22912
|
warningThreshold?: string;
|
|
@@ -22926,6 +22930,7 @@ export class UpdateQualityRuleRequest extends $tea.Model {
|
|
|
22926
22930
|
propertyType: 'PropertyType',
|
|
22927
22931
|
ruleName: 'RuleName',
|
|
22928
22932
|
ruleType: 'RuleType',
|
|
22933
|
+
taskSetting: 'TaskSetting',
|
|
22929
22934
|
templateId: 'TemplateId',
|
|
22930
22935
|
trend: 'Trend',
|
|
22931
22936
|
warningThreshold: 'WarningThreshold',
|
|
@@ -22952,6 +22957,7 @@ export class UpdateQualityRuleRequest extends $tea.Model {
|
|
|
22952
22957
|
propertyType: 'string',
|
|
22953
22958
|
ruleName: 'string',
|
|
22954
22959
|
ruleType: 'number',
|
|
22960
|
+
taskSetting: 'string',
|
|
22955
22961
|
templateId: 'number',
|
|
22956
22962
|
trend: 'string',
|
|
22957
22963
|
warningThreshold: 'string',
|
|
@@ -39542,6 +39548,10 @@ export default class Client extends OpenApi {
|
|
|
39542
39548
|
body["RuleType"] = request.ruleType;
|
|
39543
39549
|
}
|
|
39544
39550
|
|
|
39551
|
+
if (!Util.isUnset(request.taskSetting)) {
|
|
39552
|
+
body["TaskSetting"] = request.taskSetting;
|
|
39553
|
+
}
|
|
39554
|
+
|
|
39545
39555
|
if (!Util.isUnset(request.templateId)) {
|
|
39546
39556
|
body["TemplateId"] = request.templateId;
|
|
39547
39557
|
}
|
|
@@ -49669,6 +49679,10 @@ export default class Client extends OpenApi {
|
|
|
49669
49679
|
body["RuleType"] = request.ruleType;
|
|
49670
49680
|
}
|
|
49671
49681
|
|
|
49682
|
+
if (!Util.isUnset(request.taskSetting)) {
|
|
49683
|
+
body["TaskSetting"] = request.taskSetting;
|
|
49684
|
+
}
|
|
49685
|
+
|
|
49672
49686
|
if (!Util.isUnset(request.templateId)) {
|
|
49673
49687
|
body["TemplateId"] = request.templateId;
|
|
49674
49688
|
}
|