@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/dist/client.d.ts +2 -0
- package/dist/client.js +7 -0
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +10 -0
package/dist/client.d.ts
CHANGED
|
@@ -6329,6 +6329,7 @@ export declare class ModifyMaskingRulesRequest extends $tea.Model {
|
|
|
6329
6329
|
ruleConfig?: string;
|
|
6330
6330
|
ruleName?: string;
|
|
6331
6331
|
ruleNameList?: string;
|
|
6332
|
+
ruleVersion?: string;
|
|
6332
6333
|
static names(): {
|
|
6333
6334
|
[key: string]: string;
|
|
6334
6335
|
};
|
|
@@ -8365,6 +8366,7 @@ export declare class DescribeGlobalSecurityIPGroupRelationResponseBodyGlobalSecu
|
|
|
8365
8366
|
}
|
|
8366
8367
|
export declare class DescribeMaskingRulesResponseBodyData extends $tea.Model {
|
|
8367
8368
|
ruleList?: string[];
|
|
8369
|
+
ruleVersion?: string;
|
|
8368
8370
|
static names(): {
|
|
8369
8371
|
[key: string]: string;
|
|
8370
8372
|
};
|
package/dist/client.js
CHANGED
|
@@ -9140,6 +9140,7 @@ class ModifyMaskingRulesRequest extends $tea.Model {
|
|
|
9140
9140
|
ruleConfig: 'RuleConfig',
|
|
9141
9141
|
ruleName: 'RuleName',
|
|
9142
9142
|
ruleNameList: 'RuleNameList',
|
|
9143
|
+
ruleVersion: 'RuleVersion',
|
|
9143
9144
|
};
|
|
9144
9145
|
}
|
|
9145
9146
|
static types() {
|
|
@@ -9149,6 +9150,7 @@ class ModifyMaskingRulesRequest extends $tea.Model {
|
|
|
9149
9150
|
ruleConfig: 'string',
|
|
9150
9151
|
ruleName: 'string',
|
|
9151
9152
|
ruleNameList: 'string',
|
|
9153
|
+
ruleVersion: 'string',
|
|
9152
9154
|
};
|
|
9153
9155
|
}
|
|
9154
9156
|
}
|
|
@@ -12116,11 +12118,13 @@ class DescribeMaskingRulesResponseBodyData extends $tea.Model {
|
|
|
12116
12118
|
static names() {
|
|
12117
12119
|
return {
|
|
12118
12120
|
ruleList: 'RuleList',
|
|
12121
|
+
ruleVersion: 'RuleVersion',
|
|
12119
12122
|
};
|
|
12120
12123
|
}
|
|
12121
12124
|
static types() {
|
|
12122
12125
|
return {
|
|
12123
12126
|
ruleList: { 'type': 'array', 'itemType': 'string' },
|
|
12127
|
+
ruleVersion: 'string',
|
|
12124
12128
|
};
|
|
12125
12129
|
}
|
|
12126
12130
|
}
|
|
@@ -19590,6 +19594,9 @@ class Client extends openapi_client_1.default {
|
|
|
19590
19594
|
if (!tea_util_1.default.isUnset(request.ruleNameList)) {
|
|
19591
19595
|
query["RuleNameList"] = request.ruleNameList;
|
|
19592
19596
|
}
|
|
19597
|
+
if (!tea_util_1.default.isUnset(request.ruleVersion)) {
|
|
19598
|
+
query["RuleVersion"] = request.ruleVersion;
|
|
19599
|
+
}
|
|
19593
19600
|
let req = new $OpenApi.OpenApiRequest({
|
|
19594
19601
|
query: openapi_util_1.default.query(query),
|
|
19595
19602
|
});
|