@aws-sdk/client-wafv2 3.1074.0 → 3.1076.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 CHANGED
@@ -1,21 +1,57 @@
1
- var __exportStar = (m, e) => { Object.assign(e, m); };
2
- const { getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
1
+ const { awsEndpointFunctions, emitWarningIfUnsupportedVersion: emitWarningIfUnsupportedVersion$1, createDefaultUserAgentProvider, NODE_APP_ID_CONFIG_OPTIONS, getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
3
2
  const { getHttpAuthSchemeEndpointRuleSetPlugin, DefaultIdentityProviderConfig, getHttpSigningPlugin } = require("@smithy/core");
4
- const { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
3
+ const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
5
4
  exports.$Command = Command;
6
5
  exports.__Client = Client;
7
- const { resolveRegionConfig } = require("@smithy/core/config");
8
- const { resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
9
- const { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
10
- const { resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
11
- const { getSchemaSerdePlugin } = require("@smithy/core/schema");
12
- const { resolveHttpAuthSchemeConfig, defaultWAFV2HttpAuthSchemeParametersProvider } = require("./auth/httpAuthSchemeProvider");
13
- const { getRuntimeConfig } = require("./runtimeConfig");
14
- const { AssociateWebACL$, CheckCapacity$, CreateAPIKey$, CreateIPSet$, CreateRegexPatternSet$, CreateRuleGroup$, CreateWebACL$, DeleteAPIKey$, DeleteFirewallManagerRuleGroups$, DeleteIPSet$, DeleteLoggingConfiguration$, DeletePermissionPolicy$, DeleteRegexPatternSet$, DeleteRuleGroup$, DeleteWebACL$, DescribeAllManagedProducts$, DescribeManagedProductsByVendor$, DescribeManagedRuleGroup$, DisassociateWebACL$, GenerateMobileSdkReleaseUrl$, GetDecryptedAPIKey$, GetIPSet$, GetLoggingConfiguration$, GetManagedRuleSet$, GetMobileSdkRelease$, GetPermissionPolicy$, GetRateBasedStatementManagedKeys$, GetRegexPatternSet$, GetRevenueStatistics$, GetRevenueStatisticsSummary$, GetRevenueStatisticsTimeSeries$, GetRuleGroup$, GetSampledRequests$, GetTopPathStatisticsByTraffic$, GetWebACL$, GetWebACLForResource$, ListAPIKeys$, ListAvailableManagedRuleGroups$, ListAvailableManagedRuleGroupVersions$, ListIPSets$, ListLoggingConfigurations$, ListManagedRuleSets$, ListMobileSdkReleases$, ListRegexPatternSets$, ListResourcesForWebACL$, ListRuleGroups$, ListSettlementRecords$, ListTagsForResource$, ListWebACLs$, PutLoggingConfiguration$, PutManagedRuleSetVersions$, PutPermissionPolicy$, TagResource$, UntagResource$, UpdateIPSet$, UpdateManagedRuleSetVersionExpiryDate$, UpdateRegexPatternSet$, UpdateRuleGroup$, UpdateWebACL$ } = require("./schemas/schemas_0");
15
- __exportStar(require("./schemas/schemas_0"), exports);
16
- __exportStar(require("./models/errors"), exports);
17
- const { WAFV2ServiceException } = require("./models/WAFV2ServiceException");
18
- exports.WAFV2ServiceException = WAFV2ServiceException;
6
+ const { resolveDefaultsModeConfig, loadConfig, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS, resolveRegionConfig } = require("@smithy/core/config");
7
+ const { BinaryDecisionDiagram, EndpointCache, decideEndpoint, customEndpointFunctions, resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
8
+ const { parseUrl, getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
9
+ const { DEFAULT_RETRY_MODE, NODE_RETRY_MODE_CONFIG_OPTIONS, NODE_MAX_ATTEMPT_CONFIG_OPTIONS, resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
10
+ const { TypeRegistry, getSchemaSerdePlugin } = require("@smithy/core/schema");
11
+ const { resolveAwsSdkSigV4Config, AwsSdkSigV4Signer, NODE_AUTH_SCHEME_PREFERENCE_OPTIONS } = require("@aws-sdk/core/httpAuthSchemes");
12
+ const { defaultProvider } = require("@aws-sdk/credential-provider-node");
13
+ const { toUtf8, fromUtf8, toBase64, fromBase64, Hash, calculateBodyLength } = require("@smithy/core/serde");
14
+ const { streamCollector, NodeHttpHandler } = require("@smithy/node-http-handler");
15
+ const { AwsJson1_1Protocol } = require("@aws-sdk/core/protocols");
16
+
17
+ const defaultWAFV2HttpAuthSchemeParametersProvider = async (config, context, input) => {
18
+ return {
19
+ operation: getSmithyContext(context).operation,
20
+ region: await normalizeProvider(config.region)() || (() => {
21
+ throw new Error("expected `region` to be configured for `aws.auth#sigv4`");
22
+ })(),
23
+ };
24
+ };
25
+ function createAwsAuthSigv4HttpAuthOption(authParameters) {
26
+ return {
27
+ schemeId: "aws.auth#sigv4",
28
+ signingProperties: {
29
+ name: "wafv2",
30
+ region: authParameters.region,
31
+ },
32
+ propertiesExtractor: (config, context) => ({
33
+ signingProperties: {
34
+ config,
35
+ context,
36
+ },
37
+ }),
38
+ };
39
+ }
40
+ const defaultWAFV2HttpAuthSchemeProvider = (authParameters) => {
41
+ const options = [];
42
+ switch (authParameters.operation) {
43
+ default: {
44
+ options.push(createAwsAuthSigv4HttpAuthOption(authParameters));
45
+ }
46
+ }
47
+ return options;
48
+ };
49
+ const resolveHttpAuthSchemeConfig = (config) => {
50
+ const config_0 = resolveAwsSdkSigV4Config(config);
51
+ return Object.assign(config_0, {
52
+ authSchemePreference: normalizeProvider(config.authSchemePreference ?? []),
53
+ });
54
+ };
19
55
 
20
56
  const resolveClientEndpointParameters = (options) => {
21
57
  return Object.assign(options, {
@@ -31,6 +67,2877 @@ const commonParams = {
31
67
  UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
32
68
  };
33
69
 
70
+ var version = "3.1075.0";
71
+ var packageInfo = {
72
+ version: version};
73
+
74
+ const k = "ref";
75
+ const a = -1, b = true, c = "isSet", d = "PartitionResult", e = "booleanEquals", f = "getAttr", g = { [k]: "Endpoint" }, h = { [k]: d }, i = {}, j = [{ [k]: "Region" }];
76
+ const _data = {
77
+ conditions: [
78
+ [c, [g]],
79
+ [c, j],
80
+ ["aws.partition", j, d],
81
+ [e, [{ [k]: "UseFIPS" }, b]],
82
+ [e, [{ [k]: "UseDualStack" }, b]],
83
+ [e, [{ fn: f, argv: [h, "supportsDualStack"] }, b]],
84
+ [e, [{ fn: f, argv: [h, "supportsFIPS"] }, b]]
85
+ ],
86
+ results: [
87
+ [a],
88
+ [a, "Invalid Configuration: FIPS and custom endpoint are not supported"],
89
+ [a, "Invalid Configuration: Dualstack and custom endpoint are not supported"],
90
+ [g, i],
91
+ ["https://wafv2-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
92
+ [a, "FIPS and DualStack are enabled, but this partition does not support one or both"],
93
+ ["https://wafv2-fips.{Region}.{PartitionResult#dnsSuffix}", i],
94
+ [a, "FIPS is enabled but this partition does not support FIPS"],
95
+ ["https://wafv2.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
96
+ [a, "DualStack is enabled but this partition does not support DualStack"],
97
+ ["https://wafv2.{Region}.{PartitionResult#dnsSuffix}", i],
98
+ [a, "Invalid Configuration: Missing Region"]
99
+ ]
100
+ };
101
+ const root = 2;
102
+ const r = 100_000_000;
103
+ const nodes = new Int32Array([
104
+ -1, 1, -1,
105
+ 0, 12, 3,
106
+ 1, 4, r + 11,
107
+ 2, 5, r + 11,
108
+ 3, 8, 6,
109
+ 4, 7, r + 10,
110
+ 5, r + 8, r + 9,
111
+ 4, 10, 9,
112
+ 6, r + 6, r + 7,
113
+ 5, 11, r + 5,
114
+ 6, r + 4, r + 5,
115
+ 3, r + 1, 13,
116
+ 4, r + 2, r + 3,
117
+ ]);
118
+ const bdd = BinaryDecisionDiagram.from(nodes, root, _data.conditions, _data.results);
119
+
120
+ const cache = new EndpointCache({
121
+ size: 50,
122
+ params: ["Endpoint", "Region", "UseDualStack", "UseFIPS"],
123
+ });
124
+ const defaultEndpointResolver = (endpointParams, context = {}) => {
125
+ return cache.get(endpointParams, () => decideEndpoint(bdd, {
126
+ endpointParams: endpointParams,
127
+ logger: context.logger,
128
+ }));
129
+ };
130
+ customEndpointFunctions.aws = awsEndpointFunctions;
131
+
132
+ class WAFV2ServiceException extends ServiceException {
133
+ constructor(options) {
134
+ super(options);
135
+ Object.setPrototypeOf(this, WAFV2ServiceException.prototype);
136
+ }
137
+ }
138
+
139
+ class WAFFeatureNotIncludedInPricingPlanException extends WAFV2ServiceException {
140
+ name = "WAFFeatureNotIncludedInPricingPlanException";
141
+ $fault = "client";
142
+ Message;
143
+ DisallowedFeatures;
144
+ constructor(opts) {
145
+ super({
146
+ name: "WAFFeatureNotIncludedInPricingPlanException",
147
+ $fault: "client",
148
+ ...opts,
149
+ });
150
+ Object.setPrototypeOf(this, WAFFeatureNotIncludedInPricingPlanException.prototype);
151
+ this.Message = opts.Message;
152
+ this.DisallowedFeatures = opts.DisallowedFeatures;
153
+ }
154
+ }
155
+ class WAFInternalErrorException extends WAFV2ServiceException {
156
+ name = "WAFInternalErrorException";
157
+ $fault = "server";
158
+ Message;
159
+ constructor(opts) {
160
+ super({
161
+ name: "WAFInternalErrorException",
162
+ $fault: "server",
163
+ ...opts,
164
+ });
165
+ Object.setPrototypeOf(this, WAFInternalErrorException.prototype);
166
+ this.Message = opts.Message;
167
+ }
168
+ }
169
+ class WAFInvalidOperationException extends WAFV2ServiceException {
170
+ name = "WAFInvalidOperationException";
171
+ $fault = "client";
172
+ Message;
173
+ constructor(opts) {
174
+ super({
175
+ name: "WAFInvalidOperationException",
176
+ $fault: "client",
177
+ ...opts,
178
+ });
179
+ Object.setPrototypeOf(this, WAFInvalidOperationException.prototype);
180
+ this.Message = opts.Message;
181
+ }
182
+ }
183
+ class WAFInvalidParameterException extends WAFV2ServiceException {
184
+ name = "WAFInvalidParameterException";
185
+ $fault = "client";
186
+ Field;
187
+ Parameter;
188
+ Reason;
189
+ constructor(opts) {
190
+ super({
191
+ name: "WAFInvalidParameterException",
192
+ $fault: "client",
193
+ ...opts,
194
+ });
195
+ Object.setPrototypeOf(this, WAFInvalidParameterException.prototype);
196
+ this.Field = opts.Field;
197
+ this.Parameter = opts.Parameter;
198
+ this.Reason = opts.Reason;
199
+ }
200
+ }
201
+ class WAFLimitsExceededException extends WAFV2ServiceException {
202
+ name = "WAFLimitsExceededException";
203
+ $fault = "client";
204
+ Message;
205
+ SourceType;
206
+ constructor(opts) {
207
+ super({
208
+ name: "WAFLimitsExceededException",
209
+ $fault: "client",
210
+ ...opts,
211
+ });
212
+ Object.setPrototypeOf(this, WAFLimitsExceededException.prototype);
213
+ this.Message = opts.Message;
214
+ this.SourceType = opts.SourceType;
215
+ }
216
+ }
217
+ class WAFNonexistentItemException extends WAFV2ServiceException {
218
+ name = "WAFNonexistentItemException";
219
+ $fault = "client";
220
+ Message;
221
+ constructor(opts) {
222
+ super({
223
+ name: "WAFNonexistentItemException",
224
+ $fault: "client",
225
+ ...opts,
226
+ });
227
+ Object.setPrototypeOf(this, WAFNonexistentItemException.prototype);
228
+ this.Message = opts.Message;
229
+ }
230
+ }
231
+ class WAFUnavailableEntityException extends WAFV2ServiceException {
232
+ name = "WAFUnavailableEntityException";
233
+ $fault = "client";
234
+ Message;
235
+ constructor(opts) {
236
+ super({
237
+ name: "WAFUnavailableEntityException",
238
+ $fault: "client",
239
+ ...opts,
240
+ });
241
+ Object.setPrototypeOf(this, WAFUnavailableEntityException.prototype);
242
+ this.Message = opts.Message;
243
+ }
244
+ }
245
+ class WAFExpiredManagedRuleGroupVersionException extends WAFV2ServiceException {
246
+ name = "WAFExpiredManagedRuleGroupVersionException";
247
+ $fault = "client";
248
+ Message;
249
+ constructor(opts) {
250
+ super({
251
+ name: "WAFExpiredManagedRuleGroupVersionException",
252
+ $fault: "client",
253
+ ...opts,
254
+ });
255
+ Object.setPrototypeOf(this, WAFExpiredManagedRuleGroupVersionException.prototype);
256
+ this.Message = opts.Message;
257
+ }
258
+ }
259
+ class WAFInvalidResourceException extends WAFV2ServiceException {
260
+ name = "WAFInvalidResourceException";
261
+ $fault = "client";
262
+ Message;
263
+ constructor(opts) {
264
+ super({
265
+ name: "WAFInvalidResourceException",
266
+ $fault: "client",
267
+ ...opts,
268
+ });
269
+ Object.setPrototypeOf(this, WAFInvalidResourceException.prototype);
270
+ this.Message = opts.Message;
271
+ }
272
+ }
273
+ class WAFSubscriptionNotFoundException extends WAFV2ServiceException {
274
+ name = "WAFSubscriptionNotFoundException";
275
+ $fault = "client";
276
+ Message;
277
+ constructor(opts) {
278
+ super({
279
+ name: "WAFSubscriptionNotFoundException",
280
+ $fault: "client",
281
+ ...opts,
282
+ });
283
+ Object.setPrototypeOf(this, WAFSubscriptionNotFoundException.prototype);
284
+ this.Message = opts.Message;
285
+ }
286
+ }
287
+ class WAFDuplicateItemException extends WAFV2ServiceException {
288
+ name = "WAFDuplicateItemException";
289
+ $fault = "client";
290
+ Message;
291
+ constructor(opts) {
292
+ super({
293
+ name: "WAFDuplicateItemException",
294
+ $fault: "client",
295
+ ...opts,
296
+ });
297
+ Object.setPrototypeOf(this, WAFDuplicateItemException.prototype);
298
+ this.Message = opts.Message;
299
+ }
300
+ }
301
+ class WAFOptimisticLockException extends WAFV2ServiceException {
302
+ name = "WAFOptimisticLockException";
303
+ $fault = "client";
304
+ Message;
305
+ constructor(opts) {
306
+ super({
307
+ name: "WAFOptimisticLockException",
308
+ $fault: "client",
309
+ ...opts,
310
+ });
311
+ Object.setPrototypeOf(this, WAFOptimisticLockException.prototype);
312
+ this.Message = opts.Message;
313
+ }
314
+ }
315
+ class WAFTagOperationException extends WAFV2ServiceException {
316
+ name = "WAFTagOperationException";
317
+ $fault = "client";
318
+ Message;
319
+ constructor(opts) {
320
+ super({
321
+ name: "WAFTagOperationException",
322
+ $fault: "client",
323
+ ...opts,
324
+ });
325
+ Object.setPrototypeOf(this, WAFTagOperationException.prototype);
326
+ this.Message = opts.Message;
327
+ }
328
+ }
329
+ class WAFTagOperationInternalErrorException extends WAFV2ServiceException {
330
+ name = "WAFTagOperationInternalErrorException";
331
+ $fault = "server";
332
+ Message;
333
+ constructor(opts) {
334
+ super({
335
+ name: "WAFTagOperationInternalErrorException",
336
+ $fault: "server",
337
+ ...opts,
338
+ });
339
+ Object.setPrototypeOf(this, WAFTagOperationInternalErrorException.prototype);
340
+ this.Message = opts.Message;
341
+ }
342
+ }
343
+ class WAFConfigurationWarningException extends WAFV2ServiceException {
344
+ name = "WAFConfigurationWarningException";
345
+ $fault = "client";
346
+ Message;
347
+ constructor(opts) {
348
+ super({
349
+ name: "WAFConfigurationWarningException",
350
+ $fault: "client",
351
+ ...opts,
352
+ });
353
+ Object.setPrototypeOf(this, WAFConfigurationWarningException.prototype);
354
+ this.Message = opts.Message;
355
+ }
356
+ }
357
+ class WAFAssociatedItemException extends WAFV2ServiceException {
358
+ name = "WAFAssociatedItemException";
359
+ $fault = "client";
360
+ Message;
361
+ constructor(opts) {
362
+ super({
363
+ name: "WAFAssociatedItemException",
364
+ $fault: "client",
365
+ ...opts,
366
+ });
367
+ Object.setPrototypeOf(this, WAFAssociatedItemException.prototype);
368
+ this.Message = opts.Message;
369
+ }
370
+ }
371
+ class WAFUnsupportedAggregateKeyTypeException extends WAFV2ServiceException {
372
+ name = "WAFUnsupportedAggregateKeyTypeException";
373
+ $fault = "client";
374
+ Message;
375
+ constructor(opts) {
376
+ super({
377
+ name: "WAFUnsupportedAggregateKeyTypeException",
378
+ $fault: "client",
379
+ ...opts,
380
+ });
381
+ Object.setPrototypeOf(this, WAFUnsupportedAggregateKeyTypeException.prototype);
382
+ this.Message = opts.Message;
383
+ }
384
+ }
385
+ class WAFLogDestinationPermissionIssueException extends WAFV2ServiceException {
386
+ name = "WAFLogDestinationPermissionIssueException";
387
+ $fault = "client";
388
+ Message;
389
+ constructor(opts) {
390
+ super({
391
+ name: "WAFLogDestinationPermissionIssueException",
392
+ $fault: "client",
393
+ ...opts,
394
+ });
395
+ Object.setPrototypeOf(this, WAFLogDestinationPermissionIssueException.prototype);
396
+ this.Message = opts.Message;
397
+ }
398
+ }
399
+ class WAFServiceLinkedRoleErrorException extends WAFV2ServiceException {
400
+ name = "WAFServiceLinkedRoleErrorException";
401
+ $fault = "client";
402
+ constructor(opts) {
403
+ super({
404
+ name: "WAFServiceLinkedRoleErrorException",
405
+ $fault: "client",
406
+ ...opts,
407
+ });
408
+ Object.setPrototypeOf(this, WAFServiceLinkedRoleErrorException.prototype);
409
+ }
410
+ }
411
+ class WAFInvalidPermissionPolicyException extends WAFV2ServiceException {
412
+ name = "WAFInvalidPermissionPolicyException";
413
+ $fault = "client";
414
+ Message;
415
+ constructor(opts) {
416
+ super({
417
+ name: "WAFInvalidPermissionPolicyException",
418
+ $fault: "client",
419
+ ...opts,
420
+ });
421
+ Object.setPrototypeOf(this, WAFInvalidPermissionPolicyException.prototype);
422
+ this.Message = opts.Message;
423
+ }
424
+ }
425
+
426
+ const _A = "Action";
427
+ const _AA = "AllowAction";
428
+ const _AAp = "ApplicationAttribute";
429
+ const _AApp = "ApplicationAttributes";
430
+ const _AC = "ActionCondition";
431
+ const _ACp = "ApplicationConfig";
432
+ const _ACs = "AssociationConfig";
433
+ const _AF = "AddressField";
434
+ const _AFd = "AddressFields";
435
+ const _AIURL = "ApplicationIntegrationURL";
436
+ const _AKT = "AggregateKeyType";
437
+ const _AL = "AsnList";
438
+ const _ALBLRM = "ALBLowReputationMode";
439
+ const _ALv = "AvailableLabels";
440
+ const _AMS = "AsnMatchStatement";
441
+ const _APIK = "APIKey";
442
+ const _APIKS = "APIKeySummary";
443
+ const _APIKSe = "APIKeySummaries";
444
+ const _AQA = "AllQueryArguments";
445
+ const _ARGA = "AssociatedRuleGroupArn";
446
+ const _ARN = "ARN";
447
+ const _AS = "AndStatement";
448
+ const _ASN = "ASN";
449
+ const _ATU = "ActionToUse";
450
+ const _AWACL = "AssociateWebACL";
451
+ const _AWACLR = "AssociateWebACLRequest";
452
+ const _AWACLRs = "AssociateWebACLResponse";
453
+ const _AWSMRACFPRS = "AWSManagedRulesACFPRuleSet";
454
+ const _AWSMRADDSRS = "AWSManagedRulesAntiDDoSRuleSet";
455
+ const _AWSMRATPRS = "AWSManagedRulesATPRuleSet";
456
+ const _AWSMRBCRS = "AWSManagedRulesBotControlRuleSet";
457
+ const _Ad = "Addresses";
458
+ const _Al = "All";
459
+ const _All = "Allow";
460
+ const _Am = "Amount";
461
+ const _At = "Attributes";
462
+ const _B = "Body";
463
+ const _BA = "BlockAction";
464
+ const _BC = "BotCategory";
465
+ const _BCo = "BodyContains";
466
+ const _BMS = "ByteMatchStatement";
467
+ const _BN = "BotName";
468
+ const _BO = "BotOrganization";
469
+ const _BS = "BotStatistics";
470
+ const _BSL = "BotStatisticsList";
471
+ const _Be = "Behavior";
472
+ const _Bl = "Block";
473
+ const _C = "Capacity";
474
+ const _CA = "CaptchaAction";
475
+ const _CAPIK = "CreateAPIKey";
476
+ const _CAPIKR = "CreateAPIKeyRequest";
477
+ const _CAPIKRr = "CreateAPIKeyResponse";
478
+ const _CAh = "ChallengeAction";
479
+ const _CAo = "CountAction";
480
+ const _CC = "CaptchaConfig";
481
+ const _CCR = "CheckCapacityRequest";
482
+ const _CCRh = "CheckCapacityResponse";
483
+ const _CCh = "ChallengeConfig";
484
+ const _CChe = "CheckCapacity";
485
+ const _CCo = "CountryCodes";
486
+ const _CCr = "CryptoConfig";
487
+ const _CDV = "CurrentDefaultVersion";
488
+ const _CHTTPH = "CustomHTTPHeader";
489
+ const _CHTTPHu = "CustomHTTPHeaders";
490
+ const _CIP = "ClientIP";
491
+ const _CIPS = "CreateIPSet";
492
+ const _CIPSR = "CreateIPSetRequest";
493
+ const _CIPSRr = "CreateIPSetResponse";
494
+ const _CK = "CustomKeys";
495
+ const _CL = "ConsumedLabels";
496
+ const _CM = "CurrencyMode";
497
+ const _CMP = "CookieMatchPattern";
498
+ const _CO = "ComparisonOperator";
499
+ const _CP = "CreationPath";
500
+ const _CPo = "ContentPath";
501
+ const _CR = "CustomResponse";
502
+ const _CRB = "CustomResponseBodies";
503
+ const _CRBK = "CustomResponseBodyKey";
504
+ const _CRBu = "CustomResponseBody";
505
+ const _CRG = "CreateRuleGroup";
506
+ const _CRGR = "CreateRuleGroupRequest";
507
+ const _CRGRr = "CreateRuleGroupResponse";
508
+ const _CRH = "CustomRequestHandling";
509
+ const _CRPS = "CreateRegexPatternSet";
510
+ const _CRPSR = "CreateRegexPatternSetRequest";
511
+ const _CRPSRr = "CreateRegexPatternSetResponse";
512
+ const _CRa = "CaptchaResponse";
513
+ const _CRh = "ChallengeResponse";
514
+ const _CSA = "ClientSideAction";
515
+ const _CSAC = "ClientSideActionConfig";
516
+ const _CT = "CreationTimestamp";
517
+ const _CTo = "ContentType";
518
+ const _CWACL = "CreateWebACL";
519
+ const _CWACLR = "CreateWebACLRequest";
520
+ const _CWACLRr = "CreateWebACLResponse";
521
+ const _CWME = "CloudWatchMetricsEnabled";
522
+ const _Ca = "Category";
523
+ const _Cap = "Captcha";
524
+ const _Ch = "Challenge";
525
+ const _Cha = "Chain";
526
+ const _Co = "Condition";
527
+ const _Con = "Content";
528
+ const _Cond = "Conditions";
529
+ const _Coo = "Cookies";
530
+ const _Cook = "Cookie";
531
+ const _Cou = "Country";
532
+ const _Coun = "Count";
533
+ const _Cu = "Currency";
534
+ const _D = "Description";
535
+ const _DA = "DefaultAction";
536
+ const _DAMP = "DescribeAllManagedProducts";
537
+ const _DAMPR = "DescribeAllManagedProductsRequest";
538
+ const _DAMPRe = "DescribeAllManagedProductsResponse";
539
+ const _DAPIK = "DeleteAPIKey";
540
+ const _DAPIKR = "DeleteAPIKeyRequest";
541
+ const _DAPIKRe = "DeleteAPIKeyResponse";
542
+ const _DB = "DefaultBehavior";
543
+ const _DF = "DisallowedFeatures";
544
+ const _DFMRG = "DeleteFirewallManagerRuleGroups";
545
+ const _DFMRGR = "DeleteFirewallManagerRuleGroupsRequest";
546
+ const _DFMRGRe = "DeleteFirewallManagerRuleGroupsResponse";
547
+ const _DFi = "DisallowedFeature";
548
+ const _DIPS = "DeleteIPSet";
549
+ const _DIPSR = "DeleteIPSetRequest";
550
+ const _DIPSRe = "DeleteIPSetResponse";
551
+ const _DLC = "DeleteLoggingConfiguration";
552
+ const _DLCR = "DeleteLoggingConfigurationRequest";
553
+ const _DLCRe = "DeleteLoggingConfigurationResponse";
554
+ const _DMPBV = "DescribeManagedProductsByVendor";
555
+ const _DMPBVR = "DescribeManagedProductsByVendorRequest";
556
+ const _DMPBVRe = "DescribeManagedProductsByVendorResponse";
557
+ const _DMRG = "DescribeManagedRuleGroup";
558
+ const _DMRGR = "DescribeManagedRuleGroupRequest";
559
+ const _DMRGRe = "DescribeManagedRuleGroupResponse";
560
+ const _DP = "DataProtection";
561
+ const _DPC = "DataProtectionConfig";
562
+ const _DPE = "DataPointEntry";
563
+ const _DPL = "DataPointsList";
564
+ const _DPP = "DeletePermissionPolicy";
565
+ const _DPPR = "DeletePermissionPolicyRequest";
566
+ const _DPPRe = "DeletePermissionPolicyResponse";
567
+ const _DPa = "DataProtections";
568
+ const _DPat = "DataPoints";
569
+ const _DRG = "DeleteRuleGroup";
570
+ const _DRGR = "DeleteRuleGroupRequest";
571
+ const _DRGRe = "DeleteRuleGroupResponse";
572
+ const _DRPS = "DeleteRegexPatternSet";
573
+ const _DRPSR = "DeleteRegexPatternSetRequest";
574
+ const _DRPSRe = "DeleteRegexPatternSetResponse";
575
+ const _DSIL = "DefaultSizeInspectionLimit";
576
+ const _DWACL = "DeleteWebACL";
577
+ const _DWACLR = "DeleteWebACLRequest";
578
+ const _DWACLRe = "DeleteWebACLResponse";
579
+ const _DWACLRi = "DisassociateWebACLRequest";
580
+ const _DWACLRis = "DisassociateWebACLResponse";
581
+ const _DWACLi = "DisassociateWebACL";
582
+ const _Da = "Date";
583
+ const _EC = "ExcludedCookies";
584
+ const _EF = "EmailField";
585
+ const _EH = "ExcludedHeaders";
586
+ const _EML = "EnableMachineLearning";
587
+ const _ER = "ExcludedRule";
588
+ const _ERBD = "ExcludeRateBasedDetails";
589
+ const _ERIP = "EnableRegexInPath";
590
+ const _ERMD = "ExcludeRuleMatchDetails";
591
+ const _ERx = "ExcludedRules";
592
+ const _ET = "ExpiryTimestamp";
593
+ const _ETn = "EndTime";
594
+ const _EURE = "ExemptUriRegularExpressions";
595
+ const _EV = "ExpiringVersion";
596
+ const _EWS = "EvaluationWindowSec";
597
+ const _F = "Field";
598
+ const _FB = "FallbackBehavior";
599
+ const _FC = "FailureCodes";
600
+ const _FIP = "ForwardedIP";
601
+ const _FIPC = "ForwardedIPConfig";
602
+ const _FK = "FieldKeys";
603
+ const _FL = "ForecastedLifetime";
604
+ const _FMRG = "FirewallManagerRuleGroup";
605
+ const _FMRGi = "FirewallManagerRuleGroups";
606
+ const _FMS = "FirewallManagerStatement";
607
+ const _FR = "FailureReason";
608
+ const _FS = "FilterSource";
609
+ const _FSa = "FailureStrings";
610
+ const _FT = "FieldType";
611
+ const _FTM = "FieldToMatch";
612
+ const _FTP = "FieldToProtect";
613
+ const _FV = "FailureValues";
614
+ const _Fe = "Feature";
615
+ const _Fi = "Filter";
616
+ const _Fil = "Filters";
617
+ const _GB = "GroupBy";
618
+ const _GBV = "GroupByValue";
619
+ const _GDAPIK = "GetDecryptedAPIKey";
620
+ const _GDAPIKR = "GetDecryptedAPIKeyRequest";
621
+ const _GDAPIKRe = "GetDecryptedAPIKeyResponse";
622
+ const _GIPS = "GetIPSet";
623
+ const _GIPSR = "GetIPSetRequest";
624
+ const _GIPSRe = "GetIPSetResponse";
625
+ const _GLC = "GetLoggingConfiguration";
626
+ const _GLCR = "GetLoggingConfigurationRequest";
627
+ const _GLCRe = "GetLoggingConfigurationResponse";
628
+ const _GMRS = "GetManagedRuleSet";
629
+ const _GMRSR = "GetManagedRuleSetRequest";
630
+ const _GMRSRe = "GetManagedRuleSetResponse";
631
+ const _GMS = "GeoMatchStatement";
632
+ const _GMSR = "GetMobileSdkRelease";
633
+ const _GMSRR = "GetMobileSdkReleaseRequest";
634
+ const _GMSRRe = "GetMobileSdkReleaseResponse";
635
+ const _GMSRU = "GenerateMobileSdkReleaseUrl";
636
+ const _GMSRUR = "GenerateMobileSdkReleaseUrlRequest";
637
+ const _GMSRURe = "GenerateMobileSdkReleaseUrlResponse";
638
+ const _GPP = "GetPermissionPolicy";
639
+ const _GPPR = "GetPermissionPolicyRequest";
640
+ const _GPPRe = "GetPermissionPolicyResponse";
641
+ const _GRBSMK = "GetRateBasedStatementManagedKeys";
642
+ const _GRBSMKR = "GetRateBasedStatementManagedKeysRequest";
643
+ const _GRBSMKRe = "GetRateBasedStatementManagedKeysResponse";
644
+ const _GRG = "GetRuleGroup";
645
+ const _GRGR = "GetRuleGroupRequest";
646
+ const _GRGRe = "GetRuleGroupResponse";
647
+ const _GRPS = "GetRegexPatternSet";
648
+ const _GRPSR = "GetRegexPatternSetRequest";
649
+ const _GRPSRe = "GetRegexPatternSetResponse";
650
+ const _GRS = "GetRevenueStatistics";
651
+ const _GRSR = "GetRevenueStatisticsRequest";
652
+ const _GRSRe = "GetRevenueStatisticsResponse";
653
+ const _GRSS = "GetRevenueStatisticsSummary";
654
+ const _GRSSR = "GetRevenueStatisticsSummaryRequest";
655
+ const _GRSSRe = "GetRevenueStatisticsSummaryResponse";
656
+ const _GRSTS = "GetRevenueStatisticsTimeSeries";
657
+ const _GRSTSR = "GetRevenueStatisticsTimeSeriesRequest";
658
+ const _GRSTSRe = "GetRevenueStatisticsTimeSeriesResponse";
659
+ const _GSR = "GetSampledRequests";
660
+ const _GSRR = "GetSampledRequestsRequest";
661
+ const _GSRRe = "GetSampledRequestsResponse";
662
+ const _GTPSBT = "GetTopPathStatisticsByTraffic";
663
+ const _GTPSBTR = "GetTopPathStatisticsByTrafficRequest";
664
+ const _GTPSBTRe = "GetTopPathStatisticsByTrafficResponse";
665
+ const _GWACL = "GetWebACL";
666
+ const _GWACLFR = "GetWebACLForResource";
667
+ const _GWACLFRR = "GetWebACLForResourceRequest";
668
+ const _GWACLFRRe = "GetWebACLForResourceResponse";
669
+ const _GWACLR = "GetWebACLRequest";
670
+ const _GWACLRe = "GetWebACLResponse";
671
+ const _H = "Headers";
672
+ const _HMP = "HeaderMatchPattern";
673
+ const _HN = "HeaderName";
674
+ const _HO = "HeaderOrder";
675
+ const _HTTPH = "HTTPHeader";
676
+ const _HTTPHe = "HTTPHeaders";
677
+ const _HTTPM = "HTTPMethod";
678
+ const _HTTPR = "HTTPRequest";
679
+ const _HTTPV = "HTTPVersion";
680
+ const _He = "Header";
681
+ const _I = "Identifier";
682
+ const _IAMRS = "IsAdvancedManagedRuleSet";
683
+ const _IC = "IncludedCookies";
684
+ const _IFB = "InvalidFallbackBehavior";
685
+ const _IH = "InsertHeaders";
686
+ const _IHn = "IncludedHeaders";
687
+ const _IL = "InspectionLevel";
688
+ const _IP = "IncludedPaths";
689
+ const _IPAV = "IPAddressVersion";
690
+ const _IPS = "IPSet";
691
+ const _IPSFIPC = "IPSetForwardedIPConfig";
692
+ const _IPSRS = "IPSetReferenceStatement";
693
+ const _IPSS = "IPSetSummary";
694
+ const _IPSSe = "IPSetSummaries";
695
+ const _IPSe = "IPSets";
696
+ const _IP_ = "IP";
697
+ const _IT = "ImmunityTime";
698
+ const _ITP = "ImmunityTimeProperty";
699
+ const _IVS = "IsVersioningSupported";
700
+ const _Id = "Id";
701
+ const _In = "Intent";
702
+ const _Int = "Interval";
703
+ const _J = "Json";
704
+ const _JAF = "JA3Fingerprint";
705
+ const _JAFi = "JA4Fingerprint";
706
+ const _JB = "JsonBody";
707
+ const _JMP = "JsonMatchPattern";
708
+ const _K = "Key";
709
+ const _L = "Limit";
710
+ const _LAMRG = "ListAvailableManagedRuleGroups";
711
+ const _LAMRGR = "ListAvailableManagedRuleGroupsRequest";
712
+ const _LAMRGRi = "ListAvailableManagedRuleGroupsResponse";
713
+ const _LAMRGV = "ListAvailableManagedRuleGroupVersions";
714
+ const _LAMRGVR = "ListAvailableManagedRuleGroupVersionsRequest";
715
+ const _LAMRGVRi = "ListAvailableManagedRuleGroupVersionsResponse";
716
+ const _LAPIK = "ListAPIKeys";
717
+ const _LAPIKR = "ListAPIKeysRequest";
718
+ const _LAPIKRi = "ListAPIKeysResponse";
719
+ const _LC = "LoggingConfiguration";
720
+ const _LCo = "LoggingConfigurations";
721
+ const _LDC = "LogDestinationConfigs";
722
+ const _LF = "LoggingFilter";
723
+ const _LIPS = "ListIPSets";
724
+ const _LIPSR = "ListIPSetsRequest";
725
+ const _LIPSRi = "ListIPSetsResponse";
726
+ const _LLC = "ListLoggingConfigurations";
727
+ const _LLCR = "ListLoggingConfigurationsRequest";
728
+ const _LLCRi = "ListLoggingConfigurationsResponse";
729
+ const _LMRS = "ListManagedRuleSets";
730
+ const _LMRSR = "ListManagedRuleSetsRequest";
731
+ const _LMRSRi = "ListManagedRuleSetsResponse";
732
+ const _LMS = "LabelMatchStatement";
733
+ const _LMSR = "ListMobileSdkReleases";
734
+ const _LMSRR = "ListMobileSdkReleasesRequest";
735
+ const _LMSRRi = "ListMobileSdkReleasesResponse";
736
+ const _LN = "LabelNamespace";
737
+ const _LNC = "LabelNameCondition";
738
+ const _LNa = "LabelName";
739
+ const _LP = "LoginPath";
740
+ const _LRFWACL = "ListResourcesForWebACL";
741
+ const _LRFWACLR = "ListResourcesForWebACLRequest";
742
+ const _LRFWACLRi = "ListResourcesForWebACLResponse";
743
+ const _LRG = "ListRuleGroups";
744
+ const _LRGR = "ListRuleGroupsRequest";
745
+ const _LRGRi = "ListRuleGroupsResponse";
746
+ const _LRPS = "ListRegexPatternSets";
747
+ const _LRPSR = "ListRegexPatternSetsRequest";
748
+ const _LRPSRi = "ListRegexPatternSetsResponse";
749
+ const _LS = "LogScope";
750
+ const _LSR = "ListSettlementRecords";
751
+ const _LSRR = "ListSettlementRecordsRequest";
752
+ const _LSRRi = "ListSettlementRecordsResponse";
753
+ const _LSa = "LabelSummary";
754
+ const _LSab = "LabelSummaries";
755
+ const _LT = "LockToken";
756
+ const _LTFR = "ListTagsForResource";
757
+ const _LTFRR = "ListTagsForResourceRequest";
758
+ const _LTFRRi = "ListTagsForResourceResponse";
759
+ const _LTo = "LogType";
760
+ const _LUT = "LastUpdateTimestamp";
761
+ const _LWACL = "ListWebACLs";
762
+ const _LWACLR = "ListWebACLsRequest";
763
+ const _LWACLRi = "ListWebACLsResponse";
764
+ const _La = "Label";
765
+ const _Lab = "Labels";
766
+ const _M = "Message";
767
+ const _MA = "MonetizeAction";
768
+ const _MBFM = "ManagedByFirewallManager";
769
+ const _MC = "MonetizationConfig";
770
+ const _MF = "MonetizationFilter";
771
+ const _MFL = "MonetizationFilterList";
772
+ const _MI = "MaxItems";
773
+ const _MKIPV = "ManagedKeysIPV4";
774
+ const _MKIPVa = "ManagedKeysIPV6";
775
+ const _MN = "MetricName";
776
+ const _MP = "MatchPattern";
777
+ const _MPD = "ManagedProductDescriptor";
778
+ const _MPDa = "ManagedProductDescriptors";
779
+ const _MPa = "ManagedProducts";
780
+ const _MRG = "ManagedRuleGroups";
781
+ const _MRGC = "ManagedRuleGroupConfig";
782
+ const _MRGCa = "ManagedRuleGroupConfigs";
783
+ const _MRGS = "ManagedRuleGroupStatement";
784
+ const _MRGSa = "ManagedRuleGroupSummary";
785
+ const _MRGSan = "ManagedRuleGroupSummaries";
786
+ const _MRGV = "ManagedRuleGroupVersion";
787
+ const _MRGVa = "ManagedRuleGroupVersions";
788
+ const _MRS = "ManagedRuleSet";
789
+ const _MRSN = "ManagedRuleSetName";
790
+ const _MRSS = "ManagedRuleSetSummary";
791
+ const _MRSSa = "ManagedRuleSetSummaries";
792
+ const _MRSV = "ManagedRuleSetVersion";
793
+ const _MRSa = "ManagedRuleSets";
794
+ const _MS = "MatchScope";
795
+ const _MSC = "MonetizeServedCount";
796
+ const _MSR = "MobileSdkRelease";
797
+ const _Me = "Method";
798
+ const _Mo = "Monetize";
799
+ const _N = "Name";
800
+ const _NA = "NoneAction";
801
+ const _NLT = "NextLockToken";
802
+ const _NM = "NextMarker";
803
+ const _NOTTBPP = "NumberOfTopTrafficBotsPerPath";
804
+ const _NS = "NotStatement";
805
+ const _NWACLLT = "NextWebACLLockToken";
806
+ const _Na = "Namespace";
807
+ const _Ne = "Network";
808
+ const _No = "None";
809
+ const _O = "Organization";
810
+ const _OA = "OverrideAction";
811
+ const _OAv = "OverriddenAction";
812
+ const _OH = "OversizeHandling";
813
+ const _OS = "OrStatement";
814
+ const _OSDDSPC = "OnSourceDDoSProtectionConfig";
815
+ const _P = "Parameter";
816
+ const _PA = "PayerAddress";
817
+ const _PC = "PositionalConstraint";
818
+ const _PD = "ProductDescription";
819
+ const _PF = "PasswordField";
820
+ const _PI = "ProductId";
821
+ const _PL = "ProductLink";
822
+ const _PLC = "PutLoggingConfiguration";
823
+ const _PLCR = "PutLoggingConfigurationRequest";
824
+ const _PLCRu = "PutLoggingConfigurationResponse";
825
+ const _PM = "PriceMultiplier";
826
+ const _PMRSV = "PutManagedRuleSetVersions";
827
+ const _PMRSVR = "PutManagedRuleSetVersionsRequest";
828
+ const _PMRSVRu = "PutManagedRuleSetVersionsResponse";
829
+ const _PN = "PaymentNetworks";
830
+ const _PNF = "PhoneNumberField";
831
+ const _PNFh = "PhoneNumberFields";
832
+ const _PNa = "PaymentNetwork";
833
+ const _PPFMRG = "PreProcessFirewallManagerRuleGroups";
834
+ const _PPFMRGo = "PostProcessFirewallManagerRuleGroups";
835
+ const _PPP = "PutPermissionPolicy";
836
+ const _PPPR = "PutPermissionPolicyRequest";
837
+ const _PPPRu = "PutPermissionPolicyResponse";
838
+ const _PS = "PopulationSize";
839
+ const _PSL = "PathStatisticsList";
840
+ const _PSa = "PathStatistics";
841
+ const _PT = "ProductTitle";
842
+ const _PTa = "PayloadType";
843
+ const _PTu = "PublishTimestamp";
844
+ const _PV = "PublishedVersions";
845
+ const _Pa = "Path";
846
+ const _Pe = "Percentage";
847
+ const _Pl = "Platform";
848
+ const _Po = "Policy";
849
+ const _Pos = "Position";
850
+ const _Pr = "Priority";
851
+ const _Pri = "Prices";
852
+ const _Pric = "Price";
853
+ const _QA = "QueryArgument";
854
+ const _QS = "QueryString";
855
+ const _R = "Reason";
856
+ const _RA = "ResourceArn";
857
+ const _RAO = "RuleActionOverrides";
858
+ const _RAOu = "RuleActionOverride";
859
+ const _RARN = "ResourceARN";
860
+ const _RAe = "ResourceArns";
861
+ const _RAu = "RuleAction";
862
+ const _RB = "RequestBody";
863
+ const _RBARTC = "RequestBodyAssociatedResourceTypeConfig";
864
+ const _RBFM = "RetrofittedByFirewallManager";
865
+ const _RBS = "RateBasedStatement";
866
+ const _RBSCK = "RateBasedStatementCustomKey";
867
+ const _RBSCKa = "RateBasedStatementCustomKeys";
868
+ const _RBSMKIPS = "RateBasedStatementManagedKeysIPSet";
869
+ const _RBe = "RevenueBreakdown";
870
+ const _RC = "RequestCount";
871
+ const _RCS = "ResponseCodeSent";
872
+ const _RCe = "ResponseCode";
873
+ const _REL = "RegularExpressionList";
874
+ const _RF = "RedactedFields";
875
+ const _RG = "RuleGroup";
876
+ const _RGRN = "RuleGroupRuleName";
877
+ const _RGRS = "RuleGroupReferenceStatement";
878
+ const _RGS = "RuleGroupSummary";
879
+ const _RGSu = "RuleGroupSummaries";
880
+ const _RGu = "RuleGroups";
881
+ const _RH = "ResponseHeaders";
882
+ const _RHI = "RequestHeadersInserted";
883
+ const _RI = "RequestInspection";
884
+ const _RIACFP = "RequestInspectionACFP";
885
+ const _RIBC = "ResponseInspectionBodyContains";
886
+ const _RIH = "ResponseInspectionHeader";
887
+ const _RIJ = "ResponseInspectionJson";
888
+ const _RISC = "ResponseInspectionStatusCode";
889
+ const _RIe = "ResponseInspection";
890
+ const _RIeq = "RequestId";
891
+ const _RL = "RuleLabels";
892
+ const _RLA = "RateLimitAsn";
893
+ const _RLC = "RateLimitCookie";
894
+ const _RLFIP = "RateLimitForwardedIP";
895
+ const _RLH = "RateLimitHeader";
896
+ const _RLHTTPM = "RateLimitHTTPMethod";
897
+ const _RLIP = "RateLimitIP";
898
+ const _RLJAF = "RateLimitJA3Fingerprint";
899
+ const _RLJAFa = "RateLimitJA4Fingerprint";
900
+ const _RLLN = "RateLimitLabelNamespace";
901
+ const _RLQA = "RateLimitQueryArgument";
902
+ const _RLQS = "RateLimitQueryString";
903
+ const _RLUP = "RateLimitUriPath";
904
+ const _RMN = "RuleMetricName";
905
+ const _RMS = "RegexMatchStatement";
906
+ const _RN = "RuleName";
907
+ const _RNWRG = "RuleNameWithinRuleGroup";
908
+ const _RNe = "ReleaseNotes";
909
+ const _RPP = "RegistrationPagePath";
910
+ const _RPPe = "RequiredPricingPlan";
911
+ const _RPS = "RegexPatternSet";
912
+ const _RPSL = "RevenuePathStatisticsList";
913
+ const _RPSRS = "RegexPatternSetReferenceStatement";
914
+ const _RPSS = "RegexPatternSetSummary";
915
+ const _RPSSe = "RegexPatternSetSummaries";
916
+ const _RPSe = "RevenuePathStatistics";
917
+ const _RPSeg = "RegexPatternSets";
918
+ const _RS = "ReleaseSummaries";
919
+ const _RSe = "RegexString";
920
+ const _RSel = "ReleaseSummary";
921
+ const _RSu = "RuleSummary";
922
+ const _RSul = "RuleSummaries";
923
+ const _RT = "ResourceType";
924
+ const _RTe = "RequestTimestamp";
925
+ const _RV = "ReleaseVersion";
926
+ const _RVe = "RecommendedVersion";
927
+ const _Re = "Requirement";
928
+ const _Reg = "Regex";
929
+ const _Req = "Request";
930
+ const _Ru = "Rules";
931
+ const _Rul = "Rule";
932
+ const _S = "Statements";
933
+ const _SB = "SortBy";
934
+ const _SC = "SettledCount";
935
+ const _SCS = "SizeConstraintStatement";
936
+ const _SCo = "SourceCategory";
937
+ const _SCt = "StatusCode";
938
+ const _SCu = "SuccessCodes";
939
+ const _SDS = "ScopeDownStatement";
940
+ const _SH = "SingleHeader";
941
+ const _SHTTPR = "SampledHTTPRequest";
942
+ const _SHTTPRa = "SampledHTTPRequests";
943
+ const _SL = "SensitivityLevel";
944
+ const _SMS = "SqliMatchStatement";
945
+ const _SN = "SourceName";
946
+ const _SO = "SortOrder";
947
+ const _SQA = "SingleQueryArgument";
948
+ const _SR = "SampledRequests";
949
+ const _SRE = "SampledRequestsEnabled";
950
+ const _SRL = "SettlementRecordList";
951
+ const _SRe = "SettlementRecord";
952
+ const _SS = "SearchString";
953
+ const _SSL = "SourceStatisticsList";
954
+ const _SSo = "SourceStatistics";
955
+ const _SSu = "SuccessStrings";
956
+ const _ST = "SourceType";
957
+ const _STA = "SnsTopicArn";
958
+ const _STB = "SensitivityToBlock";
959
+ const _STo = "SolveTimestamp";
960
+ const _STt = "StatisticType";
961
+ const _STta = "StartTime";
962
+ const _SV = "SuccessValues";
963
+ const _Sc = "Scope";
964
+ const _Se = "Sensitivity";
965
+ const _Set = "Settlements";
966
+ const _Si = "Size";
967
+ const _So = "Source";
968
+ const _St = "Statement";
969
+ const _Sta = "Status";
970
+ const _Su = "Summary";
971
+ const _T = "Tags";
972
+ const _TA = "TotalAmount";
973
+ const _TB = "TopBots";
974
+ const _TC = "TopCategories";
975
+ const _TD = "TokenDomains";
976
+ const _TI = "TransactionId";
977
+ const _TIFR = "TagInfoForResource";
978
+ const _TK = "TagKeys";
979
+ const _TL = "TagList";
980
+ const _TMS = "TotalMonetizeServed";
981
+ const _TR = "TagResource";
982
+ const _TRC = "TotalRequestCount";
983
+ const _TRR = "TagResourceRequest";
984
+ const _TRRa = "TagResourceResponse";
985
+ const _TS = "TotalSettled";
986
+ const _TT = "TextTransformations";
987
+ const _TTe = "TextTransformation";
988
+ const _TW = "TimeWindow";
989
+ const _Ta = "Tag";
990
+ const _Ti = "Timestamp";
991
+ const _Ty = "Type";
992
+ const _U = "Url";
993
+ const _UA = "UnverifiedAmount";
994
+ const _UF = "UriFragment";
995
+ const _UFs = "UsernameField";
996
+ const _UIPS = "UpdateIPSet";
997
+ const _UIPSR = "UpdateIPSetRequest";
998
+ const _UIPSRp = "UpdateIPSetResponse";
999
+ const _UMRSVED = "UpdateManagedRuleSetVersionExpiryDate";
1000
+ const _UMRSVEDR = "UpdateManagedRuleSetVersionExpiryDateRequest";
1001
+ const _UMRSVEDRp = "UpdateManagedRuleSetVersionExpiryDateResponse";
1002
+ const _UOA = "UsageOfAction";
1003
+ const _UP = "UriPath";
1004
+ const _UPP = "UriPathPrefix";
1005
+ const _UR = "UntagResource";
1006
+ const _URG = "UpdateRuleGroup";
1007
+ const _URGR = "UpdateRuleGroupRequest";
1008
+ const _URGRp = "UpdateRuleGroupResponse";
1009
+ const _URI = "URI";
1010
+ const _URPS = "UpdateRegexPatternSet";
1011
+ const _URPSR = "UpdateRegexPatternSetRequest";
1012
+ const _URPSRp = "UpdateRegexPatternSetResponse";
1013
+ const _URR = "UntagResourceRequest";
1014
+ const _URRn = "UntagResourceResponse";
1015
+ const _UWACL = "UpdateWebACL";
1016
+ const _UWACLR = "UpdateWebACLRequest";
1017
+ const _UWACLRp = "UpdateWebACLResponse";
1018
+ const _V = "Version";
1019
+ const _VA = "VerifiedAmount";
1020
+ const _VC = "VisibilityConfig";
1021
+ const _VN = "VendorName";
1022
+ const _VNe = "VersionName";
1023
+ const _VS = "VersioningSupported";
1024
+ const _VTE = "VersionToExpire";
1025
+ const _VTP = "VersionsToPublish";
1026
+ const _VTPe = "VersionToPublish";
1027
+ const _Va = "Values";
1028
+ const _Val = "Value";
1029
+ const _Ve = "Versions";
1030
+ const _Ver = "Verified";
1031
+ const _W = "Weight";
1032
+ const _WA = "WalletAddress";
1033
+ const _WAA = "WebAclArn";
1034
+ const _WACL = "WebACL";
1035
+ const _WACLA = "WebACLArn";
1036
+ const _WACLI = "WebACLId";
1037
+ const _WACLLT = "WebACLLockToken";
1038
+ const _WACLN = "WebACLName";
1039
+ const _WACLS = "WebACLSummary";
1040
+ const _WACLSe = "WebACLSummaries";
1041
+ const _WACLe = "WebACLs";
1042
+ const _WAFAIE = "WAFAssociatedItemException";
1043
+ const _WAFCWE = "WAFConfigurationWarningException";
1044
+ const _WAFDIE = "WAFDuplicateItemException";
1045
+ const _WAFEMRGVE = "WAFExpiredManagedRuleGroupVersionException";
1046
+ const _WAFFNIIPPE = "WAFFeatureNotIncludedInPricingPlanException";
1047
+ const _WAFIEE = "WAFInternalErrorException";
1048
+ const _WAFIOE = "WAFInvalidOperationException";
1049
+ const _WAFIPE = "WAFInvalidParameterException";
1050
+ const _WAFIPPE = "WAFInvalidPermissionPolicyException";
1051
+ const _WAFIRE = "WAFInvalidResourceException";
1052
+ const _WAFLDPIE = "WAFLogDestinationPermissionIssueException";
1053
+ const _WAFLEE = "WAFLimitsExceededException";
1054
+ const _WAFNIE = "WAFNonexistentItemException";
1055
+ const _WAFOLE = "WAFOptimisticLockException";
1056
+ const _WAFSLREE = "WAFServiceLinkedRoleErrorException";
1057
+ const _WAFSNFE = "WAFSubscriptionNotFoundException";
1058
+ const _WAFTOE = "WAFTagOperationException";
1059
+ const _WAFTOIEE = "WAFTagOperationInternalErrorException";
1060
+ const _WAFUAKTE = "WAFUnsupportedAggregateKeyTypeException";
1061
+ const _WAFUEE = "WAFUnavailableEntityException";
1062
+ const _XMS = "XssMatchStatement";
1063
+ const _c = "client";
1064
+ const _e = "error";
1065
+ const _m = "message";
1066
+ const _s = "smithy.ts.sdk.synthetic.com.amazonaws.wafv2";
1067
+ const _se = "server";
1068
+ const n0 = "com.amazonaws.wafv2";
1069
+ const _s_registry = TypeRegistry.for(_s);
1070
+ var WAFV2ServiceException$ = [-3, _s, "WAFV2ServiceException", 0, [], []];
1071
+ _s_registry.registerError(WAFV2ServiceException$, WAFV2ServiceException);
1072
+ const n0_registry = TypeRegistry.for(n0);
1073
+ var WAFAssociatedItemException$ = [-3, n0, _WAFAIE,
1074
+ { [_e]: _c },
1075
+ [_M],
1076
+ [0]
1077
+ ];
1078
+ n0_registry.registerError(WAFAssociatedItemException$, WAFAssociatedItemException);
1079
+ var WAFConfigurationWarningException$ = [-3, n0, _WAFCWE,
1080
+ { [_e]: _c },
1081
+ [_M],
1082
+ [0]
1083
+ ];
1084
+ n0_registry.registerError(WAFConfigurationWarningException$, WAFConfigurationWarningException);
1085
+ var WAFDuplicateItemException$ = [-3, n0, _WAFDIE,
1086
+ { [_e]: _c },
1087
+ [_M],
1088
+ [0]
1089
+ ];
1090
+ n0_registry.registerError(WAFDuplicateItemException$, WAFDuplicateItemException);
1091
+ var WAFExpiredManagedRuleGroupVersionException$ = [-3, n0, _WAFEMRGVE,
1092
+ { [_e]: _c },
1093
+ [_M],
1094
+ [0]
1095
+ ];
1096
+ n0_registry.registerError(WAFExpiredManagedRuleGroupVersionException$, WAFExpiredManagedRuleGroupVersionException);
1097
+ var WAFFeatureNotIncludedInPricingPlanException$ = [-3, n0, _WAFFNIIPPE,
1098
+ { [_e]: _c },
1099
+ [_M, _DF],
1100
+ [0, () => DisallowedFeatures]
1101
+ ];
1102
+ n0_registry.registerError(WAFFeatureNotIncludedInPricingPlanException$, WAFFeatureNotIncludedInPricingPlanException);
1103
+ var WAFInternalErrorException$ = [-3, n0, _WAFIEE,
1104
+ { [_e]: _se },
1105
+ [_M],
1106
+ [0]
1107
+ ];
1108
+ n0_registry.registerError(WAFInternalErrorException$, WAFInternalErrorException);
1109
+ var WAFInvalidOperationException$ = [-3, n0, _WAFIOE,
1110
+ { [_e]: _c },
1111
+ [_M],
1112
+ [0]
1113
+ ];
1114
+ n0_registry.registerError(WAFInvalidOperationException$, WAFInvalidOperationException);
1115
+ var WAFInvalidParameterException$ = [-3, n0, _WAFIPE,
1116
+ { [_e]: _c },
1117
+ [_m, _F, _P, _R],
1118
+ [0, 0, 0, 0]
1119
+ ];
1120
+ n0_registry.registerError(WAFInvalidParameterException$, WAFInvalidParameterException);
1121
+ var WAFInvalidPermissionPolicyException$ = [-3, n0, _WAFIPPE,
1122
+ { [_e]: _c },
1123
+ [_M],
1124
+ [0]
1125
+ ];
1126
+ n0_registry.registerError(WAFInvalidPermissionPolicyException$, WAFInvalidPermissionPolicyException);
1127
+ var WAFInvalidResourceException$ = [-3, n0, _WAFIRE,
1128
+ { [_e]: _c },
1129
+ [_M],
1130
+ [0]
1131
+ ];
1132
+ n0_registry.registerError(WAFInvalidResourceException$, WAFInvalidResourceException);
1133
+ var WAFLimitsExceededException$ = [-3, n0, _WAFLEE,
1134
+ { [_e]: _c },
1135
+ [_M, _ST],
1136
+ [0, 0]
1137
+ ];
1138
+ n0_registry.registerError(WAFLimitsExceededException$, WAFLimitsExceededException);
1139
+ var WAFLogDestinationPermissionIssueException$ = [-3, n0, _WAFLDPIE,
1140
+ { [_e]: _c },
1141
+ [_M],
1142
+ [0]
1143
+ ];
1144
+ n0_registry.registerError(WAFLogDestinationPermissionIssueException$, WAFLogDestinationPermissionIssueException);
1145
+ var WAFNonexistentItemException$ = [-3, n0, _WAFNIE,
1146
+ { [_e]: _c },
1147
+ [_M],
1148
+ [0]
1149
+ ];
1150
+ n0_registry.registerError(WAFNonexistentItemException$, WAFNonexistentItemException);
1151
+ var WAFOptimisticLockException$ = [-3, n0, _WAFOLE,
1152
+ { [_e]: _c },
1153
+ [_M],
1154
+ [0]
1155
+ ];
1156
+ n0_registry.registerError(WAFOptimisticLockException$, WAFOptimisticLockException);
1157
+ var WAFServiceLinkedRoleErrorException$ = [-3, n0, _WAFSLREE,
1158
+ { [_e]: _c },
1159
+ [_m],
1160
+ [0]
1161
+ ];
1162
+ n0_registry.registerError(WAFServiceLinkedRoleErrorException$, WAFServiceLinkedRoleErrorException);
1163
+ var WAFSubscriptionNotFoundException$ = [-3, n0, _WAFSNFE,
1164
+ { [_e]: _c },
1165
+ [_M],
1166
+ [0]
1167
+ ];
1168
+ n0_registry.registerError(WAFSubscriptionNotFoundException$, WAFSubscriptionNotFoundException);
1169
+ var WAFTagOperationException$ = [-3, n0, _WAFTOE,
1170
+ { [_e]: _c },
1171
+ [_M],
1172
+ [0]
1173
+ ];
1174
+ n0_registry.registerError(WAFTagOperationException$, WAFTagOperationException);
1175
+ var WAFTagOperationInternalErrorException$ = [-3, n0, _WAFTOIEE,
1176
+ { [_e]: _se },
1177
+ [_M],
1178
+ [0]
1179
+ ];
1180
+ n0_registry.registerError(WAFTagOperationInternalErrorException$, WAFTagOperationInternalErrorException);
1181
+ var WAFUnavailableEntityException$ = [-3, n0, _WAFUEE,
1182
+ { [_e]: _c },
1183
+ [_M],
1184
+ [0]
1185
+ ];
1186
+ n0_registry.registerError(WAFUnavailableEntityException$, WAFUnavailableEntityException);
1187
+ var WAFUnsupportedAggregateKeyTypeException$ = [-3, n0, _WAFUAKTE,
1188
+ { [_e]: _c },
1189
+ [_M],
1190
+ [0]
1191
+ ];
1192
+ n0_registry.registerError(WAFUnsupportedAggregateKeyTypeException$, WAFUnsupportedAggregateKeyTypeException);
1193
+ const errorTypeRegistries = [
1194
+ _s_registry,
1195
+ n0_registry,
1196
+ ];
1197
+ var ActionCondition$ = [3, n0, _AC,
1198
+ 0,
1199
+ [_A],
1200
+ [0], 1
1201
+ ];
1202
+ var AddressField$ = [3, n0, _AF,
1203
+ 0,
1204
+ [_I],
1205
+ [0], 1
1206
+ ];
1207
+ var All$ = [3, n0, _Al,
1208
+ 0,
1209
+ [],
1210
+ []
1211
+ ];
1212
+ var AllowAction$ = [3, n0, _AA,
1213
+ 0,
1214
+ [_CRH],
1215
+ [() => CustomRequestHandling$]
1216
+ ];
1217
+ var AllQueryArguments$ = [3, n0, _AQA,
1218
+ 0,
1219
+ [],
1220
+ []
1221
+ ];
1222
+ var AndStatement$ = [3, n0, _AS,
1223
+ 0,
1224
+ [_S],
1225
+ [() => Statements], 1
1226
+ ];
1227
+ var APIKeySummary$ = [3, n0, _APIKS,
1228
+ 0,
1229
+ [_TD, _APIK, _CT, _V],
1230
+ [64 | 0, 0, 4, 1]
1231
+ ];
1232
+ var ApplicationAttribute$ = [3, n0, _AAp,
1233
+ 0,
1234
+ [_N, _Va],
1235
+ [0, 64 | 0]
1236
+ ];
1237
+ var ApplicationConfig$ = [3, n0, _ACp,
1238
+ 0,
1239
+ [_At],
1240
+ [() => ApplicationAttributes]
1241
+ ];
1242
+ var AsnMatchStatement$ = [3, n0, _AMS,
1243
+ 0,
1244
+ [_AL, _FIPC],
1245
+ [64 | 1, () => ForwardedIPConfig$], 1
1246
+ ];
1247
+ var AssociateWebACLRequest$ = [3, n0, _AWACLR,
1248
+ 0,
1249
+ [_WACLA, _RA],
1250
+ [0, 0], 2
1251
+ ];
1252
+ var AssociateWebACLResponse$ = [3, n0, _AWACLRs,
1253
+ 0,
1254
+ [],
1255
+ []
1256
+ ];
1257
+ var AssociationConfig$ = [3, n0, _ACs,
1258
+ 0,
1259
+ [_RB],
1260
+ [() => RequestBody]
1261
+ ];
1262
+ var AWSManagedRulesACFPRuleSet$ = [3, n0, _AWSMRACFPRS,
1263
+ 0,
1264
+ [_CP, _RPP, _RI, _RIe, _ERIP],
1265
+ [0, 0, () => RequestInspectionACFP$, () => ResponseInspection$, 2], 3
1266
+ ];
1267
+ var AWSManagedRulesAntiDDoSRuleSet$ = [3, n0, _AWSMRADDSRS,
1268
+ 0,
1269
+ [_CSAC, _STB],
1270
+ [() => ClientSideActionConfig$, 0], 1
1271
+ ];
1272
+ var AWSManagedRulesATPRuleSet$ = [3, n0, _AWSMRATPRS,
1273
+ 0,
1274
+ [_LP, _RI, _RIe, _ERIP],
1275
+ [0, () => RequestInspection$, () => ResponseInspection$, 2], 1
1276
+ ];
1277
+ var AWSManagedRulesBotControlRuleSet$ = [3, n0, _AWSMRBCRS,
1278
+ 0,
1279
+ [_IL, _EML],
1280
+ [0, 2], 1
1281
+ ];
1282
+ var BlockAction$ = [3, n0, _BA,
1283
+ 0,
1284
+ [_CR],
1285
+ [() => CustomResponse$]
1286
+ ];
1287
+ var Body$ = [3, n0, _B,
1288
+ 0,
1289
+ [_OH],
1290
+ [0]
1291
+ ];
1292
+ var BotStatistics$ = [3, n0, _BS,
1293
+ 0,
1294
+ [_BN, _RC, _Pe],
1295
+ [0, 1, 1], 3
1296
+ ];
1297
+ var ByteMatchStatement$ = [3, n0, _BMS,
1298
+ 0,
1299
+ [_SS, _FTM, _TT, _PC],
1300
+ [21, () => FieldToMatch$, () => TextTransformations, 0], 4
1301
+ ];
1302
+ var CaptchaAction$ = [3, n0, _CA,
1303
+ 0,
1304
+ [_CRH],
1305
+ [() => CustomRequestHandling$]
1306
+ ];
1307
+ var CaptchaConfig$ = [3, n0, _CC,
1308
+ 0,
1309
+ [_ITP],
1310
+ [() => ImmunityTimeProperty$]
1311
+ ];
1312
+ var CaptchaResponse$ = [3, n0, _CRa,
1313
+ 0,
1314
+ [_RCe, _STo, _FR],
1315
+ [1, 1, 0]
1316
+ ];
1317
+ var ChallengeAction$ = [3, n0, _CAh,
1318
+ 0,
1319
+ [_CRH],
1320
+ [() => CustomRequestHandling$]
1321
+ ];
1322
+ var ChallengeConfig$ = [3, n0, _CCh,
1323
+ 0,
1324
+ [_ITP],
1325
+ [() => ImmunityTimeProperty$]
1326
+ ];
1327
+ var ChallengeResponse$ = [3, n0, _CRh,
1328
+ 0,
1329
+ [_RCe, _STo, _FR],
1330
+ [1, 1, 0]
1331
+ ];
1332
+ var CheckCapacityRequest$ = [3, n0, _CCR,
1333
+ 0,
1334
+ [_Sc, _Ru],
1335
+ [0, () => Rules], 2
1336
+ ];
1337
+ var CheckCapacityResponse$ = [3, n0, _CCRh,
1338
+ 0,
1339
+ [_C],
1340
+ [1]
1341
+ ];
1342
+ var ClientSideAction$ = [3, n0, _CSA,
1343
+ 0,
1344
+ [_UOA, _Se, _EURE],
1345
+ [0, 0, () => RegularExpressionList], 1
1346
+ ];
1347
+ var ClientSideActionConfig$ = [3, n0, _CSAC,
1348
+ 0,
1349
+ [_Ch],
1350
+ [() => ClientSideAction$], 1
1351
+ ];
1352
+ var Condition$ = [3, n0, _Co,
1353
+ 0,
1354
+ [_AC, _LNC],
1355
+ [() => ActionCondition$, () => LabelNameCondition$]
1356
+ ];
1357
+ var CookieMatchPattern$ = [3, n0, _CMP,
1358
+ 0,
1359
+ [_Al, _IC, _EC],
1360
+ [() => All$, 64 | 0, 64 | 0]
1361
+ ];
1362
+ var Cookies$ = [3, n0, _Coo,
1363
+ 0,
1364
+ [_MP, _MS, _OH],
1365
+ [() => CookieMatchPattern$, 0, 0], 3
1366
+ ];
1367
+ var CountAction$ = [3, n0, _CAo,
1368
+ 0,
1369
+ [_CRH],
1370
+ [() => CustomRequestHandling$]
1371
+ ];
1372
+ var CreateAPIKeyRequest$ = [3, n0, _CAPIKR,
1373
+ 0,
1374
+ [_Sc, _TD],
1375
+ [0, 64 | 0], 2
1376
+ ];
1377
+ var CreateAPIKeyResponse$ = [3, n0, _CAPIKRr,
1378
+ 0,
1379
+ [_APIK],
1380
+ [0]
1381
+ ];
1382
+ var CreateIPSetRequest$ = [3, n0, _CIPSR,
1383
+ 0,
1384
+ [_N, _Sc, _IPAV, _Ad, _D, _T],
1385
+ [0, 0, 0, 64 | 0, 0, () => TagList], 4
1386
+ ];
1387
+ var CreateIPSetResponse$ = [3, n0, _CIPSRr,
1388
+ 0,
1389
+ [_Su],
1390
+ [() => IPSetSummary$]
1391
+ ];
1392
+ var CreateRegexPatternSetRequest$ = [3, n0, _CRPSR,
1393
+ 0,
1394
+ [_N, _Sc, _REL, _D, _T],
1395
+ [0, 0, () => RegularExpressionList, 0, () => TagList], 3
1396
+ ];
1397
+ var CreateRegexPatternSetResponse$ = [3, n0, _CRPSRr,
1398
+ 0,
1399
+ [_Su],
1400
+ [() => RegexPatternSetSummary$]
1401
+ ];
1402
+ var CreateRuleGroupRequest$ = [3, n0, _CRGR,
1403
+ 0,
1404
+ [_N, _Sc, _C, _VC, _D, _Ru, _T, _CRB, _MC],
1405
+ [0, 0, 1, () => VisibilityConfig$, 0, () => Rules, () => TagList, () => CustomResponseBodies, () => MonetizationConfig$], 4
1406
+ ];
1407
+ var CreateRuleGroupResponse$ = [3, n0, _CRGRr,
1408
+ 0,
1409
+ [_Su],
1410
+ [() => RuleGroupSummary$]
1411
+ ];
1412
+ var CreateWebACLRequest$ = [3, n0, _CWACLR,
1413
+ 0,
1414
+ [_N, _Sc, _DA, _VC, _D, _Ru, _DPC, _T, _CRB, _CC, _CCh, _TD, _ACs, _OSDDSPC, _ACp, _MC],
1415
+ [0, 0, () => DefaultAction$, () => VisibilityConfig$, 0, () => Rules, () => DataProtectionConfig$, () => TagList, () => CustomResponseBodies, () => CaptchaConfig$, () => ChallengeConfig$, 64 | 0, () => AssociationConfig$, () => OnSourceDDoSProtectionConfig$, () => ApplicationConfig$, () => MonetizationConfig$], 4
1416
+ ];
1417
+ var CreateWebACLResponse$ = [3, n0, _CWACLRr,
1418
+ 0,
1419
+ [_Su],
1420
+ [() => WebACLSummary$]
1421
+ ];
1422
+ var CryptoConfig$ = [3, n0, _CCr,
1423
+ 0,
1424
+ [_PN],
1425
+ [() => PaymentNetworks], 1
1426
+ ];
1427
+ var CustomHTTPHeader$ = [3, n0, _CHTTPH,
1428
+ 0,
1429
+ [_N, _Val],
1430
+ [0, 0], 2
1431
+ ];
1432
+ var CustomRequestHandling$ = [3, n0, _CRH,
1433
+ 0,
1434
+ [_IH],
1435
+ [() => CustomHTTPHeaders], 1
1436
+ ];
1437
+ var CustomResponse$ = [3, n0, _CR,
1438
+ 0,
1439
+ [_RCe, _CRBK, _RH],
1440
+ [1, 0, () => CustomHTTPHeaders], 1
1441
+ ];
1442
+ var CustomResponseBody$ = [3, n0, _CRBu,
1443
+ 0,
1444
+ [_CTo, _Con],
1445
+ [0, 0], 2
1446
+ ];
1447
+ var DataPointEntry$ = [3, n0, _DPE,
1448
+ 0,
1449
+ [_Da, _MSC, _SC, _TA, _Ca, _In, _GBV],
1450
+ [4, 1, 1, 0, 0, 0, 0]
1451
+ ];
1452
+ var DataProtection$ = [3, n0, _DP,
1453
+ 0,
1454
+ [_F, _A, _ERMD, _ERBD],
1455
+ [() => FieldToProtect$, 0, 2, 2], 2
1456
+ ];
1457
+ var DataProtectionConfig$ = [3, n0, _DPC,
1458
+ 0,
1459
+ [_DPa],
1460
+ [() => DataProtections], 1
1461
+ ];
1462
+ var DefaultAction$ = [3, n0, _DA,
1463
+ 0,
1464
+ [_Bl, _All],
1465
+ [() => BlockAction$, () => AllowAction$]
1466
+ ];
1467
+ var DeleteAPIKeyRequest$ = [3, n0, _DAPIKR,
1468
+ 0,
1469
+ [_Sc, _APIK],
1470
+ [0, 0], 2
1471
+ ];
1472
+ var DeleteAPIKeyResponse$ = [3, n0, _DAPIKRe,
1473
+ 0,
1474
+ [],
1475
+ []
1476
+ ];
1477
+ var DeleteFirewallManagerRuleGroupsRequest$ = [3, n0, _DFMRGR,
1478
+ 0,
1479
+ [_WACLA, _WACLLT],
1480
+ [0, 0], 2
1481
+ ];
1482
+ var DeleteFirewallManagerRuleGroupsResponse$ = [3, n0, _DFMRGRe,
1483
+ 0,
1484
+ [_NWACLLT],
1485
+ [0]
1486
+ ];
1487
+ var DeleteIPSetRequest$ = [3, n0, _DIPSR,
1488
+ 0,
1489
+ [_N, _Sc, _Id, _LT],
1490
+ [0, 0, 0, 0], 4
1491
+ ];
1492
+ var DeleteIPSetResponse$ = [3, n0, _DIPSRe,
1493
+ 0,
1494
+ [],
1495
+ []
1496
+ ];
1497
+ var DeleteLoggingConfigurationRequest$ = [3, n0, _DLCR,
1498
+ 0,
1499
+ [_RA, _LTo, _LS],
1500
+ [0, 0, 0], 1
1501
+ ];
1502
+ var DeleteLoggingConfigurationResponse$ = [3, n0, _DLCRe,
1503
+ 0,
1504
+ [],
1505
+ []
1506
+ ];
1507
+ var DeletePermissionPolicyRequest$ = [3, n0, _DPPR,
1508
+ 0,
1509
+ [_RA],
1510
+ [0], 1
1511
+ ];
1512
+ var DeletePermissionPolicyResponse$ = [3, n0, _DPPRe,
1513
+ 0,
1514
+ [],
1515
+ []
1516
+ ];
1517
+ var DeleteRegexPatternSetRequest$ = [3, n0, _DRPSR,
1518
+ 0,
1519
+ [_N, _Sc, _Id, _LT],
1520
+ [0, 0, 0, 0], 4
1521
+ ];
1522
+ var DeleteRegexPatternSetResponse$ = [3, n0, _DRPSRe,
1523
+ 0,
1524
+ [],
1525
+ []
1526
+ ];
1527
+ var DeleteRuleGroupRequest$ = [3, n0, _DRGR,
1528
+ 0,
1529
+ [_N, _Sc, _Id, _LT],
1530
+ [0, 0, 0, 0], 4
1531
+ ];
1532
+ var DeleteRuleGroupResponse$ = [3, n0, _DRGRe,
1533
+ 0,
1534
+ [],
1535
+ []
1536
+ ];
1537
+ var DeleteWebACLRequest$ = [3, n0, _DWACLR,
1538
+ 0,
1539
+ [_N, _Sc, _Id, _LT],
1540
+ [0, 0, 0, 0], 4
1541
+ ];
1542
+ var DeleteWebACLResponse$ = [3, n0, _DWACLRe,
1543
+ 0,
1544
+ [],
1545
+ []
1546
+ ];
1547
+ var DescribeAllManagedProductsRequest$ = [3, n0, _DAMPR,
1548
+ 0,
1549
+ [_Sc],
1550
+ [0], 1
1551
+ ];
1552
+ var DescribeAllManagedProductsResponse$ = [3, n0, _DAMPRe,
1553
+ 0,
1554
+ [_MPa],
1555
+ [() => ManagedProductDescriptors]
1556
+ ];
1557
+ var DescribeManagedProductsByVendorRequest$ = [3, n0, _DMPBVR,
1558
+ 0,
1559
+ [_VN, _Sc],
1560
+ [0, 0], 2
1561
+ ];
1562
+ var DescribeManagedProductsByVendorResponse$ = [3, n0, _DMPBVRe,
1563
+ 0,
1564
+ [_MPa],
1565
+ [() => ManagedProductDescriptors]
1566
+ ];
1567
+ var DescribeManagedRuleGroupRequest$ = [3, n0, _DMRGR,
1568
+ 0,
1569
+ [_VN, _N, _Sc, _VNe],
1570
+ [0, 0, 0, 0], 3
1571
+ ];
1572
+ var DescribeManagedRuleGroupResponse$ = [3, n0, _DMRGRe,
1573
+ 0,
1574
+ [_VNe, _STA, _C, _Ru, _LN, _ALv, _CL],
1575
+ [0, 0, 1, () => RuleSummaries, 0, () => LabelSummaries, () => LabelSummaries]
1576
+ ];
1577
+ var DisallowedFeature$ = [3, n0, _DFi,
1578
+ 0,
1579
+ [_Fe, _RPPe],
1580
+ [0, 0]
1581
+ ];
1582
+ var DisassociateWebACLRequest$ = [3, n0, _DWACLRi,
1583
+ 0,
1584
+ [_RA],
1585
+ [0], 1
1586
+ ];
1587
+ var DisassociateWebACLResponse$ = [3, n0, _DWACLRis,
1588
+ 0,
1589
+ [],
1590
+ []
1591
+ ];
1592
+ var EmailField$ = [3, n0, _EF,
1593
+ 0,
1594
+ [_I],
1595
+ [0], 1
1596
+ ];
1597
+ var ExcludedRule$ = [3, n0, _ER,
1598
+ 0,
1599
+ [_N],
1600
+ [0], 1
1601
+ ];
1602
+ var FieldToMatch$ = [3, n0, _FTM,
1603
+ 0,
1604
+ [_SH, _SQA, _AQA, _UP, _QS, _B, _Me, _JB, _H, _Coo, _HO, _JAF, _JAFi, _UF],
1605
+ [() => SingleHeader$, () => SingleQueryArgument$, () => AllQueryArguments$, () => UriPath$, () => QueryString$, () => Body$, () => Method$, () => JsonBody$, () => Headers$, () => Cookies$, () => HeaderOrder$, () => JA3Fingerprint$, () => JA4Fingerprint$, () => UriFragment$]
1606
+ ];
1607
+ var FieldToProtect$ = [3, n0, _FTP,
1608
+ 0,
1609
+ [_FT, _FK],
1610
+ [0, 64 | 0], 1
1611
+ ];
1612
+ var Filter$ = [3, n0, _Fi,
1613
+ 0,
1614
+ [_Be, _Re, _Cond],
1615
+ [0, 0, () => Conditions], 3
1616
+ ];
1617
+ var FilterSource$ = [3, n0, _FS,
1618
+ 0,
1619
+ [_BC, _BO, _BN],
1620
+ [0, 0, 0]
1621
+ ];
1622
+ var FirewallManagerRuleGroup$ = [3, n0, _FMRG,
1623
+ 0,
1624
+ [_N, _Pr, _FMS, _OA, _VC],
1625
+ [0, 1, () => FirewallManagerStatement$, () => OverrideAction$, () => VisibilityConfig$], 5
1626
+ ];
1627
+ var FirewallManagerStatement$ = [3, n0, _FMS,
1628
+ 0,
1629
+ [_MRGS, _RGRS],
1630
+ [() => ManagedRuleGroupStatement$, () => RuleGroupReferenceStatement$]
1631
+ ];
1632
+ var ForwardedIPConfig$ = [3, n0, _FIPC,
1633
+ 0,
1634
+ [_HN, _FB],
1635
+ [0, 0], 2
1636
+ ];
1637
+ var GenerateMobileSdkReleaseUrlRequest$ = [3, n0, _GMSRUR,
1638
+ 0,
1639
+ [_Pl, _RV],
1640
+ [0, 0], 2
1641
+ ];
1642
+ var GenerateMobileSdkReleaseUrlResponse$ = [3, n0, _GMSRURe,
1643
+ 0,
1644
+ [_U],
1645
+ [0]
1646
+ ];
1647
+ var GeoMatchStatement$ = [3, n0, _GMS,
1648
+ 0,
1649
+ [_CCo, _FIPC],
1650
+ [64 | 0, () => ForwardedIPConfig$]
1651
+ ];
1652
+ var GetDecryptedAPIKeyRequest$ = [3, n0, _GDAPIKR,
1653
+ 0,
1654
+ [_Sc, _APIK],
1655
+ [0, 0], 2
1656
+ ];
1657
+ var GetDecryptedAPIKeyResponse$ = [3, n0, _GDAPIKRe,
1658
+ 0,
1659
+ [_TD, _CT],
1660
+ [64 | 0, 4]
1661
+ ];
1662
+ var GetIPSetRequest$ = [3, n0, _GIPSR,
1663
+ 0,
1664
+ [_N, _Sc, _Id],
1665
+ [0, 0, 0], 3
1666
+ ];
1667
+ var GetIPSetResponse$ = [3, n0, _GIPSRe,
1668
+ 0,
1669
+ [_IPS, _LT],
1670
+ [() => IPSet$, 0]
1671
+ ];
1672
+ var GetLoggingConfigurationRequest$ = [3, n0, _GLCR,
1673
+ 0,
1674
+ [_RA, _LTo, _LS],
1675
+ [0, 0, 0], 1
1676
+ ];
1677
+ var GetLoggingConfigurationResponse$ = [3, n0, _GLCRe,
1678
+ 0,
1679
+ [_LC],
1680
+ [() => LoggingConfiguration$]
1681
+ ];
1682
+ var GetManagedRuleSetRequest$ = [3, n0, _GMRSR,
1683
+ 0,
1684
+ [_N, _Sc, _Id],
1685
+ [0, 0, 0], 3
1686
+ ];
1687
+ var GetManagedRuleSetResponse$ = [3, n0, _GMRSRe,
1688
+ 0,
1689
+ [_MRS, _LT],
1690
+ [() => ManagedRuleSet$, 0]
1691
+ ];
1692
+ var GetMobileSdkReleaseRequest$ = [3, n0, _GMSRR,
1693
+ 0,
1694
+ [_Pl, _RV],
1695
+ [0, 0], 2
1696
+ ];
1697
+ var GetMobileSdkReleaseResponse$ = [3, n0, _GMSRRe,
1698
+ 0,
1699
+ [_MSR],
1700
+ [() => MobileSdkRelease$]
1701
+ ];
1702
+ var GetPermissionPolicyRequest$ = [3, n0, _GPPR,
1703
+ 0,
1704
+ [_RA],
1705
+ [0], 1
1706
+ ];
1707
+ var GetPermissionPolicyResponse$ = [3, n0, _GPPRe,
1708
+ 0,
1709
+ [_Po],
1710
+ [0]
1711
+ ];
1712
+ var GetRateBasedStatementManagedKeysRequest$ = [3, n0, _GRBSMKR,
1713
+ 0,
1714
+ [_Sc, _WACLN, _WACLI, _RN, _RGRN],
1715
+ [0, 0, 0, 0, 0], 4
1716
+ ];
1717
+ var GetRateBasedStatementManagedKeysResponse$ = [3, n0, _GRBSMKRe,
1718
+ 0,
1719
+ [_MKIPV, _MKIPVa],
1720
+ [() => RateBasedStatementManagedKeysIPSet$, () => RateBasedStatementManagedKeysIPSet$]
1721
+ ];
1722
+ var GetRegexPatternSetRequest$ = [3, n0, _GRPSR,
1723
+ 0,
1724
+ [_N, _Sc, _Id],
1725
+ [0, 0, 0], 3
1726
+ ];
1727
+ var GetRegexPatternSetResponse$ = [3, n0, _GRPSRe,
1728
+ 0,
1729
+ [_RPS, _LT],
1730
+ [() => RegexPatternSet$, 0]
1731
+ ];
1732
+ var GetRevenueStatisticsRequest$ = [3, n0, _GRSR,
1733
+ 0,
1734
+ [_STt, _TW, _Sc, _Cu, _GB, _Fil, _NM, _L, _SB, _SO],
1735
+ [0, () => TimeWindow$, 0, 0, 0, () => MonetizationFilterList, 0, 1, 0, 0], 4
1736
+ ];
1737
+ var GetRevenueStatisticsResponse$ = [3, n0, _GRSRe,
1738
+ 0,
1739
+ [_SSo, _RPSe, _NM],
1740
+ [() => SourceStatisticsList, () => RevenuePathStatisticsList, 0]
1741
+ ];
1742
+ var GetRevenueStatisticsSummaryRequest$ = [3, n0, _GRSSR,
1743
+ 0,
1744
+ [_TW, _Sc, _Cu, _Fil],
1745
+ [() => TimeWindow$, 0, 0, () => MonetizationFilterList], 3
1746
+ ];
1747
+ var GetRevenueStatisticsSummaryResponse$ = [3, n0, _GRSSRe,
1748
+ 0,
1749
+ [_RBe],
1750
+ [() => RevenueBreakdown$]
1751
+ ];
1752
+ var GetRevenueStatisticsTimeSeriesRequest$ = [3, n0, _GRSTSR,
1753
+ 0,
1754
+ [_STt, _TW, _Sc, _Int, _Cu, _GB, _Fil, _L, _NM],
1755
+ [0, () => TimeWindow$, 0, 0, 0, 0, () => MonetizationFilterList, 1, 0], 5
1756
+ ];
1757
+ var GetRevenueStatisticsTimeSeriesResponse$ = [3, n0, _GRSTSRe,
1758
+ 0,
1759
+ [_DPat, _NM],
1760
+ [() => DataPointsList, 0]
1761
+ ];
1762
+ var GetRuleGroupRequest$ = [3, n0, _GRGR,
1763
+ 0,
1764
+ [_N, _Sc, _Id, _ARN],
1765
+ [0, 0, 0, 0]
1766
+ ];
1767
+ var GetRuleGroupResponse$ = [3, n0, _GRGRe,
1768
+ 0,
1769
+ [_RG, _LT],
1770
+ [() => RuleGroup$, 0]
1771
+ ];
1772
+ var GetSampledRequestsRequest$ = [3, n0, _GSRR,
1773
+ 0,
1774
+ [_WAA, _RMN, _Sc, _TW, _MI],
1775
+ [0, 0, 0, () => TimeWindow$, 1], 5
1776
+ ];
1777
+ var GetSampledRequestsResponse$ = [3, n0, _GSRRe,
1778
+ 0,
1779
+ [_SR, _PS, _TW],
1780
+ [() => SampledHTTPRequests, 1, () => TimeWindow$]
1781
+ ];
1782
+ var GetTopPathStatisticsByTrafficRequest$ = [3, n0, _GTPSBTR,
1783
+ 0,
1784
+ [_WAA, _Sc, _TW, _L, _NOTTBPP, _UPP, _BC, _BO, _BN, _NM],
1785
+ [0, 0, () => TimeWindow$, 1, 1, 0, 0, 0, 0, 0], 5
1786
+ ];
1787
+ var GetTopPathStatisticsByTrafficResponse$ = [3, n0, _GTPSBTRe,
1788
+ 0,
1789
+ [_PSa, _TRC, _NM, _TC],
1790
+ [() => PathStatisticsList, 1, 0, () => PathStatisticsList], 2
1791
+ ];
1792
+ var GetWebACLForResourceRequest$ = [3, n0, _GWACLFRR,
1793
+ 0,
1794
+ [_RA],
1795
+ [0], 1
1796
+ ];
1797
+ var GetWebACLForResourceResponse$ = [3, n0, _GWACLFRRe,
1798
+ 0,
1799
+ [_WACL],
1800
+ [() => WebACL$]
1801
+ ];
1802
+ var GetWebACLRequest$ = [3, n0, _GWACLR,
1803
+ 0,
1804
+ [_N, _Sc, _Id, _ARN],
1805
+ [0, 0, 0, 0]
1806
+ ];
1807
+ var GetWebACLResponse$ = [3, n0, _GWACLRe,
1808
+ 0,
1809
+ [_WACL, _LT, _AIURL],
1810
+ [() => WebACL$, 0, 0]
1811
+ ];
1812
+ var HeaderMatchPattern$ = [3, n0, _HMP,
1813
+ 0,
1814
+ [_Al, _IHn, _EH],
1815
+ [() => All$, 64 | 0, 64 | 0]
1816
+ ];
1817
+ var HeaderOrder$ = [3, n0, _HO,
1818
+ 0,
1819
+ [_OH],
1820
+ [0], 1
1821
+ ];
1822
+ var Headers$ = [3, n0, _H,
1823
+ 0,
1824
+ [_MP, _MS, _OH],
1825
+ [() => HeaderMatchPattern$, 0, 0], 3
1826
+ ];
1827
+ var HTTPHeader$ = [3, n0, _HTTPH,
1828
+ 0,
1829
+ [_N, _Val],
1830
+ [0, 0]
1831
+ ];
1832
+ var HTTPRequest$ = [3, n0, _HTTPR,
1833
+ 0,
1834
+ [_CIP, _Cou, _URI, _Me, _HTTPV, _H],
1835
+ [0, 0, 0, 0, 0, () => HTTPHeaders]
1836
+ ];
1837
+ var ImmunityTimeProperty$ = [3, n0, _ITP,
1838
+ 0,
1839
+ [_IT],
1840
+ [1], 1
1841
+ ];
1842
+ var IPSet$ = [3, n0, _IPS,
1843
+ 0,
1844
+ [_N, _Id, _ARN, _IPAV, _Ad, _D],
1845
+ [0, 0, 0, 0, 64 | 0, 0], 5
1846
+ ];
1847
+ var IPSetForwardedIPConfig$ = [3, n0, _IPSFIPC,
1848
+ 0,
1849
+ [_HN, _FB, _Pos],
1850
+ [0, 0, 0], 3
1851
+ ];
1852
+ var IPSetReferenceStatement$ = [3, n0, _IPSRS,
1853
+ 0,
1854
+ [_ARN, _IPSFIPC],
1855
+ [0, () => IPSetForwardedIPConfig$], 1
1856
+ ];
1857
+ var IPSetSummary$ = [3, n0, _IPSS,
1858
+ 0,
1859
+ [_N, _Id, _D, _LT, _ARN],
1860
+ [0, 0, 0, 0, 0]
1861
+ ];
1862
+ var JA3Fingerprint$ = [3, n0, _JAF,
1863
+ 0,
1864
+ [_FB],
1865
+ [0], 1
1866
+ ];
1867
+ var JA4Fingerprint$ = [3, n0, _JAFi,
1868
+ 0,
1869
+ [_FB],
1870
+ [0], 1
1871
+ ];
1872
+ var JsonBody$ = [3, n0, _JB,
1873
+ 0,
1874
+ [_MP, _MS, _IFB, _OH],
1875
+ [() => JsonMatchPattern$, 0, 0, 0], 2
1876
+ ];
1877
+ var JsonMatchPattern$ = [3, n0, _JMP,
1878
+ 0,
1879
+ [_Al, _IP],
1880
+ [() => All$, 64 | 0]
1881
+ ];
1882
+ var Label$ = [3, n0, _La,
1883
+ 0,
1884
+ [_N],
1885
+ [0], 1
1886
+ ];
1887
+ var LabelMatchStatement$ = [3, n0, _LMS,
1888
+ 0,
1889
+ [_Sc, _K],
1890
+ [0, 0], 2
1891
+ ];
1892
+ var LabelNameCondition$ = [3, n0, _LNC,
1893
+ 0,
1894
+ [_LNa],
1895
+ [0], 1
1896
+ ];
1897
+ var LabelSummary$ = [3, n0, _LSa,
1898
+ 0,
1899
+ [_N],
1900
+ [0]
1901
+ ];
1902
+ var ListAPIKeysRequest$ = [3, n0, _LAPIKR,
1903
+ 0,
1904
+ [_Sc, _NM, _L],
1905
+ [0, 0, 1], 1
1906
+ ];
1907
+ var ListAPIKeysResponse$ = [3, n0, _LAPIKRi,
1908
+ 0,
1909
+ [_NM, _APIKSe, _AIURL],
1910
+ [0, () => APIKeySummaries, 0]
1911
+ ];
1912
+ var ListAvailableManagedRuleGroupsRequest$ = [3, n0, _LAMRGR,
1913
+ 0,
1914
+ [_Sc, _NM, _L],
1915
+ [0, 0, 1], 1
1916
+ ];
1917
+ var ListAvailableManagedRuleGroupsResponse$ = [3, n0, _LAMRGRi,
1918
+ 0,
1919
+ [_NM, _MRG],
1920
+ [0, () => ManagedRuleGroupSummaries]
1921
+ ];
1922
+ var ListAvailableManagedRuleGroupVersionsRequest$ = [3, n0, _LAMRGVR,
1923
+ 0,
1924
+ [_VN, _N, _Sc, _NM, _L],
1925
+ [0, 0, 0, 0, 1], 3
1926
+ ];
1927
+ var ListAvailableManagedRuleGroupVersionsResponse$ = [3, n0, _LAMRGVRi,
1928
+ 0,
1929
+ [_NM, _Ve, _CDV],
1930
+ [0, () => ManagedRuleGroupVersions, 0]
1931
+ ];
1932
+ var ListIPSetsRequest$ = [3, n0, _LIPSR,
1933
+ 0,
1934
+ [_Sc, _NM, _L],
1935
+ [0, 0, 1], 1
1936
+ ];
1937
+ var ListIPSetsResponse$ = [3, n0, _LIPSRi,
1938
+ 0,
1939
+ [_NM, _IPSe],
1940
+ [0, () => IPSetSummaries]
1941
+ ];
1942
+ var ListLoggingConfigurationsRequest$ = [3, n0, _LLCR,
1943
+ 0,
1944
+ [_Sc, _NM, _L, _LS],
1945
+ [0, 0, 1, 0], 1
1946
+ ];
1947
+ var ListLoggingConfigurationsResponse$ = [3, n0, _LLCRi,
1948
+ 0,
1949
+ [_LCo, _NM],
1950
+ [() => LoggingConfigurations, 0]
1951
+ ];
1952
+ var ListManagedRuleSetsRequest$ = [3, n0, _LMRSR,
1953
+ 0,
1954
+ [_Sc, _NM, _L],
1955
+ [0, 0, 1], 1
1956
+ ];
1957
+ var ListManagedRuleSetsResponse$ = [3, n0, _LMRSRi,
1958
+ 0,
1959
+ [_NM, _MRSa],
1960
+ [0, () => ManagedRuleSetSummaries]
1961
+ ];
1962
+ var ListMobileSdkReleasesRequest$ = [3, n0, _LMSRR,
1963
+ 0,
1964
+ [_Pl, _NM, _L],
1965
+ [0, 0, 1], 1
1966
+ ];
1967
+ var ListMobileSdkReleasesResponse$ = [3, n0, _LMSRRi,
1968
+ 0,
1969
+ [_RS, _NM],
1970
+ [() => ReleaseSummaries, 0]
1971
+ ];
1972
+ var ListRegexPatternSetsRequest$ = [3, n0, _LRPSR,
1973
+ 0,
1974
+ [_Sc, _NM, _L],
1975
+ [0, 0, 1], 1
1976
+ ];
1977
+ var ListRegexPatternSetsResponse$ = [3, n0, _LRPSRi,
1978
+ 0,
1979
+ [_NM, _RPSeg],
1980
+ [0, () => RegexPatternSetSummaries]
1981
+ ];
1982
+ var ListResourcesForWebACLRequest$ = [3, n0, _LRFWACLR,
1983
+ 0,
1984
+ [_WACLA, _RT],
1985
+ [0, 0], 1
1986
+ ];
1987
+ var ListResourcesForWebACLResponse$ = [3, n0, _LRFWACLRi,
1988
+ 0,
1989
+ [_RAe],
1990
+ [64 | 0]
1991
+ ];
1992
+ var ListRuleGroupsRequest$ = [3, n0, _LRGR,
1993
+ 0,
1994
+ [_Sc, _NM, _L],
1995
+ [0, 0, 1], 1
1996
+ ];
1997
+ var ListRuleGroupsResponse$ = [3, n0, _LRGRi,
1998
+ 0,
1999
+ [_NM, _RGu],
2000
+ [0, () => RuleGroupSummaries]
2001
+ ];
2002
+ var ListSettlementRecordsRequest$ = [3, n0, _LSRR,
2003
+ 0,
2004
+ [_TW, _Sc, _Cu, _Fil, _SB, _SO, _L, _NM],
2005
+ [() => TimeWindow$, 0, 0, () => MonetizationFilterList, 0, 0, 1, 0], 3
2006
+ ];
2007
+ var ListSettlementRecordsResponse$ = [3, n0, _LSRRi,
2008
+ 0,
2009
+ [_Set, _NM],
2010
+ [() => SettlementRecordList, 0]
2011
+ ];
2012
+ var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
2013
+ 0,
2014
+ [_RARN, _NM, _L],
2015
+ [0, 0, 1], 1
2016
+ ];
2017
+ var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
2018
+ 0,
2019
+ [_NM, _TIFR],
2020
+ [0, () => TagInfoForResource$]
2021
+ ];
2022
+ var ListWebACLsRequest$ = [3, n0, _LWACLR,
2023
+ 0,
2024
+ [_Sc, _NM, _L],
2025
+ [0, 0, 1], 1
2026
+ ];
2027
+ var ListWebACLsResponse$ = [3, n0, _LWACLRi,
2028
+ 0,
2029
+ [_NM, _WACLe],
2030
+ [0, () => WebACLSummaries]
2031
+ ];
2032
+ var LoggingConfiguration$ = [3, n0, _LC,
2033
+ 0,
2034
+ [_RA, _LDC, _RF, _MBFM, _LF, _LTo, _LS],
2035
+ [0, 64 | 0, () => RedactedFields, 2, () => LoggingFilter$, 0, 0], 2
2036
+ ];
2037
+ var LoggingFilter$ = [3, n0, _LF,
2038
+ 0,
2039
+ [_Fil, _DB],
2040
+ [() => Filters, 0], 2
2041
+ ];
2042
+ var ManagedProductDescriptor$ = [3, n0, _MPD,
2043
+ 0,
2044
+ [_VN, _MRSN, _PI, _PL, _PT, _PD, _STA, _IVS, _IAMRS],
2045
+ [0, 0, 0, 0, 0, 0, 0, 2, 2]
2046
+ ];
2047
+ var ManagedRuleGroupConfig$ = [3, n0, _MRGC,
2048
+ 0,
2049
+ [_LP, _PTa, _UFs, _PF, _AWSMRBCRS, _AWSMRATPRS, _AWSMRACFPRS, _AWSMRADDSRS],
2050
+ [0, 0, () => UsernameField$, () => PasswordField$, () => AWSManagedRulesBotControlRuleSet$, () => AWSManagedRulesATPRuleSet$, () => AWSManagedRulesACFPRuleSet$, () => AWSManagedRulesAntiDDoSRuleSet$]
2051
+ ];
2052
+ var ManagedRuleGroupStatement$ = [3, n0, _MRGS,
2053
+ 0,
2054
+ [_VN, _N, _V, _ERx, _SDS, _MRGCa, _RAO],
2055
+ [0, 0, 0, () => ExcludedRules, () => Statement$, () => ManagedRuleGroupConfigs, () => RuleActionOverrides], 2
2056
+ ];
2057
+ var ManagedRuleGroupSummary$ = [3, n0, _MRGSa,
2058
+ 0,
2059
+ [_VN, _N, _VS, _D],
2060
+ [0, 0, 2, 0]
2061
+ ];
2062
+ var ManagedRuleGroupVersion$ = [3, n0, _MRGV,
2063
+ 0,
2064
+ [_N, _LUT],
2065
+ [0, 4]
2066
+ ];
2067
+ var ManagedRuleSet$ = [3, n0, _MRS,
2068
+ 0,
2069
+ [_N, _Id, _ARN, _D, _PV, _RVe, _LN],
2070
+ [0, 0, 0, 0, () => PublishedVersions, 0, 0], 3
2071
+ ];
2072
+ var ManagedRuleSetSummary$ = [3, n0, _MRSS,
2073
+ 0,
2074
+ [_N, _Id, _D, _LT, _ARN, _LN],
2075
+ [0, 0, 0, 0, 0, 0]
2076
+ ];
2077
+ var ManagedRuleSetVersion$ = [3, n0, _MRSV,
2078
+ 0,
2079
+ [_ARGA, _C, _FL, _PTu, _LUT, _ET],
2080
+ [0, 1, 1, 4, 4, 4]
2081
+ ];
2082
+ var Method$ = [3, n0, _Me,
2083
+ 0,
2084
+ [],
2085
+ []
2086
+ ];
2087
+ var MobileSdkRelease$ = [3, n0, _MSR,
2088
+ 0,
2089
+ [_RV, _Ti, _RNe, _T],
2090
+ [0, 4, 0, () => TagList]
2091
+ ];
2092
+ var MonetizationConfig$ = [3, n0, _MC,
2093
+ 0,
2094
+ [_CCr, _CM],
2095
+ [() => CryptoConfig$, 0]
2096
+ ];
2097
+ var MonetizationFilter$ = [3, n0, _MF,
2098
+ 0,
2099
+ [_N, _Va],
2100
+ [0, 64 | 0], 2
2101
+ ];
2102
+ var MonetizeAction$ = [3, n0, _MA,
2103
+ 0,
2104
+ [_PM],
2105
+ [0]
2106
+ ];
2107
+ var NoneAction$ = [3, n0, _NA,
2108
+ 0,
2109
+ [],
2110
+ []
2111
+ ];
2112
+ var NotStatement$ = [3, n0, _NS,
2113
+ 0,
2114
+ [_St],
2115
+ [() => Statement$], 1
2116
+ ];
2117
+ var OnSourceDDoSProtectionConfig$ = [3, n0, _OSDDSPC,
2118
+ 0,
2119
+ [_ALBLRM],
2120
+ [0], 1
2121
+ ];
2122
+ var OrStatement$ = [3, n0, _OS,
2123
+ 0,
2124
+ [_S],
2125
+ [() => Statements], 1
2126
+ ];
2127
+ var OverrideAction$ = [3, n0, _OA,
2128
+ 0,
2129
+ [_Coun, _No],
2130
+ [() => CountAction$, () => NoneAction$]
2131
+ ];
2132
+ var PasswordField$ = [3, n0, _PF,
2133
+ 0,
2134
+ [_I],
2135
+ [0], 1
2136
+ ];
2137
+ var PathStatistics$ = [3, n0, _PSa,
2138
+ 0,
2139
+ [_Pa, _RC, _Pe, _So, _TB],
2140
+ [0, 1, 1, () => FilterSource$, () => BotStatisticsList], 3
2141
+ ];
2142
+ var PaymentNetwork$ = [3, n0, _PNa,
2143
+ 0,
2144
+ [_Cha, _WA, _Pri],
2145
+ [0, 0, () => Prices], 3
2146
+ ];
2147
+ var PhoneNumberField$ = [3, n0, _PNF,
2148
+ 0,
2149
+ [_I],
2150
+ [0], 1
2151
+ ];
2152
+ var Price$ = [3, n0, _Pric,
2153
+ 0,
2154
+ [_Am, _Cu],
2155
+ [0, 0], 2
2156
+ ];
2157
+ var PutLoggingConfigurationRequest$ = [3, n0, _PLCR,
2158
+ 0,
2159
+ [_LC],
2160
+ [() => LoggingConfiguration$], 1
2161
+ ];
2162
+ var PutLoggingConfigurationResponse$ = [3, n0, _PLCRu,
2163
+ 0,
2164
+ [_LC],
2165
+ [() => LoggingConfiguration$]
2166
+ ];
2167
+ var PutManagedRuleSetVersionsRequest$ = [3, n0, _PMRSVR,
2168
+ 0,
2169
+ [_N, _Sc, _Id, _LT, _RVe, _VTP],
2170
+ [0, 0, 0, 0, 0, () => VersionsToPublish], 4
2171
+ ];
2172
+ var PutManagedRuleSetVersionsResponse$ = [3, n0, _PMRSVRu,
2173
+ 0,
2174
+ [_NLT],
2175
+ [0]
2176
+ ];
2177
+ var PutPermissionPolicyRequest$ = [3, n0, _PPPR,
2178
+ 0,
2179
+ [_RA, _Po],
2180
+ [0, 0], 2
2181
+ ];
2182
+ var PutPermissionPolicyResponse$ = [3, n0, _PPPRu,
2183
+ 0,
2184
+ [],
2185
+ []
2186
+ ];
2187
+ var QueryString$ = [3, n0, _QS,
2188
+ 0,
2189
+ [],
2190
+ []
2191
+ ];
2192
+ var RateBasedStatement$ = [3, n0, _RBS,
2193
+ 0,
2194
+ [_L, _AKT, _EWS, _SDS, _FIPC, _CK],
2195
+ [1, 0, 1, () => Statement$, () => ForwardedIPConfig$, () => RateBasedStatementCustomKeys], 2
2196
+ ];
2197
+ var RateBasedStatementCustomKey$ = [3, n0, _RBSCK,
2198
+ 0,
2199
+ [_He, _Cook, _QA, _QS, _HTTPM, _FIP, _IP_, _LN, _UP, _JAF, _JAFi, _ASN],
2200
+ [() => RateLimitHeader$, () => RateLimitCookie$, () => RateLimitQueryArgument$, () => RateLimitQueryString$, () => RateLimitHTTPMethod$, () => RateLimitForwardedIP$, () => RateLimitIP$, () => RateLimitLabelNamespace$, () => RateLimitUriPath$, () => RateLimitJA3Fingerprint$, () => RateLimitJA4Fingerprint$, () => RateLimitAsn$]
2201
+ ];
2202
+ var RateBasedStatementManagedKeysIPSet$ = [3, n0, _RBSMKIPS,
2203
+ 0,
2204
+ [_IPAV, _Ad],
2205
+ [0, 64 | 0]
2206
+ ];
2207
+ var RateLimitAsn$ = [3, n0, _RLA,
2208
+ 0,
2209
+ [],
2210
+ []
2211
+ ];
2212
+ var RateLimitCookie$ = [3, n0, _RLC,
2213
+ 0,
2214
+ [_N, _TT],
2215
+ [0, () => TextTransformations], 2
2216
+ ];
2217
+ var RateLimitForwardedIP$ = [3, n0, _RLFIP,
2218
+ 0,
2219
+ [],
2220
+ []
2221
+ ];
2222
+ var RateLimitHeader$ = [3, n0, _RLH,
2223
+ 0,
2224
+ [_N, _TT],
2225
+ [0, () => TextTransformations], 2
2226
+ ];
2227
+ var RateLimitHTTPMethod$ = [3, n0, _RLHTTPM,
2228
+ 0,
2229
+ [],
2230
+ []
2231
+ ];
2232
+ var RateLimitIP$ = [3, n0, _RLIP,
2233
+ 0,
2234
+ [],
2235
+ []
2236
+ ];
2237
+ var RateLimitJA3Fingerprint$ = [3, n0, _RLJAF,
2238
+ 0,
2239
+ [_FB],
2240
+ [0], 1
2241
+ ];
2242
+ var RateLimitJA4Fingerprint$ = [3, n0, _RLJAFa,
2243
+ 0,
2244
+ [_FB],
2245
+ [0], 1
2246
+ ];
2247
+ var RateLimitLabelNamespace$ = [3, n0, _RLLN,
2248
+ 0,
2249
+ [_Na],
2250
+ [0], 1
2251
+ ];
2252
+ var RateLimitQueryArgument$ = [3, n0, _RLQA,
2253
+ 0,
2254
+ [_N, _TT],
2255
+ [0, () => TextTransformations], 2
2256
+ ];
2257
+ var RateLimitQueryString$ = [3, n0, _RLQS,
2258
+ 0,
2259
+ [_TT],
2260
+ [() => TextTransformations], 1
2261
+ ];
2262
+ var RateLimitUriPath$ = [3, n0, _RLUP,
2263
+ 0,
2264
+ [_TT],
2265
+ [() => TextTransformations], 1
2266
+ ];
2267
+ var Regex$ = [3, n0, _Reg,
2268
+ 0,
2269
+ [_RSe],
2270
+ [0]
2271
+ ];
2272
+ var RegexMatchStatement$ = [3, n0, _RMS,
2273
+ 0,
2274
+ [_RSe, _FTM, _TT],
2275
+ [0, () => FieldToMatch$, () => TextTransformations], 3
2276
+ ];
2277
+ var RegexPatternSet$ = [3, n0, _RPS,
2278
+ 0,
2279
+ [_N, _Id, _ARN, _D, _REL],
2280
+ [0, 0, 0, 0, () => RegularExpressionList]
2281
+ ];
2282
+ var RegexPatternSetReferenceStatement$ = [3, n0, _RPSRS,
2283
+ 0,
2284
+ [_ARN, _FTM, _TT],
2285
+ [0, () => FieldToMatch$, () => TextTransformations], 3
2286
+ ];
2287
+ var RegexPatternSetSummary$ = [3, n0, _RPSS,
2288
+ 0,
2289
+ [_N, _Id, _D, _LT, _ARN],
2290
+ [0, 0, 0, 0, 0]
2291
+ ];
2292
+ var ReleaseSummary$ = [3, n0, _RSel,
2293
+ 0,
2294
+ [_RV, _Ti],
2295
+ [0, 4]
2296
+ ];
2297
+ var RequestBodyAssociatedResourceTypeConfig$ = [3, n0, _RBARTC,
2298
+ 0,
2299
+ [_DSIL],
2300
+ [0], 1
2301
+ ];
2302
+ var RequestInspection$ = [3, n0, _RI,
2303
+ 0,
2304
+ [_PTa, _UFs, _PF],
2305
+ [0, () => UsernameField$, () => PasswordField$], 3
2306
+ ];
2307
+ var RequestInspectionACFP$ = [3, n0, _RIACFP,
2308
+ 0,
2309
+ [_PTa, _UFs, _PF, _EF, _PNFh, _AFd],
2310
+ [0, () => UsernameField$, () => PasswordField$, () => EmailField$, () => PhoneNumberFields, () => AddressFields], 1
2311
+ ];
2312
+ var ResponseInspection$ = [3, n0, _RIe,
2313
+ 0,
2314
+ [_SCt, _He, _BCo, _J],
2315
+ [() => ResponseInspectionStatusCode$, () => ResponseInspectionHeader$, () => ResponseInspectionBodyContains$, () => ResponseInspectionJson$]
2316
+ ];
2317
+ var ResponseInspectionBodyContains$ = [3, n0, _RIBC,
2318
+ 0,
2319
+ [_SSu, _FSa],
2320
+ [64 | 0, 64 | 0], 2
2321
+ ];
2322
+ var ResponseInspectionHeader$ = [3, n0, _RIH,
2323
+ 0,
2324
+ [_N, _SV, _FV],
2325
+ [0, 64 | 0, 64 | 0], 3
2326
+ ];
2327
+ var ResponseInspectionJson$ = [3, n0, _RIJ,
2328
+ 0,
2329
+ [_I, _SV, _FV],
2330
+ [0, 64 | 0, 64 | 0], 3
2331
+ ];
2332
+ var ResponseInspectionStatusCode$ = [3, n0, _RISC,
2333
+ 0,
2334
+ [_SCu, _FC],
2335
+ [64 | 1, 64 | 1], 2
2336
+ ];
2337
+ var RevenueBreakdown$ = [3, n0, _RBe,
2338
+ 0,
2339
+ [_TA, _VA, _UA, _Cu, _TS, _TMS],
2340
+ [0, 0, 0, 0, 1, 1]
2341
+ ];
2342
+ var RevenuePathStatistics$ = [3, n0, _RPSe,
2343
+ 0,
2344
+ [_Pa, _Pe, _Am, _RC],
2345
+ [0, 1, 0, 1], 4
2346
+ ];
2347
+ var Rule$ = [3, n0, _Rul,
2348
+ 0,
2349
+ [_N, _Pr, _St, _VC, _A, _OA, _RL, _CC, _CCh],
2350
+ [0, 1, () => Statement$, () => VisibilityConfig$, () => RuleAction$, () => OverrideAction$, () => Labels, () => CaptchaConfig$, () => ChallengeConfig$], 4
2351
+ ];
2352
+ var RuleAction$ = [3, n0, _RAu,
2353
+ 0,
2354
+ [_Bl, _All, _Coun, _Cap, _Ch, _Mo],
2355
+ [() => BlockAction$, () => AllowAction$, () => CountAction$, () => CaptchaAction$, () => ChallengeAction$, () => MonetizeAction$]
2356
+ ];
2357
+ var RuleActionOverride$ = [3, n0, _RAOu,
2358
+ 0,
2359
+ [_N, _ATU],
2360
+ [0, () => RuleAction$], 2
2361
+ ];
2362
+ var RuleGroup$ = [3, n0, _RG,
2363
+ 0,
2364
+ [_N, _Id, _C, _ARN, _VC, _D, _Ru, _LN, _CRB, _ALv, _CL, _MC],
2365
+ [0, 0, 1, 0, () => VisibilityConfig$, 0, () => Rules, 0, () => CustomResponseBodies, () => LabelSummaries, () => LabelSummaries, () => MonetizationConfig$], 5
2366
+ ];
2367
+ var RuleGroupReferenceStatement$ = [3, n0, _RGRS,
2368
+ 0,
2369
+ [_ARN, _ERx, _RAO],
2370
+ [0, () => ExcludedRules, () => RuleActionOverrides], 1
2371
+ ];
2372
+ var RuleGroupSummary$ = [3, n0, _RGS,
2373
+ 0,
2374
+ [_N, _Id, _D, _LT, _ARN],
2375
+ [0, 0, 0, 0, 0]
2376
+ ];
2377
+ var RuleSummary$ = [3, n0, _RSu,
2378
+ 0,
2379
+ [_N, _A],
2380
+ [0, () => RuleAction$]
2381
+ ];
2382
+ var SampledHTTPRequest$ = [3, n0, _SHTTPR,
2383
+ 0,
2384
+ [_Req, _W, _Ti, _A, _RNWRG, _RHI, _RCS, _Lab, _CRa, _CRh, _OAv],
2385
+ [() => HTTPRequest$, 1, 4, 0, 0, () => HTTPHeaders, 1, () => Labels, () => CaptchaResponse$, () => ChallengeResponse$, 0], 2
2386
+ ];
2387
+ var SettlementRecord$ = [3, n0, _SRe,
2388
+ 0,
2389
+ [_Ti, _Sta, _Am, _PA, _WA, _Cu, _Ne, _TI, _RIeq, _SN, _O, _SCo, _In, _Ver, _CPo, _WAA, _RTe],
2390
+ [4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 4], 3
2391
+ ];
2392
+ var SingleHeader$ = [3, n0, _SH,
2393
+ 0,
2394
+ [_N],
2395
+ [0], 1
2396
+ ];
2397
+ var SingleQueryArgument$ = [3, n0, _SQA,
2398
+ 0,
2399
+ [_N],
2400
+ [0], 1
2401
+ ];
2402
+ var SizeConstraintStatement$ = [3, n0, _SCS,
2403
+ 0,
2404
+ [_FTM, _CO, _Si, _TT],
2405
+ [() => FieldToMatch$, 0, 1, () => TextTransformations], 4
2406
+ ];
2407
+ var SourceStatistics$ = [3, n0, _SSo,
2408
+ 0,
2409
+ [_SN, _Pe, _Am, _RC, _SCo, _In, _O, _Ver, _GBV],
2410
+ [0, 1, 0, 1, 0, 0, 0, 2, 0], 4
2411
+ ];
2412
+ var SqliMatchStatement$ = [3, n0, _SMS,
2413
+ 0,
2414
+ [_FTM, _TT, _SL],
2415
+ [() => FieldToMatch$, () => TextTransformations, 0], 2
2416
+ ];
2417
+ var Statement$ = [3, n0, _St,
2418
+ 0,
2419
+ [_BMS, _SMS, _XMS, _SCS, _GMS, _RGRS, _IPSRS, _RPSRS, _RBS, _AS, _OS, _NS, _MRGS, _LMS, _RMS, _AMS],
2420
+ [() => ByteMatchStatement$, () => SqliMatchStatement$, () => XssMatchStatement$, () => SizeConstraintStatement$, () => GeoMatchStatement$, () => RuleGroupReferenceStatement$, () => IPSetReferenceStatement$, () => RegexPatternSetReferenceStatement$, () => RateBasedStatement$, () => AndStatement$, () => OrStatement$, () => NotStatement$, () => ManagedRuleGroupStatement$, () => LabelMatchStatement$, () => RegexMatchStatement$, () => AsnMatchStatement$]
2421
+ ];
2422
+ var Tag$ = [3, n0, _Ta,
2423
+ 0,
2424
+ [_K, _Val],
2425
+ [0, 0], 2
2426
+ ];
2427
+ var TagInfoForResource$ = [3, n0, _TIFR,
2428
+ 0,
2429
+ [_RARN, _TL],
2430
+ [0, () => TagList]
2431
+ ];
2432
+ var TagResourceRequest$ = [3, n0, _TRR,
2433
+ 0,
2434
+ [_RARN, _T],
2435
+ [0, () => TagList], 2
2436
+ ];
2437
+ var TagResourceResponse$ = [3, n0, _TRRa,
2438
+ 0,
2439
+ [],
2440
+ []
2441
+ ];
2442
+ var TextTransformation$ = [3, n0, _TTe,
2443
+ 0,
2444
+ [_Pr, _Ty],
2445
+ [1, 0], 2
2446
+ ];
2447
+ var TimeWindow$ = [3, n0, _TW,
2448
+ 0,
2449
+ [_STta, _ETn],
2450
+ [4, 4], 2
2451
+ ];
2452
+ var UntagResourceRequest$ = [3, n0, _URR,
2453
+ 0,
2454
+ [_RARN, _TK],
2455
+ [0, 64 | 0], 2
2456
+ ];
2457
+ var UntagResourceResponse$ = [3, n0, _URRn,
2458
+ 0,
2459
+ [],
2460
+ []
2461
+ ];
2462
+ var UpdateIPSetRequest$ = [3, n0, _UIPSR,
2463
+ 0,
2464
+ [_N, _Sc, _Id, _Ad, _LT, _D],
2465
+ [0, 0, 0, 64 | 0, 0, 0], 5
2466
+ ];
2467
+ var UpdateIPSetResponse$ = [3, n0, _UIPSRp,
2468
+ 0,
2469
+ [_NLT],
2470
+ [0]
2471
+ ];
2472
+ var UpdateManagedRuleSetVersionExpiryDateRequest$ = [3, n0, _UMRSVEDR,
2473
+ 0,
2474
+ [_N, _Sc, _Id, _LT, _VTE, _ET],
2475
+ [0, 0, 0, 0, 0, 4], 6
2476
+ ];
2477
+ var UpdateManagedRuleSetVersionExpiryDateResponse$ = [3, n0, _UMRSVEDRp,
2478
+ 0,
2479
+ [_EV, _ET, _NLT],
2480
+ [0, 4, 0]
2481
+ ];
2482
+ var UpdateRegexPatternSetRequest$ = [3, n0, _URPSR,
2483
+ 0,
2484
+ [_N, _Sc, _Id, _REL, _LT, _D],
2485
+ [0, 0, 0, () => RegularExpressionList, 0, 0], 5
2486
+ ];
2487
+ var UpdateRegexPatternSetResponse$ = [3, n0, _URPSRp,
2488
+ 0,
2489
+ [_NLT],
2490
+ [0]
2491
+ ];
2492
+ var UpdateRuleGroupRequest$ = [3, n0, _URGR,
2493
+ 0,
2494
+ [_N, _Sc, _Id, _VC, _LT, _D, _Ru, _CRB, _MC],
2495
+ [0, 0, 0, () => VisibilityConfig$, 0, 0, () => Rules, () => CustomResponseBodies, () => MonetizationConfig$], 5
2496
+ ];
2497
+ var UpdateRuleGroupResponse$ = [3, n0, _URGRp,
2498
+ 0,
2499
+ [_NLT],
2500
+ [0]
2501
+ ];
2502
+ var UpdateWebACLRequest$ = [3, n0, _UWACLR,
2503
+ 0,
2504
+ [_N, _Sc, _Id, _DA, _VC, _LT, _D, _Ru, _DPC, _CRB, _CC, _CCh, _TD, _ACs, _OSDDSPC, _ACp, _MC],
2505
+ [0, 0, 0, () => DefaultAction$, () => VisibilityConfig$, 0, 0, () => Rules, () => DataProtectionConfig$, () => CustomResponseBodies, () => CaptchaConfig$, () => ChallengeConfig$, 64 | 0, () => AssociationConfig$, () => OnSourceDDoSProtectionConfig$, () => ApplicationConfig$, () => MonetizationConfig$], 6
2506
+ ];
2507
+ var UpdateWebACLResponse$ = [3, n0, _UWACLRp,
2508
+ 0,
2509
+ [_NLT],
2510
+ [0]
2511
+ ];
2512
+ var UriFragment$ = [3, n0, _UF,
2513
+ 0,
2514
+ [_FB],
2515
+ [0]
2516
+ ];
2517
+ var UriPath$ = [3, n0, _UP,
2518
+ 0,
2519
+ [],
2520
+ []
2521
+ ];
2522
+ var UsernameField$ = [3, n0, _UFs,
2523
+ 0,
2524
+ [_I],
2525
+ [0], 1
2526
+ ];
2527
+ var VersionToPublish$ = [3, n0, _VTPe,
2528
+ 0,
2529
+ [_ARGA, _FL],
2530
+ [0, 1]
2531
+ ];
2532
+ var VisibilityConfig$ = [3, n0, _VC,
2533
+ 0,
2534
+ [_SRE, _CWME, _MN],
2535
+ [2, 2, 0], 3
2536
+ ];
2537
+ var WebACL$ = [3, n0, _WACL,
2538
+ 0,
2539
+ [_N, _Id, _ARN, _DA, _VC, _D, _Ru, _DPC, _C, _PPFMRG, _PPFMRGo, _MBFM, _LN, _CRB, _CC, _CCh, _TD, _ACs, _RBFM, _OSDDSPC, _ACp, _MC],
2540
+ [0, 0, 0, () => DefaultAction$, () => VisibilityConfig$, 0, () => Rules, () => DataProtectionConfig$, 1, () => FirewallManagerRuleGroups, () => FirewallManagerRuleGroups, 2, 0, () => CustomResponseBodies, () => CaptchaConfig$, () => ChallengeConfig$, 64 | 0, () => AssociationConfig$, 2, () => OnSourceDDoSProtectionConfig$, () => ApplicationConfig$, () => MonetizationConfig$], 5
2541
+ ];
2542
+ var WebACLSummary$ = [3, n0, _WACLS,
2543
+ 0,
2544
+ [_N, _Id, _D, _LT, _ARN],
2545
+ [0, 0, 0, 0, 0]
2546
+ ];
2547
+ var XssMatchStatement$ = [3, n0, _XMS,
2548
+ 0,
2549
+ [_FTM, _TT],
2550
+ [() => FieldToMatch$, () => TextTransformations], 2
2551
+ ];
2552
+ var AddressFields = [1, n0, _AFd,
2553
+ 0, () => AddressField$
2554
+ ];
2555
+ var APIKeySummaries = [1, n0, _APIKSe,
2556
+ 0, () => APIKeySummary$
2557
+ ];
2558
+ var ApplicationAttributes = [1, n0, _AApp,
2559
+ 0, () => ApplicationAttribute$
2560
+ ];
2561
+ var BotStatisticsList = [1, n0, _BSL,
2562
+ 0, () => BotStatistics$
2563
+ ];
2564
+ var Conditions = [1, n0, _Cond,
2565
+ 0, () => Condition$
2566
+ ];
2567
+ var CustomHTTPHeaders = [1, n0, _CHTTPHu,
2568
+ 0, () => CustomHTTPHeader$
2569
+ ];
2570
+ var DataPointsList = [1, n0, _DPL,
2571
+ 0, () => DataPointEntry$
2572
+ ];
2573
+ var DataProtections = [1, n0, _DPa,
2574
+ 0, () => DataProtection$
2575
+ ];
2576
+ var DisallowedFeatures = [1, n0, _DF,
2577
+ 0, () => DisallowedFeature$
2578
+ ];
2579
+ var ExcludedRules = [1, n0, _ERx,
2580
+ 0, () => ExcludedRule$
2581
+ ];
2582
+ var Filters = [1, n0, _Fil,
2583
+ 0, () => Filter$
2584
+ ];
2585
+ var FirewallManagerRuleGroups = [1, n0, _FMRGi,
2586
+ 0, () => FirewallManagerRuleGroup$
2587
+ ];
2588
+ var HTTPHeaders = [1, n0, _HTTPHe,
2589
+ 0, () => HTTPHeader$
2590
+ ];
2591
+ var IPSetSummaries = [1, n0, _IPSSe,
2592
+ 0, () => IPSetSummary$
2593
+ ];
2594
+ var Labels = [1, n0, _Lab,
2595
+ 0, () => Label$
2596
+ ];
2597
+ var LabelSummaries = [1, n0, _LSab,
2598
+ 0, () => LabelSummary$
2599
+ ];
2600
+ var LoggingConfigurations = [1, n0, _LCo,
2601
+ 0, () => LoggingConfiguration$
2602
+ ];
2603
+ var ManagedProductDescriptors = [1, n0, _MPDa,
2604
+ 0, () => ManagedProductDescriptor$
2605
+ ];
2606
+ var ManagedRuleGroupConfigs = [1, n0, _MRGCa,
2607
+ 0, () => ManagedRuleGroupConfig$
2608
+ ];
2609
+ var ManagedRuleGroupSummaries = [1, n0, _MRGSan,
2610
+ 0, () => ManagedRuleGroupSummary$
2611
+ ];
2612
+ var ManagedRuleGroupVersions = [1, n0, _MRGVa,
2613
+ 0, () => ManagedRuleGroupVersion$
2614
+ ];
2615
+ var ManagedRuleSetSummaries = [1, n0, _MRSSa,
2616
+ 0, () => ManagedRuleSetSummary$
2617
+ ];
2618
+ var MonetizationFilterList = [1, n0, _MFL,
2619
+ 0, () => MonetizationFilter$
2620
+ ];
2621
+ var PathStatisticsList = [1, n0, _PSL,
2622
+ 0, () => PathStatistics$
2623
+ ];
2624
+ var PaymentNetworks = [1, n0, _PN,
2625
+ 0, () => PaymentNetwork$
2626
+ ];
2627
+ var PhoneNumberFields = [1, n0, _PNFh,
2628
+ 0, () => PhoneNumberField$
2629
+ ];
2630
+ var Prices = [1, n0, _Pri,
2631
+ 0, () => Price$
2632
+ ];
2633
+ var RateBasedStatementCustomKeys = [1, n0, _RBSCKa,
2634
+ 0, () => RateBasedStatementCustomKey$
2635
+ ];
2636
+ var RedactedFields = [1, n0, _RF,
2637
+ 0, () => FieldToMatch$
2638
+ ];
2639
+ var RegexPatternSetSummaries = [1, n0, _RPSSe,
2640
+ 0, () => RegexPatternSetSummary$
2641
+ ];
2642
+ var RegularExpressionList = [1, n0, _REL,
2643
+ 0, () => Regex$
2644
+ ];
2645
+ var ReleaseSummaries = [1, n0, _RS,
2646
+ 0, () => ReleaseSummary$
2647
+ ];
2648
+ var RevenuePathStatisticsList = [1, n0, _RPSL,
2649
+ 0, () => RevenuePathStatistics$
2650
+ ];
2651
+ var RuleActionOverrides = [1, n0, _RAO,
2652
+ 0, () => RuleActionOverride$
2653
+ ];
2654
+ var RuleGroupSummaries = [1, n0, _RGSu,
2655
+ 0, () => RuleGroupSummary$
2656
+ ];
2657
+ var Rules = [1, n0, _Ru,
2658
+ 0, () => Rule$
2659
+ ];
2660
+ var RuleSummaries = [1, n0, _RSul,
2661
+ 0, () => RuleSummary$
2662
+ ];
2663
+ var SampledHTTPRequests = [1, n0, _SHTTPRa,
2664
+ 0, () => SampledHTTPRequest$
2665
+ ];
2666
+ var SettlementRecordList = [1, n0, _SRL,
2667
+ 0, () => SettlementRecord$
2668
+ ];
2669
+ var SourceStatisticsList = [1, n0, _SSL,
2670
+ 0, () => SourceStatistics$
2671
+ ];
2672
+ var Statements = [1, n0, _S,
2673
+ 0, () => Statement$
2674
+ ];
2675
+ var TagList = [1, n0, _TL,
2676
+ 0, () => Tag$
2677
+ ];
2678
+ var TextTransformations = [1, n0, _TT,
2679
+ 0, () => TextTransformation$
2680
+ ];
2681
+ var WebACLSummaries = [1, n0, _WACLSe,
2682
+ 0, () => WebACLSummary$
2683
+ ];
2684
+ var CustomResponseBodies = [2, n0, _CRB,
2685
+ 0, 0, () => CustomResponseBody$
2686
+ ];
2687
+ var PublishedVersions = [2, n0, _PV,
2688
+ 0, 0, () => ManagedRuleSetVersion$
2689
+ ];
2690
+ var RequestBody = [2, n0, _RB,
2691
+ 0, 0, () => RequestBodyAssociatedResourceTypeConfig$
2692
+ ];
2693
+ var VersionsToPublish = [2, n0, _VTP,
2694
+ 0, 0, () => VersionToPublish$
2695
+ ];
2696
+ var AssociateWebACL$ = [9, n0, _AWACL,
2697
+ 0, () => AssociateWebACLRequest$, () => AssociateWebACLResponse$
2698
+ ];
2699
+ var CheckCapacity$ = [9, n0, _CChe,
2700
+ 0, () => CheckCapacityRequest$, () => CheckCapacityResponse$
2701
+ ];
2702
+ var CreateAPIKey$ = [9, n0, _CAPIK,
2703
+ 0, () => CreateAPIKeyRequest$, () => CreateAPIKeyResponse$
2704
+ ];
2705
+ var CreateIPSet$ = [9, n0, _CIPS,
2706
+ 0, () => CreateIPSetRequest$, () => CreateIPSetResponse$
2707
+ ];
2708
+ var CreateRegexPatternSet$ = [9, n0, _CRPS,
2709
+ 0, () => CreateRegexPatternSetRequest$, () => CreateRegexPatternSetResponse$
2710
+ ];
2711
+ var CreateRuleGroup$ = [9, n0, _CRG,
2712
+ 0, () => CreateRuleGroupRequest$, () => CreateRuleGroupResponse$
2713
+ ];
2714
+ var CreateWebACL$ = [9, n0, _CWACL,
2715
+ 0, () => CreateWebACLRequest$, () => CreateWebACLResponse$
2716
+ ];
2717
+ var DeleteAPIKey$ = [9, n0, _DAPIK,
2718
+ 0, () => DeleteAPIKeyRequest$, () => DeleteAPIKeyResponse$
2719
+ ];
2720
+ var DeleteFirewallManagerRuleGroups$ = [9, n0, _DFMRG,
2721
+ 0, () => DeleteFirewallManagerRuleGroupsRequest$, () => DeleteFirewallManagerRuleGroupsResponse$
2722
+ ];
2723
+ var DeleteIPSet$ = [9, n0, _DIPS,
2724
+ 0, () => DeleteIPSetRequest$, () => DeleteIPSetResponse$
2725
+ ];
2726
+ var DeleteLoggingConfiguration$ = [9, n0, _DLC,
2727
+ 0, () => DeleteLoggingConfigurationRequest$, () => DeleteLoggingConfigurationResponse$
2728
+ ];
2729
+ var DeletePermissionPolicy$ = [9, n0, _DPP,
2730
+ 0, () => DeletePermissionPolicyRequest$, () => DeletePermissionPolicyResponse$
2731
+ ];
2732
+ var DeleteRegexPatternSet$ = [9, n0, _DRPS,
2733
+ 0, () => DeleteRegexPatternSetRequest$, () => DeleteRegexPatternSetResponse$
2734
+ ];
2735
+ var DeleteRuleGroup$ = [9, n0, _DRG,
2736
+ 0, () => DeleteRuleGroupRequest$, () => DeleteRuleGroupResponse$
2737
+ ];
2738
+ var DeleteWebACL$ = [9, n0, _DWACL,
2739
+ 0, () => DeleteWebACLRequest$, () => DeleteWebACLResponse$
2740
+ ];
2741
+ var DescribeAllManagedProducts$ = [9, n0, _DAMP,
2742
+ 0, () => DescribeAllManagedProductsRequest$, () => DescribeAllManagedProductsResponse$
2743
+ ];
2744
+ var DescribeManagedProductsByVendor$ = [9, n0, _DMPBV,
2745
+ 0, () => DescribeManagedProductsByVendorRequest$, () => DescribeManagedProductsByVendorResponse$
2746
+ ];
2747
+ var DescribeManagedRuleGroup$ = [9, n0, _DMRG,
2748
+ 0, () => DescribeManagedRuleGroupRequest$, () => DescribeManagedRuleGroupResponse$
2749
+ ];
2750
+ var DisassociateWebACL$ = [9, n0, _DWACLi,
2751
+ 0, () => DisassociateWebACLRequest$, () => DisassociateWebACLResponse$
2752
+ ];
2753
+ var GenerateMobileSdkReleaseUrl$ = [9, n0, _GMSRU,
2754
+ 0, () => GenerateMobileSdkReleaseUrlRequest$, () => GenerateMobileSdkReleaseUrlResponse$
2755
+ ];
2756
+ var GetDecryptedAPIKey$ = [9, n0, _GDAPIK,
2757
+ 0, () => GetDecryptedAPIKeyRequest$, () => GetDecryptedAPIKeyResponse$
2758
+ ];
2759
+ var GetIPSet$ = [9, n0, _GIPS,
2760
+ 0, () => GetIPSetRequest$, () => GetIPSetResponse$
2761
+ ];
2762
+ var GetLoggingConfiguration$ = [9, n0, _GLC,
2763
+ 0, () => GetLoggingConfigurationRequest$, () => GetLoggingConfigurationResponse$
2764
+ ];
2765
+ var GetManagedRuleSet$ = [9, n0, _GMRS,
2766
+ 0, () => GetManagedRuleSetRequest$, () => GetManagedRuleSetResponse$
2767
+ ];
2768
+ var GetMobileSdkRelease$ = [9, n0, _GMSR,
2769
+ 0, () => GetMobileSdkReleaseRequest$, () => GetMobileSdkReleaseResponse$
2770
+ ];
2771
+ var GetPermissionPolicy$ = [9, n0, _GPP,
2772
+ 0, () => GetPermissionPolicyRequest$, () => GetPermissionPolicyResponse$
2773
+ ];
2774
+ var GetRateBasedStatementManagedKeys$ = [9, n0, _GRBSMK,
2775
+ 0, () => GetRateBasedStatementManagedKeysRequest$, () => GetRateBasedStatementManagedKeysResponse$
2776
+ ];
2777
+ var GetRegexPatternSet$ = [9, n0, _GRPS,
2778
+ 0, () => GetRegexPatternSetRequest$, () => GetRegexPatternSetResponse$
2779
+ ];
2780
+ var GetRevenueStatistics$ = [9, n0, _GRS,
2781
+ 0, () => GetRevenueStatisticsRequest$, () => GetRevenueStatisticsResponse$
2782
+ ];
2783
+ var GetRevenueStatisticsSummary$ = [9, n0, _GRSS,
2784
+ 0, () => GetRevenueStatisticsSummaryRequest$, () => GetRevenueStatisticsSummaryResponse$
2785
+ ];
2786
+ var GetRevenueStatisticsTimeSeries$ = [9, n0, _GRSTS,
2787
+ 0, () => GetRevenueStatisticsTimeSeriesRequest$, () => GetRevenueStatisticsTimeSeriesResponse$
2788
+ ];
2789
+ var GetRuleGroup$ = [9, n0, _GRG,
2790
+ 0, () => GetRuleGroupRequest$, () => GetRuleGroupResponse$
2791
+ ];
2792
+ var GetSampledRequests$ = [9, n0, _GSR,
2793
+ 0, () => GetSampledRequestsRequest$, () => GetSampledRequestsResponse$
2794
+ ];
2795
+ var GetTopPathStatisticsByTraffic$ = [9, n0, _GTPSBT,
2796
+ 0, () => GetTopPathStatisticsByTrafficRequest$, () => GetTopPathStatisticsByTrafficResponse$
2797
+ ];
2798
+ var GetWebACL$ = [9, n0, _GWACL,
2799
+ 0, () => GetWebACLRequest$, () => GetWebACLResponse$
2800
+ ];
2801
+ var GetWebACLForResource$ = [9, n0, _GWACLFR,
2802
+ 0, () => GetWebACLForResourceRequest$, () => GetWebACLForResourceResponse$
2803
+ ];
2804
+ var ListAPIKeys$ = [9, n0, _LAPIK,
2805
+ 0, () => ListAPIKeysRequest$, () => ListAPIKeysResponse$
2806
+ ];
2807
+ var ListAvailableManagedRuleGroups$ = [9, n0, _LAMRG,
2808
+ 0, () => ListAvailableManagedRuleGroupsRequest$, () => ListAvailableManagedRuleGroupsResponse$
2809
+ ];
2810
+ var ListAvailableManagedRuleGroupVersions$ = [9, n0, _LAMRGV,
2811
+ 0, () => ListAvailableManagedRuleGroupVersionsRequest$, () => ListAvailableManagedRuleGroupVersionsResponse$
2812
+ ];
2813
+ var ListIPSets$ = [9, n0, _LIPS,
2814
+ 0, () => ListIPSetsRequest$, () => ListIPSetsResponse$
2815
+ ];
2816
+ var ListLoggingConfigurations$ = [9, n0, _LLC,
2817
+ 0, () => ListLoggingConfigurationsRequest$, () => ListLoggingConfigurationsResponse$
2818
+ ];
2819
+ var ListManagedRuleSets$ = [9, n0, _LMRS,
2820
+ 0, () => ListManagedRuleSetsRequest$, () => ListManagedRuleSetsResponse$
2821
+ ];
2822
+ var ListMobileSdkReleases$ = [9, n0, _LMSR,
2823
+ 0, () => ListMobileSdkReleasesRequest$, () => ListMobileSdkReleasesResponse$
2824
+ ];
2825
+ var ListRegexPatternSets$ = [9, n0, _LRPS,
2826
+ 0, () => ListRegexPatternSetsRequest$, () => ListRegexPatternSetsResponse$
2827
+ ];
2828
+ var ListResourcesForWebACL$ = [9, n0, _LRFWACL,
2829
+ 0, () => ListResourcesForWebACLRequest$, () => ListResourcesForWebACLResponse$
2830
+ ];
2831
+ var ListRuleGroups$ = [9, n0, _LRG,
2832
+ 0, () => ListRuleGroupsRequest$, () => ListRuleGroupsResponse$
2833
+ ];
2834
+ var ListSettlementRecords$ = [9, n0, _LSR,
2835
+ 0, () => ListSettlementRecordsRequest$, () => ListSettlementRecordsResponse$
2836
+ ];
2837
+ var ListTagsForResource$ = [9, n0, _LTFR,
2838
+ 0, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
2839
+ ];
2840
+ var ListWebACLs$ = [9, n0, _LWACL,
2841
+ 0, () => ListWebACLsRequest$, () => ListWebACLsResponse$
2842
+ ];
2843
+ var PutLoggingConfiguration$ = [9, n0, _PLC,
2844
+ 0, () => PutLoggingConfigurationRequest$, () => PutLoggingConfigurationResponse$
2845
+ ];
2846
+ var PutManagedRuleSetVersions$ = [9, n0, _PMRSV,
2847
+ 0, () => PutManagedRuleSetVersionsRequest$, () => PutManagedRuleSetVersionsResponse$
2848
+ ];
2849
+ var PutPermissionPolicy$ = [9, n0, _PPP,
2850
+ 0, () => PutPermissionPolicyRequest$, () => PutPermissionPolicyResponse$
2851
+ ];
2852
+ var TagResource$ = [9, n0, _TR,
2853
+ 0, () => TagResourceRequest$, () => TagResourceResponse$
2854
+ ];
2855
+ var UntagResource$ = [9, n0, _UR,
2856
+ 0, () => UntagResourceRequest$, () => UntagResourceResponse$
2857
+ ];
2858
+ var UpdateIPSet$ = [9, n0, _UIPS,
2859
+ 0, () => UpdateIPSetRequest$, () => UpdateIPSetResponse$
2860
+ ];
2861
+ var UpdateManagedRuleSetVersionExpiryDate$ = [9, n0, _UMRSVED,
2862
+ 0, () => UpdateManagedRuleSetVersionExpiryDateRequest$, () => UpdateManagedRuleSetVersionExpiryDateResponse$
2863
+ ];
2864
+ var UpdateRegexPatternSet$ = [9, n0, _URPS,
2865
+ 0, () => UpdateRegexPatternSetRequest$, () => UpdateRegexPatternSetResponse$
2866
+ ];
2867
+ var UpdateRuleGroup$ = [9, n0, _URG,
2868
+ 0, () => UpdateRuleGroupRequest$, () => UpdateRuleGroupResponse$
2869
+ ];
2870
+ var UpdateWebACL$ = [9, n0, _UWACL,
2871
+ 0, () => UpdateWebACLRequest$, () => UpdateWebACLResponse$
2872
+ ];
2873
+
2874
+ const getRuntimeConfig$1 = (config) => {
2875
+ return {
2876
+ apiVersion: "2019-07-29",
2877
+ base64Decoder: config?.base64Decoder ?? fromBase64,
2878
+ base64Encoder: config?.base64Encoder ?? toBase64,
2879
+ disableHostPrefix: config?.disableHostPrefix ?? false,
2880
+ endpointProvider: config?.endpointProvider ?? defaultEndpointResolver,
2881
+ extensions: config?.extensions ?? [],
2882
+ httpAuthSchemeProvider: config?.httpAuthSchemeProvider ?? defaultWAFV2HttpAuthSchemeProvider,
2883
+ httpAuthSchemes: config?.httpAuthSchemes ?? [
2884
+ {
2885
+ schemeId: "aws.auth#sigv4",
2886
+ identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
2887
+ signer: new AwsSdkSigV4Signer(),
2888
+ },
2889
+ ],
2890
+ logger: config?.logger ?? new NoOpLogger(),
2891
+ protocol: config?.protocol ?? AwsJson1_1Protocol,
2892
+ protocolSettings: config?.protocolSettings ?? {
2893
+ defaultNamespace: "com.amazonaws.wafv2",
2894
+ errorTypeRegistries,
2895
+ xmlNamespace: "http://waf.amazonaws.com/doc/2019-07-29/",
2896
+ version: "2019-07-29",
2897
+ serviceTarget: "AWSWAF_20190729",
2898
+ },
2899
+ serviceId: config?.serviceId ?? "WAFV2",
2900
+ urlParser: config?.urlParser ?? parseUrl,
2901
+ utf8Decoder: config?.utf8Decoder ?? fromUtf8,
2902
+ utf8Encoder: config?.utf8Encoder ?? toUtf8,
2903
+ };
2904
+ };
2905
+
2906
+ const getRuntimeConfig = (config) => {
2907
+ emitWarningIfUnsupportedVersion(process.version);
2908
+ const defaultsMode = resolveDefaultsModeConfig(config);
2909
+ const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
2910
+ const clientSharedValues = getRuntimeConfig$1(config);
2911
+ emitWarningIfUnsupportedVersion$1(process.version);
2912
+ const loaderConfig = {
2913
+ profile: config?.profile,
2914
+ logger: clientSharedValues.logger,
2915
+ };
2916
+ return {
2917
+ ...clientSharedValues,
2918
+ ...config,
2919
+ runtime: "node",
2920
+ defaultsMode,
2921
+ authSchemePreference: config?.authSchemePreference ?? loadConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
2922
+ bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
2923
+ credentialDefaultProvider: config?.credentialDefaultProvider ?? defaultProvider,
2924
+ defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
2925
+ maxAttempts: config?.maxAttempts ?? loadConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
2926
+ region: config?.region ?? loadConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
2927
+ requestHandler: NodeHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
2928
+ retryMode: config?.retryMode ??
2929
+ loadConfig({
2930
+ ...NODE_RETRY_MODE_CONFIG_OPTIONS,
2931
+ default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
2932
+ }, config),
2933
+ sha256: config?.sha256 ?? Hash.bind(null, "sha256"),
2934
+ streamCollector: config?.streamCollector ?? streamCollector,
2935
+ useDualstackEndpoint: config?.useDualstackEndpoint ?? loadConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
2936
+ useFipsEndpoint: config?.useFipsEndpoint ?? loadConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
2937
+ userAgentAppId: config?.userAgentAppId ?? loadConfig(NODE_APP_ID_CONFIG_OPTIONS, loaderConfig),
2938
+ };
2939
+ };
2940
+
34
2941
  const getHttpAuthExtensionConfiguration = (runtimeConfig) => {
35
2942
  const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
36
2943
  let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
@@ -1244,6 +4151,7 @@ const SensitivityLevel = {
1244
4151
  LOW: "LOW",
1245
4152
  };
1246
4153
  const AssociatedResourceType = {
4154
+ AGENTCORE_GATEWAY: "AGENTCORE_GATEWAY",
1247
4155
  API_GATEWAY: "API_GATEWAY",
1248
4156
  APP_RUNNER_SERVICE: "APP_RUNNER_SERVICE",
1249
4157
  CLOUDFRONT: "CLOUDFRONT",
@@ -1435,6 +4343,7 @@ const FailureReason = {
1435
4343
  TOKEN_MISSING: "TOKEN_MISSING",
1436
4344
  };
1437
4345
  const ResourceType = {
4346
+ AGENTCORE_GATEWAY: "AGENTCORE_GATEWAY",
1438
4347
  AMPLIFY: "AMPLIFY",
1439
4348
  API_GATEWAY: "API_GATEWAY",
1440
4349
  APPLICATION_LOAD_BALANCER: "APPLICATION_LOAD_BALANCER",
@@ -1458,110 +4367,483 @@ const SettlementStatus = {
1458
4367
  SKIPPED_ORIGIN_ERROR: "SKIPPED_ORIGIN_ERROR",
1459
4368
  };
1460
4369
 
4370
+ exports.APIKeySummary$ = APIKeySummary$;
4371
+ exports.AWSManagedRulesACFPRuleSet$ = AWSManagedRulesACFPRuleSet$;
4372
+ exports.AWSManagedRulesATPRuleSet$ = AWSManagedRulesATPRuleSet$;
4373
+ exports.AWSManagedRulesAntiDDoSRuleSet$ = AWSManagedRulesAntiDDoSRuleSet$;
4374
+ exports.AWSManagedRulesBotControlRuleSet$ = AWSManagedRulesBotControlRuleSet$;
4375
+ exports.ActionCondition$ = ActionCondition$;
1461
4376
  exports.ActionValue = ActionValue;
4377
+ exports.AddressField$ = AddressField$;
4378
+ exports.All$ = All$;
4379
+ exports.AllQueryArguments$ = AllQueryArguments$;
4380
+ exports.AllowAction$ = AllowAction$;
4381
+ exports.AndStatement$ = AndStatement$;
4382
+ exports.ApplicationAttribute$ = ApplicationAttribute$;
4383
+ exports.ApplicationConfig$ = ApplicationConfig$;
4384
+ exports.AsnMatchStatement$ = AsnMatchStatement$;
4385
+ exports.AssociateWebACL$ = AssociateWebACL$;
1462
4386
  exports.AssociateWebACLCommand = AssociateWebACLCommand;
4387
+ exports.AssociateWebACLRequest$ = AssociateWebACLRequest$;
4388
+ exports.AssociateWebACLResponse$ = AssociateWebACLResponse$;
1463
4389
  exports.AssociatedResourceType = AssociatedResourceType;
4390
+ exports.AssociationConfig$ = AssociationConfig$;
4391
+ exports.BlockAction$ = BlockAction$;
1464
4392
  exports.BlockchainChain = BlockchainChain;
4393
+ exports.Body$ = Body$;
1465
4394
  exports.BodyParsingFallbackBehavior = BodyParsingFallbackBehavior;
4395
+ exports.BotStatistics$ = BotStatistics$;
4396
+ exports.ByteMatchStatement$ = ByteMatchStatement$;
4397
+ exports.CaptchaAction$ = CaptchaAction$;
4398
+ exports.CaptchaConfig$ = CaptchaConfig$;
4399
+ exports.CaptchaResponse$ = CaptchaResponse$;
4400
+ exports.ChallengeAction$ = ChallengeAction$;
4401
+ exports.ChallengeConfig$ = ChallengeConfig$;
4402
+ exports.ChallengeResponse$ = ChallengeResponse$;
4403
+ exports.CheckCapacity$ = CheckCapacity$;
1466
4404
  exports.CheckCapacityCommand = CheckCapacityCommand;
4405
+ exports.CheckCapacityRequest$ = CheckCapacityRequest$;
4406
+ exports.CheckCapacityResponse$ = CheckCapacityResponse$;
4407
+ exports.ClientSideAction$ = ClientSideAction$;
4408
+ exports.ClientSideActionConfig$ = ClientSideActionConfig$;
1467
4409
  exports.ComparisonOperator = ComparisonOperator;
4410
+ exports.Condition$ = Condition$;
4411
+ exports.CookieMatchPattern$ = CookieMatchPattern$;
4412
+ exports.Cookies$ = Cookies$;
4413
+ exports.CountAction$ = CountAction$;
1468
4414
  exports.CountryCode = CountryCode;
4415
+ exports.CreateAPIKey$ = CreateAPIKey$;
1469
4416
  exports.CreateAPIKeyCommand = CreateAPIKeyCommand;
4417
+ exports.CreateAPIKeyRequest$ = CreateAPIKeyRequest$;
4418
+ exports.CreateAPIKeyResponse$ = CreateAPIKeyResponse$;
4419
+ exports.CreateIPSet$ = CreateIPSet$;
1470
4420
  exports.CreateIPSetCommand = CreateIPSetCommand;
4421
+ exports.CreateIPSetRequest$ = CreateIPSetRequest$;
4422
+ exports.CreateIPSetResponse$ = CreateIPSetResponse$;
4423
+ exports.CreateRegexPatternSet$ = CreateRegexPatternSet$;
1471
4424
  exports.CreateRegexPatternSetCommand = CreateRegexPatternSetCommand;
4425
+ exports.CreateRegexPatternSetRequest$ = CreateRegexPatternSetRequest$;
4426
+ exports.CreateRegexPatternSetResponse$ = CreateRegexPatternSetResponse$;
4427
+ exports.CreateRuleGroup$ = CreateRuleGroup$;
1472
4428
  exports.CreateRuleGroupCommand = CreateRuleGroupCommand;
4429
+ exports.CreateRuleGroupRequest$ = CreateRuleGroupRequest$;
4430
+ exports.CreateRuleGroupResponse$ = CreateRuleGroupResponse$;
4431
+ exports.CreateWebACL$ = CreateWebACL$;
1473
4432
  exports.CreateWebACLCommand = CreateWebACLCommand;
4433
+ exports.CreateWebACLRequest$ = CreateWebACLRequest$;
4434
+ exports.CreateWebACLResponse$ = CreateWebACLResponse$;
4435
+ exports.CryptoConfig$ = CryptoConfig$;
1474
4436
  exports.CryptoCurrency = CryptoCurrency;
1475
4437
  exports.Currency = Currency;
1476
4438
  exports.CurrencyMode = CurrencyMode;
4439
+ exports.CustomHTTPHeader$ = CustomHTTPHeader$;
4440
+ exports.CustomRequestHandling$ = CustomRequestHandling$;
4441
+ exports.CustomResponse$ = CustomResponse$;
4442
+ exports.CustomResponseBody$ = CustomResponseBody$;
4443
+ exports.DataPointEntry$ = DataPointEntry$;
4444
+ exports.DataProtection$ = DataProtection$;
1477
4445
  exports.DataProtectionAction = DataProtectionAction;
4446
+ exports.DataProtectionConfig$ = DataProtectionConfig$;
4447
+ exports.DefaultAction$ = DefaultAction$;
4448
+ exports.DeleteAPIKey$ = DeleteAPIKey$;
1478
4449
  exports.DeleteAPIKeyCommand = DeleteAPIKeyCommand;
4450
+ exports.DeleteAPIKeyRequest$ = DeleteAPIKeyRequest$;
4451
+ exports.DeleteAPIKeyResponse$ = DeleteAPIKeyResponse$;
4452
+ exports.DeleteFirewallManagerRuleGroups$ = DeleteFirewallManagerRuleGroups$;
1479
4453
  exports.DeleteFirewallManagerRuleGroupsCommand = DeleteFirewallManagerRuleGroupsCommand;
4454
+ exports.DeleteFirewallManagerRuleGroupsRequest$ = DeleteFirewallManagerRuleGroupsRequest$;
4455
+ exports.DeleteFirewallManagerRuleGroupsResponse$ = DeleteFirewallManagerRuleGroupsResponse$;
4456
+ exports.DeleteIPSet$ = DeleteIPSet$;
1480
4457
  exports.DeleteIPSetCommand = DeleteIPSetCommand;
4458
+ exports.DeleteIPSetRequest$ = DeleteIPSetRequest$;
4459
+ exports.DeleteIPSetResponse$ = DeleteIPSetResponse$;
4460
+ exports.DeleteLoggingConfiguration$ = DeleteLoggingConfiguration$;
1481
4461
  exports.DeleteLoggingConfigurationCommand = DeleteLoggingConfigurationCommand;
4462
+ exports.DeleteLoggingConfigurationRequest$ = DeleteLoggingConfigurationRequest$;
4463
+ exports.DeleteLoggingConfigurationResponse$ = DeleteLoggingConfigurationResponse$;
4464
+ exports.DeletePermissionPolicy$ = DeletePermissionPolicy$;
1482
4465
  exports.DeletePermissionPolicyCommand = DeletePermissionPolicyCommand;
4466
+ exports.DeletePermissionPolicyRequest$ = DeletePermissionPolicyRequest$;
4467
+ exports.DeletePermissionPolicyResponse$ = DeletePermissionPolicyResponse$;
4468
+ exports.DeleteRegexPatternSet$ = DeleteRegexPatternSet$;
1483
4469
  exports.DeleteRegexPatternSetCommand = DeleteRegexPatternSetCommand;
4470
+ exports.DeleteRegexPatternSetRequest$ = DeleteRegexPatternSetRequest$;
4471
+ exports.DeleteRegexPatternSetResponse$ = DeleteRegexPatternSetResponse$;
4472
+ exports.DeleteRuleGroup$ = DeleteRuleGroup$;
1484
4473
  exports.DeleteRuleGroupCommand = DeleteRuleGroupCommand;
4474
+ exports.DeleteRuleGroupRequest$ = DeleteRuleGroupRequest$;
4475
+ exports.DeleteRuleGroupResponse$ = DeleteRuleGroupResponse$;
4476
+ exports.DeleteWebACL$ = DeleteWebACL$;
1485
4477
  exports.DeleteWebACLCommand = DeleteWebACLCommand;
4478
+ exports.DeleteWebACLRequest$ = DeleteWebACLRequest$;
4479
+ exports.DeleteWebACLResponse$ = DeleteWebACLResponse$;
4480
+ exports.DescribeAllManagedProducts$ = DescribeAllManagedProducts$;
1486
4481
  exports.DescribeAllManagedProductsCommand = DescribeAllManagedProductsCommand;
4482
+ exports.DescribeAllManagedProductsRequest$ = DescribeAllManagedProductsRequest$;
4483
+ exports.DescribeAllManagedProductsResponse$ = DescribeAllManagedProductsResponse$;
4484
+ exports.DescribeManagedProductsByVendor$ = DescribeManagedProductsByVendor$;
1487
4485
  exports.DescribeManagedProductsByVendorCommand = DescribeManagedProductsByVendorCommand;
4486
+ exports.DescribeManagedProductsByVendorRequest$ = DescribeManagedProductsByVendorRequest$;
4487
+ exports.DescribeManagedProductsByVendorResponse$ = DescribeManagedProductsByVendorResponse$;
4488
+ exports.DescribeManagedRuleGroup$ = DescribeManagedRuleGroup$;
1488
4489
  exports.DescribeManagedRuleGroupCommand = DescribeManagedRuleGroupCommand;
4490
+ exports.DescribeManagedRuleGroupRequest$ = DescribeManagedRuleGroupRequest$;
4491
+ exports.DescribeManagedRuleGroupResponse$ = DescribeManagedRuleGroupResponse$;
4492
+ exports.DisallowedFeature$ = DisallowedFeature$;
4493
+ exports.DisassociateWebACL$ = DisassociateWebACL$;
1489
4494
  exports.DisassociateWebACLCommand = DisassociateWebACLCommand;
4495
+ exports.DisassociateWebACLRequest$ = DisassociateWebACLRequest$;
4496
+ exports.DisassociateWebACLResponse$ = DisassociateWebACLResponse$;
4497
+ exports.EmailField$ = EmailField$;
4498
+ exports.ExcludedRule$ = ExcludedRule$;
1490
4499
  exports.FailureReason = FailureReason;
1491
4500
  exports.FallbackBehavior = FallbackBehavior;
4501
+ exports.FieldToMatch$ = FieldToMatch$;
4502
+ exports.FieldToProtect$ = FieldToProtect$;
1492
4503
  exports.FieldToProtectType = FieldToProtectType;
4504
+ exports.Filter$ = Filter$;
1493
4505
  exports.FilterBehavior = FilterBehavior;
1494
4506
  exports.FilterRequirement = FilterRequirement;
4507
+ exports.FilterSource$ = FilterSource$;
4508
+ exports.FirewallManagerRuleGroup$ = FirewallManagerRuleGroup$;
4509
+ exports.FirewallManagerStatement$ = FirewallManagerStatement$;
4510
+ exports.ForwardedIPConfig$ = ForwardedIPConfig$;
1495
4511
  exports.ForwardedIPPosition = ForwardedIPPosition;
4512
+ exports.GenerateMobileSdkReleaseUrl$ = GenerateMobileSdkReleaseUrl$;
1496
4513
  exports.GenerateMobileSdkReleaseUrlCommand = GenerateMobileSdkReleaseUrlCommand;
4514
+ exports.GenerateMobileSdkReleaseUrlRequest$ = GenerateMobileSdkReleaseUrlRequest$;
4515
+ exports.GenerateMobileSdkReleaseUrlResponse$ = GenerateMobileSdkReleaseUrlResponse$;
4516
+ exports.GeoMatchStatement$ = GeoMatchStatement$;
4517
+ exports.GetDecryptedAPIKey$ = GetDecryptedAPIKey$;
1497
4518
  exports.GetDecryptedAPIKeyCommand = GetDecryptedAPIKeyCommand;
4519
+ exports.GetDecryptedAPIKeyRequest$ = GetDecryptedAPIKeyRequest$;
4520
+ exports.GetDecryptedAPIKeyResponse$ = GetDecryptedAPIKeyResponse$;
4521
+ exports.GetIPSet$ = GetIPSet$;
1498
4522
  exports.GetIPSetCommand = GetIPSetCommand;
4523
+ exports.GetIPSetRequest$ = GetIPSetRequest$;
4524
+ exports.GetIPSetResponse$ = GetIPSetResponse$;
4525
+ exports.GetLoggingConfiguration$ = GetLoggingConfiguration$;
1499
4526
  exports.GetLoggingConfigurationCommand = GetLoggingConfigurationCommand;
4527
+ exports.GetLoggingConfigurationRequest$ = GetLoggingConfigurationRequest$;
4528
+ exports.GetLoggingConfigurationResponse$ = GetLoggingConfigurationResponse$;
4529
+ exports.GetManagedRuleSet$ = GetManagedRuleSet$;
1500
4530
  exports.GetManagedRuleSetCommand = GetManagedRuleSetCommand;
4531
+ exports.GetManagedRuleSetRequest$ = GetManagedRuleSetRequest$;
4532
+ exports.GetManagedRuleSetResponse$ = GetManagedRuleSetResponse$;
4533
+ exports.GetMobileSdkRelease$ = GetMobileSdkRelease$;
1501
4534
  exports.GetMobileSdkReleaseCommand = GetMobileSdkReleaseCommand;
4535
+ exports.GetMobileSdkReleaseRequest$ = GetMobileSdkReleaseRequest$;
4536
+ exports.GetMobileSdkReleaseResponse$ = GetMobileSdkReleaseResponse$;
4537
+ exports.GetPermissionPolicy$ = GetPermissionPolicy$;
1502
4538
  exports.GetPermissionPolicyCommand = GetPermissionPolicyCommand;
4539
+ exports.GetPermissionPolicyRequest$ = GetPermissionPolicyRequest$;
4540
+ exports.GetPermissionPolicyResponse$ = GetPermissionPolicyResponse$;
4541
+ exports.GetRateBasedStatementManagedKeys$ = GetRateBasedStatementManagedKeys$;
1503
4542
  exports.GetRateBasedStatementManagedKeysCommand = GetRateBasedStatementManagedKeysCommand;
4543
+ exports.GetRateBasedStatementManagedKeysRequest$ = GetRateBasedStatementManagedKeysRequest$;
4544
+ exports.GetRateBasedStatementManagedKeysResponse$ = GetRateBasedStatementManagedKeysResponse$;
4545
+ exports.GetRegexPatternSet$ = GetRegexPatternSet$;
1504
4546
  exports.GetRegexPatternSetCommand = GetRegexPatternSetCommand;
4547
+ exports.GetRegexPatternSetRequest$ = GetRegexPatternSetRequest$;
4548
+ exports.GetRegexPatternSetResponse$ = GetRegexPatternSetResponse$;
4549
+ exports.GetRevenueStatistics$ = GetRevenueStatistics$;
1505
4550
  exports.GetRevenueStatisticsCommand = GetRevenueStatisticsCommand;
4551
+ exports.GetRevenueStatisticsRequest$ = GetRevenueStatisticsRequest$;
4552
+ exports.GetRevenueStatisticsResponse$ = GetRevenueStatisticsResponse$;
4553
+ exports.GetRevenueStatisticsSummary$ = GetRevenueStatisticsSummary$;
1506
4554
  exports.GetRevenueStatisticsSummaryCommand = GetRevenueStatisticsSummaryCommand;
4555
+ exports.GetRevenueStatisticsSummaryRequest$ = GetRevenueStatisticsSummaryRequest$;
4556
+ exports.GetRevenueStatisticsSummaryResponse$ = GetRevenueStatisticsSummaryResponse$;
4557
+ exports.GetRevenueStatisticsTimeSeries$ = GetRevenueStatisticsTimeSeries$;
1507
4558
  exports.GetRevenueStatisticsTimeSeriesCommand = GetRevenueStatisticsTimeSeriesCommand;
4559
+ exports.GetRevenueStatisticsTimeSeriesRequest$ = GetRevenueStatisticsTimeSeriesRequest$;
4560
+ exports.GetRevenueStatisticsTimeSeriesResponse$ = GetRevenueStatisticsTimeSeriesResponse$;
4561
+ exports.GetRuleGroup$ = GetRuleGroup$;
1508
4562
  exports.GetRuleGroupCommand = GetRuleGroupCommand;
4563
+ exports.GetRuleGroupRequest$ = GetRuleGroupRequest$;
4564
+ exports.GetRuleGroupResponse$ = GetRuleGroupResponse$;
4565
+ exports.GetSampledRequests$ = GetSampledRequests$;
1509
4566
  exports.GetSampledRequestsCommand = GetSampledRequestsCommand;
4567
+ exports.GetSampledRequestsRequest$ = GetSampledRequestsRequest$;
4568
+ exports.GetSampledRequestsResponse$ = GetSampledRequestsResponse$;
4569
+ exports.GetTopPathStatisticsByTraffic$ = GetTopPathStatisticsByTraffic$;
1510
4570
  exports.GetTopPathStatisticsByTrafficCommand = GetTopPathStatisticsByTrafficCommand;
4571
+ exports.GetTopPathStatisticsByTrafficRequest$ = GetTopPathStatisticsByTrafficRequest$;
4572
+ exports.GetTopPathStatisticsByTrafficResponse$ = GetTopPathStatisticsByTrafficResponse$;
4573
+ exports.GetWebACL$ = GetWebACL$;
1511
4574
  exports.GetWebACLCommand = GetWebACLCommand;
4575
+ exports.GetWebACLForResource$ = GetWebACLForResource$;
1512
4576
  exports.GetWebACLForResourceCommand = GetWebACLForResourceCommand;
4577
+ exports.GetWebACLForResourceRequest$ = GetWebACLForResourceRequest$;
4578
+ exports.GetWebACLForResourceResponse$ = GetWebACLForResourceResponse$;
4579
+ exports.GetWebACLRequest$ = GetWebACLRequest$;
4580
+ exports.GetWebACLResponse$ = GetWebACLResponse$;
1513
4581
  exports.GroupByType = GroupByType;
4582
+ exports.HTTPHeader$ = HTTPHeader$;
4583
+ exports.HTTPRequest$ = HTTPRequest$;
4584
+ exports.HeaderMatchPattern$ = HeaderMatchPattern$;
4585
+ exports.HeaderOrder$ = HeaderOrder$;
4586
+ exports.Headers$ = Headers$;
1514
4587
  exports.IPAddressVersion = IPAddressVersion;
4588
+ exports.IPSet$ = IPSet$;
4589
+ exports.IPSetForwardedIPConfig$ = IPSetForwardedIPConfig$;
4590
+ exports.IPSetReferenceStatement$ = IPSetReferenceStatement$;
4591
+ exports.IPSetSummary$ = IPSetSummary$;
4592
+ exports.ImmunityTimeProperty$ = ImmunityTimeProperty$;
1515
4593
  exports.InspectionLevel = InspectionLevel;
1516
4594
  exports.IntervalType = IntervalType;
4595
+ exports.JA3Fingerprint$ = JA3Fingerprint$;
4596
+ exports.JA4Fingerprint$ = JA4Fingerprint$;
4597
+ exports.JsonBody$ = JsonBody$;
4598
+ exports.JsonMatchPattern$ = JsonMatchPattern$;
1517
4599
  exports.JsonMatchScope = JsonMatchScope;
4600
+ exports.Label$ = Label$;
1518
4601
  exports.LabelMatchScope = LabelMatchScope;
4602
+ exports.LabelMatchStatement$ = LabelMatchStatement$;
4603
+ exports.LabelNameCondition$ = LabelNameCondition$;
4604
+ exports.LabelSummary$ = LabelSummary$;
4605
+ exports.ListAPIKeys$ = ListAPIKeys$;
1519
4606
  exports.ListAPIKeysCommand = ListAPIKeysCommand;
4607
+ exports.ListAPIKeysRequest$ = ListAPIKeysRequest$;
4608
+ exports.ListAPIKeysResponse$ = ListAPIKeysResponse$;
4609
+ exports.ListAvailableManagedRuleGroupVersions$ = ListAvailableManagedRuleGroupVersions$;
1520
4610
  exports.ListAvailableManagedRuleGroupVersionsCommand = ListAvailableManagedRuleGroupVersionsCommand;
4611
+ exports.ListAvailableManagedRuleGroupVersionsRequest$ = ListAvailableManagedRuleGroupVersionsRequest$;
4612
+ exports.ListAvailableManagedRuleGroupVersionsResponse$ = ListAvailableManagedRuleGroupVersionsResponse$;
4613
+ exports.ListAvailableManagedRuleGroups$ = ListAvailableManagedRuleGroups$;
1521
4614
  exports.ListAvailableManagedRuleGroupsCommand = ListAvailableManagedRuleGroupsCommand;
4615
+ exports.ListAvailableManagedRuleGroupsRequest$ = ListAvailableManagedRuleGroupsRequest$;
4616
+ exports.ListAvailableManagedRuleGroupsResponse$ = ListAvailableManagedRuleGroupsResponse$;
4617
+ exports.ListIPSets$ = ListIPSets$;
1522
4618
  exports.ListIPSetsCommand = ListIPSetsCommand;
4619
+ exports.ListIPSetsRequest$ = ListIPSetsRequest$;
4620
+ exports.ListIPSetsResponse$ = ListIPSetsResponse$;
4621
+ exports.ListLoggingConfigurations$ = ListLoggingConfigurations$;
1523
4622
  exports.ListLoggingConfigurationsCommand = ListLoggingConfigurationsCommand;
4623
+ exports.ListLoggingConfigurationsRequest$ = ListLoggingConfigurationsRequest$;
4624
+ exports.ListLoggingConfigurationsResponse$ = ListLoggingConfigurationsResponse$;
4625
+ exports.ListManagedRuleSets$ = ListManagedRuleSets$;
1524
4626
  exports.ListManagedRuleSetsCommand = ListManagedRuleSetsCommand;
4627
+ exports.ListManagedRuleSetsRequest$ = ListManagedRuleSetsRequest$;
4628
+ exports.ListManagedRuleSetsResponse$ = ListManagedRuleSetsResponse$;
4629
+ exports.ListMobileSdkReleases$ = ListMobileSdkReleases$;
1525
4630
  exports.ListMobileSdkReleasesCommand = ListMobileSdkReleasesCommand;
4631
+ exports.ListMobileSdkReleasesRequest$ = ListMobileSdkReleasesRequest$;
4632
+ exports.ListMobileSdkReleasesResponse$ = ListMobileSdkReleasesResponse$;
4633
+ exports.ListRegexPatternSets$ = ListRegexPatternSets$;
1526
4634
  exports.ListRegexPatternSetsCommand = ListRegexPatternSetsCommand;
4635
+ exports.ListRegexPatternSetsRequest$ = ListRegexPatternSetsRequest$;
4636
+ exports.ListRegexPatternSetsResponse$ = ListRegexPatternSetsResponse$;
4637
+ exports.ListResourcesForWebACL$ = ListResourcesForWebACL$;
1527
4638
  exports.ListResourcesForWebACLCommand = ListResourcesForWebACLCommand;
4639
+ exports.ListResourcesForWebACLRequest$ = ListResourcesForWebACLRequest$;
4640
+ exports.ListResourcesForWebACLResponse$ = ListResourcesForWebACLResponse$;
4641
+ exports.ListRuleGroups$ = ListRuleGroups$;
1528
4642
  exports.ListRuleGroupsCommand = ListRuleGroupsCommand;
4643
+ exports.ListRuleGroupsRequest$ = ListRuleGroupsRequest$;
4644
+ exports.ListRuleGroupsResponse$ = ListRuleGroupsResponse$;
4645
+ exports.ListSettlementRecords$ = ListSettlementRecords$;
1529
4646
  exports.ListSettlementRecordsCommand = ListSettlementRecordsCommand;
4647
+ exports.ListSettlementRecordsRequest$ = ListSettlementRecordsRequest$;
4648
+ exports.ListSettlementRecordsResponse$ = ListSettlementRecordsResponse$;
4649
+ exports.ListTagsForResource$ = ListTagsForResource$;
1530
4650
  exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
4651
+ exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
4652
+ exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
4653
+ exports.ListWebACLs$ = ListWebACLs$;
1531
4654
  exports.ListWebACLsCommand = ListWebACLsCommand;
4655
+ exports.ListWebACLsRequest$ = ListWebACLsRequest$;
4656
+ exports.ListWebACLsResponse$ = ListWebACLsResponse$;
1532
4657
  exports.LogScope = LogScope;
1533
4658
  exports.LogType = LogType;
4659
+ exports.LoggingConfiguration$ = LoggingConfiguration$;
4660
+ exports.LoggingFilter$ = LoggingFilter$;
1534
4661
  exports.LowReputationMode = LowReputationMode;
4662
+ exports.ManagedProductDescriptor$ = ManagedProductDescriptor$;
4663
+ exports.ManagedRuleGroupConfig$ = ManagedRuleGroupConfig$;
4664
+ exports.ManagedRuleGroupStatement$ = ManagedRuleGroupStatement$;
4665
+ exports.ManagedRuleGroupSummary$ = ManagedRuleGroupSummary$;
4666
+ exports.ManagedRuleGroupVersion$ = ManagedRuleGroupVersion$;
4667
+ exports.ManagedRuleSet$ = ManagedRuleSet$;
4668
+ exports.ManagedRuleSetSummary$ = ManagedRuleSetSummary$;
4669
+ exports.ManagedRuleSetVersion$ = ManagedRuleSetVersion$;
1535
4670
  exports.MapMatchScope = MapMatchScope;
4671
+ exports.Method$ = Method$;
4672
+ exports.MobileSdkRelease$ = MobileSdkRelease$;
4673
+ exports.MonetizationConfig$ = MonetizationConfig$;
4674
+ exports.MonetizationFilter$ = MonetizationFilter$;
4675
+ exports.MonetizeAction$ = MonetizeAction$;
4676
+ exports.NoneAction$ = NoneAction$;
4677
+ exports.NotStatement$ = NotStatement$;
4678
+ exports.OnSourceDDoSProtectionConfig$ = OnSourceDDoSProtectionConfig$;
4679
+ exports.OrStatement$ = OrStatement$;
4680
+ exports.OverrideAction$ = OverrideAction$;
1536
4681
  exports.OversizeHandling = OversizeHandling;
1537
4682
  exports.ParameterExceptionField = ParameterExceptionField;
4683
+ exports.PasswordField$ = PasswordField$;
4684
+ exports.PathStatistics$ = PathStatistics$;
1538
4685
  exports.PayloadType = PayloadType;
4686
+ exports.PaymentNetwork$ = PaymentNetwork$;
4687
+ exports.PhoneNumberField$ = PhoneNumberField$;
1539
4688
  exports.Platform = Platform;
1540
4689
  exports.PositionalConstraint = PositionalConstraint;
4690
+ exports.Price$ = Price$;
4691
+ exports.PutLoggingConfiguration$ = PutLoggingConfiguration$;
1541
4692
  exports.PutLoggingConfigurationCommand = PutLoggingConfigurationCommand;
4693
+ exports.PutLoggingConfigurationRequest$ = PutLoggingConfigurationRequest$;
4694
+ exports.PutLoggingConfigurationResponse$ = PutLoggingConfigurationResponse$;
4695
+ exports.PutManagedRuleSetVersions$ = PutManagedRuleSetVersions$;
1542
4696
  exports.PutManagedRuleSetVersionsCommand = PutManagedRuleSetVersionsCommand;
4697
+ exports.PutManagedRuleSetVersionsRequest$ = PutManagedRuleSetVersionsRequest$;
4698
+ exports.PutManagedRuleSetVersionsResponse$ = PutManagedRuleSetVersionsResponse$;
4699
+ exports.PutPermissionPolicy$ = PutPermissionPolicy$;
1543
4700
  exports.PutPermissionPolicyCommand = PutPermissionPolicyCommand;
4701
+ exports.PutPermissionPolicyRequest$ = PutPermissionPolicyRequest$;
4702
+ exports.PutPermissionPolicyResponse$ = PutPermissionPolicyResponse$;
4703
+ exports.QueryString$ = QueryString$;
1544
4704
  exports.RankingSortBy = RankingSortBy;
1545
4705
  exports.RankingStatisticType = RankingStatisticType;
4706
+ exports.RateBasedStatement$ = RateBasedStatement$;
1546
4707
  exports.RateBasedStatementAggregateKeyType = RateBasedStatementAggregateKeyType;
4708
+ exports.RateBasedStatementCustomKey$ = RateBasedStatementCustomKey$;
4709
+ exports.RateBasedStatementManagedKeysIPSet$ = RateBasedStatementManagedKeysIPSet$;
4710
+ exports.RateLimitAsn$ = RateLimitAsn$;
4711
+ exports.RateLimitCookie$ = RateLimitCookie$;
4712
+ exports.RateLimitForwardedIP$ = RateLimitForwardedIP$;
4713
+ exports.RateLimitHTTPMethod$ = RateLimitHTTPMethod$;
4714
+ exports.RateLimitHeader$ = RateLimitHeader$;
4715
+ exports.RateLimitIP$ = RateLimitIP$;
4716
+ exports.RateLimitJA3Fingerprint$ = RateLimitJA3Fingerprint$;
4717
+ exports.RateLimitJA4Fingerprint$ = RateLimitJA4Fingerprint$;
4718
+ exports.RateLimitLabelNamespace$ = RateLimitLabelNamespace$;
4719
+ exports.RateLimitQueryArgument$ = RateLimitQueryArgument$;
4720
+ exports.RateLimitQueryString$ = RateLimitQueryString$;
4721
+ exports.RateLimitUriPath$ = RateLimitUriPath$;
4722
+ exports.Regex$ = Regex$;
4723
+ exports.RegexMatchStatement$ = RegexMatchStatement$;
4724
+ exports.RegexPatternSet$ = RegexPatternSet$;
4725
+ exports.RegexPatternSetReferenceStatement$ = RegexPatternSetReferenceStatement$;
4726
+ exports.RegexPatternSetSummary$ = RegexPatternSetSummary$;
4727
+ exports.ReleaseSummary$ = ReleaseSummary$;
4728
+ exports.RequestBodyAssociatedResourceTypeConfig$ = RequestBodyAssociatedResourceTypeConfig$;
4729
+ exports.RequestInspection$ = RequestInspection$;
4730
+ exports.RequestInspectionACFP$ = RequestInspectionACFP$;
1547
4731
  exports.ResourceType = ResourceType;
1548
4732
  exports.ResponseContentType = ResponseContentType;
4733
+ exports.ResponseInspection$ = ResponseInspection$;
4734
+ exports.ResponseInspectionBodyContains$ = ResponseInspectionBodyContains$;
4735
+ exports.ResponseInspectionHeader$ = ResponseInspectionHeader$;
4736
+ exports.ResponseInspectionJson$ = ResponseInspectionJson$;
4737
+ exports.ResponseInspectionStatusCode$ = ResponseInspectionStatusCode$;
4738
+ exports.RevenueBreakdown$ = RevenueBreakdown$;
4739
+ exports.RevenuePathStatistics$ = RevenuePathStatistics$;
4740
+ exports.Rule$ = Rule$;
4741
+ exports.RuleAction$ = RuleAction$;
4742
+ exports.RuleActionOverride$ = RuleActionOverride$;
4743
+ exports.RuleGroup$ = RuleGroup$;
4744
+ exports.RuleGroupReferenceStatement$ = RuleGroupReferenceStatement$;
4745
+ exports.RuleGroupSummary$ = RuleGroupSummary$;
4746
+ exports.RuleSummary$ = RuleSummary$;
4747
+ exports.SampledHTTPRequest$ = SampledHTTPRequest$;
1549
4748
  exports.Scope = Scope;
1550
4749
  exports.SensitivityLevel = SensitivityLevel;
1551
4750
  exports.SensitivityToAct = SensitivityToAct;
4751
+ exports.SettlementRecord$ = SettlementRecord$;
1552
4752
  exports.SettlementSortBy = SettlementSortBy;
1553
4753
  exports.SettlementStatus = SettlementStatus;
4754
+ exports.SingleHeader$ = SingleHeader$;
4755
+ exports.SingleQueryArgument$ = SingleQueryArgument$;
4756
+ exports.SizeConstraintStatement$ = SizeConstraintStatement$;
1554
4757
  exports.SizeInspectionLimit = SizeInspectionLimit;
1555
4758
  exports.SortOrder = SortOrder;
4759
+ exports.SourceStatistics$ = SourceStatistics$;
4760
+ exports.SqliMatchStatement$ = SqliMatchStatement$;
4761
+ exports.Statement$ = Statement$;
4762
+ exports.Tag$ = Tag$;
4763
+ exports.TagInfoForResource$ = TagInfoForResource$;
4764
+ exports.TagResource$ = TagResource$;
1556
4765
  exports.TagResourceCommand = TagResourceCommand;
4766
+ exports.TagResourceRequest$ = TagResourceRequest$;
4767
+ exports.TagResourceResponse$ = TagResourceResponse$;
4768
+ exports.TextTransformation$ = TextTransformation$;
1557
4769
  exports.TextTransformationType = TextTransformationType;
1558
4770
  exports.TimeSeriesStatisticType = TimeSeriesStatisticType;
4771
+ exports.TimeWindow$ = TimeWindow$;
4772
+ exports.UntagResource$ = UntagResource$;
1559
4773
  exports.UntagResourceCommand = UntagResourceCommand;
4774
+ exports.UntagResourceRequest$ = UntagResourceRequest$;
4775
+ exports.UntagResourceResponse$ = UntagResourceResponse$;
4776
+ exports.UpdateIPSet$ = UpdateIPSet$;
1560
4777
  exports.UpdateIPSetCommand = UpdateIPSetCommand;
4778
+ exports.UpdateIPSetRequest$ = UpdateIPSetRequest$;
4779
+ exports.UpdateIPSetResponse$ = UpdateIPSetResponse$;
4780
+ exports.UpdateManagedRuleSetVersionExpiryDate$ = UpdateManagedRuleSetVersionExpiryDate$;
1561
4781
  exports.UpdateManagedRuleSetVersionExpiryDateCommand = UpdateManagedRuleSetVersionExpiryDateCommand;
4782
+ exports.UpdateManagedRuleSetVersionExpiryDateRequest$ = UpdateManagedRuleSetVersionExpiryDateRequest$;
4783
+ exports.UpdateManagedRuleSetVersionExpiryDateResponse$ = UpdateManagedRuleSetVersionExpiryDateResponse$;
4784
+ exports.UpdateRegexPatternSet$ = UpdateRegexPatternSet$;
1562
4785
  exports.UpdateRegexPatternSetCommand = UpdateRegexPatternSetCommand;
4786
+ exports.UpdateRegexPatternSetRequest$ = UpdateRegexPatternSetRequest$;
4787
+ exports.UpdateRegexPatternSetResponse$ = UpdateRegexPatternSetResponse$;
4788
+ exports.UpdateRuleGroup$ = UpdateRuleGroup$;
1563
4789
  exports.UpdateRuleGroupCommand = UpdateRuleGroupCommand;
4790
+ exports.UpdateRuleGroupRequest$ = UpdateRuleGroupRequest$;
4791
+ exports.UpdateRuleGroupResponse$ = UpdateRuleGroupResponse$;
4792
+ exports.UpdateWebACL$ = UpdateWebACL$;
1564
4793
  exports.UpdateWebACLCommand = UpdateWebACLCommand;
4794
+ exports.UpdateWebACLRequest$ = UpdateWebACLRequest$;
4795
+ exports.UpdateWebACLResponse$ = UpdateWebACLResponse$;
4796
+ exports.UriFragment$ = UriFragment$;
4797
+ exports.UriPath$ = UriPath$;
1565
4798
  exports.UsageOfAction = UsageOfAction;
4799
+ exports.UsernameField$ = UsernameField$;
4800
+ exports.VersionToPublish$ = VersionToPublish$;
4801
+ exports.VisibilityConfig$ = VisibilityConfig$;
4802
+ exports.WAFAssociatedItemException = WAFAssociatedItemException;
4803
+ exports.WAFAssociatedItemException$ = WAFAssociatedItemException$;
4804
+ exports.WAFConfigurationWarningException = WAFConfigurationWarningException;
4805
+ exports.WAFConfigurationWarningException$ = WAFConfigurationWarningException$;
4806
+ exports.WAFDuplicateItemException = WAFDuplicateItemException;
4807
+ exports.WAFDuplicateItemException$ = WAFDuplicateItemException$;
4808
+ exports.WAFExpiredManagedRuleGroupVersionException = WAFExpiredManagedRuleGroupVersionException;
4809
+ exports.WAFExpiredManagedRuleGroupVersionException$ = WAFExpiredManagedRuleGroupVersionException$;
4810
+ exports.WAFFeatureNotIncludedInPricingPlanException = WAFFeatureNotIncludedInPricingPlanException;
4811
+ exports.WAFFeatureNotIncludedInPricingPlanException$ = WAFFeatureNotIncludedInPricingPlanException$;
4812
+ exports.WAFInternalErrorException = WAFInternalErrorException;
4813
+ exports.WAFInternalErrorException$ = WAFInternalErrorException$;
4814
+ exports.WAFInvalidOperationException = WAFInvalidOperationException;
4815
+ exports.WAFInvalidOperationException$ = WAFInvalidOperationException$;
4816
+ exports.WAFInvalidParameterException = WAFInvalidParameterException;
4817
+ exports.WAFInvalidParameterException$ = WAFInvalidParameterException$;
4818
+ exports.WAFInvalidPermissionPolicyException = WAFInvalidPermissionPolicyException;
4819
+ exports.WAFInvalidPermissionPolicyException$ = WAFInvalidPermissionPolicyException$;
4820
+ exports.WAFInvalidResourceException = WAFInvalidResourceException;
4821
+ exports.WAFInvalidResourceException$ = WAFInvalidResourceException$;
4822
+ exports.WAFLimitsExceededException = WAFLimitsExceededException;
4823
+ exports.WAFLimitsExceededException$ = WAFLimitsExceededException$;
4824
+ exports.WAFLogDestinationPermissionIssueException = WAFLogDestinationPermissionIssueException;
4825
+ exports.WAFLogDestinationPermissionIssueException$ = WAFLogDestinationPermissionIssueException$;
4826
+ exports.WAFNonexistentItemException = WAFNonexistentItemException;
4827
+ exports.WAFNonexistentItemException$ = WAFNonexistentItemException$;
4828
+ exports.WAFOptimisticLockException = WAFOptimisticLockException;
4829
+ exports.WAFOptimisticLockException$ = WAFOptimisticLockException$;
4830
+ exports.WAFServiceLinkedRoleErrorException = WAFServiceLinkedRoleErrorException;
4831
+ exports.WAFServiceLinkedRoleErrorException$ = WAFServiceLinkedRoleErrorException$;
4832
+ exports.WAFSubscriptionNotFoundException = WAFSubscriptionNotFoundException;
4833
+ exports.WAFSubscriptionNotFoundException$ = WAFSubscriptionNotFoundException$;
4834
+ exports.WAFTagOperationException = WAFTagOperationException;
4835
+ exports.WAFTagOperationException$ = WAFTagOperationException$;
4836
+ exports.WAFTagOperationInternalErrorException = WAFTagOperationInternalErrorException;
4837
+ exports.WAFTagOperationInternalErrorException$ = WAFTagOperationInternalErrorException$;
4838
+ exports.WAFUnavailableEntityException = WAFUnavailableEntityException;
4839
+ exports.WAFUnavailableEntityException$ = WAFUnavailableEntityException$;
4840
+ exports.WAFUnsupportedAggregateKeyTypeException = WAFUnsupportedAggregateKeyTypeException;
4841
+ exports.WAFUnsupportedAggregateKeyTypeException$ = WAFUnsupportedAggregateKeyTypeException$;
1566
4842
  exports.WAFV2 = WAFV2;
1567
4843
  exports.WAFV2Client = WAFV2Client;
4844
+ exports.WAFV2ServiceException = WAFV2ServiceException;
4845
+ exports.WAFV2ServiceException$ = WAFV2ServiceException$;
4846
+ exports.WebACL$ = WebACL$;
4847
+ exports.WebACLSummary$ = WebACLSummary$;
4848
+ exports.XssMatchStatement$ = XssMatchStatement$;
4849
+ exports.errorTypeRegistries = errorTypeRegistries;