@alicloud/dataworks-public20200518 4.3.2 → 4.3.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alicloud/dataworks-public20200518",
3
- "version": "4.3.2",
3
+ "version": "4.3.3",
4
4
  "description": "",
5
5
  "main": "dist/client.js",
6
6
  "scripts": {
package/src/client.ts CHANGED
@@ -12187,12 +12187,14 @@ export class ListManualDagInstancesResponse extends $tea.Model {
12187
12187
  }
12188
12188
 
12189
12189
  export class ListMetaDBRequest extends $tea.Model {
12190
+ clusterId?: string;
12190
12191
  dataSourceType?: string;
12191
12192
  pageNum?: number;
12192
12193
  pageSize?: number;
12193
12194
  projectId?: number;
12194
12195
  static names(): { [key: string]: string } {
12195
12196
  return {
12197
+ clusterId: 'ClusterId',
12196
12198
  dataSourceType: 'DataSourceType',
12197
12199
  pageNum: 'PageNum',
12198
12200
  pageSize: 'PageSize',
@@ -12202,6 +12204,7 @@ export class ListMetaDBRequest extends $tea.Model {
12202
12204
 
12203
12205
  static types(): { [key: string]: any } {
12204
12206
  return {
12207
+ clusterId: 'string',
12205
12208
  dataSourceType: 'string',
12206
12209
  pageNum: 'number',
12207
12210
  pageSize: 'number',
@@ -17289,6 +17292,7 @@ export class UpdateQualityRuleRequest extends $tea.Model {
17289
17292
  expectValue?: string;
17290
17293
  id?: number;
17291
17294
  methodName?: string;
17295
+ openSwitch?: boolean;
17292
17296
  operator?: string;
17293
17297
  predictType?: number;
17294
17298
  projectName?: string;
@@ -17310,6 +17314,7 @@ export class UpdateQualityRuleRequest extends $tea.Model {
17310
17314
  expectValue: 'ExpectValue',
17311
17315
  id: 'Id',
17312
17316
  methodName: 'MethodName',
17317
+ openSwitch: 'OpenSwitch',
17313
17318
  operator: 'Operator',
17314
17319
  predictType: 'PredictType',
17315
17320
  projectName: 'ProjectName',
@@ -17334,6 +17339,7 @@ export class UpdateQualityRuleRequest extends $tea.Model {
17334
17339
  expectValue: 'string',
17335
17340
  id: 'number',
17336
17341
  methodName: 'string',
17342
+ openSwitch: 'boolean',
17337
17343
  operator: 'string',
17338
17344
  predictType: 'number',
17339
17345
  projectName: 'string',
@@ -37635,6 +37641,10 @@ export default class Client extends OpenApi {
37635
37641
  body["MethodName"] = request.methodName;
37636
37642
  }
37637
37643
 
37644
+ if (!Util.isUnset(request.openSwitch)) {
37645
+ body["OpenSwitch"] = request.openSwitch;
37646
+ }
37647
+
37638
37648
  if (!Util.isUnset(request.operator)) {
37639
37649
  body["Operator"] = request.operator;
37640
37650
  }