@aws-sdk/client-wafv2 3.298.0 → 3.300.0
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-types/commands/AssociateWebACLCommand.d.ts +4 -0
- package/dist-types/commands/CheckCapacityCommand.d.ts +1175 -0
- package/dist-types/commands/CreateIPSetCommand.d.ts +15 -0
- package/dist-types/commands/CreateRegexPatternSetCommand.d.ts +16 -0
- package/dist-types/commands/CreateRuleGroupCommand.d.ts +1195 -0
- package/dist-types/commands/CreateWebACLCommand.d.ts +1200 -0
- package/dist-types/commands/DeleteFirewallManagerRuleGroupsCommand.d.ts +4 -0
- package/dist-types/commands/DeleteIPSetCommand.d.ts +6 -0
- package/dist-types/commands/DeleteLoggingConfigurationCommand.d.ts +3 -0
- package/dist-types/commands/DeletePermissionPolicyCommand.d.ts +3 -0
- package/dist-types/commands/DeleteRegexPatternSetCommand.d.ts +6 -0
- package/dist-types/commands/DeleteRuleGroupCommand.d.ts +6 -0
- package/dist-types/commands/DeleteWebACLCommand.d.ts +6 -0
- package/dist-types/commands/DescribeManagedRuleGroupCommand.d.ts +6 -0
- package/dist-types/commands/DisassociateWebACLCommand.d.ts +3 -0
- package/dist-types/commands/GenerateMobileSdkReleaseUrlCommand.d.ts +4 -0
- package/dist-types/commands/GetIPSetCommand.d.ts +5 -0
- package/dist-types/commands/GetLoggingConfigurationCommand.d.ts +3 -0
- package/dist-types/commands/GetManagedRuleSetCommand.d.ts +5 -0
- package/dist-types/commands/GetMobileSdkReleaseCommand.d.ts +4 -0
- package/dist-types/commands/GetPermissionPolicyCommand.d.ts +3 -0
- package/dist-types/commands/GetRateBasedStatementManagedKeysCommand.d.ts +7 -0
- package/dist-types/commands/GetRegexPatternSetCommand.d.ts +5 -0
- package/dist-types/commands/GetRuleGroupCommand.d.ts +6 -0
- package/dist-types/commands/GetSampledRequestsCommand.d.ts +10 -0
- package/dist-types/commands/GetWebACLCommand.d.ts +5 -0
- package/dist-types/commands/GetWebACLForResourceCommand.d.ts +3 -0
- package/dist-types/commands/ListAvailableManagedRuleGroupVersionsCommand.d.ts +7 -0
- package/dist-types/commands/ListAvailableManagedRuleGroupsCommand.d.ts +5 -0
- package/dist-types/commands/ListIPSetsCommand.d.ts +5 -0
- package/dist-types/commands/ListLoggingConfigurationsCommand.d.ts +5 -0
- package/dist-types/commands/ListManagedRuleSetsCommand.d.ts +5 -0
- package/dist-types/commands/ListMobileSdkReleasesCommand.d.ts +5 -0
- package/dist-types/commands/ListRegexPatternSetsCommand.d.ts +5 -0
- package/dist-types/commands/ListResourcesForWebACLCommand.d.ts +4 -0
- package/dist-types/commands/ListRuleGroupsCommand.d.ts +5 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +5 -0
- package/dist-types/commands/ListWebACLsCommand.d.ts +5 -0
- package/dist-types/commands/PutLoggingConfigurationCommand.d.ts +82 -0
- package/dist-types/commands/PutManagedRuleSetVersionsCommand.d.ts +13 -0
- package/dist-types/commands/PutPermissionPolicyCommand.d.ts +4 -0
- package/dist-types/commands/TagResourceCommand.d.ts +9 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +6 -0
- package/dist-types/commands/UpdateIPSetCommand.d.ts +10 -0
- package/dist-types/commands/UpdateManagedRuleSetVersionExpiryDateCommand.d.ts +8 -0
- package/dist-types/commands/UpdateRegexPatternSetCommand.d.ts +12 -0
- package/dist-types/commands/UpdateRuleGroupCommand.d.ts +1190 -0
- package/dist-types/commands/UpdateWebACLCommand.d.ts +1196 -0
- package/package.json +12 -12
|
@@ -29,6 +29,21 @@ export interface CreateIPSetCommandOutput extends CreateIPSetResponse, __Metadat
|
|
|
29
29
|
* import { WAFV2Client, CreateIPSetCommand } from "@aws-sdk/client-wafv2"; // ES Modules import
|
|
30
30
|
* // const { WAFV2Client, CreateIPSetCommand } = require("@aws-sdk/client-wafv2"); // CommonJS import
|
|
31
31
|
* const client = new WAFV2Client(config);
|
|
32
|
+
* const input = {
|
|
33
|
+
* Name: "STRING_VALUE", // required
|
|
34
|
+
* Scope: "CLOUDFRONT" || "REGIONAL", // required
|
|
35
|
+
* Description: "STRING_VALUE",
|
|
36
|
+
* IPAddressVersion: "IPV4" || "IPV6", // required
|
|
37
|
+
* Addresses: [ // required
|
|
38
|
+
* "STRING_VALUE",
|
|
39
|
+
* ],
|
|
40
|
+
* Tags: [
|
|
41
|
+
* {
|
|
42
|
+
* Key: "STRING_VALUE", // required
|
|
43
|
+
* Value: "STRING_VALUE", // required
|
|
44
|
+
* },
|
|
45
|
+
* ],
|
|
46
|
+
* };
|
|
32
47
|
* const command = new CreateIPSetCommand(input);
|
|
33
48
|
* const response = await client.send(command);
|
|
34
49
|
* ```
|
|
@@ -27,6 +27,22 @@ export interface CreateRegexPatternSetCommandOutput extends CreateRegexPatternSe
|
|
|
27
27
|
* import { WAFV2Client, CreateRegexPatternSetCommand } from "@aws-sdk/client-wafv2"; // ES Modules import
|
|
28
28
|
* // const { WAFV2Client, CreateRegexPatternSetCommand } = require("@aws-sdk/client-wafv2"); // CommonJS import
|
|
29
29
|
* const client = new WAFV2Client(config);
|
|
30
|
+
* const input = {
|
|
31
|
+
* Name: "STRING_VALUE", // required
|
|
32
|
+
* Scope: "CLOUDFRONT" || "REGIONAL", // required
|
|
33
|
+
* Description: "STRING_VALUE",
|
|
34
|
+
* RegularExpressionList: [ // required
|
|
35
|
+
* {
|
|
36
|
+
* RegexString: "STRING_VALUE",
|
|
37
|
+
* },
|
|
38
|
+
* ],
|
|
39
|
+
* Tags: [
|
|
40
|
+
* {
|
|
41
|
+
* Key: "STRING_VALUE", // required
|
|
42
|
+
* Value: "STRING_VALUE", // required
|
|
43
|
+
* },
|
|
44
|
+
* ],
|
|
45
|
+
* };
|
|
30
46
|
* const command = new CreateRegexPatternSetCommand(input);
|
|
31
47
|
* const response = await client.send(command);
|
|
32
48
|
* ```
|