@alicloud/waf-openapi20211001 4.1.0 → 4.1.1
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 +6 -0
- package/dist/client.js +12 -0
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +18 -0
package/package.json
CHANGED
package/src/client.ts
CHANGED
|
@@ -4791,6 +4791,7 @@ export class DescribeDefenseRuleResponseBodyRule extends $dara.Model {
|
|
|
4791
4791
|
}
|
|
4792
4792
|
|
|
4793
4793
|
export class DescribeDefenseRulesResponseBodyRules extends $dara.Model {
|
|
4794
|
+
actionExternal?: string;
|
|
4794
4795
|
/**
|
|
4795
4796
|
* @remarks
|
|
4796
4797
|
* The details of the protection rule. The value is a string that contains multiple parameters in the JSON format. For more information, see the "**Rule parameters**" section in the [CreateDefenseRule](~~CreateDefenseRule~~) topic.
|
|
@@ -4832,6 +4833,10 @@ export class DescribeDefenseRulesResponseBodyRules extends $dara.Model {
|
|
|
4832
4833
|
* waf_group
|
|
4833
4834
|
*/
|
|
4834
4835
|
defenseScene?: string;
|
|
4836
|
+
description?: string;
|
|
4837
|
+
detailRuleIds?: string;
|
|
4838
|
+
externalInfo?: string;
|
|
4839
|
+
gmtCreate?: number;
|
|
4835
4840
|
/**
|
|
4836
4841
|
* @remarks
|
|
4837
4842
|
* The most recent time when the protection rule was modified.
|
|
@@ -4856,6 +4861,7 @@ export class DescribeDefenseRulesResponseBodyRules extends $dara.Model {
|
|
|
4856
4861
|
* rules_41
|
|
4857
4862
|
*/
|
|
4858
4863
|
ruleName?: string;
|
|
4864
|
+
ruleType?: string;
|
|
4859
4865
|
/**
|
|
4860
4866
|
* @remarks
|
|
4861
4867
|
* The status of the protection rule. Valid values:
|
|
@@ -4877,12 +4883,18 @@ export class DescribeDefenseRulesResponseBodyRules extends $dara.Model {
|
|
|
4877
4883
|
templateId?: number;
|
|
4878
4884
|
static names(): { [key: string]: string } {
|
|
4879
4885
|
return {
|
|
4886
|
+
actionExternal: 'ActionExternal',
|
|
4880
4887
|
config: 'Config',
|
|
4881
4888
|
defenseOrigin: 'DefenseOrigin',
|
|
4882
4889
|
defenseScene: 'DefenseScene',
|
|
4890
|
+
description: 'Description',
|
|
4891
|
+
detailRuleIds: 'DetailRuleIds',
|
|
4892
|
+
externalInfo: 'ExternalInfo',
|
|
4893
|
+
gmtCreate: 'GmtCreate',
|
|
4883
4894
|
gmtModified: 'GmtModified',
|
|
4884
4895
|
ruleId: 'RuleId',
|
|
4885
4896
|
ruleName: 'RuleName',
|
|
4897
|
+
ruleType: 'RuleType',
|
|
4886
4898
|
status: 'Status',
|
|
4887
4899
|
templateId: 'TemplateId',
|
|
4888
4900
|
};
|
|
@@ -4890,12 +4902,18 @@ export class DescribeDefenseRulesResponseBodyRules extends $dara.Model {
|
|
|
4890
4902
|
|
|
4891
4903
|
static types(): { [key: string]: any } {
|
|
4892
4904
|
return {
|
|
4905
|
+
actionExternal: 'string',
|
|
4893
4906
|
config: 'string',
|
|
4894
4907
|
defenseOrigin: 'string',
|
|
4895
4908
|
defenseScene: 'string',
|
|
4909
|
+
description: 'string',
|
|
4910
|
+
detailRuleIds: 'string',
|
|
4911
|
+
externalInfo: 'string',
|
|
4912
|
+
gmtCreate: 'number',
|
|
4896
4913
|
gmtModified: 'number',
|
|
4897
4914
|
ruleId: 'number',
|
|
4898
4915
|
ruleName: 'string',
|
|
4916
|
+
ruleType: 'string',
|
|
4899
4917
|
status: 'number',
|
|
4900
4918
|
templateId: 'number',
|
|
4901
4919
|
};
|