@aws-sdk/client-wafv2 3.645.0 → 3.650.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/endpoint/endpointResolver.js +6 -2
- package/dist-cjs/index.js +54 -162
- package/dist-es/commands/AssociateWebACLCommand.js +1 -3
- package/dist-es/commands/CheckCapacityCommand.js +1 -3
- package/dist-es/commands/CreateAPIKeyCommand.js +1 -3
- package/dist-es/commands/CreateIPSetCommand.js +1 -3
- package/dist-es/commands/CreateRegexPatternSetCommand.js +1 -3
- package/dist-es/commands/CreateRuleGroupCommand.js +1 -3
- package/dist-es/commands/CreateWebACLCommand.js +1 -3
- package/dist-es/commands/DeleteAPIKeyCommand.js +1 -3
- package/dist-es/commands/DeleteFirewallManagerRuleGroupsCommand.js +1 -3
- package/dist-es/commands/DeleteIPSetCommand.js +1 -3
- package/dist-es/commands/DeleteLoggingConfigurationCommand.js +1 -3
- package/dist-es/commands/DeletePermissionPolicyCommand.js +1 -3
- package/dist-es/commands/DeleteRegexPatternSetCommand.js +1 -3
- package/dist-es/commands/DeleteRuleGroupCommand.js +1 -3
- package/dist-es/commands/DeleteWebACLCommand.js +1 -3
- package/dist-es/commands/DescribeAllManagedProductsCommand.js +1 -3
- package/dist-es/commands/DescribeManagedProductsByVendorCommand.js +1 -3
- package/dist-es/commands/DescribeManagedRuleGroupCommand.js +1 -3
- package/dist-es/commands/DisassociateWebACLCommand.js +1 -3
- package/dist-es/commands/GenerateMobileSdkReleaseUrlCommand.js +1 -3
- package/dist-es/commands/GetDecryptedAPIKeyCommand.js +1 -3
- package/dist-es/commands/GetIPSetCommand.js +1 -3
- package/dist-es/commands/GetLoggingConfigurationCommand.js +1 -3
- package/dist-es/commands/GetManagedRuleSetCommand.js +1 -3
- package/dist-es/commands/GetMobileSdkReleaseCommand.js +1 -3
- package/dist-es/commands/GetPermissionPolicyCommand.js +1 -3
- package/dist-es/commands/GetRateBasedStatementManagedKeysCommand.js +1 -3
- package/dist-es/commands/GetRegexPatternSetCommand.js +1 -3
- package/dist-es/commands/GetRuleGroupCommand.js +1 -3
- package/dist-es/commands/GetSampledRequestsCommand.js +1 -3
- package/dist-es/commands/GetWebACLCommand.js +1 -3
- package/dist-es/commands/GetWebACLForResourceCommand.js +1 -3
- package/dist-es/commands/ListAPIKeysCommand.js +1 -3
- package/dist-es/commands/ListAvailableManagedRuleGroupVersionsCommand.js +1 -3
- package/dist-es/commands/ListAvailableManagedRuleGroupsCommand.js +1 -3
- package/dist-es/commands/ListIPSetsCommand.js +1 -3
- package/dist-es/commands/ListLoggingConfigurationsCommand.js +1 -3
- package/dist-es/commands/ListManagedRuleSetsCommand.js +1 -3
- package/dist-es/commands/ListMobileSdkReleasesCommand.js +1 -3
- package/dist-es/commands/ListRegexPatternSetsCommand.js +1 -3
- package/dist-es/commands/ListResourcesForWebACLCommand.js +1 -3
- package/dist-es/commands/ListRuleGroupsCommand.js +1 -3
- package/dist-es/commands/ListTagsForResourceCommand.js +1 -3
- package/dist-es/commands/ListWebACLsCommand.js +1 -3
- package/dist-es/commands/PutLoggingConfigurationCommand.js +1 -3
- package/dist-es/commands/PutManagedRuleSetVersionsCommand.js +1 -3
- package/dist-es/commands/PutPermissionPolicyCommand.js +1 -3
- package/dist-es/commands/TagResourceCommand.js +1 -3
- package/dist-es/commands/UntagResourceCommand.js +1 -3
- package/dist-es/commands/UpdateIPSetCommand.js +1 -3
- package/dist-es/commands/UpdateManagedRuleSetVersionExpiryDateCommand.js +1 -3
- package/dist-es/commands/UpdateRegexPatternSetCommand.js +1 -3
- package/dist-es/commands/UpdateRuleGroupCommand.js +1 -3
- package/dist-es/commands/UpdateWebACLCommand.js +1 -3
- package/dist-es/endpoint/endpointResolver.js +7 -3
- package/dist-types/runtimeConfig.browser.d.ts +2 -0
- package/dist-types/runtimeConfig.d.ts +2 -0
- package/dist-types/runtimeConfig.native.d.ts +2 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +2 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +2 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +2 -0
- package/package.json +35 -35
|
@@ -4,11 +4,15 @@ exports.defaultEndpointResolver = void 0;
|
|
|
4
4
|
const util_endpoints_1 = require("@aws-sdk/util-endpoints");
|
|
5
5
|
const util_endpoints_2 = require("@smithy/util-endpoints");
|
|
6
6
|
const ruleset_1 = require("./ruleset");
|
|
7
|
+
const cache = new util_endpoints_2.EndpointCache({
|
|
8
|
+
size: 50,
|
|
9
|
+
params: ["Endpoint", "Region", "UseDualStack", "UseFIPS"],
|
|
10
|
+
});
|
|
7
11
|
const defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
8
|
-
return (0, util_endpoints_2.resolveEndpoint)(ruleset_1.ruleSet, {
|
|
12
|
+
return cache.get(endpointParams, () => (0, util_endpoints_2.resolveEndpoint)(ruleset_1.ruleSet, {
|
|
9
13
|
endpointParams: endpointParams,
|
|
10
14
|
logger: context.logger,
|
|
11
|
-
});
|
|
15
|
+
}));
|
|
12
16
|
};
|
|
13
17
|
exports.defaultEndpointResolver = defaultEndpointResolver;
|
|
14
18
|
util_endpoints_2.customEndpointFunctions.aws = util_endpoints_1.awsEndpointFunctions;
|
package/dist-cjs/index.js
CHANGED
|
@@ -2916,9 +2916,7 @@ function sharedHeaders(operation) {
|
|
|
2916
2916
|
__name(sharedHeaders, "sharedHeaders");
|
|
2917
2917
|
|
|
2918
2918
|
// src/commands/AssociateWebACLCommand.ts
|
|
2919
|
-
var _AssociateWebACLCommand = class _AssociateWebACLCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2920
|
-
...commonParams
|
|
2921
|
-
}).m(function(Command, cs, config, o) {
|
|
2919
|
+
var _AssociateWebACLCommand = class _AssociateWebACLCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2922
2920
|
return [
|
|
2923
2921
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2924
2922
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2932,9 +2930,7 @@ var AssociateWebACLCommand = _AssociateWebACLCommand;
|
|
|
2932
2930
|
|
|
2933
2931
|
|
|
2934
2932
|
|
|
2935
|
-
var _CheckCapacityCommand = class _CheckCapacityCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2936
|
-
...commonParams
|
|
2937
|
-
}).m(function(Command, cs, config, o) {
|
|
2933
|
+
var _CheckCapacityCommand = class _CheckCapacityCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2938
2934
|
return [
|
|
2939
2935
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2940
2936
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2948,9 +2944,7 @@ var CheckCapacityCommand = _CheckCapacityCommand;
|
|
|
2948
2944
|
|
|
2949
2945
|
|
|
2950
2946
|
|
|
2951
|
-
var _CreateAPIKeyCommand = class _CreateAPIKeyCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2952
|
-
...commonParams
|
|
2953
|
-
}).m(function(Command, cs, config, o) {
|
|
2947
|
+
var _CreateAPIKeyCommand = class _CreateAPIKeyCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2954
2948
|
return [
|
|
2955
2949
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2956
2950
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2964,9 +2958,7 @@ var CreateAPIKeyCommand = _CreateAPIKeyCommand;
|
|
|
2964
2958
|
|
|
2965
2959
|
|
|
2966
2960
|
|
|
2967
|
-
var _CreateIPSetCommand = class _CreateIPSetCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2968
|
-
...commonParams
|
|
2969
|
-
}).m(function(Command, cs, config, o) {
|
|
2961
|
+
var _CreateIPSetCommand = class _CreateIPSetCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2970
2962
|
return [
|
|
2971
2963
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2972
2964
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2980,9 +2972,7 @@ var CreateIPSetCommand = _CreateIPSetCommand;
|
|
|
2980
2972
|
|
|
2981
2973
|
|
|
2982
2974
|
|
|
2983
|
-
var _CreateRegexPatternSetCommand = class _CreateRegexPatternSetCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2984
|
-
...commonParams
|
|
2985
|
-
}).m(function(Command, cs, config, o) {
|
|
2975
|
+
var _CreateRegexPatternSetCommand = class _CreateRegexPatternSetCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2986
2976
|
return [
|
|
2987
2977
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2988
2978
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2996,9 +2986,7 @@ var CreateRegexPatternSetCommand = _CreateRegexPatternSetCommand;
|
|
|
2996
2986
|
|
|
2997
2987
|
|
|
2998
2988
|
|
|
2999
|
-
var _CreateRuleGroupCommand = class _CreateRuleGroupCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3000
|
-
...commonParams
|
|
3001
|
-
}).m(function(Command, cs, config, o) {
|
|
2989
|
+
var _CreateRuleGroupCommand = class _CreateRuleGroupCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3002
2990
|
return [
|
|
3003
2991
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3004
2992
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3012,9 +3000,7 @@ var CreateRuleGroupCommand = _CreateRuleGroupCommand;
|
|
|
3012
3000
|
|
|
3013
3001
|
|
|
3014
3002
|
|
|
3015
|
-
var _CreateWebACLCommand = class _CreateWebACLCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3016
|
-
...commonParams
|
|
3017
|
-
}).m(function(Command, cs, config, o) {
|
|
3003
|
+
var _CreateWebACLCommand = class _CreateWebACLCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3018
3004
|
return [
|
|
3019
3005
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3020
3006
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3028,9 +3014,7 @@ var CreateWebACLCommand = _CreateWebACLCommand;
|
|
|
3028
3014
|
|
|
3029
3015
|
|
|
3030
3016
|
|
|
3031
|
-
var _DeleteAPIKeyCommand = class _DeleteAPIKeyCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3032
|
-
...commonParams
|
|
3033
|
-
}).m(function(Command, cs, config, o) {
|
|
3017
|
+
var _DeleteAPIKeyCommand = class _DeleteAPIKeyCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3034
3018
|
return [
|
|
3035
3019
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3036
3020
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3044,9 +3028,7 @@ var DeleteAPIKeyCommand = _DeleteAPIKeyCommand;
|
|
|
3044
3028
|
|
|
3045
3029
|
|
|
3046
3030
|
|
|
3047
|
-
var _DeleteFirewallManagerRuleGroupsCommand = class _DeleteFirewallManagerRuleGroupsCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3048
|
-
...commonParams
|
|
3049
|
-
}).m(function(Command, cs, config, o) {
|
|
3031
|
+
var _DeleteFirewallManagerRuleGroupsCommand = class _DeleteFirewallManagerRuleGroupsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3050
3032
|
return [
|
|
3051
3033
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3052
3034
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3060,9 +3042,7 @@ var DeleteFirewallManagerRuleGroupsCommand = _DeleteFirewallManagerRuleGroupsCom
|
|
|
3060
3042
|
|
|
3061
3043
|
|
|
3062
3044
|
|
|
3063
|
-
var _DeleteIPSetCommand = class _DeleteIPSetCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3064
|
-
...commonParams
|
|
3065
|
-
}).m(function(Command, cs, config, o) {
|
|
3045
|
+
var _DeleteIPSetCommand = class _DeleteIPSetCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3066
3046
|
return [
|
|
3067
3047
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3068
3048
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3076,9 +3056,7 @@ var DeleteIPSetCommand = _DeleteIPSetCommand;
|
|
|
3076
3056
|
|
|
3077
3057
|
|
|
3078
3058
|
|
|
3079
|
-
var _DeleteLoggingConfigurationCommand = class _DeleteLoggingConfigurationCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3080
|
-
...commonParams
|
|
3081
|
-
}).m(function(Command, cs, config, o) {
|
|
3059
|
+
var _DeleteLoggingConfigurationCommand = class _DeleteLoggingConfigurationCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3082
3060
|
return [
|
|
3083
3061
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3084
3062
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3092,9 +3070,7 @@ var DeleteLoggingConfigurationCommand = _DeleteLoggingConfigurationCommand;
|
|
|
3092
3070
|
|
|
3093
3071
|
|
|
3094
3072
|
|
|
3095
|
-
var _DeletePermissionPolicyCommand = class _DeletePermissionPolicyCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3096
|
-
...commonParams
|
|
3097
|
-
}).m(function(Command, cs, config, o) {
|
|
3073
|
+
var _DeletePermissionPolicyCommand = class _DeletePermissionPolicyCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3098
3074
|
return [
|
|
3099
3075
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3100
3076
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3108,9 +3084,7 @@ var DeletePermissionPolicyCommand = _DeletePermissionPolicyCommand;
|
|
|
3108
3084
|
|
|
3109
3085
|
|
|
3110
3086
|
|
|
3111
|
-
var _DeleteRegexPatternSetCommand = class _DeleteRegexPatternSetCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3112
|
-
...commonParams
|
|
3113
|
-
}).m(function(Command, cs, config, o) {
|
|
3087
|
+
var _DeleteRegexPatternSetCommand = class _DeleteRegexPatternSetCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3114
3088
|
return [
|
|
3115
3089
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3116
3090
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3124,9 +3098,7 @@ var DeleteRegexPatternSetCommand = _DeleteRegexPatternSetCommand;
|
|
|
3124
3098
|
|
|
3125
3099
|
|
|
3126
3100
|
|
|
3127
|
-
var _DeleteRuleGroupCommand = class _DeleteRuleGroupCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3128
|
-
...commonParams
|
|
3129
|
-
}).m(function(Command, cs, config, o) {
|
|
3101
|
+
var _DeleteRuleGroupCommand = class _DeleteRuleGroupCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3130
3102
|
return [
|
|
3131
3103
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3132
3104
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3140,9 +3112,7 @@ var DeleteRuleGroupCommand = _DeleteRuleGroupCommand;
|
|
|
3140
3112
|
|
|
3141
3113
|
|
|
3142
3114
|
|
|
3143
|
-
var _DeleteWebACLCommand = class _DeleteWebACLCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3144
|
-
...commonParams
|
|
3145
|
-
}).m(function(Command, cs, config, o) {
|
|
3115
|
+
var _DeleteWebACLCommand = class _DeleteWebACLCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3146
3116
|
return [
|
|
3147
3117
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3148
3118
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3156,9 +3126,7 @@ var DeleteWebACLCommand = _DeleteWebACLCommand;
|
|
|
3156
3126
|
|
|
3157
3127
|
|
|
3158
3128
|
|
|
3159
|
-
var _DescribeAllManagedProductsCommand = class _DescribeAllManagedProductsCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3160
|
-
...commonParams
|
|
3161
|
-
}).m(function(Command, cs, config, o) {
|
|
3129
|
+
var _DescribeAllManagedProductsCommand = class _DescribeAllManagedProductsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3162
3130
|
return [
|
|
3163
3131
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3164
3132
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3172,9 +3140,7 @@ var DescribeAllManagedProductsCommand = _DescribeAllManagedProductsCommand;
|
|
|
3172
3140
|
|
|
3173
3141
|
|
|
3174
3142
|
|
|
3175
|
-
var _DescribeManagedProductsByVendorCommand = class _DescribeManagedProductsByVendorCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3176
|
-
...commonParams
|
|
3177
|
-
}).m(function(Command, cs, config, o) {
|
|
3143
|
+
var _DescribeManagedProductsByVendorCommand = class _DescribeManagedProductsByVendorCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3178
3144
|
return [
|
|
3179
3145
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3180
3146
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3188,9 +3154,7 @@ var DescribeManagedProductsByVendorCommand = _DescribeManagedProductsByVendorCom
|
|
|
3188
3154
|
|
|
3189
3155
|
|
|
3190
3156
|
|
|
3191
|
-
var _DescribeManagedRuleGroupCommand = class _DescribeManagedRuleGroupCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3192
|
-
...commonParams
|
|
3193
|
-
}).m(function(Command, cs, config, o) {
|
|
3157
|
+
var _DescribeManagedRuleGroupCommand = class _DescribeManagedRuleGroupCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3194
3158
|
return [
|
|
3195
3159
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3196
3160
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3204,9 +3168,7 @@ var DescribeManagedRuleGroupCommand = _DescribeManagedRuleGroupCommand;
|
|
|
3204
3168
|
|
|
3205
3169
|
|
|
3206
3170
|
|
|
3207
|
-
var _DisassociateWebACLCommand = class _DisassociateWebACLCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3208
|
-
...commonParams
|
|
3209
|
-
}).m(function(Command, cs, config, o) {
|
|
3171
|
+
var _DisassociateWebACLCommand = class _DisassociateWebACLCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3210
3172
|
return [
|
|
3211
3173
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3212
3174
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3220,9 +3182,7 @@ var DisassociateWebACLCommand = _DisassociateWebACLCommand;
|
|
|
3220
3182
|
|
|
3221
3183
|
|
|
3222
3184
|
|
|
3223
|
-
var _GenerateMobileSdkReleaseUrlCommand = class _GenerateMobileSdkReleaseUrlCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3224
|
-
...commonParams
|
|
3225
|
-
}).m(function(Command, cs, config, o) {
|
|
3185
|
+
var _GenerateMobileSdkReleaseUrlCommand = class _GenerateMobileSdkReleaseUrlCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3226
3186
|
return [
|
|
3227
3187
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3228
3188
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3236,9 +3196,7 @@ var GenerateMobileSdkReleaseUrlCommand = _GenerateMobileSdkReleaseUrlCommand;
|
|
|
3236
3196
|
|
|
3237
3197
|
|
|
3238
3198
|
|
|
3239
|
-
var _GetDecryptedAPIKeyCommand = class _GetDecryptedAPIKeyCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3240
|
-
...commonParams
|
|
3241
|
-
}).m(function(Command, cs, config, o) {
|
|
3199
|
+
var _GetDecryptedAPIKeyCommand = class _GetDecryptedAPIKeyCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3242
3200
|
return [
|
|
3243
3201
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3244
3202
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3252,9 +3210,7 @@ var GetDecryptedAPIKeyCommand = _GetDecryptedAPIKeyCommand;
|
|
|
3252
3210
|
|
|
3253
3211
|
|
|
3254
3212
|
|
|
3255
|
-
var _GetIPSetCommand = class _GetIPSetCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3256
|
-
...commonParams
|
|
3257
|
-
}).m(function(Command, cs, config, o) {
|
|
3213
|
+
var _GetIPSetCommand = class _GetIPSetCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3258
3214
|
return [
|
|
3259
3215
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3260
3216
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3268,9 +3224,7 @@ var GetIPSetCommand = _GetIPSetCommand;
|
|
|
3268
3224
|
|
|
3269
3225
|
|
|
3270
3226
|
|
|
3271
|
-
var _GetLoggingConfigurationCommand = class _GetLoggingConfigurationCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3272
|
-
...commonParams
|
|
3273
|
-
}).m(function(Command, cs, config, o) {
|
|
3227
|
+
var _GetLoggingConfigurationCommand = class _GetLoggingConfigurationCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3274
3228
|
return [
|
|
3275
3229
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3276
3230
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3284,9 +3238,7 @@ var GetLoggingConfigurationCommand = _GetLoggingConfigurationCommand;
|
|
|
3284
3238
|
|
|
3285
3239
|
|
|
3286
3240
|
|
|
3287
|
-
var _GetManagedRuleSetCommand = class _GetManagedRuleSetCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3288
|
-
...commonParams
|
|
3289
|
-
}).m(function(Command, cs, config, o) {
|
|
3241
|
+
var _GetManagedRuleSetCommand = class _GetManagedRuleSetCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3290
3242
|
return [
|
|
3291
3243
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3292
3244
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3300,9 +3252,7 @@ var GetManagedRuleSetCommand = _GetManagedRuleSetCommand;
|
|
|
3300
3252
|
|
|
3301
3253
|
|
|
3302
3254
|
|
|
3303
|
-
var _GetMobileSdkReleaseCommand = class _GetMobileSdkReleaseCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3304
|
-
...commonParams
|
|
3305
|
-
}).m(function(Command, cs, config, o) {
|
|
3255
|
+
var _GetMobileSdkReleaseCommand = class _GetMobileSdkReleaseCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3306
3256
|
return [
|
|
3307
3257
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3308
3258
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3316,9 +3266,7 @@ var GetMobileSdkReleaseCommand = _GetMobileSdkReleaseCommand;
|
|
|
3316
3266
|
|
|
3317
3267
|
|
|
3318
3268
|
|
|
3319
|
-
var _GetPermissionPolicyCommand = class _GetPermissionPolicyCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3320
|
-
...commonParams
|
|
3321
|
-
}).m(function(Command, cs, config, o) {
|
|
3269
|
+
var _GetPermissionPolicyCommand = class _GetPermissionPolicyCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3322
3270
|
return [
|
|
3323
3271
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3324
3272
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3332,9 +3280,7 @@ var GetPermissionPolicyCommand = _GetPermissionPolicyCommand;
|
|
|
3332
3280
|
|
|
3333
3281
|
|
|
3334
3282
|
|
|
3335
|
-
var _GetRateBasedStatementManagedKeysCommand = class _GetRateBasedStatementManagedKeysCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3336
|
-
...commonParams
|
|
3337
|
-
}).m(function(Command, cs, config, o) {
|
|
3283
|
+
var _GetRateBasedStatementManagedKeysCommand = class _GetRateBasedStatementManagedKeysCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3338
3284
|
return [
|
|
3339
3285
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3340
3286
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3348,9 +3294,7 @@ var GetRateBasedStatementManagedKeysCommand = _GetRateBasedStatementManagedKeysC
|
|
|
3348
3294
|
|
|
3349
3295
|
|
|
3350
3296
|
|
|
3351
|
-
var _GetRegexPatternSetCommand = class _GetRegexPatternSetCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3352
|
-
...commonParams
|
|
3353
|
-
}).m(function(Command, cs, config, o) {
|
|
3297
|
+
var _GetRegexPatternSetCommand = class _GetRegexPatternSetCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3354
3298
|
return [
|
|
3355
3299
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3356
3300
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3364,9 +3308,7 @@ var GetRegexPatternSetCommand = _GetRegexPatternSetCommand;
|
|
|
3364
3308
|
|
|
3365
3309
|
|
|
3366
3310
|
|
|
3367
|
-
var _GetRuleGroupCommand = class _GetRuleGroupCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3368
|
-
...commonParams
|
|
3369
|
-
}).m(function(Command, cs, config, o) {
|
|
3311
|
+
var _GetRuleGroupCommand = class _GetRuleGroupCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3370
3312
|
return [
|
|
3371
3313
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3372
3314
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3380,9 +3322,7 @@ var GetRuleGroupCommand = _GetRuleGroupCommand;
|
|
|
3380
3322
|
|
|
3381
3323
|
|
|
3382
3324
|
|
|
3383
|
-
var _GetSampledRequestsCommand = class _GetSampledRequestsCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3384
|
-
...commonParams
|
|
3385
|
-
}).m(function(Command, cs, config, o) {
|
|
3325
|
+
var _GetSampledRequestsCommand = class _GetSampledRequestsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3386
3326
|
return [
|
|
3387
3327
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3388
3328
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3396,9 +3336,7 @@ var GetSampledRequestsCommand = _GetSampledRequestsCommand;
|
|
|
3396
3336
|
|
|
3397
3337
|
|
|
3398
3338
|
|
|
3399
|
-
var _GetWebACLCommand = class _GetWebACLCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3400
|
-
...commonParams
|
|
3401
|
-
}).m(function(Command, cs, config, o) {
|
|
3339
|
+
var _GetWebACLCommand = class _GetWebACLCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3402
3340
|
return [
|
|
3403
3341
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3404
3342
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3412,9 +3350,7 @@ var GetWebACLCommand = _GetWebACLCommand;
|
|
|
3412
3350
|
|
|
3413
3351
|
|
|
3414
3352
|
|
|
3415
|
-
var _GetWebACLForResourceCommand = class _GetWebACLForResourceCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3416
|
-
...commonParams
|
|
3417
|
-
}).m(function(Command, cs, config, o) {
|
|
3353
|
+
var _GetWebACLForResourceCommand = class _GetWebACLForResourceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3418
3354
|
return [
|
|
3419
3355
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3420
3356
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3428,9 +3364,7 @@ var GetWebACLForResourceCommand = _GetWebACLForResourceCommand;
|
|
|
3428
3364
|
|
|
3429
3365
|
|
|
3430
3366
|
|
|
3431
|
-
var _ListAPIKeysCommand = class _ListAPIKeysCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3432
|
-
...commonParams
|
|
3433
|
-
}).m(function(Command, cs, config, o) {
|
|
3367
|
+
var _ListAPIKeysCommand = class _ListAPIKeysCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3434
3368
|
return [
|
|
3435
3369
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3436
3370
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3444,9 +3378,7 @@ var ListAPIKeysCommand = _ListAPIKeysCommand;
|
|
|
3444
3378
|
|
|
3445
3379
|
|
|
3446
3380
|
|
|
3447
|
-
var _ListAvailableManagedRuleGroupsCommand = class _ListAvailableManagedRuleGroupsCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3448
|
-
...commonParams
|
|
3449
|
-
}).m(function(Command, cs, config, o) {
|
|
3381
|
+
var _ListAvailableManagedRuleGroupsCommand = class _ListAvailableManagedRuleGroupsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3450
3382
|
return [
|
|
3451
3383
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3452
3384
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3460,9 +3392,7 @@ var ListAvailableManagedRuleGroupsCommand = _ListAvailableManagedRuleGroupsComma
|
|
|
3460
3392
|
|
|
3461
3393
|
|
|
3462
3394
|
|
|
3463
|
-
var _ListAvailableManagedRuleGroupVersionsCommand = class _ListAvailableManagedRuleGroupVersionsCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3464
|
-
...commonParams
|
|
3465
|
-
}).m(function(Command, cs, config, o) {
|
|
3395
|
+
var _ListAvailableManagedRuleGroupVersionsCommand = class _ListAvailableManagedRuleGroupVersionsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3466
3396
|
return [
|
|
3467
3397
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3468
3398
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3476,9 +3406,7 @@ var ListAvailableManagedRuleGroupVersionsCommand = _ListAvailableManagedRuleGrou
|
|
|
3476
3406
|
|
|
3477
3407
|
|
|
3478
3408
|
|
|
3479
|
-
var _ListIPSetsCommand = class _ListIPSetsCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3480
|
-
...commonParams
|
|
3481
|
-
}).m(function(Command, cs, config, o) {
|
|
3409
|
+
var _ListIPSetsCommand = class _ListIPSetsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3482
3410
|
return [
|
|
3483
3411
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3484
3412
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3492,9 +3420,7 @@ var ListIPSetsCommand = _ListIPSetsCommand;
|
|
|
3492
3420
|
|
|
3493
3421
|
|
|
3494
3422
|
|
|
3495
|
-
var _ListLoggingConfigurationsCommand = class _ListLoggingConfigurationsCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3496
|
-
...commonParams
|
|
3497
|
-
}).m(function(Command, cs, config, o) {
|
|
3423
|
+
var _ListLoggingConfigurationsCommand = class _ListLoggingConfigurationsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3498
3424
|
return [
|
|
3499
3425
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3500
3426
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3508,9 +3434,7 @@ var ListLoggingConfigurationsCommand = _ListLoggingConfigurationsCommand;
|
|
|
3508
3434
|
|
|
3509
3435
|
|
|
3510
3436
|
|
|
3511
|
-
var _ListManagedRuleSetsCommand = class _ListManagedRuleSetsCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3512
|
-
...commonParams
|
|
3513
|
-
}).m(function(Command, cs, config, o) {
|
|
3437
|
+
var _ListManagedRuleSetsCommand = class _ListManagedRuleSetsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3514
3438
|
return [
|
|
3515
3439
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3516
3440
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3524,9 +3448,7 @@ var ListManagedRuleSetsCommand = _ListManagedRuleSetsCommand;
|
|
|
3524
3448
|
|
|
3525
3449
|
|
|
3526
3450
|
|
|
3527
|
-
var _ListMobileSdkReleasesCommand = class _ListMobileSdkReleasesCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3528
|
-
...commonParams
|
|
3529
|
-
}).m(function(Command, cs, config, o) {
|
|
3451
|
+
var _ListMobileSdkReleasesCommand = class _ListMobileSdkReleasesCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3530
3452
|
return [
|
|
3531
3453
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3532
3454
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3540,9 +3462,7 @@ var ListMobileSdkReleasesCommand = _ListMobileSdkReleasesCommand;
|
|
|
3540
3462
|
|
|
3541
3463
|
|
|
3542
3464
|
|
|
3543
|
-
var _ListRegexPatternSetsCommand = class _ListRegexPatternSetsCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3544
|
-
...commonParams
|
|
3545
|
-
}).m(function(Command, cs, config, o) {
|
|
3465
|
+
var _ListRegexPatternSetsCommand = class _ListRegexPatternSetsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3546
3466
|
return [
|
|
3547
3467
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3548
3468
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3556,9 +3476,7 @@ var ListRegexPatternSetsCommand = _ListRegexPatternSetsCommand;
|
|
|
3556
3476
|
|
|
3557
3477
|
|
|
3558
3478
|
|
|
3559
|
-
var _ListResourcesForWebACLCommand = class _ListResourcesForWebACLCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3560
|
-
...commonParams
|
|
3561
|
-
}).m(function(Command, cs, config, o) {
|
|
3479
|
+
var _ListResourcesForWebACLCommand = class _ListResourcesForWebACLCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3562
3480
|
return [
|
|
3563
3481
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3564
3482
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3572,9 +3490,7 @@ var ListResourcesForWebACLCommand = _ListResourcesForWebACLCommand;
|
|
|
3572
3490
|
|
|
3573
3491
|
|
|
3574
3492
|
|
|
3575
|
-
var _ListRuleGroupsCommand = class _ListRuleGroupsCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3576
|
-
...commonParams
|
|
3577
|
-
}).m(function(Command, cs, config, o) {
|
|
3493
|
+
var _ListRuleGroupsCommand = class _ListRuleGroupsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3578
3494
|
return [
|
|
3579
3495
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3580
3496
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3588,9 +3504,7 @@ var ListRuleGroupsCommand = _ListRuleGroupsCommand;
|
|
|
3588
3504
|
|
|
3589
3505
|
|
|
3590
3506
|
|
|
3591
|
-
var _ListTagsForResourceCommand = class _ListTagsForResourceCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3592
|
-
...commonParams
|
|
3593
|
-
}).m(function(Command, cs, config, o) {
|
|
3507
|
+
var _ListTagsForResourceCommand = class _ListTagsForResourceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3594
3508
|
return [
|
|
3595
3509
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3596
3510
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3604,9 +3518,7 @@ var ListTagsForResourceCommand = _ListTagsForResourceCommand;
|
|
|
3604
3518
|
|
|
3605
3519
|
|
|
3606
3520
|
|
|
3607
|
-
var _ListWebACLsCommand = class _ListWebACLsCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3608
|
-
...commonParams
|
|
3609
|
-
}).m(function(Command, cs, config, o) {
|
|
3521
|
+
var _ListWebACLsCommand = class _ListWebACLsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3610
3522
|
return [
|
|
3611
3523
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3612
3524
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3620,9 +3532,7 @@ var ListWebACLsCommand = _ListWebACLsCommand;
|
|
|
3620
3532
|
|
|
3621
3533
|
|
|
3622
3534
|
|
|
3623
|
-
var _PutLoggingConfigurationCommand = class _PutLoggingConfigurationCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3624
|
-
...commonParams
|
|
3625
|
-
}).m(function(Command, cs, config, o) {
|
|
3535
|
+
var _PutLoggingConfigurationCommand = class _PutLoggingConfigurationCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3626
3536
|
return [
|
|
3627
3537
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3628
3538
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3636,9 +3546,7 @@ var PutLoggingConfigurationCommand = _PutLoggingConfigurationCommand;
|
|
|
3636
3546
|
|
|
3637
3547
|
|
|
3638
3548
|
|
|
3639
|
-
var _PutManagedRuleSetVersionsCommand = class _PutManagedRuleSetVersionsCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3640
|
-
...commonParams
|
|
3641
|
-
}).m(function(Command, cs, config, o) {
|
|
3549
|
+
var _PutManagedRuleSetVersionsCommand = class _PutManagedRuleSetVersionsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3642
3550
|
return [
|
|
3643
3551
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3644
3552
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3652,9 +3560,7 @@ var PutManagedRuleSetVersionsCommand = _PutManagedRuleSetVersionsCommand;
|
|
|
3652
3560
|
|
|
3653
3561
|
|
|
3654
3562
|
|
|
3655
|
-
var _PutPermissionPolicyCommand = class _PutPermissionPolicyCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3656
|
-
...commonParams
|
|
3657
|
-
}).m(function(Command, cs, config, o) {
|
|
3563
|
+
var _PutPermissionPolicyCommand = class _PutPermissionPolicyCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3658
3564
|
return [
|
|
3659
3565
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3660
3566
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3668,9 +3574,7 @@ var PutPermissionPolicyCommand = _PutPermissionPolicyCommand;
|
|
|
3668
3574
|
|
|
3669
3575
|
|
|
3670
3576
|
|
|
3671
|
-
var _TagResourceCommand = class _TagResourceCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3672
|
-
...commonParams
|
|
3673
|
-
}).m(function(Command, cs, config, o) {
|
|
3577
|
+
var _TagResourceCommand = class _TagResourceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3674
3578
|
return [
|
|
3675
3579
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3676
3580
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3684,9 +3588,7 @@ var TagResourceCommand = _TagResourceCommand;
|
|
|
3684
3588
|
|
|
3685
3589
|
|
|
3686
3590
|
|
|
3687
|
-
var _UntagResourceCommand = class _UntagResourceCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3688
|
-
...commonParams
|
|
3689
|
-
}).m(function(Command, cs, config, o) {
|
|
3591
|
+
var _UntagResourceCommand = class _UntagResourceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3690
3592
|
return [
|
|
3691
3593
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3692
3594
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3700,9 +3602,7 @@ var UntagResourceCommand = _UntagResourceCommand;
|
|
|
3700
3602
|
|
|
3701
3603
|
|
|
3702
3604
|
|
|
3703
|
-
var _UpdateIPSetCommand = class _UpdateIPSetCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3704
|
-
...commonParams
|
|
3705
|
-
}).m(function(Command, cs, config, o) {
|
|
3605
|
+
var _UpdateIPSetCommand = class _UpdateIPSetCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3706
3606
|
return [
|
|
3707
3607
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3708
3608
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3716,9 +3616,7 @@ var UpdateIPSetCommand = _UpdateIPSetCommand;
|
|
|
3716
3616
|
|
|
3717
3617
|
|
|
3718
3618
|
|
|
3719
|
-
var _UpdateManagedRuleSetVersionExpiryDateCommand = class _UpdateManagedRuleSetVersionExpiryDateCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3720
|
-
...commonParams
|
|
3721
|
-
}).m(function(Command, cs, config, o) {
|
|
3619
|
+
var _UpdateManagedRuleSetVersionExpiryDateCommand = class _UpdateManagedRuleSetVersionExpiryDateCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3722
3620
|
return [
|
|
3723
3621
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3724
3622
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3732,9 +3630,7 @@ var UpdateManagedRuleSetVersionExpiryDateCommand = _UpdateManagedRuleSetVersionE
|
|
|
3732
3630
|
|
|
3733
3631
|
|
|
3734
3632
|
|
|
3735
|
-
var _UpdateRegexPatternSetCommand = class _UpdateRegexPatternSetCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3736
|
-
...commonParams
|
|
3737
|
-
}).m(function(Command, cs, config, o) {
|
|
3633
|
+
var _UpdateRegexPatternSetCommand = class _UpdateRegexPatternSetCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3738
3634
|
return [
|
|
3739
3635
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3740
3636
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3748,9 +3644,7 @@ var UpdateRegexPatternSetCommand = _UpdateRegexPatternSetCommand;
|
|
|
3748
3644
|
|
|
3749
3645
|
|
|
3750
3646
|
|
|
3751
|
-
var _UpdateRuleGroupCommand = class _UpdateRuleGroupCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3752
|
-
...commonParams
|
|
3753
|
-
}).m(function(Command, cs, config, o) {
|
|
3647
|
+
var _UpdateRuleGroupCommand = class _UpdateRuleGroupCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3754
3648
|
return [
|
|
3755
3649
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3756
3650
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3764,9 +3658,7 @@ var UpdateRuleGroupCommand = _UpdateRuleGroupCommand;
|
|
|
3764
3658
|
|
|
3765
3659
|
|
|
3766
3660
|
|
|
3767
|
-
var _UpdateWebACLCommand = class _UpdateWebACLCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3768
|
-
...commonParams
|
|
3769
|
-
}).m(function(Command, cs, config, o) {
|
|
3661
|
+
var _UpdateWebACLCommand = class _UpdateWebACLCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3770
3662
|
return [
|
|
3771
3663
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3772
3664
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -6,9 +6,7 @@ import { de_AssociateWebACLCommand, se_AssociateWebACLCommand } from "../protoco
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class AssociateWebACLCommand extends $Command
|
|
8
8
|
.classBuilder()
|
|
9
|
-
.ep(
|
|
10
|
-
...commonParams,
|
|
11
|
-
})
|
|
9
|
+
.ep(commonParams)
|
|
12
10
|
.m(function (Command, cs, config, o) {
|
|
13
11
|
return [
|
|
14
12
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -6,9 +6,7 @@ import { de_CheckCapacityCommand, se_CheckCapacityCommand } from "../protocols/A
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class CheckCapacityCommand extends $Command
|
|
8
8
|
.classBuilder()
|
|
9
|
-
.ep(
|
|
10
|
-
...commonParams,
|
|
11
|
-
})
|
|
9
|
+
.ep(commonParams)
|
|
12
10
|
.m(function (Command, cs, config, o) {
|
|
13
11
|
return [
|
|
14
12
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -6,9 +6,7 @@ import { de_CreateAPIKeyCommand, se_CreateAPIKeyCommand } from "../protocols/Aws
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class CreateAPIKeyCommand extends $Command
|
|
8
8
|
.classBuilder()
|
|
9
|
-
.ep(
|
|
10
|
-
...commonParams,
|
|
11
|
-
})
|
|
9
|
+
.ep(commonParams)
|
|
12
10
|
.m(function (Command, cs, config, o) {
|
|
13
11
|
return [
|
|
14
12
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -6,9 +6,7 @@ import { de_CreateIPSetCommand, se_CreateIPSetCommand } from "../protocols/Aws_j
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class CreateIPSetCommand extends $Command
|
|
8
8
|
.classBuilder()
|
|
9
|
-
.ep(
|
|
10
|
-
...commonParams,
|
|
11
|
-
})
|
|
9
|
+
.ep(commonParams)
|
|
12
10
|
.m(function (Command, cs, config, o) {
|
|
13
11
|
return [
|
|
14
12
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -6,9 +6,7 @@ import { de_CreateRegexPatternSetCommand, se_CreateRegexPatternSetCommand } from
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class CreateRegexPatternSetCommand extends $Command
|
|
8
8
|
.classBuilder()
|
|
9
|
-
.ep(
|
|
10
|
-
...commonParams,
|
|
11
|
-
})
|
|
9
|
+
.ep(commonParams)
|
|
12
10
|
.m(function (Command, cs, config, o) {
|
|
13
11
|
return [
|
|
14
12
|
getSerdePlugin(config, this.serialize, this.deserialize),
|