@alicloud/polardb20170801 4.1.1 → 4.1.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/polardb20170801",
3
- "version": "4.1.1",
3
+ "version": "4.1.3",
4
4
  "description": "",
5
5
  "main": "dist/client.js",
6
6
  "scripts": {
package/src/client.ts CHANGED
@@ -11789,6 +11789,7 @@ export class ModifyMaskingRulesRequest extends $tea.Model {
11789
11789
  ruleConfig?: string;
11790
11790
  ruleName?: string;
11791
11791
  ruleNameList?: string;
11792
+ ruleVersion?: string;
11792
11793
  static names(): { [key: string]: string } {
11793
11794
  return {
11794
11795
  DBClusterId: 'DBClusterId',
@@ -11796,6 +11797,7 @@ export class ModifyMaskingRulesRequest extends $tea.Model {
11796
11797
  ruleConfig: 'RuleConfig',
11797
11798
  ruleName: 'RuleName',
11798
11799
  ruleNameList: 'RuleNameList',
11800
+ ruleVersion: 'RuleVersion',
11799
11801
  };
11800
11802
  }
11801
11803
 
@@ -11806,6 +11808,7 @@ export class ModifyMaskingRulesRequest extends $tea.Model {
11806
11808
  ruleConfig: 'string',
11807
11809
  ruleName: 'string',
11808
11810
  ruleNameList: 'string',
11811
+ ruleVersion: 'string',
11809
11812
  };
11810
11813
  }
11811
11814
 
@@ -15610,15 +15613,18 @@ export class DescribeGlobalSecurityIPGroupRelationResponseBodyGlobalSecurityIPGr
15610
15613
 
15611
15614
  export class DescribeMaskingRulesResponseBodyData extends $tea.Model {
15612
15615
  ruleList?: string[];
15616
+ ruleVersion?: string;
15613
15617
  static names(): { [key: string]: string } {
15614
15618
  return {
15615
15619
  ruleList: 'RuleList',
15620
+ ruleVersion: 'RuleVersion',
15616
15621
  };
15617
15622
  }
15618
15623
 
15619
15624
  static types(): { [key: string]: any } {
15620
15625
  return {
15621
15626
  ruleList: { 'type': 'array', 'itemType': 'string' },
15627
+ ruleVersion: 'string',
15622
15628
  };
15623
15629
  }
15624
15630
 
@@ -24638,6 +24644,10 @@ export default class Client extends OpenApi {
24638
24644
  query["RuleNameList"] = request.ruleNameList;
24639
24645
  }
24640
24646
 
24647
+ if (!Util.isUnset(request.ruleVersion)) {
24648
+ query["RuleVersion"] = request.ruleVersion;
24649
+ }
24650
+
24641
24651
  let req = new $OpenApi.OpenApiRequest({
24642
24652
  query: OpenApiUtil.query(query),
24643
24653
  });