@aws-sdk/client-wafv2 3.504.0 → 3.508.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/README.md +8 -0
- package/dist-cjs/commands/DeleteAPIKeyCommand.js +1 -0
- package/dist-cjs/index.js +162 -1750
- package/dist-es/WAFV2.js +2 -0
- package/dist-es/commands/DeleteAPIKeyCommand.js +24 -0
- package/dist-es/commands/index.js +1 -0
- package/dist-es/protocols/Aws_json1_1.js +244 -1852
- package/dist-types/WAFV2.d.ts +7 -0
- package/dist-types/WAFV2Client.d.ts +3 -2
- package/dist-types/commands/DeleteAPIKeyCommand.d.ts +97 -0
- package/dist-types/commands/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +32 -3
- package/dist-types/protocols/Aws_json1_1.d.ts +9 -0
- package/dist-types/ts3.4/WAFV2.d.ts +17 -0
- package/dist-types/ts3.4/WAFV2Client.d.ts +6 -0
- package/dist-types/ts3.4/commands/DeleteAPIKeyCommand.d.ts +26 -0
- package/dist-types/ts3.4/commands/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +5 -0
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +12 -0
- package/package.json +3 -3
package/dist-es/WAFV2.js
CHANGED
|
@@ -6,6 +6,7 @@ import { CreateIPSetCommand } from "./commands/CreateIPSetCommand";
|
|
|
6
6
|
import { CreateRegexPatternSetCommand, } from "./commands/CreateRegexPatternSetCommand";
|
|
7
7
|
import { CreateRuleGroupCommand, } from "./commands/CreateRuleGroupCommand";
|
|
8
8
|
import { CreateWebACLCommand, } from "./commands/CreateWebACLCommand";
|
|
9
|
+
import { DeleteAPIKeyCommand, } from "./commands/DeleteAPIKeyCommand";
|
|
9
10
|
import { DeleteFirewallManagerRuleGroupsCommand, } from "./commands/DeleteFirewallManagerRuleGroupsCommand";
|
|
10
11
|
import { DeleteIPSetCommand } from "./commands/DeleteIPSetCommand";
|
|
11
12
|
import { DeleteLoggingConfigurationCommand, } from "./commands/DeleteLoggingConfigurationCommand";
|
|
@@ -61,6 +62,7 @@ const commands = {
|
|
|
61
62
|
CreateRegexPatternSetCommand,
|
|
62
63
|
CreateRuleGroupCommand,
|
|
63
64
|
CreateWebACLCommand,
|
|
65
|
+
DeleteAPIKeyCommand,
|
|
64
66
|
DeleteFirewallManagerRuleGroupsCommand,
|
|
65
67
|
DeleteIPSetCommand,
|
|
66
68
|
DeleteLoggingConfigurationCommand,
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
+
import { de_DeleteAPIKeyCommand, se_DeleteAPIKeyCommand } from "../protocols/Aws_json1_1";
|
|
6
|
+
export { $Command };
|
|
7
|
+
export class DeleteAPIKeyCommand extends $Command
|
|
8
|
+
.classBuilder()
|
|
9
|
+
.ep({
|
|
10
|
+
...commonParams,
|
|
11
|
+
})
|
|
12
|
+
.m(function (Command, cs, config, o) {
|
|
13
|
+
return [
|
|
14
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
15
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
16
|
+
];
|
|
17
|
+
})
|
|
18
|
+
.s("AWSWAF_20190729", "DeleteAPIKey", {})
|
|
19
|
+
.n("WAFV2Client", "DeleteAPIKeyCommand")
|
|
20
|
+
.f(void 0, void 0)
|
|
21
|
+
.ser(se_DeleteAPIKeyCommand)
|
|
22
|
+
.de(de_DeleteAPIKeyCommand)
|
|
23
|
+
.build() {
|
|
24
|
+
}
|
|
@@ -5,6 +5,7 @@ export * from "./CreateIPSetCommand";
|
|
|
5
5
|
export * from "./CreateRegexPatternSetCommand";
|
|
6
6
|
export * from "./CreateRuleGroupCommand";
|
|
7
7
|
export * from "./CreateWebACLCommand";
|
|
8
|
+
export * from "./DeleteAPIKeyCommand";
|
|
8
9
|
export * from "./DeleteFirewallManagerRuleGroupsCommand";
|
|
9
10
|
export * from "./DeleteIPSetCommand";
|
|
10
11
|
export * from "./DeleteLoggingConfigurationCommand";
|