@aws-sdk/client-wafv2 3.490.0 → 3.495.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-cjs/WAFV2.js +1 -117
- package/dist-cjs/WAFV2Client.js +1 -43
- package/dist-cjs/commands/AssociateWebACLCommand.js +1 -28
- package/dist-cjs/commands/CheckCapacityCommand.js +1 -28
- package/dist-cjs/commands/CreateAPIKeyCommand.js +1 -28
- package/dist-cjs/commands/CreateIPSetCommand.js +1 -28
- package/dist-cjs/commands/CreateRegexPatternSetCommand.js +1 -28
- package/dist-cjs/commands/CreateRuleGroupCommand.js +1 -28
- package/dist-cjs/commands/CreateWebACLCommand.js +1 -28
- package/dist-cjs/commands/DeleteFirewallManagerRuleGroupsCommand.js +1 -28
- package/dist-cjs/commands/DeleteIPSetCommand.js +1 -28
- package/dist-cjs/commands/DeleteLoggingConfigurationCommand.js +1 -28
- package/dist-cjs/commands/DeletePermissionPolicyCommand.js +1 -28
- package/dist-cjs/commands/DeleteRegexPatternSetCommand.js +1 -28
- package/dist-cjs/commands/DeleteRuleGroupCommand.js +1 -28
- package/dist-cjs/commands/DeleteWebACLCommand.js +1 -28
- package/dist-cjs/commands/DescribeAllManagedProductsCommand.js +1 -28
- package/dist-cjs/commands/DescribeManagedProductsByVendorCommand.js +1 -28
- package/dist-cjs/commands/DescribeManagedRuleGroupCommand.js +1 -28
- package/dist-cjs/commands/DisassociateWebACLCommand.js +1 -28
- package/dist-cjs/commands/GenerateMobileSdkReleaseUrlCommand.js +1 -28
- package/dist-cjs/commands/GetDecryptedAPIKeyCommand.js +1 -28
- package/dist-cjs/commands/GetIPSetCommand.js +1 -28
- package/dist-cjs/commands/GetLoggingConfigurationCommand.js +1 -28
- package/dist-cjs/commands/GetManagedRuleSetCommand.js +1 -28
- package/dist-cjs/commands/GetMobileSdkReleaseCommand.js +1 -28
- package/dist-cjs/commands/GetPermissionPolicyCommand.js +1 -28
- package/dist-cjs/commands/GetRateBasedStatementManagedKeysCommand.js +1 -28
- package/dist-cjs/commands/GetRegexPatternSetCommand.js +1 -28
- package/dist-cjs/commands/GetRuleGroupCommand.js +1 -28
- package/dist-cjs/commands/GetSampledRequestsCommand.js +1 -28
- package/dist-cjs/commands/GetWebACLCommand.js +1 -28
- package/dist-cjs/commands/GetWebACLForResourceCommand.js +1 -28
- package/dist-cjs/commands/ListAPIKeysCommand.js +1 -28
- package/dist-cjs/commands/ListAvailableManagedRuleGroupVersionsCommand.js +1 -28
- package/dist-cjs/commands/ListAvailableManagedRuleGroupsCommand.js +1 -28
- package/dist-cjs/commands/ListIPSetsCommand.js +1 -28
- package/dist-cjs/commands/ListLoggingConfigurationsCommand.js +1 -28
- package/dist-cjs/commands/ListManagedRuleSetsCommand.js +1 -28
- package/dist-cjs/commands/ListMobileSdkReleasesCommand.js +1 -28
- package/dist-cjs/commands/ListRegexPatternSetsCommand.js +1 -28
- package/dist-cjs/commands/ListResourcesForWebACLCommand.js +1 -28
- package/dist-cjs/commands/ListRuleGroupsCommand.js +1 -28
- package/dist-cjs/commands/ListTagsForResourceCommand.js +1 -28
- package/dist-cjs/commands/ListWebACLsCommand.js +1 -28
- package/dist-cjs/commands/PutLoggingConfigurationCommand.js +1 -28
- package/dist-cjs/commands/PutManagedRuleSetVersionsCommand.js +1 -28
- package/dist-cjs/commands/PutPermissionPolicyCommand.js +1 -28
- package/dist-cjs/commands/TagResourceCommand.js +1 -28
- package/dist-cjs/commands/UntagResourceCommand.js +1 -28
- package/dist-cjs/commands/UpdateIPSetCommand.js +1 -28
- package/dist-cjs/commands/UpdateManagedRuleSetVersionExpiryDateCommand.js +1 -28
- package/dist-cjs/commands/UpdateRegexPatternSetCommand.js +1 -28
- package/dist-cjs/commands/UpdateRuleGroupCommand.js +1 -28
- package/dist-cjs/commands/UpdateWebACLCommand.js +1 -28
- package/dist-cjs/commands/index.js +1 -56
- package/dist-cjs/endpoint/EndpointParameters.js +1 -18
- package/dist-cjs/extensionConfiguration.js +1 -2
- package/dist-cjs/index.js +5563 -10
- package/dist-cjs/models/WAFV2ServiceException.js +1 -12
- package/dist-cjs/models/index.js +1 -4
- package/dist-cjs/models/models_0.js +1 -740
- package/dist-cjs/protocols/Aws_json1_1.js +1 -3572
- package/dist-cjs/runtimeExtensions.js +1 -22
- package/package.json +39 -39
|
@@ -1,12 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.WAFV2ServiceException = exports.__ServiceException = void 0;
|
|
4
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
5
|
-
Object.defineProperty(exports, "__ServiceException", { enumerable: true, get: function () { return smithy_client_1.ServiceException; } });
|
|
6
|
-
class WAFV2ServiceException extends smithy_client_1.ServiceException {
|
|
7
|
-
constructor(options) {
|
|
8
|
-
super(options);
|
|
9
|
-
Object.setPrototypeOf(this, WAFV2ServiceException.prototype);
|
|
10
|
-
}
|
|
11
|
-
}
|
|
12
|
-
exports.WAFV2ServiceException = WAFV2ServiceException;
|
|
1
|
+
module.exports = require("../index.js");
|
package/dist-cjs/models/index.js
CHANGED