@aws-sdk/client-wafv2 3.952.0 → 3.953.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/index.js +1143 -709
- package/dist-cjs/runtimeConfig.shared.js +7 -6
- package/dist-es/commands/AssociateWebACLCommand.js +2 -2
- package/dist-es/commands/CheckCapacityCommand.js +2 -2
- package/dist-es/commands/CreateAPIKeyCommand.js +2 -2
- package/dist-es/commands/CreateIPSetCommand.js +2 -2
- package/dist-es/commands/CreateRegexPatternSetCommand.js +2 -2
- package/dist-es/commands/CreateRuleGroupCommand.js +2 -2
- package/dist-es/commands/CreateWebACLCommand.js +2 -2
- package/dist-es/commands/DeleteAPIKeyCommand.js +2 -2
- package/dist-es/commands/DeleteFirewallManagerRuleGroupsCommand.js +2 -2
- package/dist-es/commands/DeleteIPSetCommand.js +2 -2
- package/dist-es/commands/DeleteLoggingConfigurationCommand.js +2 -2
- package/dist-es/commands/DeletePermissionPolicyCommand.js +2 -2
- package/dist-es/commands/DeleteRegexPatternSetCommand.js +2 -2
- package/dist-es/commands/DeleteRuleGroupCommand.js +2 -2
- package/dist-es/commands/DeleteWebACLCommand.js +2 -2
- package/dist-es/commands/DescribeAllManagedProductsCommand.js +2 -2
- package/dist-es/commands/DescribeManagedProductsByVendorCommand.js +2 -2
- package/dist-es/commands/DescribeManagedRuleGroupCommand.js +2 -2
- package/dist-es/commands/DisassociateWebACLCommand.js +2 -2
- package/dist-es/commands/GenerateMobileSdkReleaseUrlCommand.js +2 -2
- package/dist-es/commands/GetDecryptedAPIKeyCommand.js +2 -2
- package/dist-es/commands/GetIPSetCommand.js +2 -2
- package/dist-es/commands/GetLoggingConfigurationCommand.js +2 -2
- package/dist-es/commands/GetManagedRuleSetCommand.js +2 -2
- package/dist-es/commands/GetMobileSdkReleaseCommand.js +2 -2
- package/dist-es/commands/GetPermissionPolicyCommand.js +2 -2
- package/dist-es/commands/GetRateBasedStatementManagedKeysCommand.js +2 -2
- package/dist-es/commands/GetRegexPatternSetCommand.js +2 -2
- package/dist-es/commands/GetRuleGroupCommand.js +2 -2
- package/dist-es/commands/GetSampledRequestsCommand.js +2 -2
- package/dist-es/commands/GetWebACLCommand.js +2 -2
- package/dist-es/commands/GetWebACLForResourceCommand.js +2 -2
- package/dist-es/commands/ListAPIKeysCommand.js +2 -2
- package/dist-es/commands/ListAvailableManagedRuleGroupVersionsCommand.js +2 -2
- package/dist-es/commands/ListAvailableManagedRuleGroupsCommand.js +2 -2
- package/dist-es/commands/ListIPSetsCommand.js +2 -2
- package/dist-es/commands/ListLoggingConfigurationsCommand.js +2 -2
- package/dist-es/commands/ListManagedRuleSetsCommand.js +2 -2
- package/dist-es/commands/ListMobileSdkReleasesCommand.js +2 -2
- package/dist-es/commands/ListRegexPatternSetsCommand.js +2 -2
- package/dist-es/commands/ListResourcesForWebACLCommand.js +2 -2
- package/dist-es/commands/ListRuleGroupsCommand.js +2 -2
- package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-es/commands/ListWebACLsCommand.js +2 -2
- package/dist-es/commands/PutLoggingConfigurationCommand.js +2 -2
- package/dist-es/commands/PutManagedRuleSetVersionsCommand.js +2 -2
- package/dist-es/commands/PutPermissionPolicyCommand.js +2 -2
- package/dist-es/commands/TagResourceCommand.js +2 -2
- package/dist-es/commands/UntagResourceCommand.js +2 -2
- package/dist-es/commands/UpdateIPSetCommand.js +2 -2
- package/dist-es/commands/UpdateManagedRuleSetVersionExpiryDateCommand.js +2 -2
- package/dist-es/commands/UpdateRegexPatternSetCommand.js +2 -2
- package/dist-es/commands/UpdateRuleGroupCommand.js +2 -2
- package/dist-es/commands/UpdateWebACLCommand.js +2 -2
- package/dist-es/index.js +1 -0
- package/dist-es/runtimeConfig.shared.js +7 -6
- package/dist-es/schemas/schemas_0.js +727 -615
- package/dist-types/WAFV2Client.d.ts +1 -10
- package/dist-types/index.d.ts +1 -0
- package/dist-types/runtimeConfig.browser.d.ts +6 -2
- package/dist-types/runtimeConfig.d.ts +6 -2
- package/dist-types/runtimeConfig.native.d.ts +6 -2
- package/dist-types/runtimeConfig.shared.d.ts +6 -1
- package/dist-types/schemas/schemas_0.d.ts +323 -383
- package/dist-types/ts3.4/WAFV2Client.d.ts +0 -4
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +322 -384
- package/package.json +34 -34
|
@@ -26,12 +26,13 @@ const getRuntimeConfig = (config) => {
|
|
|
26
26
|
},
|
|
27
27
|
],
|
|
28
28
|
logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
|
|
29
|
-
protocol: config?.protocol ??
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
29
|
+
protocol: config?.protocol ?? protocols_1.AwsJson1_1Protocol,
|
|
30
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
31
|
+
defaultNamespace: "com.amazonaws.wafv2",
|
|
32
|
+
xmlNamespace: "http://waf.amazonaws.com/doc/2019-07-29/",
|
|
33
|
+
version: "2019-07-29",
|
|
34
|
+
serviceTarget: "AWSWAF_20190729",
|
|
35
|
+
},
|
|
35
36
|
serviceId: config?.serviceId ?? "WAFV2",
|
|
36
37
|
urlParser: config?.urlParser ?? url_parser_1.parseUrl,
|
|
37
38
|
utf8Decoder: config?.utf8Decoder ?? util_utf8_1.fromUtf8,
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { AssociateWebACL } from "../schemas/schemas_0";
|
|
4
|
+
import { AssociateWebACL$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class AssociateWebACLCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class AssociateWebACLCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSWAF_20190729", "AssociateWebACL", {})
|
|
13
13
|
.n("WAFV2Client", "AssociateWebACLCommand")
|
|
14
|
-
.sc(AssociateWebACL)
|
|
14
|
+
.sc(AssociateWebACL$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CheckCapacity } from "../schemas/schemas_0";
|
|
4
|
+
import { CheckCapacity$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CheckCapacityCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CheckCapacityCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSWAF_20190729", "CheckCapacity", {})
|
|
13
13
|
.n("WAFV2Client", "CheckCapacityCommand")
|
|
14
|
-
.sc(CheckCapacity)
|
|
14
|
+
.sc(CheckCapacity$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateAPIKey } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateAPIKey$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateAPIKeyCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateAPIKeyCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSWAF_20190729", "CreateAPIKey", {})
|
|
13
13
|
.n("WAFV2Client", "CreateAPIKeyCommand")
|
|
14
|
-
.sc(CreateAPIKey)
|
|
14
|
+
.sc(CreateAPIKey$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateIPSet } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateIPSet$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateIPSetCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateIPSetCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSWAF_20190729", "CreateIPSet", {})
|
|
13
13
|
.n("WAFV2Client", "CreateIPSetCommand")
|
|
14
|
-
.sc(CreateIPSet)
|
|
14
|
+
.sc(CreateIPSet$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateRegexPatternSet } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateRegexPatternSet$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateRegexPatternSetCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateRegexPatternSetCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSWAF_20190729", "CreateRegexPatternSet", {})
|
|
13
13
|
.n("WAFV2Client", "CreateRegexPatternSetCommand")
|
|
14
|
-
.sc(CreateRegexPatternSet)
|
|
14
|
+
.sc(CreateRegexPatternSet$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateRuleGroup } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateRuleGroup$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateRuleGroupCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateRuleGroupCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSWAF_20190729", "CreateRuleGroup", {})
|
|
13
13
|
.n("WAFV2Client", "CreateRuleGroupCommand")
|
|
14
|
-
.sc(CreateRuleGroup)
|
|
14
|
+
.sc(CreateRuleGroup$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateWebACL } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateWebACL$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateWebACLCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateWebACLCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSWAF_20190729", "CreateWebACL", {})
|
|
13
13
|
.n("WAFV2Client", "CreateWebACLCommand")
|
|
14
|
-
.sc(CreateWebACL)
|
|
14
|
+
.sc(CreateWebACL$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteAPIKey } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteAPIKey$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteAPIKeyCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteAPIKeyCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSWAF_20190729", "DeleteAPIKey", {})
|
|
13
13
|
.n("WAFV2Client", "DeleteAPIKeyCommand")
|
|
14
|
-
.sc(DeleteAPIKey)
|
|
14
|
+
.sc(DeleteAPIKey$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteFirewallManagerRuleGroups } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteFirewallManagerRuleGroups$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteFirewallManagerRuleGroupsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteFirewallManagerRuleGroupsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSWAF_20190729", "DeleteFirewallManagerRuleGroups", {})
|
|
13
13
|
.n("WAFV2Client", "DeleteFirewallManagerRuleGroupsCommand")
|
|
14
|
-
.sc(DeleteFirewallManagerRuleGroups)
|
|
14
|
+
.sc(DeleteFirewallManagerRuleGroups$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteIPSet } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteIPSet$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteIPSetCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteIPSetCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSWAF_20190729", "DeleteIPSet", {})
|
|
13
13
|
.n("WAFV2Client", "DeleteIPSetCommand")
|
|
14
|
-
.sc(DeleteIPSet)
|
|
14
|
+
.sc(DeleteIPSet$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteLoggingConfiguration } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteLoggingConfiguration$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteLoggingConfigurationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteLoggingConfigurationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSWAF_20190729", "DeleteLoggingConfiguration", {})
|
|
13
13
|
.n("WAFV2Client", "DeleteLoggingConfigurationCommand")
|
|
14
|
-
.sc(DeleteLoggingConfiguration)
|
|
14
|
+
.sc(DeleteLoggingConfiguration$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeletePermissionPolicy } from "../schemas/schemas_0";
|
|
4
|
+
import { DeletePermissionPolicy$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeletePermissionPolicyCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeletePermissionPolicyCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSWAF_20190729", "DeletePermissionPolicy", {})
|
|
13
13
|
.n("WAFV2Client", "DeletePermissionPolicyCommand")
|
|
14
|
-
.sc(DeletePermissionPolicy)
|
|
14
|
+
.sc(DeletePermissionPolicy$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteRegexPatternSet } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteRegexPatternSet$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteRegexPatternSetCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteRegexPatternSetCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSWAF_20190729", "DeleteRegexPatternSet", {})
|
|
13
13
|
.n("WAFV2Client", "DeleteRegexPatternSetCommand")
|
|
14
|
-
.sc(DeleteRegexPatternSet)
|
|
14
|
+
.sc(DeleteRegexPatternSet$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteRuleGroup } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteRuleGroup$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteRuleGroupCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteRuleGroupCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSWAF_20190729", "DeleteRuleGroup", {})
|
|
13
13
|
.n("WAFV2Client", "DeleteRuleGroupCommand")
|
|
14
|
-
.sc(DeleteRuleGroup)
|
|
14
|
+
.sc(DeleteRuleGroup$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteWebACL } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteWebACL$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteWebACLCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteWebACLCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSWAF_20190729", "DeleteWebACL", {})
|
|
13
13
|
.n("WAFV2Client", "DeleteWebACLCommand")
|
|
14
|
-
.sc(DeleteWebACL)
|
|
14
|
+
.sc(DeleteWebACL$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeAllManagedProducts } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeAllManagedProducts$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeAllManagedProductsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeAllManagedProductsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSWAF_20190729", "DescribeAllManagedProducts", {})
|
|
13
13
|
.n("WAFV2Client", "DescribeAllManagedProductsCommand")
|
|
14
|
-
.sc(DescribeAllManagedProducts)
|
|
14
|
+
.sc(DescribeAllManagedProducts$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeManagedProductsByVendor } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeManagedProductsByVendor$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeManagedProductsByVendorCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeManagedProductsByVendorCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSWAF_20190729", "DescribeManagedProductsByVendor", {})
|
|
13
13
|
.n("WAFV2Client", "DescribeManagedProductsByVendorCommand")
|
|
14
|
-
.sc(DescribeManagedProductsByVendor)
|
|
14
|
+
.sc(DescribeManagedProductsByVendor$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeManagedRuleGroup } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeManagedRuleGroup$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeManagedRuleGroupCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeManagedRuleGroupCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSWAF_20190729", "DescribeManagedRuleGroup", {})
|
|
13
13
|
.n("WAFV2Client", "DescribeManagedRuleGroupCommand")
|
|
14
|
-
.sc(DescribeManagedRuleGroup)
|
|
14
|
+
.sc(DescribeManagedRuleGroup$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DisassociateWebACL } from "../schemas/schemas_0";
|
|
4
|
+
import { DisassociateWebACL$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DisassociateWebACLCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DisassociateWebACLCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSWAF_20190729", "DisassociateWebACL", {})
|
|
13
13
|
.n("WAFV2Client", "DisassociateWebACLCommand")
|
|
14
|
-
.sc(DisassociateWebACL)
|
|
14
|
+
.sc(DisassociateWebACL$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GenerateMobileSdkReleaseUrl } from "../schemas/schemas_0";
|
|
4
|
+
import { GenerateMobileSdkReleaseUrl$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GenerateMobileSdkReleaseUrlCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GenerateMobileSdkReleaseUrlCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSWAF_20190729", "GenerateMobileSdkReleaseUrl", {})
|
|
13
13
|
.n("WAFV2Client", "GenerateMobileSdkReleaseUrlCommand")
|
|
14
|
-
.sc(GenerateMobileSdkReleaseUrl)
|
|
14
|
+
.sc(GenerateMobileSdkReleaseUrl$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetDecryptedAPIKey } from "../schemas/schemas_0";
|
|
4
|
+
import { GetDecryptedAPIKey$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetDecryptedAPIKeyCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetDecryptedAPIKeyCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSWAF_20190729", "GetDecryptedAPIKey", {})
|
|
13
13
|
.n("WAFV2Client", "GetDecryptedAPIKeyCommand")
|
|
14
|
-
.sc(GetDecryptedAPIKey)
|
|
14
|
+
.sc(GetDecryptedAPIKey$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetIPSet } from "../schemas/schemas_0";
|
|
4
|
+
import { GetIPSet$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetIPSetCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetIPSetCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSWAF_20190729", "GetIPSet", {})
|
|
13
13
|
.n("WAFV2Client", "GetIPSetCommand")
|
|
14
|
-
.sc(GetIPSet)
|
|
14
|
+
.sc(GetIPSet$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetLoggingConfiguration } from "../schemas/schemas_0";
|
|
4
|
+
import { GetLoggingConfiguration$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetLoggingConfigurationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetLoggingConfigurationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSWAF_20190729", "GetLoggingConfiguration", {})
|
|
13
13
|
.n("WAFV2Client", "GetLoggingConfigurationCommand")
|
|
14
|
-
.sc(GetLoggingConfiguration)
|
|
14
|
+
.sc(GetLoggingConfiguration$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetManagedRuleSet } from "../schemas/schemas_0";
|
|
4
|
+
import { GetManagedRuleSet$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetManagedRuleSetCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetManagedRuleSetCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSWAF_20190729", "GetManagedRuleSet", {})
|
|
13
13
|
.n("WAFV2Client", "GetManagedRuleSetCommand")
|
|
14
|
-
.sc(GetManagedRuleSet)
|
|
14
|
+
.sc(GetManagedRuleSet$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetMobileSdkRelease } from "../schemas/schemas_0";
|
|
4
|
+
import { GetMobileSdkRelease$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetMobileSdkReleaseCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetMobileSdkReleaseCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSWAF_20190729", "GetMobileSdkRelease", {})
|
|
13
13
|
.n("WAFV2Client", "GetMobileSdkReleaseCommand")
|
|
14
|
-
.sc(GetMobileSdkRelease)
|
|
14
|
+
.sc(GetMobileSdkRelease$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetPermissionPolicy } from "../schemas/schemas_0";
|
|
4
|
+
import { GetPermissionPolicy$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetPermissionPolicyCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetPermissionPolicyCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSWAF_20190729", "GetPermissionPolicy", {})
|
|
13
13
|
.n("WAFV2Client", "GetPermissionPolicyCommand")
|
|
14
|
-
.sc(GetPermissionPolicy)
|
|
14
|
+
.sc(GetPermissionPolicy$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetRateBasedStatementManagedKeys } from "../schemas/schemas_0";
|
|
4
|
+
import { GetRateBasedStatementManagedKeys$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetRateBasedStatementManagedKeysCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetRateBasedStatementManagedKeysCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSWAF_20190729", "GetRateBasedStatementManagedKeys", {})
|
|
13
13
|
.n("WAFV2Client", "GetRateBasedStatementManagedKeysCommand")
|
|
14
|
-
.sc(GetRateBasedStatementManagedKeys)
|
|
14
|
+
.sc(GetRateBasedStatementManagedKeys$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetRegexPatternSet } from "../schemas/schemas_0";
|
|
4
|
+
import { GetRegexPatternSet$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetRegexPatternSetCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetRegexPatternSetCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSWAF_20190729", "GetRegexPatternSet", {})
|
|
13
13
|
.n("WAFV2Client", "GetRegexPatternSetCommand")
|
|
14
|
-
.sc(GetRegexPatternSet)
|
|
14
|
+
.sc(GetRegexPatternSet$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetRuleGroup } from "../schemas/schemas_0";
|
|
4
|
+
import { GetRuleGroup$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetRuleGroupCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetRuleGroupCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSWAF_20190729", "GetRuleGroup", {})
|
|
13
13
|
.n("WAFV2Client", "GetRuleGroupCommand")
|
|
14
|
-
.sc(GetRuleGroup)
|
|
14
|
+
.sc(GetRuleGroup$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetSampledRequests } from "../schemas/schemas_0";
|
|
4
|
+
import { GetSampledRequests$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetSampledRequestsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetSampledRequestsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSWAF_20190729", "GetSampledRequests", {})
|
|
13
13
|
.n("WAFV2Client", "GetSampledRequestsCommand")
|
|
14
|
-
.sc(GetSampledRequests)
|
|
14
|
+
.sc(GetSampledRequests$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetWebACL } from "../schemas/schemas_0";
|
|
4
|
+
import { GetWebACL$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetWebACLCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetWebACLCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSWAF_20190729", "GetWebACL", {})
|
|
13
13
|
.n("WAFV2Client", "GetWebACLCommand")
|
|
14
|
-
.sc(GetWebACL)
|
|
14
|
+
.sc(GetWebACL$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetWebACLForResource } from "../schemas/schemas_0";
|
|
4
|
+
import { GetWebACLForResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetWebACLForResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetWebACLForResourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSWAF_20190729", "GetWebACLForResource", {})
|
|
13
13
|
.n("WAFV2Client", "GetWebACLForResourceCommand")
|
|
14
|
-
.sc(GetWebACLForResource)
|
|
14
|
+
.sc(GetWebACLForResource$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListAPIKeys } from "../schemas/schemas_0";
|
|
4
|
+
import { ListAPIKeys$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListAPIKeysCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListAPIKeysCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSWAF_20190729", "ListAPIKeys", {})
|
|
13
13
|
.n("WAFV2Client", "ListAPIKeysCommand")
|
|
14
|
-
.sc(ListAPIKeys)
|
|
14
|
+
.sc(ListAPIKeys$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListAvailableManagedRuleGroupVersions } from "../schemas/schemas_0";
|
|
4
|
+
import { ListAvailableManagedRuleGroupVersions$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListAvailableManagedRuleGroupVersionsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListAvailableManagedRuleGroupVersionsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSWAF_20190729", "ListAvailableManagedRuleGroupVersions", {})
|
|
13
13
|
.n("WAFV2Client", "ListAvailableManagedRuleGroupVersionsCommand")
|
|
14
|
-
.sc(ListAvailableManagedRuleGroupVersions)
|
|
14
|
+
.sc(ListAvailableManagedRuleGroupVersions$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListAvailableManagedRuleGroups } from "../schemas/schemas_0";
|
|
4
|
+
import { ListAvailableManagedRuleGroups$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListAvailableManagedRuleGroupsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListAvailableManagedRuleGroupsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSWAF_20190729", "ListAvailableManagedRuleGroups", {})
|
|
13
13
|
.n("WAFV2Client", "ListAvailableManagedRuleGroupsCommand")
|
|
14
|
-
.sc(ListAvailableManagedRuleGroups)
|
|
14
|
+
.sc(ListAvailableManagedRuleGroups$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|