@aws-sdk/client-wafv2 3.948.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
|
@@ -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 { ListIPSets } from "../schemas/schemas_0";
|
|
4
|
+
import { ListIPSets$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListIPSetsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListIPSetsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSWAF_20190729", "ListIPSets", {})
|
|
13
13
|
.n("WAFV2Client", "ListIPSetsCommand")
|
|
14
|
-
.sc(ListIPSets)
|
|
14
|
+
.sc(ListIPSets$)
|
|
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 { ListLoggingConfigurations } from "../schemas/schemas_0";
|
|
4
|
+
import { ListLoggingConfigurations$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListLoggingConfigurationsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListLoggingConfigurationsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSWAF_20190729", "ListLoggingConfigurations", {})
|
|
13
13
|
.n("WAFV2Client", "ListLoggingConfigurationsCommand")
|
|
14
|
-
.sc(ListLoggingConfigurations)
|
|
14
|
+
.sc(ListLoggingConfigurations$)
|
|
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 { ListManagedRuleSets } from "../schemas/schemas_0";
|
|
4
|
+
import { ListManagedRuleSets$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListManagedRuleSetsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListManagedRuleSetsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSWAF_20190729", "ListManagedRuleSets", {})
|
|
13
13
|
.n("WAFV2Client", "ListManagedRuleSetsCommand")
|
|
14
|
-
.sc(ListManagedRuleSets)
|
|
14
|
+
.sc(ListManagedRuleSets$)
|
|
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 { ListMobileSdkReleases } from "../schemas/schemas_0";
|
|
4
|
+
import { ListMobileSdkReleases$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListMobileSdkReleasesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListMobileSdkReleasesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSWAF_20190729", "ListMobileSdkReleases", {})
|
|
13
13
|
.n("WAFV2Client", "ListMobileSdkReleasesCommand")
|
|
14
|
-
.sc(ListMobileSdkReleases)
|
|
14
|
+
.sc(ListMobileSdkReleases$)
|
|
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 { ListRegexPatternSets } from "../schemas/schemas_0";
|
|
4
|
+
import { ListRegexPatternSets$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListRegexPatternSetsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListRegexPatternSetsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSWAF_20190729", "ListRegexPatternSets", {})
|
|
13
13
|
.n("WAFV2Client", "ListRegexPatternSetsCommand")
|
|
14
|
-
.sc(ListRegexPatternSets)
|
|
14
|
+
.sc(ListRegexPatternSets$)
|
|
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 { ListResourcesForWebACL } from "../schemas/schemas_0";
|
|
4
|
+
import { ListResourcesForWebACL$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListResourcesForWebACLCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListResourcesForWebACLCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSWAF_20190729", "ListResourcesForWebACL", {})
|
|
13
13
|
.n("WAFV2Client", "ListResourcesForWebACLCommand")
|
|
14
|
-
.sc(ListResourcesForWebACL)
|
|
14
|
+
.sc(ListResourcesForWebACL$)
|
|
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 { ListRuleGroups } from "../schemas/schemas_0";
|
|
4
|
+
import { ListRuleGroups$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListRuleGroupsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListRuleGroupsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSWAF_20190729", "ListRuleGroups", {})
|
|
13
13
|
.n("WAFV2Client", "ListRuleGroupsCommand")
|
|
14
|
-
.sc(ListRuleGroups)
|
|
14
|
+
.sc(ListRuleGroups$)
|
|
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 { ListTagsForResource } from "../schemas/schemas_0";
|
|
4
|
+
import { ListTagsForResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListTagsForResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListTagsForResourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSWAF_20190729", "ListTagsForResource", {})
|
|
13
13
|
.n("WAFV2Client", "ListTagsForResourceCommand")
|
|
14
|
-
.sc(ListTagsForResource)
|
|
14
|
+
.sc(ListTagsForResource$)
|
|
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 { ListWebACLs } from "../schemas/schemas_0";
|
|
4
|
+
import { ListWebACLs$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListWebACLsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListWebACLsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSWAF_20190729", "ListWebACLs", {})
|
|
13
13
|
.n("WAFV2Client", "ListWebACLsCommand")
|
|
14
|
-
.sc(ListWebACLs)
|
|
14
|
+
.sc(ListWebACLs$)
|
|
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 { PutLoggingConfiguration } from "../schemas/schemas_0";
|
|
4
|
+
import { PutLoggingConfiguration$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class PutLoggingConfigurationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class PutLoggingConfigurationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSWAF_20190729", "PutLoggingConfiguration", {})
|
|
13
13
|
.n("WAFV2Client", "PutLoggingConfigurationCommand")
|
|
14
|
-
.sc(PutLoggingConfiguration)
|
|
14
|
+
.sc(PutLoggingConfiguration$)
|
|
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 { PutManagedRuleSetVersions } from "../schemas/schemas_0";
|
|
4
|
+
import { PutManagedRuleSetVersions$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class PutManagedRuleSetVersionsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class PutManagedRuleSetVersionsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSWAF_20190729", "PutManagedRuleSetVersions", {})
|
|
13
13
|
.n("WAFV2Client", "PutManagedRuleSetVersionsCommand")
|
|
14
|
-
.sc(PutManagedRuleSetVersions)
|
|
14
|
+
.sc(PutManagedRuleSetVersions$)
|
|
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 { PutPermissionPolicy } from "../schemas/schemas_0";
|
|
4
|
+
import { PutPermissionPolicy$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class PutPermissionPolicyCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class PutPermissionPolicyCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSWAF_20190729", "PutPermissionPolicy", {})
|
|
13
13
|
.n("WAFV2Client", "PutPermissionPolicyCommand")
|
|
14
|
-
.sc(PutPermissionPolicy)
|
|
14
|
+
.sc(PutPermissionPolicy$)
|
|
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 { TagResource } from "../schemas/schemas_0";
|
|
4
|
+
import { TagResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class TagResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class TagResourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSWAF_20190729", "TagResource", {})
|
|
13
13
|
.n("WAFV2Client", "TagResourceCommand")
|
|
14
|
-
.sc(TagResource)
|
|
14
|
+
.sc(TagResource$)
|
|
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 { UntagResource } from "../schemas/schemas_0";
|
|
4
|
+
import { UntagResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UntagResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UntagResourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSWAF_20190729", "UntagResource", {})
|
|
13
13
|
.n("WAFV2Client", "UntagResourceCommand")
|
|
14
|
-
.sc(UntagResource)
|
|
14
|
+
.sc(UntagResource$)
|
|
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 { UpdateIPSet } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateIPSet$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateIPSetCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateIPSetCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSWAF_20190729", "UpdateIPSet", {})
|
|
13
13
|
.n("WAFV2Client", "UpdateIPSetCommand")
|
|
14
|
-
.sc(UpdateIPSet)
|
|
14
|
+
.sc(UpdateIPSet$)
|
|
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 { UpdateManagedRuleSetVersionExpiryDate } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateManagedRuleSetVersionExpiryDate$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateManagedRuleSetVersionExpiryDateCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateManagedRuleSetVersionExpiryDateCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSWAF_20190729", "UpdateManagedRuleSetVersionExpiryDate", {})
|
|
13
13
|
.n("WAFV2Client", "UpdateManagedRuleSetVersionExpiryDateCommand")
|
|
14
|
-
.sc(UpdateManagedRuleSetVersionExpiryDate)
|
|
14
|
+
.sc(UpdateManagedRuleSetVersionExpiryDate$)
|
|
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 { UpdateRegexPatternSet } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateRegexPatternSet$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateRegexPatternSetCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateRegexPatternSetCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSWAF_20190729", "UpdateRegexPatternSet", {})
|
|
13
13
|
.n("WAFV2Client", "UpdateRegexPatternSetCommand")
|
|
14
|
-
.sc(UpdateRegexPatternSet)
|
|
14
|
+
.sc(UpdateRegexPatternSet$)
|
|
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 { UpdateRuleGroup } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateRuleGroup$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateRuleGroupCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateRuleGroupCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSWAF_20190729", "UpdateRuleGroup", {})
|
|
13
13
|
.n("WAFV2Client", "UpdateRuleGroupCommand")
|
|
14
|
-
.sc(UpdateRuleGroup)
|
|
14
|
+
.sc(UpdateRuleGroup$)
|
|
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 { UpdateWebACL } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateWebACL$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateWebACLCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateWebACLCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSWAF_20190729", "UpdateWebACL", {})
|
|
13
13
|
.n("WAFV2Client", "UpdateWebACLCommand")
|
|
14
|
-
.sc(UpdateWebACL)
|
|
14
|
+
.sc(UpdateWebACL$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
package/dist-es/index.js
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
export * from "./WAFV2Client";
|
|
2
2
|
export * from "./WAFV2";
|
|
3
3
|
export * from "./commands";
|
|
4
|
+
export * from "./schemas/schemas_0";
|
|
4
5
|
export * from "./models/enums";
|
|
5
6
|
export * from "./models/errors";
|
|
6
7
|
export { WAFV2ServiceException } from "./models/WAFV2ServiceException";
|
|
@@ -23,12 +23,13 @@ export const getRuntimeConfig = (config) => {
|
|
|
23
23
|
},
|
|
24
24
|
],
|
|
25
25
|
logger: config?.logger ?? new NoOpLogger(),
|
|
26
|
-
protocol: config?.protocol ??
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
26
|
+
protocol: config?.protocol ?? AwsJson1_1Protocol,
|
|
27
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
28
|
+
defaultNamespace: "com.amazonaws.wafv2",
|
|
29
|
+
xmlNamespace: "http://waf.amazonaws.com/doc/2019-07-29/",
|
|
30
|
+
version: "2019-07-29",
|
|
31
|
+
serviceTarget: "AWSWAF_20190729",
|
|
32
|
+
},
|
|
32
33
|
serviceId: config?.serviceId ?? "WAFV2",
|
|
33
34
|
urlParser: config?.urlParser ?? parseUrl,
|
|
34
35
|
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|