@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/LICENSE ADDED
@@ -0,0 +1,13 @@
1
+ Copyright (c) 2009-present, Alibaba Cloud All rights reserved.
2
+
3
+ Licensed under the Apache License, Version 2.0 (the "License");
4
+ you may not use this file except in compliance with the License.
5
+ You may obtain a copy of the License at
6
+
7
+ http://www.apache.org/licenses/LICENSE-2.0
8
+
9
+ Unless required by applicable law or agreed to in writing, software
10
+ distributed under the License is distributed on an "AS IS" BASIS,
11
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ See the License for the specific language governing permissions and
13
+ limitations under the License.
package/README.md ADDED
@@ -0,0 +1,25 @@
1
+ English | [简体中文](README-CN.md)
2
+ ![](https://aliyunsdk-pages.alicdn.com/icons/AlibabaCloud.svg)
3
+
4
+ # Alibaba Cloud dataworks-public SDK for NodeJS
5
+
6
+ ## Installation
7
+ If you use `npm` to manage your dependence, you can use the following command:
8
+
9
+ ```sh
10
+ npm install @alicloud/dataworks-public20200518 -S
11
+ ```
12
+
13
+ ## Issues
14
+ [Opening an Issue](https://github.com/aliyun/alibabacloud-typescript-sdk/issues/new), Issues not conforming to the guidelines may be closed immediately.
15
+
16
+ ## Usage
17
+ [Usage Document](https://github.com/aliyun/alibabacloud-typescript-sdk/blob/master/docs/Usage-EN.md#quick-examples)
18
+
19
+ ## References
20
+ * [Latest Release](https://github.com/aliyun/alibabacloud-typescript-sdk/)
21
+
22
+ ## License
23
+ [Apache-2.0](http://www.apache.org/licenses/LICENSE-2.0)
24
+
25
+ Copyright (c) 2009-present, Alibaba Cloud All rights reserved.
package/dist/client.d.ts CHANGED
@@ -6903,6 +6903,7 @@ export declare class ListManualDagInstancesResponse extends $tea.Model {
6903
6903
  });
6904
6904
  }
6905
6905
  export declare class ListMetaDBRequest extends $tea.Model {
6906
+ clusterId?: string;
6906
6907
  dataSourceType?: string;
6907
6908
  pageNum?: number;
6908
6909
  pageSize?: number;
@@ -9831,6 +9832,7 @@ export declare class UpdateQualityRuleRequest extends $tea.Model {
9831
9832
  expectValue?: string;
9832
9833
  id?: number;
9833
9834
  methodName?: string;
9835
+ openSwitch?: boolean;
9834
9836
  operator?: string;
9835
9837
  predictType?: number;
9836
9838
  projectName?: string;
package/dist/client.js CHANGED
@@ -9638,6 +9638,7 @@ class ListMetaDBRequest extends $tea.Model {
9638
9638
  }
9639
9639
  static names() {
9640
9640
  return {
9641
+ clusterId: 'ClusterId',
9641
9642
  dataSourceType: 'DataSourceType',
9642
9643
  pageNum: 'PageNum',
9643
9644
  pageSize: 'PageSize',
@@ -9646,6 +9647,7 @@ class ListMetaDBRequest extends $tea.Model {
9646
9647
  }
9647
9648
  static types() {
9648
9649
  return {
9650
+ clusterId: 'string',
9649
9651
  dataSourceType: 'string',
9650
9652
  pageNum: 'number',
9651
9653
  pageSize: 'number',
@@ -13682,6 +13684,7 @@ class UpdateQualityRuleRequest extends $tea.Model {
13682
13684
  expectValue: 'ExpectValue',
13683
13685
  id: 'Id',
13684
13686
  methodName: 'MethodName',
13687
+ openSwitch: 'OpenSwitch',
13685
13688
  operator: 'Operator',
13686
13689
  predictType: 'PredictType',
13687
13690
  projectName: 'ProjectName',
@@ -13705,6 +13708,7 @@ class UpdateQualityRuleRequest extends $tea.Model {
13705
13708
  expectValue: 'string',
13706
13709
  id: 'number',
13707
13710
  methodName: 'string',
13711
+ openSwitch: 'boolean',
13708
13712
  operator: 'string',
13709
13713
  predictType: 'number',
13710
13714
  projectName: 'string',
@@ -29967,6 +29971,9 @@ class Client extends openapi_client_1.default {
29967
29971
  if (!tea_util_1.default.isUnset(request.methodName)) {
29968
29972
  body["MethodName"] = request.methodName;
29969
29973
  }
29974
+ if (!tea_util_1.default.isUnset(request.openSwitch)) {
29975
+ body["OpenSwitch"] = request.openSwitch;
29976
+ }
29970
29977
  if (!tea_util_1.default.isUnset(request.operator)) {
29971
29978
  body["Operator"] = request.operator;
29972
29979
  }