@aws-sdk/client-waf-regional 3.1075.0 → 3.1077.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 +2796 -15
- package/dist-es/runtimeConfig.browser.js +0 -2
- package/dist-es/runtimeConfig.js +1 -2
- package/dist-es/runtimeConfig.native.js +0 -2
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-types/runtimeConfig.browser.d.ts +2 -2
- package/dist-types/runtimeConfig.d.ts +2 -2
- package/dist-types/runtimeConfig.native.d.ts +2 -2
- package/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +8 -2
- package/dist-types/ts3.4/runtimeConfig.d.ts +8 -2
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +8 -2
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -0
- package/package.json +8 -10
- package/dist-cjs/auth/httpAuthSchemeProvider.js +0 -40
- package/dist-cjs/endpoint/bdd.js +0 -46
- package/dist-cjs/endpoint/endpointResolver.js +0 -14
- package/dist-cjs/models/WAFRegionalServiceException.js +0 -8
- package/dist-cjs/models/errors.js +0 -251
- package/dist-cjs/runtimeConfig.browser.js +0 -32
- package/dist-cjs/runtimeConfig.js +0 -45
- package/dist-cjs/runtimeConfig.native.js +0 -12
- package/dist-cjs/runtimeConfig.shared.js +0 -39
- package/dist-cjs/schemas/schemas_0.js +0 -2261
package/dist-cjs/index.js
CHANGED
|
@@ -1,21 +1,58 @@
|
|
|
1
|
-
|
|
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 {
|
|
13
|
-
const {
|
|
14
|
-
const {
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
const {
|
|
18
|
-
|
|
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, calculateBodyLength } = require("@smithy/core/serde");
|
|
14
|
+
const { streamCollector, NodeHttpHandler } = require("@smithy/node-http-handler");
|
|
15
|
+
const { AwsJson1_1Protocol } = require("@aws-sdk/core/protocols");
|
|
16
|
+
const { Sha256 } = require("@smithy/core/checksum");
|
|
17
|
+
|
|
18
|
+
const defaultWAFRegionalHttpAuthSchemeParametersProvider = async (config, context, input) => {
|
|
19
|
+
return {
|
|
20
|
+
operation: getSmithyContext(context).operation,
|
|
21
|
+
region: await normalizeProvider(config.region)() || (() => {
|
|
22
|
+
throw new Error("expected `region` to be configured for `aws.auth#sigv4`");
|
|
23
|
+
})(),
|
|
24
|
+
};
|
|
25
|
+
};
|
|
26
|
+
function createAwsAuthSigv4HttpAuthOption(authParameters) {
|
|
27
|
+
return {
|
|
28
|
+
schemeId: "aws.auth#sigv4",
|
|
29
|
+
signingProperties: {
|
|
30
|
+
name: "waf-regional",
|
|
31
|
+
region: authParameters.region,
|
|
32
|
+
},
|
|
33
|
+
propertiesExtractor: (config, context) => ({
|
|
34
|
+
signingProperties: {
|
|
35
|
+
config,
|
|
36
|
+
context,
|
|
37
|
+
},
|
|
38
|
+
}),
|
|
39
|
+
};
|
|
40
|
+
}
|
|
41
|
+
const defaultWAFRegionalHttpAuthSchemeProvider = (authParameters) => {
|
|
42
|
+
const options = [];
|
|
43
|
+
switch (authParameters.operation) {
|
|
44
|
+
default: {
|
|
45
|
+
options.push(createAwsAuthSigv4HttpAuthOption(authParameters));
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
return options;
|
|
49
|
+
};
|
|
50
|
+
const resolveHttpAuthSchemeConfig = (config) => {
|
|
51
|
+
const config_0 = resolveAwsSdkSigV4Config(config);
|
|
52
|
+
return Object.assign(config_0, {
|
|
53
|
+
authSchemePreference: normalizeProvider(config.authSchemePreference ?? []),
|
|
54
|
+
});
|
|
55
|
+
};
|
|
19
56
|
|
|
20
57
|
const resolveClientEndpointParameters = (options) => {
|
|
21
58
|
return Object.assign(options, {
|
|
@@ -31,6 +68,2409 @@ const commonParams = {
|
|
|
31
68
|
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
32
69
|
};
|
|
33
70
|
|
|
71
|
+
var version = "3.1076.0";
|
|
72
|
+
var packageInfo = {
|
|
73
|
+
version: version};
|
|
74
|
+
|
|
75
|
+
const k = "ref";
|
|
76
|
+
const a = -1, b = true, c = "isSet", d = "PartitionResult", e = "booleanEquals", f = "getAttr", g = { [k]: "Endpoint" }, h = { [k]: d }, i = {}, j = [{ [k]: "Region" }];
|
|
77
|
+
const _data = {
|
|
78
|
+
conditions: [
|
|
79
|
+
[c, [g]],
|
|
80
|
+
[c, j],
|
|
81
|
+
["aws.partition", j, d],
|
|
82
|
+
[e, [{ [k]: "UseFIPS" }, b]],
|
|
83
|
+
[e, [{ [k]: "UseDualStack" }, b]],
|
|
84
|
+
[e, [{ fn: f, argv: [h, "supportsDualStack"] }, b]],
|
|
85
|
+
[e, [{ fn: f, argv: [h, "supportsFIPS"] }, b]]
|
|
86
|
+
],
|
|
87
|
+
results: [
|
|
88
|
+
[a],
|
|
89
|
+
[a, "Invalid Configuration: FIPS and custom endpoint are not supported"],
|
|
90
|
+
[a, "Invalid Configuration: Dualstack and custom endpoint are not supported"],
|
|
91
|
+
[g, i],
|
|
92
|
+
["https://waf-regional-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
|
|
93
|
+
[a, "FIPS and DualStack are enabled, but this partition does not support one or both"],
|
|
94
|
+
["https://waf-regional-fips.{Region}.{PartitionResult#dnsSuffix}", i],
|
|
95
|
+
[a, "FIPS is enabled but this partition does not support FIPS"],
|
|
96
|
+
["https://waf-regional.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
|
|
97
|
+
[a, "DualStack is enabled but this partition does not support DualStack"],
|
|
98
|
+
["https://waf-regional.{Region}.{PartitionResult#dnsSuffix}", i],
|
|
99
|
+
[a, "Invalid Configuration: Missing Region"]
|
|
100
|
+
]
|
|
101
|
+
};
|
|
102
|
+
const root = 2;
|
|
103
|
+
const r = 100_000_000;
|
|
104
|
+
const nodes = new Int32Array([
|
|
105
|
+
-1, 1, -1,
|
|
106
|
+
0, 12, 3,
|
|
107
|
+
1, 4, r + 11,
|
|
108
|
+
2, 5, r + 11,
|
|
109
|
+
3, 8, 6,
|
|
110
|
+
4, 7, r + 10,
|
|
111
|
+
5, r + 8, r + 9,
|
|
112
|
+
4, 10, 9,
|
|
113
|
+
6, r + 6, r + 7,
|
|
114
|
+
5, 11, r + 5,
|
|
115
|
+
6, r + 4, r + 5,
|
|
116
|
+
3, r + 1, 13,
|
|
117
|
+
4, r + 2, r + 3,
|
|
118
|
+
]);
|
|
119
|
+
const bdd = BinaryDecisionDiagram.from(nodes, root, _data.conditions, _data.results);
|
|
120
|
+
|
|
121
|
+
const cache = new EndpointCache({
|
|
122
|
+
size: 50,
|
|
123
|
+
params: ["Endpoint", "Region", "UseDualStack", "UseFIPS"],
|
|
124
|
+
});
|
|
125
|
+
const defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
126
|
+
return cache.get(endpointParams, () => decideEndpoint(bdd, {
|
|
127
|
+
endpointParams: endpointParams,
|
|
128
|
+
logger: context.logger,
|
|
129
|
+
}));
|
|
130
|
+
};
|
|
131
|
+
customEndpointFunctions.aws = awsEndpointFunctions;
|
|
132
|
+
|
|
133
|
+
class WAFRegionalServiceException extends ServiceException {
|
|
134
|
+
constructor(options) {
|
|
135
|
+
super(options);
|
|
136
|
+
Object.setPrototypeOf(this, WAFRegionalServiceException.prototype);
|
|
137
|
+
}
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
class WAFInternalErrorException extends WAFRegionalServiceException {
|
|
141
|
+
name = "WAFInternalErrorException";
|
|
142
|
+
$fault = "server";
|
|
143
|
+
constructor(opts) {
|
|
144
|
+
super({
|
|
145
|
+
name: "WAFInternalErrorException",
|
|
146
|
+
$fault: "server",
|
|
147
|
+
...opts,
|
|
148
|
+
});
|
|
149
|
+
Object.setPrototypeOf(this, WAFInternalErrorException.prototype);
|
|
150
|
+
}
|
|
151
|
+
}
|
|
152
|
+
class WAFInvalidAccountException extends WAFRegionalServiceException {
|
|
153
|
+
name = "WAFInvalidAccountException";
|
|
154
|
+
$fault = "client";
|
|
155
|
+
constructor(opts) {
|
|
156
|
+
super({
|
|
157
|
+
name: "WAFInvalidAccountException",
|
|
158
|
+
$fault: "client",
|
|
159
|
+
...opts,
|
|
160
|
+
});
|
|
161
|
+
Object.setPrototypeOf(this, WAFInvalidAccountException.prototype);
|
|
162
|
+
}
|
|
163
|
+
}
|
|
164
|
+
class WAFInvalidParameterException extends WAFRegionalServiceException {
|
|
165
|
+
name = "WAFInvalidParameterException";
|
|
166
|
+
$fault = "client";
|
|
167
|
+
field;
|
|
168
|
+
parameter;
|
|
169
|
+
reason;
|
|
170
|
+
constructor(opts) {
|
|
171
|
+
super({
|
|
172
|
+
name: "WAFInvalidParameterException",
|
|
173
|
+
$fault: "client",
|
|
174
|
+
...opts,
|
|
175
|
+
});
|
|
176
|
+
Object.setPrototypeOf(this, WAFInvalidParameterException.prototype);
|
|
177
|
+
this.field = opts.field;
|
|
178
|
+
this.parameter = opts.parameter;
|
|
179
|
+
this.reason = opts.reason;
|
|
180
|
+
}
|
|
181
|
+
}
|
|
182
|
+
class WAFNonexistentItemException extends WAFRegionalServiceException {
|
|
183
|
+
name = "WAFNonexistentItemException";
|
|
184
|
+
$fault = "client";
|
|
185
|
+
constructor(opts) {
|
|
186
|
+
super({
|
|
187
|
+
name: "WAFNonexistentItemException",
|
|
188
|
+
$fault: "client",
|
|
189
|
+
...opts,
|
|
190
|
+
});
|
|
191
|
+
Object.setPrototypeOf(this, WAFNonexistentItemException.prototype);
|
|
192
|
+
}
|
|
193
|
+
}
|
|
194
|
+
class WAFUnavailableEntityException extends WAFRegionalServiceException {
|
|
195
|
+
name = "WAFUnavailableEntityException";
|
|
196
|
+
$fault = "client";
|
|
197
|
+
constructor(opts) {
|
|
198
|
+
super({
|
|
199
|
+
name: "WAFUnavailableEntityException",
|
|
200
|
+
$fault: "client",
|
|
201
|
+
...opts,
|
|
202
|
+
});
|
|
203
|
+
Object.setPrototypeOf(this, WAFUnavailableEntityException.prototype);
|
|
204
|
+
}
|
|
205
|
+
}
|
|
206
|
+
class WAFDisallowedNameException extends WAFRegionalServiceException {
|
|
207
|
+
name = "WAFDisallowedNameException";
|
|
208
|
+
$fault = "client";
|
|
209
|
+
constructor(opts) {
|
|
210
|
+
super({
|
|
211
|
+
name: "WAFDisallowedNameException",
|
|
212
|
+
$fault: "client",
|
|
213
|
+
...opts,
|
|
214
|
+
});
|
|
215
|
+
Object.setPrototypeOf(this, WAFDisallowedNameException.prototype);
|
|
216
|
+
}
|
|
217
|
+
}
|
|
218
|
+
class WAFLimitsExceededException extends WAFRegionalServiceException {
|
|
219
|
+
name = "WAFLimitsExceededException";
|
|
220
|
+
$fault = "client";
|
|
221
|
+
constructor(opts) {
|
|
222
|
+
super({
|
|
223
|
+
name: "WAFLimitsExceededException",
|
|
224
|
+
$fault: "client",
|
|
225
|
+
...opts,
|
|
226
|
+
});
|
|
227
|
+
Object.setPrototypeOf(this, WAFLimitsExceededException.prototype);
|
|
228
|
+
}
|
|
229
|
+
}
|
|
230
|
+
class WAFStaleDataException extends WAFRegionalServiceException {
|
|
231
|
+
name = "WAFStaleDataException";
|
|
232
|
+
$fault = "client";
|
|
233
|
+
constructor(opts) {
|
|
234
|
+
super({
|
|
235
|
+
name: "WAFStaleDataException",
|
|
236
|
+
$fault: "client",
|
|
237
|
+
...opts,
|
|
238
|
+
});
|
|
239
|
+
Object.setPrototypeOf(this, WAFStaleDataException.prototype);
|
|
240
|
+
}
|
|
241
|
+
}
|
|
242
|
+
class WAFBadRequestException extends WAFRegionalServiceException {
|
|
243
|
+
name = "WAFBadRequestException";
|
|
244
|
+
$fault = "client";
|
|
245
|
+
constructor(opts) {
|
|
246
|
+
super({
|
|
247
|
+
name: "WAFBadRequestException",
|
|
248
|
+
$fault: "client",
|
|
249
|
+
...opts,
|
|
250
|
+
});
|
|
251
|
+
Object.setPrototypeOf(this, WAFBadRequestException.prototype);
|
|
252
|
+
}
|
|
253
|
+
}
|
|
254
|
+
class WAFTagOperationException extends WAFRegionalServiceException {
|
|
255
|
+
name = "WAFTagOperationException";
|
|
256
|
+
$fault = "client";
|
|
257
|
+
constructor(opts) {
|
|
258
|
+
super({
|
|
259
|
+
name: "WAFTagOperationException",
|
|
260
|
+
$fault: "client",
|
|
261
|
+
...opts,
|
|
262
|
+
});
|
|
263
|
+
Object.setPrototypeOf(this, WAFTagOperationException.prototype);
|
|
264
|
+
}
|
|
265
|
+
}
|
|
266
|
+
class WAFTagOperationInternalErrorException extends WAFRegionalServiceException {
|
|
267
|
+
name = "WAFTagOperationInternalErrorException";
|
|
268
|
+
$fault = "server";
|
|
269
|
+
constructor(opts) {
|
|
270
|
+
super({
|
|
271
|
+
name: "WAFTagOperationInternalErrorException",
|
|
272
|
+
$fault: "server",
|
|
273
|
+
...opts,
|
|
274
|
+
});
|
|
275
|
+
Object.setPrototypeOf(this, WAFTagOperationInternalErrorException.prototype);
|
|
276
|
+
}
|
|
277
|
+
}
|
|
278
|
+
class WAFEntityMigrationException extends WAFRegionalServiceException {
|
|
279
|
+
name = "WAFEntityMigrationException";
|
|
280
|
+
$fault = "client";
|
|
281
|
+
MigrationErrorType;
|
|
282
|
+
MigrationErrorReason;
|
|
283
|
+
constructor(opts) {
|
|
284
|
+
super({
|
|
285
|
+
name: "WAFEntityMigrationException",
|
|
286
|
+
$fault: "client",
|
|
287
|
+
...opts,
|
|
288
|
+
});
|
|
289
|
+
Object.setPrototypeOf(this, WAFEntityMigrationException.prototype);
|
|
290
|
+
this.MigrationErrorType = opts.MigrationErrorType;
|
|
291
|
+
this.MigrationErrorReason = opts.MigrationErrorReason;
|
|
292
|
+
}
|
|
293
|
+
}
|
|
294
|
+
class WAFInvalidOperationException extends WAFRegionalServiceException {
|
|
295
|
+
name = "WAFInvalidOperationException";
|
|
296
|
+
$fault = "client";
|
|
297
|
+
constructor(opts) {
|
|
298
|
+
super({
|
|
299
|
+
name: "WAFInvalidOperationException",
|
|
300
|
+
$fault: "client",
|
|
301
|
+
...opts,
|
|
302
|
+
});
|
|
303
|
+
Object.setPrototypeOf(this, WAFInvalidOperationException.prototype);
|
|
304
|
+
}
|
|
305
|
+
}
|
|
306
|
+
class WAFNonEmptyEntityException extends WAFRegionalServiceException {
|
|
307
|
+
name = "WAFNonEmptyEntityException";
|
|
308
|
+
$fault = "client";
|
|
309
|
+
constructor(opts) {
|
|
310
|
+
super({
|
|
311
|
+
name: "WAFNonEmptyEntityException",
|
|
312
|
+
$fault: "client",
|
|
313
|
+
...opts,
|
|
314
|
+
});
|
|
315
|
+
Object.setPrototypeOf(this, WAFNonEmptyEntityException.prototype);
|
|
316
|
+
}
|
|
317
|
+
}
|
|
318
|
+
class WAFReferencedItemException extends WAFRegionalServiceException {
|
|
319
|
+
name = "WAFReferencedItemException";
|
|
320
|
+
$fault = "client";
|
|
321
|
+
constructor(opts) {
|
|
322
|
+
super({
|
|
323
|
+
name: "WAFReferencedItemException",
|
|
324
|
+
$fault: "client",
|
|
325
|
+
...opts,
|
|
326
|
+
});
|
|
327
|
+
Object.setPrototypeOf(this, WAFReferencedItemException.prototype);
|
|
328
|
+
}
|
|
329
|
+
}
|
|
330
|
+
class WAFServiceLinkedRoleErrorException extends WAFRegionalServiceException {
|
|
331
|
+
name = "WAFServiceLinkedRoleErrorException";
|
|
332
|
+
$fault = "client";
|
|
333
|
+
constructor(opts) {
|
|
334
|
+
super({
|
|
335
|
+
name: "WAFServiceLinkedRoleErrorException",
|
|
336
|
+
$fault: "client",
|
|
337
|
+
...opts,
|
|
338
|
+
});
|
|
339
|
+
Object.setPrototypeOf(this, WAFServiceLinkedRoleErrorException.prototype);
|
|
340
|
+
}
|
|
341
|
+
}
|
|
342
|
+
class WAFInvalidPermissionPolicyException extends WAFRegionalServiceException {
|
|
343
|
+
name = "WAFInvalidPermissionPolicyException";
|
|
344
|
+
$fault = "client";
|
|
345
|
+
constructor(opts) {
|
|
346
|
+
super({
|
|
347
|
+
name: "WAFInvalidPermissionPolicyException",
|
|
348
|
+
$fault: "client",
|
|
349
|
+
...opts,
|
|
350
|
+
});
|
|
351
|
+
Object.setPrototypeOf(this, WAFInvalidPermissionPolicyException.prototype);
|
|
352
|
+
}
|
|
353
|
+
}
|
|
354
|
+
class WAFNonexistentContainerException extends WAFRegionalServiceException {
|
|
355
|
+
name = "WAFNonexistentContainerException";
|
|
356
|
+
$fault = "client";
|
|
357
|
+
constructor(opts) {
|
|
358
|
+
super({
|
|
359
|
+
name: "WAFNonexistentContainerException",
|
|
360
|
+
$fault: "client",
|
|
361
|
+
...opts,
|
|
362
|
+
});
|
|
363
|
+
Object.setPrototypeOf(this, WAFNonexistentContainerException.prototype);
|
|
364
|
+
}
|
|
365
|
+
}
|
|
366
|
+
class WAFInvalidRegexPatternException extends WAFRegionalServiceException {
|
|
367
|
+
name = "WAFInvalidRegexPatternException";
|
|
368
|
+
$fault = "client";
|
|
369
|
+
constructor(opts) {
|
|
370
|
+
super({
|
|
371
|
+
name: "WAFInvalidRegexPatternException",
|
|
372
|
+
$fault: "client",
|
|
373
|
+
...opts,
|
|
374
|
+
});
|
|
375
|
+
Object.setPrototypeOf(this, WAFInvalidRegexPatternException.prototype);
|
|
376
|
+
}
|
|
377
|
+
}
|
|
378
|
+
class WAFSubscriptionNotFoundException extends WAFRegionalServiceException {
|
|
379
|
+
name = "WAFSubscriptionNotFoundException";
|
|
380
|
+
$fault = "client";
|
|
381
|
+
constructor(opts) {
|
|
382
|
+
super({
|
|
383
|
+
name: "WAFSubscriptionNotFoundException",
|
|
384
|
+
$fault: "client",
|
|
385
|
+
...opts,
|
|
386
|
+
});
|
|
387
|
+
Object.setPrototypeOf(this, WAFSubscriptionNotFoundException.prototype);
|
|
388
|
+
}
|
|
389
|
+
}
|
|
390
|
+
|
|
391
|
+
const _A = "Action";
|
|
392
|
+
const _AR = "ActivatedRule";
|
|
393
|
+
const _ARc = "ActivatedRules";
|
|
394
|
+
const _AWACL = "AssociateWebACL";
|
|
395
|
+
const _AWACLR = "AssociateWebACLRequest";
|
|
396
|
+
const _AWACLRs = "AssociateWebACLResponse";
|
|
397
|
+
const _BMS = "ByteMatchSet";
|
|
398
|
+
const _BMSI = "ByteMatchSetId";
|
|
399
|
+
const _BMSS = "ByteMatchSetSummary";
|
|
400
|
+
const _BMSSy = "ByteMatchSetSummaries";
|
|
401
|
+
const _BMSU = "ByteMatchSetUpdate";
|
|
402
|
+
const _BMSUy = "ByteMatchSetUpdates";
|
|
403
|
+
const _BMSy = "ByteMatchSets";
|
|
404
|
+
const _BMT = "ByteMatchTuples";
|
|
405
|
+
const _BMTy = "ByteMatchTuple";
|
|
406
|
+
const _C = "Country";
|
|
407
|
+
const _CBMS = "CreateByteMatchSet";
|
|
408
|
+
const _CBMSR = "CreateByteMatchSetRequest";
|
|
409
|
+
const _CBMSRr = "CreateByteMatchSetResponse";
|
|
410
|
+
const _CGMS = "CreateGeoMatchSet";
|
|
411
|
+
const _CGMSR = "CreateGeoMatchSetRequest";
|
|
412
|
+
const _CGMSRr = "CreateGeoMatchSetResponse";
|
|
413
|
+
const _CIP = "ClientIP";
|
|
414
|
+
const _CIPS = "CreateIPSet";
|
|
415
|
+
const _CIPSR = "CreateIPSetRequest";
|
|
416
|
+
const _CIPSRr = "CreateIPSetResponse";
|
|
417
|
+
const _CO = "ComparisonOperator";
|
|
418
|
+
const _CR = "CreateRule";
|
|
419
|
+
const _CRBR = "CreateRateBasedRule";
|
|
420
|
+
const _CRBRR = "CreateRateBasedRuleRequest";
|
|
421
|
+
const _CRBRRr = "CreateRateBasedRuleResponse";
|
|
422
|
+
const _CRG = "CreateRuleGroup";
|
|
423
|
+
const _CRGR = "CreateRuleGroupRequest";
|
|
424
|
+
const _CRGRr = "CreateRuleGroupResponse";
|
|
425
|
+
const _CRMS = "CreateRegexMatchSet";
|
|
426
|
+
const _CRMSR = "CreateRegexMatchSetRequest";
|
|
427
|
+
const _CRMSRr = "CreateRegexMatchSetResponse";
|
|
428
|
+
const _CRPS = "CreateRegexPatternSet";
|
|
429
|
+
const _CRPSR = "CreateRegexPatternSetRequest";
|
|
430
|
+
const _CRPSRr = "CreateRegexPatternSetResponse";
|
|
431
|
+
const _CRR = "CreateRuleRequest";
|
|
432
|
+
const _CRRr = "CreateRuleResponse";
|
|
433
|
+
const _CSCS = "CreateSizeConstraintSet";
|
|
434
|
+
const _CSCSR = "CreateSizeConstraintSetRequest";
|
|
435
|
+
const _CSCSRr = "CreateSizeConstraintSetResponse";
|
|
436
|
+
const _CSIMS = "CreateSqlInjectionMatchSet";
|
|
437
|
+
const _CSIMSR = "CreateSqlInjectionMatchSetRequest";
|
|
438
|
+
const _CSIMSRr = "CreateSqlInjectionMatchSetResponse";
|
|
439
|
+
const _CT = "ChangeToken";
|
|
440
|
+
const _CTS = "ChangeTokenStatus";
|
|
441
|
+
const _CWACL = "CreateWebACL";
|
|
442
|
+
const _CWACLMS = "CreateWebACLMigrationStack";
|
|
443
|
+
const _CWACLMSR = "CreateWebACLMigrationStackRequest";
|
|
444
|
+
const _CWACLMSRr = "CreateWebACLMigrationStackResponse";
|
|
445
|
+
const _CWACLR = "CreateWebACLRequest";
|
|
446
|
+
const _CWACLRr = "CreateWebACLResponse";
|
|
447
|
+
const _CXMS = "CreateXssMatchSet";
|
|
448
|
+
const _CXMSR = "CreateXssMatchSetRequest";
|
|
449
|
+
const _CXMSRr = "CreateXssMatchSetResponse";
|
|
450
|
+
const _D = "Data";
|
|
451
|
+
const _DA = "DefaultAction";
|
|
452
|
+
const _DBMS = "DeleteByteMatchSet";
|
|
453
|
+
const _DBMSR = "DeleteByteMatchSetRequest";
|
|
454
|
+
const _DBMSRe = "DeleteByteMatchSetResponse";
|
|
455
|
+
const _DGMS = "DeleteGeoMatchSet";
|
|
456
|
+
const _DGMSR = "DeleteGeoMatchSetRequest";
|
|
457
|
+
const _DGMSRe = "DeleteGeoMatchSetResponse";
|
|
458
|
+
const _DI = "DataId";
|
|
459
|
+
const _DIPS = "DeleteIPSet";
|
|
460
|
+
const _DIPSR = "DeleteIPSetRequest";
|
|
461
|
+
const _DIPSRe = "DeleteIPSetResponse";
|
|
462
|
+
const _DLC = "DeleteLoggingConfiguration";
|
|
463
|
+
const _DLCR = "DeleteLoggingConfigurationRequest";
|
|
464
|
+
const _DLCRe = "DeleteLoggingConfigurationResponse";
|
|
465
|
+
const _DPP = "DeletePermissionPolicy";
|
|
466
|
+
const _DPPR = "DeletePermissionPolicyRequest";
|
|
467
|
+
const _DPPRe = "DeletePermissionPolicyResponse";
|
|
468
|
+
const _DR = "DeleteRule";
|
|
469
|
+
const _DRBR = "DeleteRateBasedRule";
|
|
470
|
+
const _DRBRR = "DeleteRateBasedRuleRequest";
|
|
471
|
+
const _DRBRRe = "DeleteRateBasedRuleResponse";
|
|
472
|
+
const _DRG = "DeleteRuleGroup";
|
|
473
|
+
const _DRGR = "DeleteRuleGroupRequest";
|
|
474
|
+
const _DRGRe = "DeleteRuleGroupResponse";
|
|
475
|
+
const _DRMS = "DeleteRegexMatchSet";
|
|
476
|
+
const _DRMSR = "DeleteRegexMatchSetRequest";
|
|
477
|
+
const _DRMSRe = "DeleteRegexMatchSetResponse";
|
|
478
|
+
const _DRPS = "DeleteRegexPatternSet";
|
|
479
|
+
const _DRPSR = "DeleteRegexPatternSetRequest";
|
|
480
|
+
const _DRPSRe = "DeleteRegexPatternSetResponse";
|
|
481
|
+
const _DRR = "DeleteRuleRequest";
|
|
482
|
+
const _DRRe = "DeleteRuleResponse";
|
|
483
|
+
const _DSCS = "DeleteSizeConstraintSet";
|
|
484
|
+
const _DSCSR = "DeleteSizeConstraintSetRequest";
|
|
485
|
+
const _DSCSRe = "DeleteSizeConstraintSetResponse";
|
|
486
|
+
const _DSIMS = "DeleteSqlInjectionMatchSet";
|
|
487
|
+
const _DSIMSR = "DeleteSqlInjectionMatchSetRequest";
|
|
488
|
+
const _DSIMSRe = "DeleteSqlInjectionMatchSetResponse";
|
|
489
|
+
const _DWACL = "DeleteWebACL";
|
|
490
|
+
const _DWACLR = "DeleteWebACLRequest";
|
|
491
|
+
const _DWACLRe = "DeleteWebACLResponse";
|
|
492
|
+
const _DWACLRi = "DisassociateWebACLRequest";
|
|
493
|
+
const _DWACLRis = "DisassociateWebACLResponse";
|
|
494
|
+
const _DWACLi = "DisassociateWebACL";
|
|
495
|
+
const _DXMS = "DeleteXssMatchSet";
|
|
496
|
+
const _DXMSR = "DeleteXssMatchSetRequest";
|
|
497
|
+
const _DXMSRe = "DeleteXssMatchSetResponse";
|
|
498
|
+
const _ER = "ExcludedRules";
|
|
499
|
+
const _ERx = "ExcludedRule";
|
|
500
|
+
const _ET = "EndTime";
|
|
501
|
+
const _FTM = "FieldToMatch";
|
|
502
|
+
const _GBMS = "GetByteMatchSet";
|
|
503
|
+
const _GBMSR = "GetByteMatchSetRequest";
|
|
504
|
+
const _GBMSRe = "GetByteMatchSetResponse";
|
|
505
|
+
const _GCT = "GetChangeToken";
|
|
506
|
+
const _GCTR = "GetChangeTokenRequest";
|
|
507
|
+
const _GCTRe = "GetChangeTokenResponse";
|
|
508
|
+
const _GCTS = "GetChangeTokenStatus";
|
|
509
|
+
const _GCTSR = "GetChangeTokenStatusRequest";
|
|
510
|
+
const _GCTSRe = "GetChangeTokenStatusResponse";
|
|
511
|
+
const _GGMS = "GetGeoMatchSet";
|
|
512
|
+
const _GGMSR = "GetGeoMatchSetRequest";
|
|
513
|
+
const _GGMSRe = "GetGeoMatchSetResponse";
|
|
514
|
+
const _GIPS = "GetIPSet";
|
|
515
|
+
const _GIPSR = "GetIPSetRequest";
|
|
516
|
+
const _GIPSRe = "GetIPSetResponse";
|
|
517
|
+
const _GLC = "GetLoggingConfiguration";
|
|
518
|
+
const _GLCR = "GetLoggingConfigurationRequest";
|
|
519
|
+
const _GLCRe = "GetLoggingConfigurationResponse";
|
|
520
|
+
const _GMC = "GeoMatchConstraint";
|
|
521
|
+
const _GMCe = "GeoMatchConstraints";
|
|
522
|
+
const _GMS = "GeoMatchSet";
|
|
523
|
+
const _GMSI = "GeoMatchSetId";
|
|
524
|
+
const _GMSS = "GeoMatchSetSummary";
|
|
525
|
+
const _GMSSe = "GeoMatchSetSummaries";
|
|
526
|
+
const _GMSU = "GeoMatchSetUpdate";
|
|
527
|
+
const _GMSUe = "GeoMatchSetUpdates";
|
|
528
|
+
const _GMSe = "GeoMatchSets";
|
|
529
|
+
const _GPP = "GetPermissionPolicy";
|
|
530
|
+
const _GPPR = "GetPermissionPolicyRequest";
|
|
531
|
+
const _GPPRe = "GetPermissionPolicyResponse";
|
|
532
|
+
const _GR = "GetRule";
|
|
533
|
+
const _GRBR = "GetRateBasedRule";
|
|
534
|
+
const _GRBRMK = "GetRateBasedRuleManagedKeys";
|
|
535
|
+
const _GRBRMKR = "GetRateBasedRuleManagedKeysRequest";
|
|
536
|
+
const _GRBRMKRe = "GetRateBasedRuleManagedKeysResponse";
|
|
537
|
+
const _GRBRR = "GetRateBasedRuleRequest";
|
|
538
|
+
const _GRBRRe = "GetRateBasedRuleResponse";
|
|
539
|
+
const _GRG = "GetRuleGroup";
|
|
540
|
+
const _GRGR = "GetRuleGroupRequest";
|
|
541
|
+
const _GRGRe = "GetRuleGroupResponse";
|
|
542
|
+
const _GRMS = "GetRegexMatchSet";
|
|
543
|
+
const _GRMSR = "GetRegexMatchSetRequest";
|
|
544
|
+
const _GRMSRe = "GetRegexMatchSetResponse";
|
|
545
|
+
const _GRPS = "GetRegexPatternSet";
|
|
546
|
+
const _GRPSR = "GetRegexPatternSetRequest";
|
|
547
|
+
const _GRPSRe = "GetRegexPatternSetResponse";
|
|
548
|
+
const _GRR = "GetRuleRequest";
|
|
549
|
+
const _GRRe = "GetRuleResponse";
|
|
550
|
+
const _GSCS = "GetSizeConstraintSet";
|
|
551
|
+
const _GSCSR = "GetSizeConstraintSetRequest";
|
|
552
|
+
const _GSCSRe = "GetSizeConstraintSetResponse";
|
|
553
|
+
const _GSIMS = "GetSqlInjectionMatchSet";
|
|
554
|
+
const _GSIMSR = "GetSqlInjectionMatchSetRequest";
|
|
555
|
+
const _GSIMSRe = "GetSqlInjectionMatchSetResponse";
|
|
556
|
+
const _GSR = "GetSampledRequests";
|
|
557
|
+
const _GSRR = "GetSampledRequestsRequest";
|
|
558
|
+
const _GSRRe = "GetSampledRequestsResponse";
|
|
559
|
+
const _GWACL = "GetWebACL";
|
|
560
|
+
const _GWACLFR = "GetWebACLForResource";
|
|
561
|
+
const _GWACLFRR = "GetWebACLForResourceRequest";
|
|
562
|
+
const _GWACLFRRe = "GetWebACLForResourceResponse";
|
|
563
|
+
const _GWACLR = "GetWebACLRequest";
|
|
564
|
+
const _GWACLRe = "GetWebACLResponse";
|
|
565
|
+
const _GXMS = "GetXssMatchSet";
|
|
566
|
+
const _GXMSR = "GetXssMatchSetRequest";
|
|
567
|
+
const _GXMSRe = "GetXssMatchSetResponse";
|
|
568
|
+
const _H = "Headers";
|
|
569
|
+
const _HTTPH = "HTTPHeader";
|
|
570
|
+
const _HTTPHe = "HTTPHeaders";
|
|
571
|
+
const _HTTPR = "HTTPRequest";
|
|
572
|
+
const _HTTPV = "HTTPVersion";
|
|
573
|
+
const _IPS = "IPSet";
|
|
574
|
+
const _IPSD = "IPSetDescriptors";
|
|
575
|
+
const _IPSDe = "IPSetDescriptor";
|
|
576
|
+
const _IPSI = "IPSetId";
|
|
577
|
+
const _IPSS = "IPSetSummary";
|
|
578
|
+
const _IPSSe = "IPSetSummaries";
|
|
579
|
+
const _IPSU = "IPSetUpdate";
|
|
580
|
+
const _IPSUe = "IPSetUpdates";
|
|
581
|
+
const _IPSe = "IPSets";
|
|
582
|
+
const _IUT = "IgnoreUnsupportedType";
|
|
583
|
+
const _K = "Key";
|
|
584
|
+
const _L = "Limit";
|
|
585
|
+
const _LARIRG = "ListActivatedRulesInRuleGroup";
|
|
586
|
+
const _LARIRGR = "ListActivatedRulesInRuleGroupRequest";
|
|
587
|
+
const _LARIRGRi = "ListActivatedRulesInRuleGroupResponse";
|
|
588
|
+
const _LBMS = "ListByteMatchSets";
|
|
589
|
+
const _LBMSR = "ListByteMatchSetsRequest";
|
|
590
|
+
const _LBMSRi = "ListByteMatchSetsResponse";
|
|
591
|
+
const _LC = "LoggingConfiguration";
|
|
592
|
+
const _LCo = "LoggingConfigurations";
|
|
593
|
+
const _LDC = "LogDestinationConfigs";
|
|
594
|
+
const _LGMS = "ListGeoMatchSets";
|
|
595
|
+
const _LGMSR = "ListGeoMatchSetsRequest";
|
|
596
|
+
const _LGMSRi = "ListGeoMatchSetsResponse";
|
|
597
|
+
const _LIPS = "ListIPSets";
|
|
598
|
+
const _LIPSR = "ListIPSetsRequest";
|
|
599
|
+
const _LIPSRi = "ListIPSetsResponse";
|
|
600
|
+
const _LLC = "ListLoggingConfigurations";
|
|
601
|
+
const _LLCR = "ListLoggingConfigurationsRequest";
|
|
602
|
+
const _LLCRi = "ListLoggingConfigurationsResponse";
|
|
603
|
+
const _LR = "ListRules";
|
|
604
|
+
const _LRBR = "ListRateBasedRules";
|
|
605
|
+
const _LRBRR = "ListRateBasedRulesRequest";
|
|
606
|
+
const _LRBRRi = "ListRateBasedRulesResponse";
|
|
607
|
+
const _LRFWACL = "ListResourcesForWebACL";
|
|
608
|
+
const _LRFWACLR = "ListResourcesForWebACLRequest";
|
|
609
|
+
const _LRFWACLRi = "ListResourcesForWebACLResponse";
|
|
610
|
+
const _LRG = "ListRuleGroups";
|
|
611
|
+
const _LRGR = "ListRuleGroupsRequest";
|
|
612
|
+
const _LRGRi = "ListRuleGroupsResponse";
|
|
613
|
+
const _LRMS = "ListRegexMatchSets";
|
|
614
|
+
const _LRMSR = "ListRegexMatchSetsRequest";
|
|
615
|
+
const _LRMSRi = "ListRegexMatchSetsResponse";
|
|
616
|
+
const _LRPS = "ListRegexPatternSets";
|
|
617
|
+
const _LRPSR = "ListRegexPatternSetsRequest";
|
|
618
|
+
const _LRPSRi = "ListRegexPatternSetsResponse";
|
|
619
|
+
const _LRR = "ListRulesRequest";
|
|
620
|
+
const _LRRi = "ListRulesResponse";
|
|
621
|
+
const _LSCS = "ListSizeConstraintSets";
|
|
622
|
+
const _LSCSR = "ListSizeConstraintSetsRequest";
|
|
623
|
+
const _LSCSRi = "ListSizeConstraintSetsResponse";
|
|
624
|
+
const _LSIMS = "ListSqlInjectionMatchSets";
|
|
625
|
+
const _LSIMSR = "ListSqlInjectionMatchSetsRequest";
|
|
626
|
+
const _LSIMSRi = "ListSqlInjectionMatchSetsResponse";
|
|
627
|
+
const _LSRG = "ListSubscribedRuleGroups";
|
|
628
|
+
const _LSRGR = "ListSubscribedRuleGroupsRequest";
|
|
629
|
+
const _LSRGRi = "ListSubscribedRuleGroupsResponse";
|
|
630
|
+
const _LTFR = "ListTagsForResource";
|
|
631
|
+
const _LTFRR = "ListTagsForResourceRequest";
|
|
632
|
+
const _LTFRRi = "ListTagsForResourceResponse";
|
|
633
|
+
const _LWACL = "ListWebACLs";
|
|
634
|
+
const _LWACLR = "ListWebACLsRequest";
|
|
635
|
+
const _LWACLRi = "ListWebACLsResponse";
|
|
636
|
+
const _LXMS = "ListXssMatchSets";
|
|
637
|
+
const _LXMSR = "ListXssMatchSetsRequest";
|
|
638
|
+
const _LXMSRi = "ListXssMatchSetsResponse";
|
|
639
|
+
const _M = "Method";
|
|
640
|
+
const _MER = "MigrationErrorReason";
|
|
641
|
+
const _MET = "MigrationErrorType";
|
|
642
|
+
const _MI = "MaxItems";
|
|
643
|
+
const _MK = "ManagedKeys";
|
|
644
|
+
const _MN = "MetricName";
|
|
645
|
+
const _MP = "MatchPredicates";
|
|
646
|
+
const _N = "Name";
|
|
647
|
+
const _NM = "NextMarker";
|
|
648
|
+
const _Ne = "Negated";
|
|
649
|
+
const _OA = "OverrideAction";
|
|
650
|
+
const _P = "Priority";
|
|
651
|
+
const _PC = "PositionalConstraint";
|
|
652
|
+
const _PLC = "PutLoggingConfiguration";
|
|
653
|
+
const _PLCR = "PutLoggingConfigurationRequest";
|
|
654
|
+
const _PLCRu = "PutLoggingConfigurationResponse";
|
|
655
|
+
const _PPP = "PutPermissionPolicy";
|
|
656
|
+
const _PPPR = "PutPermissionPolicyRequest";
|
|
657
|
+
const _PPPRu = "PutPermissionPolicyResponse";
|
|
658
|
+
const _PS = "PopulationSize";
|
|
659
|
+
const _Po = "Policy";
|
|
660
|
+
const _Pr = "Predicate";
|
|
661
|
+
const _Pre = "Predicates";
|
|
662
|
+
const _R = "Rule";
|
|
663
|
+
const _RA = "ResourceArn";
|
|
664
|
+
const _RARN = "ResourceARN";
|
|
665
|
+
const _RAe = "ResourceArns";
|
|
666
|
+
const _RBR = "RateBasedRule";
|
|
667
|
+
const _RF = "RedactedFields";
|
|
668
|
+
const _RG = "RuleGroup";
|
|
669
|
+
const _RGI = "RuleGroupId";
|
|
670
|
+
const _RGS = "RuleGroupSummary";
|
|
671
|
+
const _RGSu = "RuleGroupSummaries";
|
|
672
|
+
const _RGU = "RuleGroupUpdate";
|
|
673
|
+
const _RGUu = "RuleGroupUpdates";
|
|
674
|
+
const _RGu = "RuleGroups";
|
|
675
|
+
const _RI = "RuleId";
|
|
676
|
+
const _RK = "RateKey";
|
|
677
|
+
const _RL = "RateLimit";
|
|
678
|
+
const _RMS = "RegexMatchSet";
|
|
679
|
+
const _RMSI = "RegexMatchSetId";
|
|
680
|
+
const _RMSS = "RegexMatchSetSummary";
|
|
681
|
+
const _RMSSe = "RegexMatchSetSummaries";
|
|
682
|
+
const _RMSU = "RegexMatchSetUpdate";
|
|
683
|
+
const _RMSUe = "RegexMatchSetUpdates";
|
|
684
|
+
const _RMSe = "RegexMatchSets";
|
|
685
|
+
const _RMT = "RegexMatchTuples";
|
|
686
|
+
const _RMTe = "RegexMatchTuple";
|
|
687
|
+
const _RPS = "RegexPatternSet";
|
|
688
|
+
const _RPSI = "RegexPatternSetId";
|
|
689
|
+
const _RPSS = "RegexPatternSetSummary";
|
|
690
|
+
const _RPSSe = "RegexPatternSetSummaries";
|
|
691
|
+
const _RPSU = "RegexPatternSetUpdate";
|
|
692
|
+
const _RPSUe = "RegexPatternSetUpdates";
|
|
693
|
+
const _RPSe = "RegexPatternSets";
|
|
694
|
+
const _RPSeg = "RegexPatternStrings";
|
|
695
|
+
const _RPSege = "RegexPatternString";
|
|
696
|
+
const _RS = "RuleSummary";
|
|
697
|
+
const _RSu = "RuleSummaries";
|
|
698
|
+
const _RT = "ResourceType";
|
|
699
|
+
const _RU = "RuleUpdate";
|
|
700
|
+
const _RUu = "RuleUpdates";
|
|
701
|
+
const _RWRG = "RuleWithinRuleGroup";
|
|
702
|
+
const _Re = "Request";
|
|
703
|
+
const _Ru = "Rules";
|
|
704
|
+
const _S = "Size";
|
|
705
|
+
const _SBN = "S3BucketName";
|
|
706
|
+
const _SC = "SizeConstraint";
|
|
707
|
+
const _SCS = "SizeConstraintSet";
|
|
708
|
+
const _SCSI = "SizeConstraintSetId";
|
|
709
|
+
const _SCSS = "SizeConstraintSetSummary";
|
|
710
|
+
const _SCSSi = "SizeConstraintSetSummaries";
|
|
711
|
+
const _SCSU = "SizeConstraintSetUpdate";
|
|
712
|
+
const _SCSUi = "SizeConstraintSetUpdates";
|
|
713
|
+
const _SCSi = "SizeConstraintSets";
|
|
714
|
+
const _SCi = "SizeConstraints";
|
|
715
|
+
const _SHTTPR = "SampledHTTPRequest";
|
|
716
|
+
const _SHTTPRa = "SampledHTTPRequests";
|
|
717
|
+
const _SIMS = "SqlInjectionMatchSet";
|
|
718
|
+
const _SIMSI = "SqlInjectionMatchSetId";
|
|
719
|
+
const _SIMSS = "SqlInjectionMatchSetSummary";
|
|
720
|
+
const _SIMSSq = "SqlInjectionMatchSetSummaries";
|
|
721
|
+
const _SIMSU = "SqlInjectionMatchSetUpdate";
|
|
722
|
+
const _SIMSUq = "SqlInjectionMatchSetUpdates";
|
|
723
|
+
const _SIMSq = "SqlInjectionMatchSets";
|
|
724
|
+
const _SIMT = "SqlInjectionMatchTuples";
|
|
725
|
+
const _SIMTq = "SqlInjectionMatchTuple";
|
|
726
|
+
const _SOU = "S3ObjectUrl";
|
|
727
|
+
const _SR = "SampledRequests";
|
|
728
|
+
const _SRGS = "SubscribedRuleGroupSummary";
|
|
729
|
+
const _SRGSu = "SubscribedRuleGroupSummaries";
|
|
730
|
+
const _ST = "StartTime";
|
|
731
|
+
const _T = "Type";
|
|
732
|
+
const _TIFR = "TagInfoForResource";
|
|
733
|
+
const _TK = "TagKeys";
|
|
734
|
+
const _TL = "TagList";
|
|
735
|
+
const _TR = "TagResource";
|
|
736
|
+
const _TRR = "TagResourceRequest";
|
|
737
|
+
const _TRRa = "TagResourceResponse";
|
|
738
|
+
const _TS = "TargetString";
|
|
739
|
+
const _TT = "TextTransformation";
|
|
740
|
+
const _TW = "TimeWindow";
|
|
741
|
+
const _Ta = "Tags";
|
|
742
|
+
const _Tag = "Tag";
|
|
743
|
+
const _Ti = "Timestamp";
|
|
744
|
+
const _U = "Updates";
|
|
745
|
+
const _UBMS = "UpdateByteMatchSet";
|
|
746
|
+
const _UBMSR = "UpdateByteMatchSetRequest";
|
|
747
|
+
const _UBMSRp = "UpdateByteMatchSetResponse";
|
|
748
|
+
const _UGMS = "UpdateGeoMatchSet";
|
|
749
|
+
const _UGMSR = "UpdateGeoMatchSetRequest";
|
|
750
|
+
const _UGMSRp = "UpdateGeoMatchSetResponse";
|
|
751
|
+
const _UIPS = "UpdateIPSet";
|
|
752
|
+
const _UIPSR = "UpdateIPSetRequest";
|
|
753
|
+
const _UIPSRp = "UpdateIPSetResponse";
|
|
754
|
+
const _UR = "UntagResource";
|
|
755
|
+
const _URBR = "UpdateRateBasedRule";
|
|
756
|
+
const _URBRR = "UpdateRateBasedRuleRequest";
|
|
757
|
+
const _URBRRp = "UpdateRateBasedRuleResponse";
|
|
758
|
+
const _URG = "UpdateRuleGroup";
|
|
759
|
+
const _URGR = "UpdateRuleGroupRequest";
|
|
760
|
+
const _URGRp = "UpdateRuleGroupResponse";
|
|
761
|
+
const _URI = "URI";
|
|
762
|
+
const _URMS = "UpdateRegexMatchSet";
|
|
763
|
+
const _URMSR = "UpdateRegexMatchSetRequest";
|
|
764
|
+
const _URMSRp = "UpdateRegexMatchSetResponse";
|
|
765
|
+
const _URPS = "UpdateRegexPatternSet";
|
|
766
|
+
const _URPSR = "UpdateRegexPatternSetRequest";
|
|
767
|
+
const _URPSRp = "UpdateRegexPatternSetResponse";
|
|
768
|
+
const _URR = "UntagResourceRequest";
|
|
769
|
+
const _URRn = "UntagResourceResponse";
|
|
770
|
+
const _URRp = "UpdateRuleRequest";
|
|
771
|
+
const _URRpd = "UpdateRuleResponse";
|
|
772
|
+
const _URp = "UpdateRule";
|
|
773
|
+
const _USCS = "UpdateSizeConstraintSet";
|
|
774
|
+
const _USCSR = "UpdateSizeConstraintSetRequest";
|
|
775
|
+
const _USCSRp = "UpdateSizeConstraintSetResponse";
|
|
776
|
+
const _USIMS = "UpdateSqlInjectionMatchSet";
|
|
777
|
+
const _USIMSR = "UpdateSqlInjectionMatchSetRequest";
|
|
778
|
+
const _USIMSRp = "UpdateSqlInjectionMatchSetResponse";
|
|
779
|
+
const _UWACL = "UpdateWebACL";
|
|
780
|
+
const _UWACLR = "UpdateWebACLRequest";
|
|
781
|
+
const _UWACLRp = "UpdateWebACLResponse";
|
|
782
|
+
const _UXMS = "UpdateXssMatchSet";
|
|
783
|
+
const _UXMSR = "UpdateXssMatchSetRequest";
|
|
784
|
+
const _UXMSRp = "UpdateXssMatchSetResponse";
|
|
785
|
+
const _V = "Value";
|
|
786
|
+
const _W = "Weight";
|
|
787
|
+
const _WA = "WafAction";
|
|
788
|
+
const _WACL = "WebACL";
|
|
789
|
+
const _WACLA = "WebACLArn";
|
|
790
|
+
const _WACLI = "WebACLId";
|
|
791
|
+
const _WACLS = "WebACLSummary";
|
|
792
|
+
const _WACLSe = "WebACLSummaries";
|
|
793
|
+
const _WACLU = "WebACLUpdate";
|
|
794
|
+
const _WACLUe = "WebACLUpdates";
|
|
795
|
+
const _WACLe = "WebACLs";
|
|
796
|
+
const _WAFBRE = "WAFBadRequestException";
|
|
797
|
+
const _WAFDNE = "WAFDisallowedNameException";
|
|
798
|
+
const _WAFEME = "WAFEntityMigrationException";
|
|
799
|
+
const _WAFIAE = "WAFInvalidAccountException";
|
|
800
|
+
const _WAFIEE = "WAFInternalErrorException";
|
|
801
|
+
const _WAFIOE = "WAFInvalidOperationException";
|
|
802
|
+
const _WAFIPE = "WAFInvalidParameterException";
|
|
803
|
+
const _WAFIPPE = "WAFInvalidPermissionPolicyException";
|
|
804
|
+
const _WAFIRPE = "WAFInvalidRegexPatternException";
|
|
805
|
+
const _WAFLEE = "WAFLimitsExceededException";
|
|
806
|
+
const _WAFNCE = "WAFNonexistentContainerException";
|
|
807
|
+
const _WAFNEEE = "WAFNonEmptyEntityException";
|
|
808
|
+
const _WAFNIE = "WAFNonexistentItemException";
|
|
809
|
+
const _WAFRIE = "WAFReferencedItemException";
|
|
810
|
+
const _WAFSDE = "WAFStaleDataException";
|
|
811
|
+
const _WAFSLREE = "WAFServiceLinkedRoleErrorException";
|
|
812
|
+
const _WAFSNFE = "WAFSubscriptionNotFoundException";
|
|
813
|
+
const _WAFTOE = "WAFTagOperationException";
|
|
814
|
+
const _WAFTOIEE = "WAFTagOperationInternalErrorException";
|
|
815
|
+
const _WAFUEE = "WAFUnavailableEntityException";
|
|
816
|
+
const _WAI = "WebAclId";
|
|
817
|
+
const _WOA = "WafOverrideAction";
|
|
818
|
+
const _XMS = "XssMatchSet";
|
|
819
|
+
const _XMSI = "XssMatchSetId";
|
|
820
|
+
const _XMSS = "XssMatchSetSummary";
|
|
821
|
+
const _XMSSs = "XssMatchSetSummaries";
|
|
822
|
+
const _XMSU = "XssMatchSetUpdate";
|
|
823
|
+
const _XMSUs = "XssMatchSetUpdates";
|
|
824
|
+
const _XMSs = "XssMatchSets";
|
|
825
|
+
const _XMT = "XssMatchTuples";
|
|
826
|
+
const _XMTs = "XssMatchTuple";
|
|
827
|
+
const _c = "client";
|
|
828
|
+
const _e = "error";
|
|
829
|
+
const _f = "field";
|
|
830
|
+
const _m = "message";
|
|
831
|
+
const _p = "parameter";
|
|
832
|
+
const _r = "reason";
|
|
833
|
+
const _s = "smithy.ts.sdk.synthetic.com.amazonaws.wafregional";
|
|
834
|
+
const _se = "server";
|
|
835
|
+
const n0 = "com.amazonaws.wafregional";
|
|
836
|
+
const _s_registry = TypeRegistry.for(_s);
|
|
837
|
+
var WAFRegionalServiceException$ = [-3, _s, "WAFRegionalServiceException", 0, [], []];
|
|
838
|
+
_s_registry.registerError(WAFRegionalServiceException$, WAFRegionalServiceException);
|
|
839
|
+
const n0_registry = TypeRegistry.for(n0);
|
|
840
|
+
var WAFBadRequestException$ = [-3, n0, _WAFBRE,
|
|
841
|
+
{ [_e]: _c },
|
|
842
|
+
[_m],
|
|
843
|
+
[0]
|
|
844
|
+
];
|
|
845
|
+
n0_registry.registerError(WAFBadRequestException$, WAFBadRequestException);
|
|
846
|
+
var WAFDisallowedNameException$ = [-3, n0, _WAFDNE,
|
|
847
|
+
{ [_e]: _c },
|
|
848
|
+
[_m],
|
|
849
|
+
[0]
|
|
850
|
+
];
|
|
851
|
+
n0_registry.registerError(WAFDisallowedNameException$, WAFDisallowedNameException);
|
|
852
|
+
var WAFEntityMigrationException$ = [-3, n0, _WAFEME,
|
|
853
|
+
{ [_e]: _c },
|
|
854
|
+
[_m, _MET, _MER],
|
|
855
|
+
[0, 0, 0]
|
|
856
|
+
];
|
|
857
|
+
n0_registry.registerError(WAFEntityMigrationException$, WAFEntityMigrationException);
|
|
858
|
+
var WAFInternalErrorException$ = [-3, n0, _WAFIEE,
|
|
859
|
+
{ [_e]: _se },
|
|
860
|
+
[_m],
|
|
861
|
+
[0]
|
|
862
|
+
];
|
|
863
|
+
n0_registry.registerError(WAFInternalErrorException$, WAFInternalErrorException);
|
|
864
|
+
var WAFInvalidAccountException$ = [-3, n0, _WAFIAE,
|
|
865
|
+
{ [_e]: _c },
|
|
866
|
+
[],
|
|
867
|
+
[]
|
|
868
|
+
];
|
|
869
|
+
n0_registry.registerError(WAFInvalidAccountException$, WAFInvalidAccountException);
|
|
870
|
+
var WAFInvalidOperationException$ = [-3, n0, _WAFIOE,
|
|
871
|
+
{ [_e]: _c },
|
|
872
|
+
[_m],
|
|
873
|
+
[0]
|
|
874
|
+
];
|
|
875
|
+
n0_registry.registerError(WAFInvalidOperationException$, WAFInvalidOperationException);
|
|
876
|
+
var WAFInvalidParameterException$ = [-3, n0, _WAFIPE,
|
|
877
|
+
{ [_e]: _c },
|
|
878
|
+
[_f, _p, _r],
|
|
879
|
+
[0, 0, 0]
|
|
880
|
+
];
|
|
881
|
+
n0_registry.registerError(WAFInvalidParameterException$, WAFInvalidParameterException);
|
|
882
|
+
var WAFInvalidPermissionPolicyException$ = [-3, n0, _WAFIPPE,
|
|
883
|
+
{ [_e]: _c },
|
|
884
|
+
[_m],
|
|
885
|
+
[0]
|
|
886
|
+
];
|
|
887
|
+
n0_registry.registerError(WAFInvalidPermissionPolicyException$, WAFInvalidPermissionPolicyException);
|
|
888
|
+
var WAFInvalidRegexPatternException$ = [-3, n0, _WAFIRPE,
|
|
889
|
+
{ [_e]: _c },
|
|
890
|
+
[_m],
|
|
891
|
+
[0]
|
|
892
|
+
];
|
|
893
|
+
n0_registry.registerError(WAFInvalidRegexPatternException$, WAFInvalidRegexPatternException);
|
|
894
|
+
var WAFLimitsExceededException$ = [-3, n0, _WAFLEE,
|
|
895
|
+
{ [_e]: _c },
|
|
896
|
+
[_m],
|
|
897
|
+
[0]
|
|
898
|
+
];
|
|
899
|
+
n0_registry.registerError(WAFLimitsExceededException$, WAFLimitsExceededException);
|
|
900
|
+
var WAFNonEmptyEntityException$ = [-3, n0, _WAFNEEE,
|
|
901
|
+
{ [_e]: _c },
|
|
902
|
+
[_m],
|
|
903
|
+
[0]
|
|
904
|
+
];
|
|
905
|
+
n0_registry.registerError(WAFNonEmptyEntityException$, WAFNonEmptyEntityException);
|
|
906
|
+
var WAFNonexistentContainerException$ = [-3, n0, _WAFNCE,
|
|
907
|
+
{ [_e]: _c },
|
|
908
|
+
[_m],
|
|
909
|
+
[0]
|
|
910
|
+
];
|
|
911
|
+
n0_registry.registerError(WAFNonexistentContainerException$, WAFNonexistentContainerException);
|
|
912
|
+
var WAFNonexistentItemException$ = [-3, n0, _WAFNIE,
|
|
913
|
+
{ [_e]: _c },
|
|
914
|
+
[_m],
|
|
915
|
+
[0]
|
|
916
|
+
];
|
|
917
|
+
n0_registry.registerError(WAFNonexistentItemException$, WAFNonexistentItemException);
|
|
918
|
+
var WAFReferencedItemException$ = [-3, n0, _WAFRIE,
|
|
919
|
+
{ [_e]: _c },
|
|
920
|
+
[_m],
|
|
921
|
+
[0]
|
|
922
|
+
];
|
|
923
|
+
n0_registry.registerError(WAFReferencedItemException$, WAFReferencedItemException);
|
|
924
|
+
var WAFServiceLinkedRoleErrorException$ = [-3, n0, _WAFSLREE,
|
|
925
|
+
{ [_e]: _c },
|
|
926
|
+
[_m],
|
|
927
|
+
[0]
|
|
928
|
+
];
|
|
929
|
+
n0_registry.registerError(WAFServiceLinkedRoleErrorException$, WAFServiceLinkedRoleErrorException);
|
|
930
|
+
var WAFStaleDataException$ = [-3, n0, _WAFSDE,
|
|
931
|
+
{ [_e]: _c },
|
|
932
|
+
[_m],
|
|
933
|
+
[0]
|
|
934
|
+
];
|
|
935
|
+
n0_registry.registerError(WAFStaleDataException$, WAFStaleDataException);
|
|
936
|
+
var WAFSubscriptionNotFoundException$ = [-3, n0, _WAFSNFE,
|
|
937
|
+
{ [_e]: _c },
|
|
938
|
+
[_m],
|
|
939
|
+
[0]
|
|
940
|
+
];
|
|
941
|
+
n0_registry.registerError(WAFSubscriptionNotFoundException$, WAFSubscriptionNotFoundException);
|
|
942
|
+
var WAFTagOperationException$ = [-3, n0, _WAFTOE,
|
|
943
|
+
{ [_e]: _c },
|
|
944
|
+
[_m],
|
|
945
|
+
[0]
|
|
946
|
+
];
|
|
947
|
+
n0_registry.registerError(WAFTagOperationException$, WAFTagOperationException);
|
|
948
|
+
var WAFTagOperationInternalErrorException$ = [-3, n0, _WAFTOIEE,
|
|
949
|
+
{ [_e]: _se },
|
|
950
|
+
[_m],
|
|
951
|
+
[0]
|
|
952
|
+
];
|
|
953
|
+
n0_registry.registerError(WAFTagOperationInternalErrorException$, WAFTagOperationInternalErrorException);
|
|
954
|
+
var WAFUnavailableEntityException$ = [-3, n0, _WAFUEE,
|
|
955
|
+
{ [_e]: _c },
|
|
956
|
+
[_m],
|
|
957
|
+
[0]
|
|
958
|
+
];
|
|
959
|
+
n0_registry.registerError(WAFUnavailableEntityException$, WAFUnavailableEntityException);
|
|
960
|
+
const errorTypeRegistries = [
|
|
961
|
+
_s_registry,
|
|
962
|
+
n0_registry,
|
|
963
|
+
];
|
|
964
|
+
var ActivatedRule$ = [3, n0, _AR,
|
|
965
|
+
0,
|
|
966
|
+
[_P, _RI, _A, _OA, _T, _ER],
|
|
967
|
+
[1, 0, () => WafAction$, () => WafOverrideAction$, 0, () => ExcludedRules], 2
|
|
968
|
+
];
|
|
969
|
+
var AssociateWebACLRequest$ = [3, n0, _AWACLR,
|
|
970
|
+
0,
|
|
971
|
+
[_WACLI, _RA],
|
|
972
|
+
[0, 0], 2
|
|
973
|
+
];
|
|
974
|
+
var AssociateWebACLResponse$ = [3, n0, _AWACLRs,
|
|
975
|
+
0,
|
|
976
|
+
[],
|
|
977
|
+
[]
|
|
978
|
+
];
|
|
979
|
+
var ByteMatchSet$ = [3, n0, _BMS,
|
|
980
|
+
0,
|
|
981
|
+
[_BMSI, _BMT, _N],
|
|
982
|
+
[0, () => ByteMatchTuples, 0], 2
|
|
983
|
+
];
|
|
984
|
+
var ByteMatchSetSummary$ = [3, n0, _BMSS,
|
|
985
|
+
0,
|
|
986
|
+
[_BMSI, _N],
|
|
987
|
+
[0, 0], 2
|
|
988
|
+
];
|
|
989
|
+
var ByteMatchSetUpdate$ = [3, n0, _BMSU,
|
|
990
|
+
0,
|
|
991
|
+
[_A, _BMTy],
|
|
992
|
+
[0, () => ByteMatchTuple$], 2
|
|
993
|
+
];
|
|
994
|
+
var ByteMatchTuple$ = [3, n0, _BMTy,
|
|
995
|
+
0,
|
|
996
|
+
[_FTM, _TS, _TT, _PC],
|
|
997
|
+
[() => FieldToMatch$, 21, 0, 0], 4
|
|
998
|
+
];
|
|
999
|
+
var CreateByteMatchSetRequest$ = [3, n0, _CBMSR,
|
|
1000
|
+
0,
|
|
1001
|
+
[_N, _CT],
|
|
1002
|
+
[0, 0], 2
|
|
1003
|
+
];
|
|
1004
|
+
var CreateByteMatchSetResponse$ = [3, n0, _CBMSRr,
|
|
1005
|
+
0,
|
|
1006
|
+
[_BMS, _CT],
|
|
1007
|
+
[() => ByteMatchSet$, 0]
|
|
1008
|
+
];
|
|
1009
|
+
var CreateGeoMatchSetRequest$ = [3, n0, _CGMSR,
|
|
1010
|
+
0,
|
|
1011
|
+
[_N, _CT],
|
|
1012
|
+
[0, 0], 2
|
|
1013
|
+
];
|
|
1014
|
+
var CreateGeoMatchSetResponse$ = [3, n0, _CGMSRr,
|
|
1015
|
+
0,
|
|
1016
|
+
[_GMS, _CT],
|
|
1017
|
+
[() => GeoMatchSet$, 0]
|
|
1018
|
+
];
|
|
1019
|
+
var CreateIPSetRequest$ = [3, n0, _CIPSR,
|
|
1020
|
+
0,
|
|
1021
|
+
[_N, _CT],
|
|
1022
|
+
[0, 0], 2
|
|
1023
|
+
];
|
|
1024
|
+
var CreateIPSetResponse$ = [3, n0, _CIPSRr,
|
|
1025
|
+
0,
|
|
1026
|
+
[_IPS, _CT],
|
|
1027
|
+
[() => IPSet$, 0]
|
|
1028
|
+
];
|
|
1029
|
+
var CreateRateBasedRuleRequest$ = [3, n0, _CRBRR,
|
|
1030
|
+
0,
|
|
1031
|
+
[_N, _MN, _RK, _RL, _CT, _Ta],
|
|
1032
|
+
[0, 0, 0, 1, 0, () => TagList], 5
|
|
1033
|
+
];
|
|
1034
|
+
var CreateRateBasedRuleResponse$ = [3, n0, _CRBRRr,
|
|
1035
|
+
0,
|
|
1036
|
+
[_R, _CT],
|
|
1037
|
+
[() => RateBasedRule$, 0]
|
|
1038
|
+
];
|
|
1039
|
+
var CreateRegexMatchSetRequest$ = [3, n0, _CRMSR,
|
|
1040
|
+
0,
|
|
1041
|
+
[_N, _CT],
|
|
1042
|
+
[0, 0], 2
|
|
1043
|
+
];
|
|
1044
|
+
var CreateRegexMatchSetResponse$ = [3, n0, _CRMSRr,
|
|
1045
|
+
0,
|
|
1046
|
+
[_RMS, _CT],
|
|
1047
|
+
[() => RegexMatchSet$, 0]
|
|
1048
|
+
];
|
|
1049
|
+
var CreateRegexPatternSetRequest$ = [3, n0, _CRPSR,
|
|
1050
|
+
0,
|
|
1051
|
+
[_N, _CT],
|
|
1052
|
+
[0, 0], 2
|
|
1053
|
+
];
|
|
1054
|
+
var CreateRegexPatternSetResponse$ = [3, n0, _CRPSRr,
|
|
1055
|
+
0,
|
|
1056
|
+
[_RPS, _CT],
|
|
1057
|
+
[() => RegexPatternSet$, 0]
|
|
1058
|
+
];
|
|
1059
|
+
var CreateRuleGroupRequest$ = [3, n0, _CRGR,
|
|
1060
|
+
0,
|
|
1061
|
+
[_N, _MN, _CT, _Ta],
|
|
1062
|
+
[0, 0, 0, () => TagList], 3
|
|
1063
|
+
];
|
|
1064
|
+
var CreateRuleGroupResponse$ = [3, n0, _CRGRr,
|
|
1065
|
+
0,
|
|
1066
|
+
[_RG, _CT],
|
|
1067
|
+
[() => RuleGroup$, 0]
|
|
1068
|
+
];
|
|
1069
|
+
var CreateRuleRequest$ = [3, n0, _CRR,
|
|
1070
|
+
0,
|
|
1071
|
+
[_N, _MN, _CT, _Ta],
|
|
1072
|
+
[0, 0, 0, () => TagList], 3
|
|
1073
|
+
];
|
|
1074
|
+
var CreateRuleResponse$ = [3, n0, _CRRr,
|
|
1075
|
+
0,
|
|
1076
|
+
[_R, _CT],
|
|
1077
|
+
[() => Rule$, 0]
|
|
1078
|
+
];
|
|
1079
|
+
var CreateSizeConstraintSetRequest$ = [3, n0, _CSCSR,
|
|
1080
|
+
0,
|
|
1081
|
+
[_N, _CT],
|
|
1082
|
+
[0, 0], 2
|
|
1083
|
+
];
|
|
1084
|
+
var CreateSizeConstraintSetResponse$ = [3, n0, _CSCSRr,
|
|
1085
|
+
0,
|
|
1086
|
+
[_SCS, _CT],
|
|
1087
|
+
[() => SizeConstraintSet$, 0]
|
|
1088
|
+
];
|
|
1089
|
+
var CreateSqlInjectionMatchSetRequest$ = [3, n0, _CSIMSR,
|
|
1090
|
+
0,
|
|
1091
|
+
[_N, _CT],
|
|
1092
|
+
[0, 0], 2
|
|
1093
|
+
];
|
|
1094
|
+
var CreateSqlInjectionMatchSetResponse$ = [3, n0, _CSIMSRr,
|
|
1095
|
+
0,
|
|
1096
|
+
[_SIMS, _CT],
|
|
1097
|
+
[() => SqlInjectionMatchSet$, 0]
|
|
1098
|
+
];
|
|
1099
|
+
var CreateWebACLMigrationStackRequest$ = [3, n0, _CWACLMSR,
|
|
1100
|
+
0,
|
|
1101
|
+
[_WACLI, _SBN, _IUT],
|
|
1102
|
+
[0, 0, 2], 3
|
|
1103
|
+
];
|
|
1104
|
+
var CreateWebACLMigrationStackResponse$ = [3, n0, _CWACLMSRr,
|
|
1105
|
+
0,
|
|
1106
|
+
[_SOU],
|
|
1107
|
+
[0], 1
|
|
1108
|
+
];
|
|
1109
|
+
var CreateWebACLRequest$ = [3, n0, _CWACLR,
|
|
1110
|
+
0,
|
|
1111
|
+
[_N, _MN, _DA, _CT, _Ta],
|
|
1112
|
+
[0, 0, () => WafAction$, 0, () => TagList], 4
|
|
1113
|
+
];
|
|
1114
|
+
var CreateWebACLResponse$ = [3, n0, _CWACLRr,
|
|
1115
|
+
0,
|
|
1116
|
+
[_WACL, _CT],
|
|
1117
|
+
[() => WebACL$, 0]
|
|
1118
|
+
];
|
|
1119
|
+
var CreateXssMatchSetRequest$ = [3, n0, _CXMSR,
|
|
1120
|
+
0,
|
|
1121
|
+
[_N, _CT],
|
|
1122
|
+
[0, 0], 2
|
|
1123
|
+
];
|
|
1124
|
+
var CreateXssMatchSetResponse$ = [3, n0, _CXMSRr,
|
|
1125
|
+
0,
|
|
1126
|
+
[_XMS, _CT],
|
|
1127
|
+
[() => XssMatchSet$, 0]
|
|
1128
|
+
];
|
|
1129
|
+
var DeleteByteMatchSetRequest$ = [3, n0, _DBMSR,
|
|
1130
|
+
0,
|
|
1131
|
+
[_BMSI, _CT],
|
|
1132
|
+
[0, 0], 2
|
|
1133
|
+
];
|
|
1134
|
+
var DeleteByteMatchSetResponse$ = [3, n0, _DBMSRe,
|
|
1135
|
+
0,
|
|
1136
|
+
[_CT],
|
|
1137
|
+
[0]
|
|
1138
|
+
];
|
|
1139
|
+
var DeleteGeoMatchSetRequest$ = [3, n0, _DGMSR,
|
|
1140
|
+
0,
|
|
1141
|
+
[_GMSI, _CT],
|
|
1142
|
+
[0, 0], 2
|
|
1143
|
+
];
|
|
1144
|
+
var DeleteGeoMatchSetResponse$ = [3, n0, _DGMSRe,
|
|
1145
|
+
0,
|
|
1146
|
+
[_CT],
|
|
1147
|
+
[0]
|
|
1148
|
+
];
|
|
1149
|
+
var DeleteIPSetRequest$ = [3, n0, _DIPSR,
|
|
1150
|
+
0,
|
|
1151
|
+
[_IPSI, _CT],
|
|
1152
|
+
[0, 0], 2
|
|
1153
|
+
];
|
|
1154
|
+
var DeleteIPSetResponse$ = [3, n0, _DIPSRe,
|
|
1155
|
+
0,
|
|
1156
|
+
[_CT],
|
|
1157
|
+
[0]
|
|
1158
|
+
];
|
|
1159
|
+
var DeleteLoggingConfigurationRequest$ = [3, n0, _DLCR,
|
|
1160
|
+
0,
|
|
1161
|
+
[_RA],
|
|
1162
|
+
[0], 1
|
|
1163
|
+
];
|
|
1164
|
+
var DeleteLoggingConfigurationResponse$ = [3, n0, _DLCRe,
|
|
1165
|
+
0,
|
|
1166
|
+
[],
|
|
1167
|
+
[]
|
|
1168
|
+
];
|
|
1169
|
+
var DeletePermissionPolicyRequest$ = [3, n0, _DPPR,
|
|
1170
|
+
0,
|
|
1171
|
+
[_RA],
|
|
1172
|
+
[0], 1
|
|
1173
|
+
];
|
|
1174
|
+
var DeletePermissionPolicyResponse$ = [3, n0, _DPPRe,
|
|
1175
|
+
0,
|
|
1176
|
+
[],
|
|
1177
|
+
[]
|
|
1178
|
+
];
|
|
1179
|
+
var DeleteRateBasedRuleRequest$ = [3, n0, _DRBRR,
|
|
1180
|
+
0,
|
|
1181
|
+
[_RI, _CT],
|
|
1182
|
+
[0, 0], 2
|
|
1183
|
+
];
|
|
1184
|
+
var DeleteRateBasedRuleResponse$ = [3, n0, _DRBRRe,
|
|
1185
|
+
0,
|
|
1186
|
+
[_CT],
|
|
1187
|
+
[0]
|
|
1188
|
+
];
|
|
1189
|
+
var DeleteRegexMatchSetRequest$ = [3, n0, _DRMSR,
|
|
1190
|
+
0,
|
|
1191
|
+
[_RMSI, _CT],
|
|
1192
|
+
[0, 0], 2
|
|
1193
|
+
];
|
|
1194
|
+
var DeleteRegexMatchSetResponse$ = [3, n0, _DRMSRe,
|
|
1195
|
+
0,
|
|
1196
|
+
[_CT],
|
|
1197
|
+
[0]
|
|
1198
|
+
];
|
|
1199
|
+
var DeleteRegexPatternSetRequest$ = [3, n0, _DRPSR,
|
|
1200
|
+
0,
|
|
1201
|
+
[_RPSI, _CT],
|
|
1202
|
+
[0, 0], 2
|
|
1203
|
+
];
|
|
1204
|
+
var DeleteRegexPatternSetResponse$ = [3, n0, _DRPSRe,
|
|
1205
|
+
0,
|
|
1206
|
+
[_CT],
|
|
1207
|
+
[0]
|
|
1208
|
+
];
|
|
1209
|
+
var DeleteRuleGroupRequest$ = [3, n0, _DRGR,
|
|
1210
|
+
0,
|
|
1211
|
+
[_RGI, _CT],
|
|
1212
|
+
[0, 0], 2
|
|
1213
|
+
];
|
|
1214
|
+
var DeleteRuleGroupResponse$ = [3, n0, _DRGRe,
|
|
1215
|
+
0,
|
|
1216
|
+
[_CT],
|
|
1217
|
+
[0]
|
|
1218
|
+
];
|
|
1219
|
+
var DeleteRuleRequest$ = [3, n0, _DRR,
|
|
1220
|
+
0,
|
|
1221
|
+
[_RI, _CT],
|
|
1222
|
+
[0, 0], 2
|
|
1223
|
+
];
|
|
1224
|
+
var DeleteRuleResponse$ = [3, n0, _DRRe,
|
|
1225
|
+
0,
|
|
1226
|
+
[_CT],
|
|
1227
|
+
[0]
|
|
1228
|
+
];
|
|
1229
|
+
var DeleteSizeConstraintSetRequest$ = [3, n0, _DSCSR,
|
|
1230
|
+
0,
|
|
1231
|
+
[_SCSI, _CT],
|
|
1232
|
+
[0, 0], 2
|
|
1233
|
+
];
|
|
1234
|
+
var DeleteSizeConstraintSetResponse$ = [3, n0, _DSCSRe,
|
|
1235
|
+
0,
|
|
1236
|
+
[_CT],
|
|
1237
|
+
[0]
|
|
1238
|
+
];
|
|
1239
|
+
var DeleteSqlInjectionMatchSetRequest$ = [3, n0, _DSIMSR,
|
|
1240
|
+
0,
|
|
1241
|
+
[_SIMSI, _CT],
|
|
1242
|
+
[0, 0], 2
|
|
1243
|
+
];
|
|
1244
|
+
var DeleteSqlInjectionMatchSetResponse$ = [3, n0, _DSIMSRe,
|
|
1245
|
+
0,
|
|
1246
|
+
[_CT],
|
|
1247
|
+
[0]
|
|
1248
|
+
];
|
|
1249
|
+
var DeleteWebACLRequest$ = [3, n0, _DWACLR,
|
|
1250
|
+
0,
|
|
1251
|
+
[_WACLI, _CT],
|
|
1252
|
+
[0, 0], 2
|
|
1253
|
+
];
|
|
1254
|
+
var DeleteWebACLResponse$ = [3, n0, _DWACLRe,
|
|
1255
|
+
0,
|
|
1256
|
+
[_CT],
|
|
1257
|
+
[0]
|
|
1258
|
+
];
|
|
1259
|
+
var DeleteXssMatchSetRequest$ = [3, n0, _DXMSR,
|
|
1260
|
+
0,
|
|
1261
|
+
[_XMSI, _CT],
|
|
1262
|
+
[0, 0], 2
|
|
1263
|
+
];
|
|
1264
|
+
var DeleteXssMatchSetResponse$ = [3, n0, _DXMSRe,
|
|
1265
|
+
0,
|
|
1266
|
+
[_CT],
|
|
1267
|
+
[0]
|
|
1268
|
+
];
|
|
1269
|
+
var DisassociateWebACLRequest$ = [3, n0, _DWACLRi,
|
|
1270
|
+
0,
|
|
1271
|
+
[_RA],
|
|
1272
|
+
[0], 1
|
|
1273
|
+
];
|
|
1274
|
+
var DisassociateWebACLResponse$ = [3, n0, _DWACLRis,
|
|
1275
|
+
0,
|
|
1276
|
+
[],
|
|
1277
|
+
[]
|
|
1278
|
+
];
|
|
1279
|
+
var ExcludedRule$ = [3, n0, _ERx,
|
|
1280
|
+
0,
|
|
1281
|
+
[_RI],
|
|
1282
|
+
[0], 1
|
|
1283
|
+
];
|
|
1284
|
+
var FieldToMatch$ = [3, n0, _FTM,
|
|
1285
|
+
0,
|
|
1286
|
+
[_T, _D],
|
|
1287
|
+
[0, 0], 1
|
|
1288
|
+
];
|
|
1289
|
+
var GeoMatchConstraint$ = [3, n0, _GMC,
|
|
1290
|
+
0,
|
|
1291
|
+
[_T, _V],
|
|
1292
|
+
[0, 0], 2
|
|
1293
|
+
];
|
|
1294
|
+
var GeoMatchSet$ = [3, n0, _GMS,
|
|
1295
|
+
0,
|
|
1296
|
+
[_GMSI, _GMCe, _N],
|
|
1297
|
+
[0, () => GeoMatchConstraints, 0], 2
|
|
1298
|
+
];
|
|
1299
|
+
var GeoMatchSetSummary$ = [3, n0, _GMSS,
|
|
1300
|
+
0,
|
|
1301
|
+
[_GMSI, _N],
|
|
1302
|
+
[0, 0], 2
|
|
1303
|
+
];
|
|
1304
|
+
var GeoMatchSetUpdate$ = [3, n0, _GMSU,
|
|
1305
|
+
0,
|
|
1306
|
+
[_A, _GMC],
|
|
1307
|
+
[0, () => GeoMatchConstraint$], 2
|
|
1308
|
+
];
|
|
1309
|
+
var GetByteMatchSetRequest$ = [3, n0, _GBMSR,
|
|
1310
|
+
0,
|
|
1311
|
+
[_BMSI],
|
|
1312
|
+
[0], 1
|
|
1313
|
+
];
|
|
1314
|
+
var GetByteMatchSetResponse$ = [3, n0, _GBMSRe,
|
|
1315
|
+
0,
|
|
1316
|
+
[_BMS],
|
|
1317
|
+
[() => ByteMatchSet$]
|
|
1318
|
+
];
|
|
1319
|
+
var GetChangeTokenRequest$ = [3, n0, _GCTR,
|
|
1320
|
+
0,
|
|
1321
|
+
[],
|
|
1322
|
+
[]
|
|
1323
|
+
];
|
|
1324
|
+
var GetChangeTokenResponse$ = [3, n0, _GCTRe,
|
|
1325
|
+
0,
|
|
1326
|
+
[_CT],
|
|
1327
|
+
[0]
|
|
1328
|
+
];
|
|
1329
|
+
var GetChangeTokenStatusRequest$ = [3, n0, _GCTSR,
|
|
1330
|
+
0,
|
|
1331
|
+
[_CT],
|
|
1332
|
+
[0], 1
|
|
1333
|
+
];
|
|
1334
|
+
var GetChangeTokenStatusResponse$ = [3, n0, _GCTSRe,
|
|
1335
|
+
0,
|
|
1336
|
+
[_CTS],
|
|
1337
|
+
[0]
|
|
1338
|
+
];
|
|
1339
|
+
var GetGeoMatchSetRequest$ = [3, n0, _GGMSR,
|
|
1340
|
+
0,
|
|
1341
|
+
[_GMSI],
|
|
1342
|
+
[0], 1
|
|
1343
|
+
];
|
|
1344
|
+
var GetGeoMatchSetResponse$ = [3, n0, _GGMSRe,
|
|
1345
|
+
0,
|
|
1346
|
+
[_GMS],
|
|
1347
|
+
[() => GeoMatchSet$]
|
|
1348
|
+
];
|
|
1349
|
+
var GetIPSetRequest$ = [3, n0, _GIPSR,
|
|
1350
|
+
0,
|
|
1351
|
+
[_IPSI],
|
|
1352
|
+
[0], 1
|
|
1353
|
+
];
|
|
1354
|
+
var GetIPSetResponse$ = [3, n0, _GIPSRe,
|
|
1355
|
+
0,
|
|
1356
|
+
[_IPS],
|
|
1357
|
+
[() => IPSet$]
|
|
1358
|
+
];
|
|
1359
|
+
var GetLoggingConfigurationRequest$ = [3, n0, _GLCR,
|
|
1360
|
+
0,
|
|
1361
|
+
[_RA],
|
|
1362
|
+
[0], 1
|
|
1363
|
+
];
|
|
1364
|
+
var GetLoggingConfigurationResponse$ = [3, n0, _GLCRe,
|
|
1365
|
+
0,
|
|
1366
|
+
[_LC],
|
|
1367
|
+
[() => LoggingConfiguration$]
|
|
1368
|
+
];
|
|
1369
|
+
var GetPermissionPolicyRequest$ = [3, n0, _GPPR,
|
|
1370
|
+
0,
|
|
1371
|
+
[_RA],
|
|
1372
|
+
[0], 1
|
|
1373
|
+
];
|
|
1374
|
+
var GetPermissionPolicyResponse$ = [3, n0, _GPPRe,
|
|
1375
|
+
0,
|
|
1376
|
+
[_Po],
|
|
1377
|
+
[0]
|
|
1378
|
+
];
|
|
1379
|
+
var GetRateBasedRuleManagedKeysRequest$ = [3, n0, _GRBRMKR,
|
|
1380
|
+
0,
|
|
1381
|
+
[_RI, _NM],
|
|
1382
|
+
[0, 0], 1
|
|
1383
|
+
];
|
|
1384
|
+
var GetRateBasedRuleManagedKeysResponse$ = [3, n0, _GRBRMKRe,
|
|
1385
|
+
0,
|
|
1386
|
+
[_MK, _NM],
|
|
1387
|
+
[64 | 0, 0]
|
|
1388
|
+
];
|
|
1389
|
+
var GetRateBasedRuleRequest$ = [3, n0, _GRBRR,
|
|
1390
|
+
0,
|
|
1391
|
+
[_RI],
|
|
1392
|
+
[0], 1
|
|
1393
|
+
];
|
|
1394
|
+
var GetRateBasedRuleResponse$ = [3, n0, _GRBRRe,
|
|
1395
|
+
0,
|
|
1396
|
+
[_R],
|
|
1397
|
+
[() => RateBasedRule$]
|
|
1398
|
+
];
|
|
1399
|
+
var GetRegexMatchSetRequest$ = [3, n0, _GRMSR,
|
|
1400
|
+
0,
|
|
1401
|
+
[_RMSI],
|
|
1402
|
+
[0], 1
|
|
1403
|
+
];
|
|
1404
|
+
var GetRegexMatchSetResponse$ = [3, n0, _GRMSRe,
|
|
1405
|
+
0,
|
|
1406
|
+
[_RMS],
|
|
1407
|
+
[() => RegexMatchSet$]
|
|
1408
|
+
];
|
|
1409
|
+
var GetRegexPatternSetRequest$ = [3, n0, _GRPSR,
|
|
1410
|
+
0,
|
|
1411
|
+
[_RPSI],
|
|
1412
|
+
[0], 1
|
|
1413
|
+
];
|
|
1414
|
+
var GetRegexPatternSetResponse$ = [3, n0, _GRPSRe,
|
|
1415
|
+
0,
|
|
1416
|
+
[_RPS],
|
|
1417
|
+
[() => RegexPatternSet$]
|
|
1418
|
+
];
|
|
1419
|
+
var GetRuleGroupRequest$ = [3, n0, _GRGR,
|
|
1420
|
+
0,
|
|
1421
|
+
[_RGI],
|
|
1422
|
+
[0], 1
|
|
1423
|
+
];
|
|
1424
|
+
var GetRuleGroupResponse$ = [3, n0, _GRGRe,
|
|
1425
|
+
0,
|
|
1426
|
+
[_RG],
|
|
1427
|
+
[() => RuleGroup$]
|
|
1428
|
+
];
|
|
1429
|
+
var GetRuleRequest$ = [3, n0, _GRR,
|
|
1430
|
+
0,
|
|
1431
|
+
[_RI],
|
|
1432
|
+
[0], 1
|
|
1433
|
+
];
|
|
1434
|
+
var GetRuleResponse$ = [3, n0, _GRRe,
|
|
1435
|
+
0,
|
|
1436
|
+
[_R],
|
|
1437
|
+
[() => Rule$]
|
|
1438
|
+
];
|
|
1439
|
+
var GetSampledRequestsRequest$ = [3, n0, _GSRR,
|
|
1440
|
+
0,
|
|
1441
|
+
[_WAI, _RI, _TW, _MI],
|
|
1442
|
+
[0, 0, () => TimeWindow$, 1], 4
|
|
1443
|
+
];
|
|
1444
|
+
var GetSampledRequestsResponse$ = [3, n0, _GSRRe,
|
|
1445
|
+
0,
|
|
1446
|
+
[_SR, _PS, _TW],
|
|
1447
|
+
[() => SampledHTTPRequests, 1, () => TimeWindow$]
|
|
1448
|
+
];
|
|
1449
|
+
var GetSizeConstraintSetRequest$ = [3, n0, _GSCSR,
|
|
1450
|
+
0,
|
|
1451
|
+
[_SCSI],
|
|
1452
|
+
[0], 1
|
|
1453
|
+
];
|
|
1454
|
+
var GetSizeConstraintSetResponse$ = [3, n0, _GSCSRe,
|
|
1455
|
+
0,
|
|
1456
|
+
[_SCS],
|
|
1457
|
+
[() => SizeConstraintSet$]
|
|
1458
|
+
];
|
|
1459
|
+
var GetSqlInjectionMatchSetRequest$ = [3, n0, _GSIMSR,
|
|
1460
|
+
0,
|
|
1461
|
+
[_SIMSI],
|
|
1462
|
+
[0], 1
|
|
1463
|
+
];
|
|
1464
|
+
var GetSqlInjectionMatchSetResponse$ = [3, n0, _GSIMSRe,
|
|
1465
|
+
0,
|
|
1466
|
+
[_SIMS],
|
|
1467
|
+
[() => SqlInjectionMatchSet$]
|
|
1468
|
+
];
|
|
1469
|
+
var GetWebACLForResourceRequest$ = [3, n0, _GWACLFRR,
|
|
1470
|
+
0,
|
|
1471
|
+
[_RA],
|
|
1472
|
+
[0], 1
|
|
1473
|
+
];
|
|
1474
|
+
var GetWebACLForResourceResponse$ = [3, n0, _GWACLFRRe,
|
|
1475
|
+
0,
|
|
1476
|
+
[_WACLS],
|
|
1477
|
+
[() => WebACLSummary$]
|
|
1478
|
+
];
|
|
1479
|
+
var GetWebACLRequest$ = [3, n0, _GWACLR,
|
|
1480
|
+
0,
|
|
1481
|
+
[_WACLI],
|
|
1482
|
+
[0], 1
|
|
1483
|
+
];
|
|
1484
|
+
var GetWebACLResponse$ = [3, n0, _GWACLRe,
|
|
1485
|
+
0,
|
|
1486
|
+
[_WACL],
|
|
1487
|
+
[() => WebACL$]
|
|
1488
|
+
];
|
|
1489
|
+
var GetXssMatchSetRequest$ = [3, n0, _GXMSR,
|
|
1490
|
+
0,
|
|
1491
|
+
[_XMSI],
|
|
1492
|
+
[0], 1
|
|
1493
|
+
];
|
|
1494
|
+
var GetXssMatchSetResponse$ = [3, n0, _GXMSRe,
|
|
1495
|
+
0,
|
|
1496
|
+
[_XMS],
|
|
1497
|
+
[() => XssMatchSet$]
|
|
1498
|
+
];
|
|
1499
|
+
var HTTPHeader$ = [3, n0, _HTTPH,
|
|
1500
|
+
0,
|
|
1501
|
+
[_N, _V],
|
|
1502
|
+
[0, 0]
|
|
1503
|
+
];
|
|
1504
|
+
var HTTPRequest$ = [3, n0, _HTTPR,
|
|
1505
|
+
0,
|
|
1506
|
+
[_CIP, _C, _URI, _M, _HTTPV, _H],
|
|
1507
|
+
[0, 0, 0, 0, 0, () => HTTPHeaders]
|
|
1508
|
+
];
|
|
1509
|
+
var IPSet$ = [3, n0, _IPS,
|
|
1510
|
+
0,
|
|
1511
|
+
[_IPSI, _IPSD, _N],
|
|
1512
|
+
[0, () => IPSetDescriptors, 0], 2
|
|
1513
|
+
];
|
|
1514
|
+
var IPSetDescriptor$ = [3, n0, _IPSDe,
|
|
1515
|
+
0,
|
|
1516
|
+
[_T, _V],
|
|
1517
|
+
[0, 0], 2
|
|
1518
|
+
];
|
|
1519
|
+
var IPSetSummary$ = [3, n0, _IPSS,
|
|
1520
|
+
0,
|
|
1521
|
+
[_IPSI, _N],
|
|
1522
|
+
[0, 0], 2
|
|
1523
|
+
];
|
|
1524
|
+
var IPSetUpdate$ = [3, n0, _IPSU,
|
|
1525
|
+
0,
|
|
1526
|
+
[_A, _IPSDe],
|
|
1527
|
+
[0, () => IPSetDescriptor$], 2
|
|
1528
|
+
];
|
|
1529
|
+
var ListActivatedRulesInRuleGroupRequest$ = [3, n0, _LARIRGR,
|
|
1530
|
+
0,
|
|
1531
|
+
[_RGI, _NM, _L],
|
|
1532
|
+
[0, 0, 1]
|
|
1533
|
+
];
|
|
1534
|
+
var ListActivatedRulesInRuleGroupResponse$ = [3, n0, _LARIRGRi,
|
|
1535
|
+
0,
|
|
1536
|
+
[_NM, _ARc],
|
|
1537
|
+
[0, () => ActivatedRules]
|
|
1538
|
+
];
|
|
1539
|
+
var ListByteMatchSetsRequest$ = [3, n0, _LBMSR,
|
|
1540
|
+
0,
|
|
1541
|
+
[_NM, _L],
|
|
1542
|
+
[0, 1]
|
|
1543
|
+
];
|
|
1544
|
+
var ListByteMatchSetsResponse$ = [3, n0, _LBMSRi,
|
|
1545
|
+
0,
|
|
1546
|
+
[_NM, _BMSy],
|
|
1547
|
+
[0, () => ByteMatchSetSummaries]
|
|
1548
|
+
];
|
|
1549
|
+
var ListGeoMatchSetsRequest$ = [3, n0, _LGMSR,
|
|
1550
|
+
0,
|
|
1551
|
+
[_NM, _L],
|
|
1552
|
+
[0, 1]
|
|
1553
|
+
];
|
|
1554
|
+
var ListGeoMatchSetsResponse$ = [3, n0, _LGMSRi,
|
|
1555
|
+
0,
|
|
1556
|
+
[_NM, _GMSe],
|
|
1557
|
+
[0, () => GeoMatchSetSummaries]
|
|
1558
|
+
];
|
|
1559
|
+
var ListIPSetsRequest$ = [3, n0, _LIPSR,
|
|
1560
|
+
0,
|
|
1561
|
+
[_NM, _L],
|
|
1562
|
+
[0, 1]
|
|
1563
|
+
];
|
|
1564
|
+
var ListIPSetsResponse$ = [3, n0, _LIPSRi,
|
|
1565
|
+
0,
|
|
1566
|
+
[_NM, _IPSe],
|
|
1567
|
+
[0, () => IPSetSummaries]
|
|
1568
|
+
];
|
|
1569
|
+
var ListLoggingConfigurationsRequest$ = [3, n0, _LLCR,
|
|
1570
|
+
0,
|
|
1571
|
+
[_NM, _L],
|
|
1572
|
+
[0, 1]
|
|
1573
|
+
];
|
|
1574
|
+
var ListLoggingConfigurationsResponse$ = [3, n0, _LLCRi,
|
|
1575
|
+
0,
|
|
1576
|
+
[_LCo, _NM],
|
|
1577
|
+
[() => LoggingConfigurations, 0]
|
|
1578
|
+
];
|
|
1579
|
+
var ListRateBasedRulesRequest$ = [3, n0, _LRBRR,
|
|
1580
|
+
0,
|
|
1581
|
+
[_NM, _L],
|
|
1582
|
+
[0, 1]
|
|
1583
|
+
];
|
|
1584
|
+
var ListRateBasedRulesResponse$ = [3, n0, _LRBRRi,
|
|
1585
|
+
0,
|
|
1586
|
+
[_NM, _Ru],
|
|
1587
|
+
[0, () => RuleSummaries]
|
|
1588
|
+
];
|
|
1589
|
+
var ListRegexMatchSetsRequest$ = [3, n0, _LRMSR,
|
|
1590
|
+
0,
|
|
1591
|
+
[_NM, _L],
|
|
1592
|
+
[0, 1]
|
|
1593
|
+
];
|
|
1594
|
+
var ListRegexMatchSetsResponse$ = [3, n0, _LRMSRi,
|
|
1595
|
+
0,
|
|
1596
|
+
[_NM, _RMSe],
|
|
1597
|
+
[0, () => RegexMatchSetSummaries]
|
|
1598
|
+
];
|
|
1599
|
+
var ListRegexPatternSetsRequest$ = [3, n0, _LRPSR,
|
|
1600
|
+
0,
|
|
1601
|
+
[_NM, _L],
|
|
1602
|
+
[0, 1]
|
|
1603
|
+
];
|
|
1604
|
+
var ListRegexPatternSetsResponse$ = [3, n0, _LRPSRi,
|
|
1605
|
+
0,
|
|
1606
|
+
[_NM, _RPSe],
|
|
1607
|
+
[0, () => RegexPatternSetSummaries]
|
|
1608
|
+
];
|
|
1609
|
+
var ListResourcesForWebACLRequest$ = [3, n0, _LRFWACLR,
|
|
1610
|
+
0,
|
|
1611
|
+
[_WACLI, _RT],
|
|
1612
|
+
[0, 0], 1
|
|
1613
|
+
];
|
|
1614
|
+
var ListResourcesForWebACLResponse$ = [3, n0, _LRFWACLRi,
|
|
1615
|
+
0,
|
|
1616
|
+
[_RAe],
|
|
1617
|
+
[64 | 0]
|
|
1618
|
+
];
|
|
1619
|
+
var ListRuleGroupsRequest$ = [3, n0, _LRGR,
|
|
1620
|
+
0,
|
|
1621
|
+
[_NM, _L],
|
|
1622
|
+
[0, 1]
|
|
1623
|
+
];
|
|
1624
|
+
var ListRuleGroupsResponse$ = [3, n0, _LRGRi,
|
|
1625
|
+
0,
|
|
1626
|
+
[_NM, _RGu],
|
|
1627
|
+
[0, () => RuleGroupSummaries]
|
|
1628
|
+
];
|
|
1629
|
+
var ListRulesRequest$ = [3, n0, _LRR,
|
|
1630
|
+
0,
|
|
1631
|
+
[_NM, _L],
|
|
1632
|
+
[0, 1]
|
|
1633
|
+
];
|
|
1634
|
+
var ListRulesResponse$ = [3, n0, _LRRi,
|
|
1635
|
+
0,
|
|
1636
|
+
[_NM, _Ru],
|
|
1637
|
+
[0, () => RuleSummaries]
|
|
1638
|
+
];
|
|
1639
|
+
var ListSizeConstraintSetsRequest$ = [3, n0, _LSCSR,
|
|
1640
|
+
0,
|
|
1641
|
+
[_NM, _L],
|
|
1642
|
+
[0, 1]
|
|
1643
|
+
];
|
|
1644
|
+
var ListSizeConstraintSetsResponse$ = [3, n0, _LSCSRi,
|
|
1645
|
+
0,
|
|
1646
|
+
[_NM, _SCSi],
|
|
1647
|
+
[0, () => SizeConstraintSetSummaries]
|
|
1648
|
+
];
|
|
1649
|
+
var ListSqlInjectionMatchSetsRequest$ = [3, n0, _LSIMSR,
|
|
1650
|
+
0,
|
|
1651
|
+
[_NM, _L],
|
|
1652
|
+
[0, 1]
|
|
1653
|
+
];
|
|
1654
|
+
var ListSqlInjectionMatchSetsResponse$ = [3, n0, _LSIMSRi,
|
|
1655
|
+
0,
|
|
1656
|
+
[_NM, _SIMSq],
|
|
1657
|
+
[0, () => SqlInjectionMatchSetSummaries]
|
|
1658
|
+
];
|
|
1659
|
+
var ListSubscribedRuleGroupsRequest$ = [3, n0, _LSRGR,
|
|
1660
|
+
0,
|
|
1661
|
+
[_NM, _L],
|
|
1662
|
+
[0, 1]
|
|
1663
|
+
];
|
|
1664
|
+
var ListSubscribedRuleGroupsResponse$ = [3, n0, _LSRGRi,
|
|
1665
|
+
0,
|
|
1666
|
+
[_NM, _RGu],
|
|
1667
|
+
[0, () => SubscribedRuleGroupSummaries]
|
|
1668
|
+
];
|
|
1669
|
+
var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
|
|
1670
|
+
0,
|
|
1671
|
+
[_RARN, _NM, _L],
|
|
1672
|
+
[0, 0, 1], 1
|
|
1673
|
+
];
|
|
1674
|
+
var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
|
|
1675
|
+
0,
|
|
1676
|
+
[_NM, _TIFR],
|
|
1677
|
+
[0, () => TagInfoForResource$]
|
|
1678
|
+
];
|
|
1679
|
+
var ListWebACLsRequest$ = [3, n0, _LWACLR,
|
|
1680
|
+
0,
|
|
1681
|
+
[_NM, _L],
|
|
1682
|
+
[0, 1]
|
|
1683
|
+
];
|
|
1684
|
+
var ListWebACLsResponse$ = [3, n0, _LWACLRi,
|
|
1685
|
+
0,
|
|
1686
|
+
[_NM, _WACLe],
|
|
1687
|
+
[0, () => WebACLSummaries]
|
|
1688
|
+
];
|
|
1689
|
+
var ListXssMatchSetsRequest$ = [3, n0, _LXMSR,
|
|
1690
|
+
0,
|
|
1691
|
+
[_NM, _L],
|
|
1692
|
+
[0, 1]
|
|
1693
|
+
];
|
|
1694
|
+
var ListXssMatchSetsResponse$ = [3, n0, _LXMSRi,
|
|
1695
|
+
0,
|
|
1696
|
+
[_NM, _XMSs],
|
|
1697
|
+
[0, () => XssMatchSetSummaries]
|
|
1698
|
+
];
|
|
1699
|
+
var LoggingConfiguration$ = [3, n0, _LC,
|
|
1700
|
+
0,
|
|
1701
|
+
[_RA, _LDC, _RF],
|
|
1702
|
+
[0, 64 | 0, () => RedactedFields], 2
|
|
1703
|
+
];
|
|
1704
|
+
var Predicate$ = [3, n0, _Pr,
|
|
1705
|
+
0,
|
|
1706
|
+
[_Ne, _T, _DI],
|
|
1707
|
+
[2, 0, 0], 3
|
|
1708
|
+
];
|
|
1709
|
+
var PutLoggingConfigurationRequest$ = [3, n0, _PLCR,
|
|
1710
|
+
0,
|
|
1711
|
+
[_LC],
|
|
1712
|
+
[() => LoggingConfiguration$], 1
|
|
1713
|
+
];
|
|
1714
|
+
var PutLoggingConfigurationResponse$ = [3, n0, _PLCRu,
|
|
1715
|
+
0,
|
|
1716
|
+
[_LC],
|
|
1717
|
+
[() => LoggingConfiguration$]
|
|
1718
|
+
];
|
|
1719
|
+
var PutPermissionPolicyRequest$ = [3, n0, _PPPR,
|
|
1720
|
+
0,
|
|
1721
|
+
[_RA, _Po],
|
|
1722
|
+
[0, 0], 2
|
|
1723
|
+
];
|
|
1724
|
+
var PutPermissionPolicyResponse$ = [3, n0, _PPPRu,
|
|
1725
|
+
0,
|
|
1726
|
+
[],
|
|
1727
|
+
[]
|
|
1728
|
+
];
|
|
1729
|
+
var RateBasedRule$ = [3, n0, _RBR,
|
|
1730
|
+
0,
|
|
1731
|
+
[_RI, _MP, _RK, _RL, _N, _MN],
|
|
1732
|
+
[0, () => Predicates, 0, 1, 0, 0], 4
|
|
1733
|
+
];
|
|
1734
|
+
var RegexMatchSet$ = [3, n0, _RMS,
|
|
1735
|
+
0,
|
|
1736
|
+
[_RMSI, _N, _RMT],
|
|
1737
|
+
[0, 0, () => RegexMatchTuples]
|
|
1738
|
+
];
|
|
1739
|
+
var RegexMatchSetSummary$ = [3, n0, _RMSS,
|
|
1740
|
+
0,
|
|
1741
|
+
[_RMSI, _N],
|
|
1742
|
+
[0, 0], 2
|
|
1743
|
+
];
|
|
1744
|
+
var RegexMatchSetUpdate$ = [3, n0, _RMSU,
|
|
1745
|
+
0,
|
|
1746
|
+
[_A, _RMTe],
|
|
1747
|
+
[0, () => RegexMatchTuple$], 2
|
|
1748
|
+
];
|
|
1749
|
+
var RegexMatchTuple$ = [3, n0, _RMTe,
|
|
1750
|
+
0,
|
|
1751
|
+
[_FTM, _TT, _RPSI],
|
|
1752
|
+
[() => FieldToMatch$, 0, 0], 3
|
|
1753
|
+
];
|
|
1754
|
+
var RegexPatternSet$ = [3, n0, _RPS,
|
|
1755
|
+
0,
|
|
1756
|
+
[_RPSI, _RPSeg, _N],
|
|
1757
|
+
[0, 64 | 0, 0], 2
|
|
1758
|
+
];
|
|
1759
|
+
var RegexPatternSetSummary$ = [3, n0, _RPSS,
|
|
1760
|
+
0,
|
|
1761
|
+
[_RPSI, _N],
|
|
1762
|
+
[0, 0], 2
|
|
1763
|
+
];
|
|
1764
|
+
var RegexPatternSetUpdate$ = [3, n0, _RPSU,
|
|
1765
|
+
0,
|
|
1766
|
+
[_A, _RPSege],
|
|
1767
|
+
[0, 0], 2
|
|
1768
|
+
];
|
|
1769
|
+
var Rule$ = [3, n0, _R,
|
|
1770
|
+
0,
|
|
1771
|
+
[_RI, _Pre, _N, _MN],
|
|
1772
|
+
[0, () => Predicates, 0, 0], 2
|
|
1773
|
+
];
|
|
1774
|
+
var RuleGroup$ = [3, n0, _RG,
|
|
1775
|
+
0,
|
|
1776
|
+
[_RGI, _N, _MN],
|
|
1777
|
+
[0, 0, 0], 1
|
|
1778
|
+
];
|
|
1779
|
+
var RuleGroupSummary$ = [3, n0, _RGS,
|
|
1780
|
+
0,
|
|
1781
|
+
[_RGI, _N],
|
|
1782
|
+
[0, 0], 2
|
|
1783
|
+
];
|
|
1784
|
+
var RuleGroupUpdate$ = [3, n0, _RGU,
|
|
1785
|
+
0,
|
|
1786
|
+
[_A, _AR],
|
|
1787
|
+
[0, () => ActivatedRule$], 2
|
|
1788
|
+
];
|
|
1789
|
+
var RuleSummary$ = [3, n0, _RS,
|
|
1790
|
+
0,
|
|
1791
|
+
[_RI, _N],
|
|
1792
|
+
[0, 0], 2
|
|
1793
|
+
];
|
|
1794
|
+
var RuleUpdate$ = [3, n0, _RU,
|
|
1795
|
+
0,
|
|
1796
|
+
[_A, _Pr],
|
|
1797
|
+
[0, () => Predicate$], 2
|
|
1798
|
+
];
|
|
1799
|
+
var SampledHTTPRequest$ = [3, n0, _SHTTPR,
|
|
1800
|
+
0,
|
|
1801
|
+
[_Re, _W, _Ti, _A, _RWRG],
|
|
1802
|
+
[() => HTTPRequest$, 1, 4, 0, 0], 2
|
|
1803
|
+
];
|
|
1804
|
+
var SizeConstraint$ = [3, n0, _SC,
|
|
1805
|
+
0,
|
|
1806
|
+
[_FTM, _TT, _CO, _S],
|
|
1807
|
+
[() => FieldToMatch$, 0, 0, 1], 4
|
|
1808
|
+
];
|
|
1809
|
+
var SizeConstraintSet$ = [3, n0, _SCS,
|
|
1810
|
+
0,
|
|
1811
|
+
[_SCSI, _SCi, _N],
|
|
1812
|
+
[0, () => SizeConstraints, 0], 2
|
|
1813
|
+
];
|
|
1814
|
+
var SizeConstraintSetSummary$ = [3, n0, _SCSS,
|
|
1815
|
+
0,
|
|
1816
|
+
[_SCSI, _N],
|
|
1817
|
+
[0, 0], 2
|
|
1818
|
+
];
|
|
1819
|
+
var SizeConstraintSetUpdate$ = [3, n0, _SCSU,
|
|
1820
|
+
0,
|
|
1821
|
+
[_A, _SC],
|
|
1822
|
+
[0, () => SizeConstraint$], 2
|
|
1823
|
+
];
|
|
1824
|
+
var SqlInjectionMatchSet$ = [3, n0, _SIMS,
|
|
1825
|
+
0,
|
|
1826
|
+
[_SIMSI, _SIMT, _N],
|
|
1827
|
+
[0, () => SqlInjectionMatchTuples, 0], 2
|
|
1828
|
+
];
|
|
1829
|
+
var SqlInjectionMatchSetSummary$ = [3, n0, _SIMSS,
|
|
1830
|
+
0,
|
|
1831
|
+
[_SIMSI, _N],
|
|
1832
|
+
[0, 0], 2
|
|
1833
|
+
];
|
|
1834
|
+
var SqlInjectionMatchSetUpdate$ = [3, n0, _SIMSU,
|
|
1835
|
+
0,
|
|
1836
|
+
[_A, _SIMTq],
|
|
1837
|
+
[0, () => SqlInjectionMatchTuple$], 2
|
|
1838
|
+
];
|
|
1839
|
+
var SqlInjectionMatchTuple$ = [3, n0, _SIMTq,
|
|
1840
|
+
0,
|
|
1841
|
+
[_FTM, _TT],
|
|
1842
|
+
[() => FieldToMatch$, 0], 2
|
|
1843
|
+
];
|
|
1844
|
+
var SubscribedRuleGroupSummary$ = [3, n0, _SRGS,
|
|
1845
|
+
0,
|
|
1846
|
+
[_RGI, _N, _MN],
|
|
1847
|
+
[0, 0, 0], 3
|
|
1848
|
+
];
|
|
1849
|
+
var Tag$ = [3, n0, _Tag,
|
|
1850
|
+
0,
|
|
1851
|
+
[_K, _V],
|
|
1852
|
+
[0, 0], 2
|
|
1853
|
+
];
|
|
1854
|
+
var TagInfoForResource$ = [3, n0, _TIFR,
|
|
1855
|
+
0,
|
|
1856
|
+
[_RARN, _TL],
|
|
1857
|
+
[0, () => TagList]
|
|
1858
|
+
];
|
|
1859
|
+
var TagResourceRequest$ = [3, n0, _TRR,
|
|
1860
|
+
0,
|
|
1861
|
+
[_RARN, _Ta],
|
|
1862
|
+
[0, () => TagList], 2
|
|
1863
|
+
];
|
|
1864
|
+
var TagResourceResponse$ = [3, n0, _TRRa,
|
|
1865
|
+
0,
|
|
1866
|
+
[],
|
|
1867
|
+
[]
|
|
1868
|
+
];
|
|
1869
|
+
var TimeWindow$ = [3, n0, _TW,
|
|
1870
|
+
0,
|
|
1871
|
+
[_ST, _ET],
|
|
1872
|
+
[4, 4], 2
|
|
1873
|
+
];
|
|
1874
|
+
var UntagResourceRequest$ = [3, n0, _URR,
|
|
1875
|
+
0,
|
|
1876
|
+
[_RARN, _TK],
|
|
1877
|
+
[0, 64 | 0], 2
|
|
1878
|
+
];
|
|
1879
|
+
var UntagResourceResponse$ = [3, n0, _URRn,
|
|
1880
|
+
0,
|
|
1881
|
+
[],
|
|
1882
|
+
[]
|
|
1883
|
+
];
|
|
1884
|
+
var UpdateByteMatchSetRequest$ = [3, n0, _UBMSR,
|
|
1885
|
+
0,
|
|
1886
|
+
[_BMSI, _CT, _U],
|
|
1887
|
+
[0, 0, () => ByteMatchSetUpdates], 3
|
|
1888
|
+
];
|
|
1889
|
+
var UpdateByteMatchSetResponse$ = [3, n0, _UBMSRp,
|
|
1890
|
+
0,
|
|
1891
|
+
[_CT],
|
|
1892
|
+
[0]
|
|
1893
|
+
];
|
|
1894
|
+
var UpdateGeoMatchSetRequest$ = [3, n0, _UGMSR,
|
|
1895
|
+
0,
|
|
1896
|
+
[_GMSI, _CT, _U],
|
|
1897
|
+
[0, 0, () => GeoMatchSetUpdates], 3
|
|
1898
|
+
];
|
|
1899
|
+
var UpdateGeoMatchSetResponse$ = [3, n0, _UGMSRp,
|
|
1900
|
+
0,
|
|
1901
|
+
[_CT],
|
|
1902
|
+
[0]
|
|
1903
|
+
];
|
|
1904
|
+
var UpdateIPSetRequest$ = [3, n0, _UIPSR,
|
|
1905
|
+
0,
|
|
1906
|
+
[_IPSI, _CT, _U],
|
|
1907
|
+
[0, 0, () => IPSetUpdates], 3
|
|
1908
|
+
];
|
|
1909
|
+
var UpdateIPSetResponse$ = [3, n0, _UIPSRp,
|
|
1910
|
+
0,
|
|
1911
|
+
[_CT],
|
|
1912
|
+
[0]
|
|
1913
|
+
];
|
|
1914
|
+
var UpdateRateBasedRuleRequest$ = [3, n0, _URBRR,
|
|
1915
|
+
0,
|
|
1916
|
+
[_RI, _CT, _U, _RL],
|
|
1917
|
+
[0, 0, () => RuleUpdates, 1], 4
|
|
1918
|
+
];
|
|
1919
|
+
var UpdateRateBasedRuleResponse$ = [3, n0, _URBRRp,
|
|
1920
|
+
0,
|
|
1921
|
+
[_CT],
|
|
1922
|
+
[0]
|
|
1923
|
+
];
|
|
1924
|
+
var UpdateRegexMatchSetRequest$ = [3, n0, _URMSR,
|
|
1925
|
+
0,
|
|
1926
|
+
[_RMSI, _U, _CT],
|
|
1927
|
+
[0, () => RegexMatchSetUpdates, 0], 3
|
|
1928
|
+
];
|
|
1929
|
+
var UpdateRegexMatchSetResponse$ = [3, n0, _URMSRp,
|
|
1930
|
+
0,
|
|
1931
|
+
[_CT],
|
|
1932
|
+
[0]
|
|
1933
|
+
];
|
|
1934
|
+
var UpdateRegexPatternSetRequest$ = [3, n0, _URPSR,
|
|
1935
|
+
0,
|
|
1936
|
+
[_RPSI, _U, _CT],
|
|
1937
|
+
[0, () => RegexPatternSetUpdates, 0], 3
|
|
1938
|
+
];
|
|
1939
|
+
var UpdateRegexPatternSetResponse$ = [3, n0, _URPSRp,
|
|
1940
|
+
0,
|
|
1941
|
+
[_CT],
|
|
1942
|
+
[0]
|
|
1943
|
+
];
|
|
1944
|
+
var UpdateRuleGroupRequest$ = [3, n0, _URGR,
|
|
1945
|
+
0,
|
|
1946
|
+
[_RGI, _U, _CT],
|
|
1947
|
+
[0, () => RuleGroupUpdates, 0], 3
|
|
1948
|
+
];
|
|
1949
|
+
var UpdateRuleGroupResponse$ = [3, n0, _URGRp,
|
|
1950
|
+
0,
|
|
1951
|
+
[_CT],
|
|
1952
|
+
[0]
|
|
1953
|
+
];
|
|
1954
|
+
var UpdateRuleRequest$ = [3, n0, _URRp,
|
|
1955
|
+
0,
|
|
1956
|
+
[_RI, _CT, _U],
|
|
1957
|
+
[0, 0, () => RuleUpdates], 3
|
|
1958
|
+
];
|
|
1959
|
+
var UpdateRuleResponse$ = [3, n0, _URRpd,
|
|
1960
|
+
0,
|
|
1961
|
+
[_CT],
|
|
1962
|
+
[0]
|
|
1963
|
+
];
|
|
1964
|
+
var UpdateSizeConstraintSetRequest$ = [3, n0, _USCSR,
|
|
1965
|
+
0,
|
|
1966
|
+
[_SCSI, _CT, _U],
|
|
1967
|
+
[0, 0, () => SizeConstraintSetUpdates], 3
|
|
1968
|
+
];
|
|
1969
|
+
var UpdateSizeConstraintSetResponse$ = [3, n0, _USCSRp,
|
|
1970
|
+
0,
|
|
1971
|
+
[_CT],
|
|
1972
|
+
[0]
|
|
1973
|
+
];
|
|
1974
|
+
var UpdateSqlInjectionMatchSetRequest$ = [3, n0, _USIMSR,
|
|
1975
|
+
0,
|
|
1976
|
+
[_SIMSI, _CT, _U],
|
|
1977
|
+
[0, 0, () => SqlInjectionMatchSetUpdates], 3
|
|
1978
|
+
];
|
|
1979
|
+
var UpdateSqlInjectionMatchSetResponse$ = [3, n0, _USIMSRp,
|
|
1980
|
+
0,
|
|
1981
|
+
[_CT],
|
|
1982
|
+
[0]
|
|
1983
|
+
];
|
|
1984
|
+
var UpdateWebACLRequest$ = [3, n0, _UWACLR,
|
|
1985
|
+
0,
|
|
1986
|
+
[_WACLI, _CT, _U, _DA],
|
|
1987
|
+
[0, 0, () => WebACLUpdates, () => WafAction$], 2
|
|
1988
|
+
];
|
|
1989
|
+
var UpdateWebACLResponse$ = [3, n0, _UWACLRp,
|
|
1990
|
+
0,
|
|
1991
|
+
[_CT],
|
|
1992
|
+
[0]
|
|
1993
|
+
];
|
|
1994
|
+
var UpdateXssMatchSetRequest$ = [3, n0, _UXMSR,
|
|
1995
|
+
0,
|
|
1996
|
+
[_XMSI, _CT, _U],
|
|
1997
|
+
[0, 0, () => XssMatchSetUpdates], 3
|
|
1998
|
+
];
|
|
1999
|
+
var UpdateXssMatchSetResponse$ = [3, n0, _UXMSRp,
|
|
2000
|
+
0,
|
|
2001
|
+
[_CT],
|
|
2002
|
+
[0]
|
|
2003
|
+
];
|
|
2004
|
+
var WafAction$ = [3, n0, _WA,
|
|
2005
|
+
0,
|
|
2006
|
+
[_T],
|
|
2007
|
+
[0], 1
|
|
2008
|
+
];
|
|
2009
|
+
var WafOverrideAction$ = [3, n0, _WOA,
|
|
2010
|
+
0,
|
|
2011
|
+
[_T],
|
|
2012
|
+
[0], 1
|
|
2013
|
+
];
|
|
2014
|
+
var WebACL$ = [3, n0, _WACL,
|
|
2015
|
+
0,
|
|
2016
|
+
[_WACLI, _DA, _Ru, _N, _MN, _WACLA],
|
|
2017
|
+
[0, () => WafAction$, () => ActivatedRules, 0, 0, 0], 3
|
|
2018
|
+
];
|
|
2019
|
+
var WebACLSummary$ = [3, n0, _WACLS,
|
|
2020
|
+
0,
|
|
2021
|
+
[_WACLI, _N],
|
|
2022
|
+
[0, 0], 2
|
|
2023
|
+
];
|
|
2024
|
+
var WebACLUpdate$ = [3, n0, _WACLU,
|
|
2025
|
+
0,
|
|
2026
|
+
[_A, _AR],
|
|
2027
|
+
[0, () => ActivatedRule$], 2
|
|
2028
|
+
];
|
|
2029
|
+
var XssMatchSet$ = [3, n0, _XMS,
|
|
2030
|
+
0,
|
|
2031
|
+
[_XMSI, _XMT, _N],
|
|
2032
|
+
[0, () => XssMatchTuples, 0], 2
|
|
2033
|
+
];
|
|
2034
|
+
var XssMatchSetSummary$ = [3, n0, _XMSS,
|
|
2035
|
+
0,
|
|
2036
|
+
[_XMSI, _N],
|
|
2037
|
+
[0, 0], 2
|
|
2038
|
+
];
|
|
2039
|
+
var XssMatchSetUpdate$ = [3, n0, _XMSU,
|
|
2040
|
+
0,
|
|
2041
|
+
[_A, _XMTs],
|
|
2042
|
+
[0, () => XssMatchTuple$], 2
|
|
2043
|
+
];
|
|
2044
|
+
var XssMatchTuple$ = [3, n0, _XMTs,
|
|
2045
|
+
0,
|
|
2046
|
+
[_FTM, _TT],
|
|
2047
|
+
[() => FieldToMatch$, 0], 2
|
|
2048
|
+
];
|
|
2049
|
+
var ActivatedRules = [1, n0, _ARc,
|
|
2050
|
+
0, () => ActivatedRule$
|
|
2051
|
+
];
|
|
2052
|
+
var ByteMatchSetSummaries = [1, n0, _BMSSy,
|
|
2053
|
+
0, () => ByteMatchSetSummary$
|
|
2054
|
+
];
|
|
2055
|
+
var ByteMatchSetUpdates = [1, n0, _BMSUy,
|
|
2056
|
+
0, () => ByteMatchSetUpdate$
|
|
2057
|
+
];
|
|
2058
|
+
var ByteMatchTuples = [1, n0, _BMT,
|
|
2059
|
+
0, () => ByteMatchTuple$
|
|
2060
|
+
];
|
|
2061
|
+
var ExcludedRules = [1, n0, _ER,
|
|
2062
|
+
0, () => ExcludedRule$
|
|
2063
|
+
];
|
|
2064
|
+
var GeoMatchConstraints = [1, n0, _GMCe,
|
|
2065
|
+
0, () => GeoMatchConstraint$
|
|
2066
|
+
];
|
|
2067
|
+
var GeoMatchSetSummaries = [1, n0, _GMSSe,
|
|
2068
|
+
0, () => GeoMatchSetSummary$
|
|
2069
|
+
];
|
|
2070
|
+
var GeoMatchSetUpdates = [1, n0, _GMSUe,
|
|
2071
|
+
0, () => GeoMatchSetUpdate$
|
|
2072
|
+
];
|
|
2073
|
+
var HTTPHeaders = [1, n0, _HTTPHe,
|
|
2074
|
+
0, () => HTTPHeader$
|
|
2075
|
+
];
|
|
2076
|
+
var IPSetDescriptors = [1, n0, _IPSD,
|
|
2077
|
+
0, () => IPSetDescriptor$
|
|
2078
|
+
];
|
|
2079
|
+
var IPSetSummaries = [1, n0, _IPSSe,
|
|
2080
|
+
0, () => IPSetSummary$
|
|
2081
|
+
];
|
|
2082
|
+
var IPSetUpdates = [1, n0, _IPSUe,
|
|
2083
|
+
0, () => IPSetUpdate$
|
|
2084
|
+
];
|
|
2085
|
+
var LoggingConfigurations = [1, n0, _LCo,
|
|
2086
|
+
0, () => LoggingConfiguration$
|
|
2087
|
+
];
|
|
2088
|
+
var Predicates = [1, n0, _Pre,
|
|
2089
|
+
0, () => Predicate$
|
|
2090
|
+
];
|
|
2091
|
+
var RedactedFields = [1, n0, _RF,
|
|
2092
|
+
0, () => FieldToMatch$
|
|
2093
|
+
];
|
|
2094
|
+
var RegexMatchSetSummaries = [1, n0, _RMSSe,
|
|
2095
|
+
0, () => RegexMatchSetSummary$
|
|
2096
|
+
];
|
|
2097
|
+
var RegexMatchSetUpdates = [1, n0, _RMSUe,
|
|
2098
|
+
0, () => RegexMatchSetUpdate$
|
|
2099
|
+
];
|
|
2100
|
+
var RegexMatchTuples = [1, n0, _RMT,
|
|
2101
|
+
0, () => RegexMatchTuple$
|
|
2102
|
+
];
|
|
2103
|
+
var RegexPatternSetSummaries = [1, n0, _RPSSe,
|
|
2104
|
+
0, () => RegexPatternSetSummary$
|
|
2105
|
+
];
|
|
2106
|
+
var RegexPatternSetUpdates = [1, n0, _RPSUe,
|
|
2107
|
+
0, () => RegexPatternSetUpdate$
|
|
2108
|
+
];
|
|
2109
|
+
var RuleGroupSummaries = [1, n0, _RGSu,
|
|
2110
|
+
0, () => RuleGroupSummary$
|
|
2111
|
+
];
|
|
2112
|
+
var RuleGroupUpdates = [1, n0, _RGUu,
|
|
2113
|
+
0, () => RuleGroupUpdate$
|
|
2114
|
+
];
|
|
2115
|
+
var RuleSummaries = [1, n0, _RSu,
|
|
2116
|
+
0, () => RuleSummary$
|
|
2117
|
+
];
|
|
2118
|
+
var RuleUpdates = [1, n0, _RUu,
|
|
2119
|
+
0, () => RuleUpdate$
|
|
2120
|
+
];
|
|
2121
|
+
var SampledHTTPRequests = [1, n0, _SHTTPRa,
|
|
2122
|
+
0, () => SampledHTTPRequest$
|
|
2123
|
+
];
|
|
2124
|
+
var SizeConstraints = [1, n0, _SCi,
|
|
2125
|
+
0, () => SizeConstraint$
|
|
2126
|
+
];
|
|
2127
|
+
var SizeConstraintSetSummaries = [1, n0, _SCSSi,
|
|
2128
|
+
0, () => SizeConstraintSetSummary$
|
|
2129
|
+
];
|
|
2130
|
+
var SizeConstraintSetUpdates = [1, n0, _SCSUi,
|
|
2131
|
+
0, () => SizeConstraintSetUpdate$
|
|
2132
|
+
];
|
|
2133
|
+
var SqlInjectionMatchSetSummaries = [1, n0, _SIMSSq,
|
|
2134
|
+
0, () => SqlInjectionMatchSetSummary$
|
|
2135
|
+
];
|
|
2136
|
+
var SqlInjectionMatchSetUpdates = [1, n0, _SIMSUq,
|
|
2137
|
+
0, () => SqlInjectionMatchSetUpdate$
|
|
2138
|
+
];
|
|
2139
|
+
var SqlInjectionMatchTuples = [1, n0, _SIMT,
|
|
2140
|
+
0, () => SqlInjectionMatchTuple$
|
|
2141
|
+
];
|
|
2142
|
+
var SubscribedRuleGroupSummaries = [1, n0, _SRGSu,
|
|
2143
|
+
0, () => SubscribedRuleGroupSummary$
|
|
2144
|
+
];
|
|
2145
|
+
var TagList = [1, n0, _TL,
|
|
2146
|
+
0, () => Tag$
|
|
2147
|
+
];
|
|
2148
|
+
var WebACLSummaries = [1, n0, _WACLSe,
|
|
2149
|
+
0, () => WebACLSummary$
|
|
2150
|
+
];
|
|
2151
|
+
var WebACLUpdates = [1, n0, _WACLUe,
|
|
2152
|
+
0, () => WebACLUpdate$
|
|
2153
|
+
];
|
|
2154
|
+
var XssMatchSetSummaries = [1, n0, _XMSSs,
|
|
2155
|
+
0, () => XssMatchSetSummary$
|
|
2156
|
+
];
|
|
2157
|
+
var XssMatchSetUpdates = [1, n0, _XMSUs,
|
|
2158
|
+
0, () => XssMatchSetUpdate$
|
|
2159
|
+
];
|
|
2160
|
+
var XssMatchTuples = [1, n0, _XMT,
|
|
2161
|
+
0, () => XssMatchTuple$
|
|
2162
|
+
];
|
|
2163
|
+
var AssociateWebACL$ = [9, n0, _AWACL,
|
|
2164
|
+
0, () => AssociateWebACLRequest$, () => AssociateWebACLResponse$
|
|
2165
|
+
];
|
|
2166
|
+
var CreateByteMatchSet$ = [9, n0, _CBMS,
|
|
2167
|
+
0, () => CreateByteMatchSetRequest$, () => CreateByteMatchSetResponse$
|
|
2168
|
+
];
|
|
2169
|
+
var CreateGeoMatchSet$ = [9, n0, _CGMS,
|
|
2170
|
+
0, () => CreateGeoMatchSetRequest$, () => CreateGeoMatchSetResponse$
|
|
2171
|
+
];
|
|
2172
|
+
var CreateIPSet$ = [9, n0, _CIPS,
|
|
2173
|
+
0, () => CreateIPSetRequest$, () => CreateIPSetResponse$
|
|
2174
|
+
];
|
|
2175
|
+
var CreateRateBasedRule$ = [9, n0, _CRBR,
|
|
2176
|
+
0, () => CreateRateBasedRuleRequest$, () => CreateRateBasedRuleResponse$
|
|
2177
|
+
];
|
|
2178
|
+
var CreateRegexMatchSet$ = [9, n0, _CRMS,
|
|
2179
|
+
0, () => CreateRegexMatchSetRequest$, () => CreateRegexMatchSetResponse$
|
|
2180
|
+
];
|
|
2181
|
+
var CreateRegexPatternSet$ = [9, n0, _CRPS,
|
|
2182
|
+
0, () => CreateRegexPatternSetRequest$, () => CreateRegexPatternSetResponse$
|
|
2183
|
+
];
|
|
2184
|
+
var CreateRule$ = [9, n0, _CR,
|
|
2185
|
+
0, () => CreateRuleRequest$, () => CreateRuleResponse$
|
|
2186
|
+
];
|
|
2187
|
+
var CreateRuleGroup$ = [9, n0, _CRG,
|
|
2188
|
+
0, () => CreateRuleGroupRequest$, () => CreateRuleGroupResponse$
|
|
2189
|
+
];
|
|
2190
|
+
var CreateSizeConstraintSet$ = [9, n0, _CSCS,
|
|
2191
|
+
0, () => CreateSizeConstraintSetRequest$, () => CreateSizeConstraintSetResponse$
|
|
2192
|
+
];
|
|
2193
|
+
var CreateSqlInjectionMatchSet$ = [9, n0, _CSIMS,
|
|
2194
|
+
0, () => CreateSqlInjectionMatchSetRequest$, () => CreateSqlInjectionMatchSetResponse$
|
|
2195
|
+
];
|
|
2196
|
+
var CreateWebACL$ = [9, n0, _CWACL,
|
|
2197
|
+
0, () => CreateWebACLRequest$, () => CreateWebACLResponse$
|
|
2198
|
+
];
|
|
2199
|
+
var CreateWebACLMigrationStack$ = [9, n0, _CWACLMS,
|
|
2200
|
+
0, () => CreateWebACLMigrationStackRequest$, () => CreateWebACLMigrationStackResponse$
|
|
2201
|
+
];
|
|
2202
|
+
var CreateXssMatchSet$ = [9, n0, _CXMS,
|
|
2203
|
+
0, () => CreateXssMatchSetRequest$, () => CreateXssMatchSetResponse$
|
|
2204
|
+
];
|
|
2205
|
+
var DeleteByteMatchSet$ = [9, n0, _DBMS,
|
|
2206
|
+
0, () => DeleteByteMatchSetRequest$, () => DeleteByteMatchSetResponse$
|
|
2207
|
+
];
|
|
2208
|
+
var DeleteGeoMatchSet$ = [9, n0, _DGMS,
|
|
2209
|
+
0, () => DeleteGeoMatchSetRequest$, () => DeleteGeoMatchSetResponse$
|
|
2210
|
+
];
|
|
2211
|
+
var DeleteIPSet$ = [9, n0, _DIPS,
|
|
2212
|
+
0, () => DeleteIPSetRequest$, () => DeleteIPSetResponse$
|
|
2213
|
+
];
|
|
2214
|
+
var DeleteLoggingConfiguration$ = [9, n0, _DLC,
|
|
2215
|
+
0, () => DeleteLoggingConfigurationRequest$, () => DeleteLoggingConfigurationResponse$
|
|
2216
|
+
];
|
|
2217
|
+
var DeletePermissionPolicy$ = [9, n0, _DPP,
|
|
2218
|
+
0, () => DeletePermissionPolicyRequest$, () => DeletePermissionPolicyResponse$
|
|
2219
|
+
];
|
|
2220
|
+
var DeleteRateBasedRule$ = [9, n0, _DRBR,
|
|
2221
|
+
0, () => DeleteRateBasedRuleRequest$, () => DeleteRateBasedRuleResponse$
|
|
2222
|
+
];
|
|
2223
|
+
var DeleteRegexMatchSet$ = [9, n0, _DRMS,
|
|
2224
|
+
0, () => DeleteRegexMatchSetRequest$, () => DeleteRegexMatchSetResponse$
|
|
2225
|
+
];
|
|
2226
|
+
var DeleteRegexPatternSet$ = [9, n0, _DRPS,
|
|
2227
|
+
0, () => DeleteRegexPatternSetRequest$, () => DeleteRegexPatternSetResponse$
|
|
2228
|
+
];
|
|
2229
|
+
var DeleteRule$ = [9, n0, _DR,
|
|
2230
|
+
0, () => DeleteRuleRequest$, () => DeleteRuleResponse$
|
|
2231
|
+
];
|
|
2232
|
+
var DeleteRuleGroup$ = [9, n0, _DRG,
|
|
2233
|
+
0, () => DeleteRuleGroupRequest$, () => DeleteRuleGroupResponse$
|
|
2234
|
+
];
|
|
2235
|
+
var DeleteSizeConstraintSet$ = [9, n0, _DSCS,
|
|
2236
|
+
0, () => DeleteSizeConstraintSetRequest$, () => DeleteSizeConstraintSetResponse$
|
|
2237
|
+
];
|
|
2238
|
+
var DeleteSqlInjectionMatchSet$ = [9, n0, _DSIMS,
|
|
2239
|
+
0, () => DeleteSqlInjectionMatchSetRequest$, () => DeleteSqlInjectionMatchSetResponse$
|
|
2240
|
+
];
|
|
2241
|
+
var DeleteWebACL$ = [9, n0, _DWACL,
|
|
2242
|
+
0, () => DeleteWebACLRequest$, () => DeleteWebACLResponse$
|
|
2243
|
+
];
|
|
2244
|
+
var DeleteXssMatchSet$ = [9, n0, _DXMS,
|
|
2245
|
+
0, () => DeleteXssMatchSetRequest$, () => DeleteXssMatchSetResponse$
|
|
2246
|
+
];
|
|
2247
|
+
var DisassociateWebACL$ = [9, n0, _DWACLi,
|
|
2248
|
+
0, () => DisassociateWebACLRequest$, () => DisassociateWebACLResponse$
|
|
2249
|
+
];
|
|
2250
|
+
var GetByteMatchSet$ = [9, n0, _GBMS,
|
|
2251
|
+
0, () => GetByteMatchSetRequest$, () => GetByteMatchSetResponse$
|
|
2252
|
+
];
|
|
2253
|
+
var GetChangeToken$ = [9, n0, _GCT,
|
|
2254
|
+
0, () => GetChangeTokenRequest$, () => GetChangeTokenResponse$
|
|
2255
|
+
];
|
|
2256
|
+
var GetChangeTokenStatus$ = [9, n0, _GCTS,
|
|
2257
|
+
0, () => GetChangeTokenStatusRequest$, () => GetChangeTokenStatusResponse$
|
|
2258
|
+
];
|
|
2259
|
+
var GetGeoMatchSet$ = [9, n0, _GGMS,
|
|
2260
|
+
0, () => GetGeoMatchSetRequest$, () => GetGeoMatchSetResponse$
|
|
2261
|
+
];
|
|
2262
|
+
var GetIPSet$ = [9, n0, _GIPS,
|
|
2263
|
+
0, () => GetIPSetRequest$, () => GetIPSetResponse$
|
|
2264
|
+
];
|
|
2265
|
+
var GetLoggingConfiguration$ = [9, n0, _GLC,
|
|
2266
|
+
0, () => GetLoggingConfigurationRequest$, () => GetLoggingConfigurationResponse$
|
|
2267
|
+
];
|
|
2268
|
+
var GetPermissionPolicy$ = [9, n0, _GPP,
|
|
2269
|
+
0, () => GetPermissionPolicyRequest$, () => GetPermissionPolicyResponse$
|
|
2270
|
+
];
|
|
2271
|
+
var GetRateBasedRule$ = [9, n0, _GRBR,
|
|
2272
|
+
0, () => GetRateBasedRuleRequest$, () => GetRateBasedRuleResponse$
|
|
2273
|
+
];
|
|
2274
|
+
var GetRateBasedRuleManagedKeys$ = [9, n0, _GRBRMK,
|
|
2275
|
+
0, () => GetRateBasedRuleManagedKeysRequest$, () => GetRateBasedRuleManagedKeysResponse$
|
|
2276
|
+
];
|
|
2277
|
+
var GetRegexMatchSet$ = [9, n0, _GRMS,
|
|
2278
|
+
0, () => GetRegexMatchSetRequest$, () => GetRegexMatchSetResponse$
|
|
2279
|
+
];
|
|
2280
|
+
var GetRegexPatternSet$ = [9, n0, _GRPS,
|
|
2281
|
+
0, () => GetRegexPatternSetRequest$, () => GetRegexPatternSetResponse$
|
|
2282
|
+
];
|
|
2283
|
+
var GetRule$ = [9, n0, _GR,
|
|
2284
|
+
0, () => GetRuleRequest$, () => GetRuleResponse$
|
|
2285
|
+
];
|
|
2286
|
+
var GetRuleGroup$ = [9, n0, _GRG,
|
|
2287
|
+
0, () => GetRuleGroupRequest$, () => GetRuleGroupResponse$
|
|
2288
|
+
];
|
|
2289
|
+
var GetSampledRequests$ = [9, n0, _GSR,
|
|
2290
|
+
0, () => GetSampledRequestsRequest$, () => GetSampledRequestsResponse$
|
|
2291
|
+
];
|
|
2292
|
+
var GetSizeConstraintSet$ = [9, n0, _GSCS,
|
|
2293
|
+
0, () => GetSizeConstraintSetRequest$, () => GetSizeConstraintSetResponse$
|
|
2294
|
+
];
|
|
2295
|
+
var GetSqlInjectionMatchSet$ = [9, n0, _GSIMS,
|
|
2296
|
+
0, () => GetSqlInjectionMatchSetRequest$, () => GetSqlInjectionMatchSetResponse$
|
|
2297
|
+
];
|
|
2298
|
+
var GetWebACL$ = [9, n0, _GWACL,
|
|
2299
|
+
0, () => GetWebACLRequest$, () => GetWebACLResponse$
|
|
2300
|
+
];
|
|
2301
|
+
var GetWebACLForResource$ = [9, n0, _GWACLFR,
|
|
2302
|
+
0, () => GetWebACLForResourceRequest$, () => GetWebACLForResourceResponse$
|
|
2303
|
+
];
|
|
2304
|
+
var GetXssMatchSet$ = [9, n0, _GXMS,
|
|
2305
|
+
0, () => GetXssMatchSetRequest$, () => GetXssMatchSetResponse$
|
|
2306
|
+
];
|
|
2307
|
+
var ListActivatedRulesInRuleGroup$ = [9, n0, _LARIRG,
|
|
2308
|
+
0, () => ListActivatedRulesInRuleGroupRequest$, () => ListActivatedRulesInRuleGroupResponse$
|
|
2309
|
+
];
|
|
2310
|
+
var ListByteMatchSets$ = [9, n0, _LBMS,
|
|
2311
|
+
0, () => ListByteMatchSetsRequest$, () => ListByteMatchSetsResponse$
|
|
2312
|
+
];
|
|
2313
|
+
var ListGeoMatchSets$ = [9, n0, _LGMS,
|
|
2314
|
+
0, () => ListGeoMatchSetsRequest$, () => ListGeoMatchSetsResponse$
|
|
2315
|
+
];
|
|
2316
|
+
var ListIPSets$ = [9, n0, _LIPS,
|
|
2317
|
+
0, () => ListIPSetsRequest$, () => ListIPSetsResponse$
|
|
2318
|
+
];
|
|
2319
|
+
var ListLoggingConfigurations$ = [9, n0, _LLC,
|
|
2320
|
+
0, () => ListLoggingConfigurationsRequest$, () => ListLoggingConfigurationsResponse$
|
|
2321
|
+
];
|
|
2322
|
+
var ListRateBasedRules$ = [9, n0, _LRBR,
|
|
2323
|
+
0, () => ListRateBasedRulesRequest$, () => ListRateBasedRulesResponse$
|
|
2324
|
+
];
|
|
2325
|
+
var ListRegexMatchSets$ = [9, n0, _LRMS,
|
|
2326
|
+
0, () => ListRegexMatchSetsRequest$, () => ListRegexMatchSetsResponse$
|
|
2327
|
+
];
|
|
2328
|
+
var ListRegexPatternSets$ = [9, n0, _LRPS,
|
|
2329
|
+
0, () => ListRegexPatternSetsRequest$, () => ListRegexPatternSetsResponse$
|
|
2330
|
+
];
|
|
2331
|
+
var ListResourcesForWebACL$ = [9, n0, _LRFWACL,
|
|
2332
|
+
0, () => ListResourcesForWebACLRequest$, () => ListResourcesForWebACLResponse$
|
|
2333
|
+
];
|
|
2334
|
+
var ListRuleGroups$ = [9, n0, _LRG,
|
|
2335
|
+
0, () => ListRuleGroupsRequest$, () => ListRuleGroupsResponse$
|
|
2336
|
+
];
|
|
2337
|
+
var ListRules$ = [9, n0, _LR,
|
|
2338
|
+
0, () => ListRulesRequest$, () => ListRulesResponse$
|
|
2339
|
+
];
|
|
2340
|
+
var ListSizeConstraintSets$ = [9, n0, _LSCS,
|
|
2341
|
+
0, () => ListSizeConstraintSetsRequest$, () => ListSizeConstraintSetsResponse$
|
|
2342
|
+
];
|
|
2343
|
+
var ListSqlInjectionMatchSets$ = [9, n0, _LSIMS,
|
|
2344
|
+
0, () => ListSqlInjectionMatchSetsRequest$, () => ListSqlInjectionMatchSetsResponse$
|
|
2345
|
+
];
|
|
2346
|
+
var ListSubscribedRuleGroups$ = [9, n0, _LSRG,
|
|
2347
|
+
0, () => ListSubscribedRuleGroupsRequest$, () => ListSubscribedRuleGroupsResponse$
|
|
2348
|
+
];
|
|
2349
|
+
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
2350
|
+
0, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
|
|
2351
|
+
];
|
|
2352
|
+
var ListWebACLs$ = [9, n0, _LWACL,
|
|
2353
|
+
0, () => ListWebACLsRequest$, () => ListWebACLsResponse$
|
|
2354
|
+
];
|
|
2355
|
+
var ListXssMatchSets$ = [9, n0, _LXMS,
|
|
2356
|
+
0, () => ListXssMatchSetsRequest$, () => ListXssMatchSetsResponse$
|
|
2357
|
+
];
|
|
2358
|
+
var PutLoggingConfiguration$ = [9, n0, _PLC,
|
|
2359
|
+
0, () => PutLoggingConfigurationRequest$, () => PutLoggingConfigurationResponse$
|
|
2360
|
+
];
|
|
2361
|
+
var PutPermissionPolicy$ = [9, n0, _PPP,
|
|
2362
|
+
0, () => PutPermissionPolicyRequest$, () => PutPermissionPolicyResponse$
|
|
2363
|
+
];
|
|
2364
|
+
var TagResource$ = [9, n0, _TR,
|
|
2365
|
+
0, () => TagResourceRequest$, () => TagResourceResponse$
|
|
2366
|
+
];
|
|
2367
|
+
var UntagResource$ = [9, n0, _UR,
|
|
2368
|
+
0, () => UntagResourceRequest$, () => UntagResourceResponse$
|
|
2369
|
+
];
|
|
2370
|
+
var UpdateByteMatchSet$ = [9, n0, _UBMS,
|
|
2371
|
+
0, () => UpdateByteMatchSetRequest$, () => UpdateByteMatchSetResponse$
|
|
2372
|
+
];
|
|
2373
|
+
var UpdateGeoMatchSet$ = [9, n0, _UGMS,
|
|
2374
|
+
0, () => UpdateGeoMatchSetRequest$, () => UpdateGeoMatchSetResponse$
|
|
2375
|
+
];
|
|
2376
|
+
var UpdateIPSet$ = [9, n0, _UIPS,
|
|
2377
|
+
0, () => UpdateIPSetRequest$, () => UpdateIPSetResponse$
|
|
2378
|
+
];
|
|
2379
|
+
var UpdateRateBasedRule$ = [9, n0, _URBR,
|
|
2380
|
+
0, () => UpdateRateBasedRuleRequest$, () => UpdateRateBasedRuleResponse$
|
|
2381
|
+
];
|
|
2382
|
+
var UpdateRegexMatchSet$ = [9, n0, _URMS,
|
|
2383
|
+
0, () => UpdateRegexMatchSetRequest$, () => UpdateRegexMatchSetResponse$
|
|
2384
|
+
];
|
|
2385
|
+
var UpdateRegexPatternSet$ = [9, n0, _URPS,
|
|
2386
|
+
0, () => UpdateRegexPatternSetRequest$, () => UpdateRegexPatternSetResponse$
|
|
2387
|
+
];
|
|
2388
|
+
var UpdateRule$ = [9, n0, _URp,
|
|
2389
|
+
0, () => UpdateRuleRequest$, () => UpdateRuleResponse$
|
|
2390
|
+
];
|
|
2391
|
+
var UpdateRuleGroup$ = [9, n0, _URG,
|
|
2392
|
+
0, () => UpdateRuleGroupRequest$, () => UpdateRuleGroupResponse$
|
|
2393
|
+
];
|
|
2394
|
+
var UpdateSizeConstraintSet$ = [9, n0, _USCS,
|
|
2395
|
+
0, () => UpdateSizeConstraintSetRequest$, () => UpdateSizeConstraintSetResponse$
|
|
2396
|
+
];
|
|
2397
|
+
var UpdateSqlInjectionMatchSet$ = [9, n0, _USIMS,
|
|
2398
|
+
0, () => UpdateSqlInjectionMatchSetRequest$, () => UpdateSqlInjectionMatchSetResponse$
|
|
2399
|
+
];
|
|
2400
|
+
var UpdateWebACL$ = [9, n0, _UWACL,
|
|
2401
|
+
0, () => UpdateWebACLRequest$, () => UpdateWebACLResponse$
|
|
2402
|
+
];
|
|
2403
|
+
var UpdateXssMatchSet$ = [9, n0, _UXMS,
|
|
2404
|
+
0, () => UpdateXssMatchSetRequest$, () => UpdateXssMatchSetResponse$
|
|
2405
|
+
];
|
|
2406
|
+
|
|
2407
|
+
const getRuntimeConfig$1 = (config) => {
|
|
2408
|
+
return {
|
|
2409
|
+
apiVersion: "2016-11-28",
|
|
2410
|
+
base64Decoder: config?.base64Decoder ?? fromBase64,
|
|
2411
|
+
base64Encoder: config?.base64Encoder ?? toBase64,
|
|
2412
|
+
disableHostPrefix: config?.disableHostPrefix ?? false,
|
|
2413
|
+
endpointProvider: config?.endpointProvider ?? defaultEndpointResolver,
|
|
2414
|
+
extensions: config?.extensions ?? [],
|
|
2415
|
+
httpAuthSchemeProvider: config?.httpAuthSchemeProvider ?? defaultWAFRegionalHttpAuthSchemeProvider,
|
|
2416
|
+
httpAuthSchemes: config?.httpAuthSchemes ?? [
|
|
2417
|
+
{
|
|
2418
|
+
schemeId: "aws.auth#sigv4",
|
|
2419
|
+
identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
|
|
2420
|
+
signer: new AwsSdkSigV4Signer(),
|
|
2421
|
+
},
|
|
2422
|
+
],
|
|
2423
|
+
logger: config?.logger ?? new NoOpLogger(),
|
|
2424
|
+
protocol: config?.protocol ?? AwsJson1_1Protocol,
|
|
2425
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
2426
|
+
defaultNamespace: "com.amazonaws.wafregional",
|
|
2427
|
+
errorTypeRegistries,
|
|
2428
|
+
xmlNamespace: "http://waf.amazonaws.com/doc/2015-08-24/",
|
|
2429
|
+
version: "2016-11-28",
|
|
2430
|
+
serviceTarget: "AWSWAF_Regional_20161128",
|
|
2431
|
+
},
|
|
2432
|
+
serviceId: config?.serviceId ?? "WAF Regional",
|
|
2433
|
+
sha256: config?.sha256 ?? Sha256,
|
|
2434
|
+
urlParser: config?.urlParser ?? parseUrl,
|
|
2435
|
+
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|
|
2436
|
+
utf8Encoder: config?.utf8Encoder ?? toUtf8,
|
|
2437
|
+
};
|
|
2438
|
+
};
|
|
2439
|
+
|
|
2440
|
+
const getRuntimeConfig = (config) => {
|
|
2441
|
+
emitWarningIfUnsupportedVersion(process.version);
|
|
2442
|
+
const defaultsMode = resolveDefaultsModeConfig(config);
|
|
2443
|
+
const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
|
|
2444
|
+
const clientSharedValues = getRuntimeConfig$1(config);
|
|
2445
|
+
emitWarningIfUnsupportedVersion$1(process.version);
|
|
2446
|
+
const loaderConfig = {
|
|
2447
|
+
profile: config?.profile,
|
|
2448
|
+
logger: clientSharedValues.logger,
|
|
2449
|
+
};
|
|
2450
|
+
return {
|
|
2451
|
+
...clientSharedValues,
|
|
2452
|
+
...config,
|
|
2453
|
+
runtime: "node",
|
|
2454
|
+
defaultsMode,
|
|
2455
|
+
authSchemePreference: config?.authSchemePreference ?? loadConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
|
|
2456
|
+
bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
|
|
2457
|
+
credentialDefaultProvider: config?.credentialDefaultProvider ?? defaultProvider,
|
|
2458
|
+
defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
|
|
2459
|
+
maxAttempts: config?.maxAttempts ?? loadConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
|
|
2460
|
+
region: config?.region ?? loadConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
|
|
2461
|
+
requestHandler: NodeHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
|
|
2462
|
+
retryMode: config?.retryMode ??
|
|
2463
|
+
loadConfig({
|
|
2464
|
+
...NODE_RETRY_MODE_CONFIG_OPTIONS,
|
|
2465
|
+
default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
|
|
2466
|
+
}, config),
|
|
2467
|
+
streamCollector: config?.streamCollector ?? streamCollector,
|
|
2468
|
+
useDualstackEndpoint: config?.useDualstackEndpoint ?? loadConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
2469
|
+
useFipsEndpoint: config?.useFipsEndpoint ?? loadConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
2470
|
+
userAgentAppId: config?.userAgentAppId ?? loadConfig(NODE_APP_ID_CONFIG_OPTIONS, loaderConfig),
|
|
2471
|
+
};
|
|
2472
|
+
};
|
|
2473
|
+
|
|
34
2474
|
const getHttpAuthExtensionConfiguration = (runtimeConfig) => {
|
|
35
2475
|
const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
|
|
36
2476
|
let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
|
|
@@ -1535,104 +3975,445 @@ const ChangeAction = {
|
|
|
1535
3975
|
INSERT: "INSERT",
|
|
1536
3976
|
};
|
|
1537
3977
|
|
|
3978
|
+
exports.ActivatedRule$ = ActivatedRule$;
|
|
3979
|
+
exports.AssociateWebACL$ = AssociateWebACL$;
|
|
1538
3980
|
exports.AssociateWebACLCommand = AssociateWebACLCommand;
|
|
3981
|
+
exports.AssociateWebACLRequest$ = AssociateWebACLRequest$;
|
|
3982
|
+
exports.AssociateWebACLResponse$ = AssociateWebACLResponse$;
|
|
3983
|
+
exports.ByteMatchSet$ = ByteMatchSet$;
|
|
3984
|
+
exports.ByteMatchSetSummary$ = ByteMatchSetSummary$;
|
|
3985
|
+
exports.ByteMatchSetUpdate$ = ByteMatchSetUpdate$;
|
|
3986
|
+
exports.ByteMatchTuple$ = ByteMatchTuple$;
|
|
1539
3987
|
exports.ChangeAction = ChangeAction;
|
|
1540
3988
|
exports.ChangeTokenStatus = ChangeTokenStatus;
|
|
1541
3989
|
exports.ComparisonOperator = ComparisonOperator;
|
|
3990
|
+
exports.CreateByteMatchSet$ = CreateByteMatchSet$;
|
|
1542
3991
|
exports.CreateByteMatchSetCommand = CreateByteMatchSetCommand;
|
|
3992
|
+
exports.CreateByteMatchSetRequest$ = CreateByteMatchSetRequest$;
|
|
3993
|
+
exports.CreateByteMatchSetResponse$ = CreateByteMatchSetResponse$;
|
|
3994
|
+
exports.CreateGeoMatchSet$ = CreateGeoMatchSet$;
|
|
1543
3995
|
exports.CreateGeoMatchSetCommand = CreateGeoMatchSetCommand;
|
|
3996
|
+
exports.CreateGeoMatchSetRequest$ = CreateGeoMatchSetRequest$;
|
|
3997
|
+
exports.CreateGeoMatchSetResponse$ = CreateGeoMatchSetResponse$;
|
|
3998
|
+
exports.CreateIPSet$ = CreateIPSet$;
|
|
1544
3999
|
exports.CreateIPSetCommand = CreateIPSetCommand;
|
|
4000
|
+
exports.CreateIPSetRequest$ = CreateIPSetRequest$;
|
|
4001
|
+
exports.CreateIPSetResponse$ = CreateIPSetResponse$;
|
|
4002
|
+
exports.CreateRateBasedRule$ = CreateRateBasedRule$;
|
|
1545
4003
|
exports.CreateRateBasedRuleCommand = CreateRateBasedRuleCommand;
|
|
4004
|
+
exports.CreateRateBasedRuleRequest$ = CreateRateBasedRuleRequest$;
|
|
4005
|
+
exports.CreateRateBasedRuleResponse$ = CreateRateBasedRuleResponse$;
|
|
4006
|
+
exports.CreateRegexMatchSet$ = CreateRegexMatchSet$;
|
|
1546
4007
|
exports.CreateRegexMatchSetCommand = CreateRegexMatchSetCommand;
|
|
4008
|
+
exports.CreateRegexMatchSetRequest$ = CreateRegexMatchSetRequest$;
|
|
4009
|
+
exports.CreateRegexMatchSetResponse$ = CreateRegexMatchSetResponse$;
|
|
4010
|
+
exports.CreateRegexPatternSet$ = CreateRegexPatternSet$;
|
|
1547
4011
|
exports.CreateRegexPatternSetCommand = CreateRegexPatternSetCommand;
|
|
4012
|
+
exports.CreateRegexPatternSetRequest$ = CreateRegexPatternSetRequest$;
|
|
4013
|
+
exports.CreateRegexPatternSetResponse$ = CreateRegexPatternSetResponse$;
|
|
4014
|
+
exports.CreateRule$ = CreateRule$;
|
|
1548
4015
|
exports.CreateRuleCommand = CreateRuleCommand;
|
|
4016
|
+
exports.CreateRuleGroup$ = CreateRuleGroup$;
|
|
1549
4017
|
exports.CreateRuleGroupCommand = CreateRuleGroupCommand;
|
|
4018
|
+
exports.CreateRuleGroupRequest$ = CreateRuleGroupRequest$;
|
|
4019
|
+
exports.CreateRuleGroupResponse$ = CreateRuleGroupResponse$;
|
|
4020
|
+
exports.CreateRuleRequest$ = CreateRuleRequest$;
|
|
4021
|
+
exports.CreateRuleResponse$ = CreateRuleResponse$;
|
|
4022
|
+
exports.CreateSizeConstraintSet$ = CreateSizeConstraintSet$;
|
|
1550
4023
|
exports.CreateSizeConstraintSetCommand = CreateSizeConstraintSetCommand;
|
|
4024
|
+
exports.CreateSizeConstraintSetRequest$ = CreateSizeConstraintSetRequest$;
|
|
4025
|
+
exports.CreateSizeConstraintSetResponse$ = CreateSizeConstraintSetResponse$;
|
|
4026
|
+
exports.CreateSqlInjectionMatchSet$ = CreateSqlInjectionMatchSet$;
|
|
1551
4027
|
exports.CreateSqlInjectionMatchSetCommand = CreateSqlInjectionMatchSetCommand;
|
|
4028
|
+
exports.CreateSqlInjectionMatchSetRequest$ = CreateSqlInjectionMatchSetRequest$;
|
|
4029
|
+
exports.CreateSqlInjectionMatchSetResponse$ = CreateSqlInjectionMatchSetResponse$;
|
|
4030
|
+
exports.CreateWebACL$ = CreateWebACL$;
|
|
1552
4031
|
exports.CreateWebACLCommand = CreateWebACLCommand;
|
|
4032
|
+
exports.CreateWebACLMigrationStack$ = CreateWebACLMigrationStack$;
|
|
1553
4033
|
exports.CreateWebACLMigrationStackCommand = CreateWebACLMigrationStackCommand;
|
|
4034
|
+
exports.CreateWebACLMigrationStackRequest$ = CreateWebACLMigrationStackRequest$;
|
|
4035
|
+
exports.CreateWebACLMigrationStackResponse$ = CreateWebACLMigrationStackResponse$;
|
|
4036
|
+
exports.CreateWebACLRequest$ = CreateWebACLRequest$;
|
|
4037
|
+
exports.CreateWebACLResponse$ = CreateWebACLResponse$;
|
|
4038
|
+
exports.CreateXssMatchSet$ = CreateXssMatchSet$;
|
|
1554
4039
|
exports.CreateXssMatchSetCommand = CreateXssMatchSetCommand;
|
|
4040
|
+
exports.CreateXssMatchSetRequest$ = CreateXssMatchSetRequest$;
|
|
4041
|
+
exports.CreateXssMatchSetResponse$ = CreateXssMatchSetResponse$;
|
|
4042
|
+
exports.DeleteByteMatchSet$ = DeleteByteMatchSet$;
|
|
1555
4043
|
exports.DeleteByteMatchSetCommand = DeleteByteMatchSetCommand;
|
|
4044
|
+
exports.DeleteByteMatchSetRequest$ = DeleteByteMatchSetRequest$;
|
|
4045
|
+
exports.DeleteByteMatchSetResponse$ = DeleteByteMatchSetResponse$;
|
|
4046
|
+
exports.DeleteGeoMatchSet$ = DeleteGeoMatchSet$;
|
|
1556
4047
|
exports.DeleteGeoMatchSetCommand = DeleteGeoMatchSetCommand;
|
|
4048
|
+
exports.DeleteGeoMatchSetRequest$ = DeleteGeoMatchSetRequest$;
|
|
4049
|
+
exports.DeleteGeoMatchSetResponse$ = DeleteGeoMatchSetResponse$;
|
|
4050
|
+
exports.DeleteIPSet$ = DeleteIPSet$;
|
|
1557
4051
|
exports.DeleteIPSetCommand = DeleteIPSetCommand;
|
|
4052
|
+
exports.DeleteIPSetRequest$ = DeleteIPSetRequest$;
|
|
4053
|
+
exports.DeleteIPSetResponse$ = DeleteIPSetResponse$;
|
|
4054
|
+
exports.DeleteLoggingConfiguration$ = DeleteLoggingConfiguration$;
|
|
1558
4055
|
exports.DeleteLoggingConfigurationCommand = DeleteLoggingConfigurationCommand;
|
|
4056
|
+
exports.DeleteLoggingConfigurationRequest$ = DeleteLoggingConfigurationRequest$;
|
|
4057
|
+
exports.DeleteLoggingConfigurationResponse$ = DeleteLoggingConfigurationResponse$;
|
|
4058
|
+
exports.DeletePermissionPolicy$ = DeletePermissionPolicy$;
|
|
1559
4059
|
exports.DeletePermissionPolicyCommand = DeletePermissionPolicyCommand;
|
|
4060
|
+
exports.DeletePermissionPolicyRequest$ = DeletePermissionPolicyRequest$;
|
|
4061
|
+
exports.DeletePermissionPolicyResponse$ = DeletePermissionPolicyResponse$;
|
|
4062
|
+
exports.DeleteRateBasedRule$ = DeleteRateBasedRule$;
|
|
1560
4063
|
exports.DeleteRateBasedRuleCommand = DeleteRateBasedRuleCommand;
|
|
4064
|
+
exports.DeleteRateBasedRuleRequest$ = DeleteRateBasedRuleRequest$;
|
|
4065
|
+
exports.DeleteRateBasedRuleResponse$ = DeleteRateBasedRuleResponse$;
|
|
4066
|
+
exports.DeleteRegexMatchSet$ = DeleteRegexMatchSet$;
|
|
1561
4067
|
exports.DeleteRegexMatchSetCommand = DeleteRegexMatchSetCommand;
|
|
4068
|
+
exports.DeleteRegexMatchSetRequest$ = DeleteRegexMatchSetRequest$;
|
|
4069
|
+
exports.DeleteRegexMatchSetResponse$ = DeleteRegexMatchSetResponse$;
|
|
4070
|
+
exports.DeleteRegexPatternSet$ = DeleteRegexPatternSet$;
|
|
1562
4071
|
exports.DeleteRegexPatternSetCommand = DeleteRegexPatternSetCommand;
|
|
4072
|
+
exports.DeleteRegexPatternSetRequest$ = DeleteRegexPatternSetRequest$;
|
|
4073
|
+
exports.DeleteRegexPatternSetResponse$ = DeleteRegexPatternSetResponse$;
|
|
4074
|
+
exports.DeleteRule$ = DeleteRule$;
|
|
1563
4075
|
exports.DeleteRuleCommand = DeleteRuleCommand;
|
|
4076
|
+
exports.DeleteRuleGroup$ = DeleteRuleGroup$;
|
|
1564
4077
|
exports.DeleteRuleGroupCommand = DeleteRuleGroupCommand;
|
|
4078
|
+
exports.DeleteRuleGroupRequest$ = DeleteRuleGroupRequest$;
|
|
4079
|
+
exports.DeleteRuleGroupResponse$ = DeleteRuleGroupResponse$;
|
|
4080
|
+
exports.DeleteRuleRequest$ = DeleteRuleRequest$;
|
|
4081
|
+
exports.DeleteRuleResponse$ = DeleteRuleResponse$;
|
|
4082
|
+
exports.DeleteSizeConstraintSet$ = DeleteSizeConstraintSet$;
|
|
1565
4083
|
exports.DeleteSizeConstraintSetCommand = DeleteSizeConstraintSetCommand;
|
|
4084
|
+
exports.DeleteSizeConstraintSetRequest$ = DeleteSizeConstraintSetRequest$;
|
|
4085
|
+
exports.DeleteSizeConstraintSetResponse$ = DeleteSizeConstraintSetResponse$;
|
|
4086
|
+
exports.DeleteSqlInjectionMatchSet$ = DeleteSqlInjectionMatchSet$;
|
|
1566
4087
|
exports.DeleteSqlInjectionMatchSetCommand = DeleteSqlInjectionMatchSetCommand;
|
|
4088
|
+
exports.DeleteSqlInjectionMatchSetRequest$ = DeleteSqlInjectionMatchSetRequest$;
|
|
4089
|
+
exports.DeleteSqlInjectionMatchSetResponse$ = DeleteSqlInjectionMatchSetResponse$;
|
|
4090
|
+
exports.DeleteWebACL$ = DeleteWebACL$;
|
|
1567
4091
|
exports.DeleteWebACLCommand = DeleteWebACLCommand;
|
|
4092
|
+
exports.DeleteWebACLRequest$ = DeleteWebACLRequest$;
|
|
4093
|
+
exports.DeleteWebACLResponse$ = DeleteWebACLResponse$;
|
|
4094
|
+
exports.DeleteXssMatchSet$ = DeleteXssMatchSet$;
|
|
1568
4095
|
exports.DeleteXssMatchSetCommand = DeleteXssMatchSetCommand;
|
|
4096
|
+
exports.DeleteXssMatchSetRequest$ = DeleteXssMatchSetRequest$;
|
|
4097
|
+
exports.DeleteXssMatchSetResponse$ = DeleteXssMatchSetResponse$;
|
|
4098
|
+
exports.DisassociateWebACL$ = DisassociateWebACL$;
|
|
1569
4099
|
exports.DisassociateWebACLCommand = DisassociateWebACLCommand;
|
|
4100
|
+
exports.DisassociateWebACLRequest$ = DisassociateWebACLRequest$;
|
|
4101
|
+
exports.DisassociateWebACLResponse$ = DisassociateWebACLResponse$;
|
|
4102
|
+
exports.ExcludedRule$ = ExcludedRule$;
|
|
4103
|
+
exports.FieldToMatch$ = FieldToMatch$;
|
|
4104
|
+
exports.GeoMatchConstraint$ = GeoMatchConstraint$;
|
|
1570
4105
|
exports.GeoMatchConstraintType = GeoMatchConstraintType;
|
|
1571
4106
|
exports.GeoMatchConstraintValue = GeoMatchConstraintValue;
|
|
4107
|
+
exports.GeoMatchSet$ = GeoMatchSet$;
|
|
4108
|
+
exports.GeoMatchSetSummary$ = GeoMatchSetSummary$;
|
|
4109
|
+
exports.GeoMatchSetUpdate$ = GeoMatchSetUpdate$;
|
|
4110
|
+
exports.GetByteMatchSet$ = GetByteMatchSet$;
|
|
1572
4111
|
exports.GetByteMatchSetCommand = GetByteMatchSetCommand;
|
|
4112
|
+
exports.GetByteMatchSetRequest$ = GetByteMatchSetRequest$;
|
|
4113
|
+
exports.GetByteMatchSetResponse$ = GetByteMatchSetResponse$;
|
|
4114
|
+
exports.GetChangeToken$ = GetChangeToken$;
|
|
1573
4115
|
exports.GetChangeTokenCommand = GetChangeTokenCommand;
|
|
4116
|
+
exports.GetChangeTokenRequest$ = GetChangeTokenRequest$;
|
|
4117
|
+
exports.GetChangeTokenResponse$ = GetChangeTokenResponse$;
|
|
4118
|
+
exports.GetChangeTokenStatus$ = GetChangeTokenStatus$;
|
|
1574
4119
|
exports.GetChangeTokenStatusCommand = GetChangeTokenStatusCommand;
|
|
4120
|
+
exports.GetChangeTokenStatusRequest$ = GetChangeTokenStatusRequest$;
|
|
4121
|
+
exports.GetChangeTokenStatusResponse$ = GetChangeTokenStatusResponse$;
|
|
4122
|
+
exports.GetGeoMatchSet$ = GetGeoMatchSet$;
|
|
1575
4123
|
exports.GetGeoMatchSetCommand = GetGeoMatchSetCommand;
|
|
4124
|
+
exports.GetGeoMatchSetRequest$ = GetGeoMatchSetRequest$;
|
|
4125
|
+
exports.GetGeoMatchSetResponse$ = GetGeoMatchSetResponse$;
|
|
4126
|
+
exports.GetIPSet$ = GetIPSet$;
|
|
1576
4127
|
exports.GetIPSetCommand = GetIPSetCommand;
|
|
4128
|
+
exports.GetIPSetRequest$ = GetIPSetRequest$;
|
|
4129
|
+
exports.GetIPSetResponse$ = GetIPSetResponse$;
|
|
4130
|
+
exports.GetLoggingConfiguration$ = GetLoggingConfiguration$;
|
|
1577
4131
|
exports.GetLoggingConfigurationCommand = GetLoggingConfigurationCommand;
|
|
4132
|
+
exports.GetLoggingConfigurationRequest$ = GetLoggingConfigurationRequest$;
|
|
4133
|
+
exports.GetLoggingConfigurationResponse$ = GetLoggingConfigurationResponse$;
|
|
4134
|
+
exports.GetPermissionPolicy$ = GetPermissionPolicy$;
|
|
1578
4135
|
exports.GetPermissionPolicyCommand = GetPermissionPolicyCommand;
|
|
4136
|
+
exports.GetPermissionPolicyRequest$ = GetPermissionPolicyRequest$;
|
|
4137
|
+
exports.GetPermissionPolicyResponse$ = GetPermissionPolicyResponse$;
|
|
4138
|
+
exports.GetRateBasedRule$ = GetRateBasedRule$;
|
|
1579
4139
|
exports.GetRateBasedRuleCommand = GetRateBasedRuleCommand;
|
|
4140
|
+
exports.GetRateBasedRuleManagedKeys$ = GetRateBasedRuleManagedKeys$;
|
|
1580
4141
|
exports.GetRateBasedRuleManagedKeysCommand = GetRateBasedRuleManagedKeysCommand;
|
|
4142
|
+
exports.GetRateBasedRuleManagedKeysRequest$ = GetRateBasedRuleManagedKeysRequest$;
|
|
4143
|
+
exports.GetRateBasedRuleManagedKeysResponse$ = GetRateBasedRuleManagedKeysResponse$;
|
|
4144
|
+
exports.GetRateBasedRuleRequest$ = GetRateBasedRuleRequest$;
|
|
4145
|
+
exports.GetRateBasedRuleResponse$ = GetRateBasedRuleResponse$;
|
|
4146
|
+
exports.GetRegexMatchSet$ = GetRegexMatchSet$;
|
|
1581
4147
|
exports.GetRegexMatchSetCommand = GetRegexMatchSetCommand;
|
|
4148
|
+
exports.GetRegexMatchSetRequest$ = GetRegexMatchSetRequest$;
|
|
4149
|
+
exports.GetRegexMatchSetResponse$ = GetRegexMatchSetResponse$;
|
|
4150
|
+
exports.GetRegexPatternSet$ = GetRegexPatternSet$;
|
|
1582
4151
|
exports.GetRegexPatternSetCommand = GetRegexPatternSetCommand;
|
|
4152
|
+
exports.GetRegexPatternSetRequest$ = GetRegexPatternSetRequest$;
|
|
4153
|
+
exports.GetRegexPatternSetResponse$ = GetRegexPatternSetResponse$;
|
|
4154
|
+
exports.GetRule$ = GetRule$;
|
|
1583
4155
|
exports.GetRuleCommand = GetRuleCommand;
|
|
4156
|
+
exports.GetRuleGroup$ = GetRuleGroup$;
|
|
1584
4157
|
exports.GetRuleGroupCommand = GetRuleGroupCommand;
|
|
4158
|
+
exports.GetRuleGroupRequest$ = GetRuleGroupRequest$;
|
|
4159
|
+
exports.GetRuleGroupResponse$ = GetRuleGroupResponse$;
|
|
4160
|
+
exports.GetRuleRequest$ = GetRuleRequest$;
|
|
4161
|
+
exports.GetRuleResponse$ = GetRuleResponse$;
|
|
4162
|
+
exports.GetSampledRequests$ = GetSampledRequests$;
|
|
1585
4163
|
exports.GetSampledRequestsCommand = GetSampledRequestsCommand;
|
|
4164
|
+
exports.GetSampledRequestsRequest$ = GetSampledRequestsRequest$;
|
|
4165
|
+
exports.GetSampledRequestsResponse$ = GetSampledRequestsResponse$;
|
|
4166
|
+
exports.GetSizeConstraintSet$ = GetSizeConstraintSet$;
|
|
1586
4167
|
exports.GetSizeConstraintSetCommand = GetSizeConstraintSetCommand;
|
|
4168
|
+
exports.GetSizeConstraintSetRequest$ = GetSizeConstraintSetRequest$;
|
|
4169
|
+
exports.GetSizeConstraintSetResponse$ = GetSizeConstraintSetResponse$;
|
|
4170
|
+
exports.GetSqlInjectionMatchSet$ = GetSqlInjectionMatchSet$;
|
|
1587
4171
|
exports.GetSqlInjectionMatchSetCommand = GetSqlInjectionMatchSetCommand;
|
|
4172
|
+
exports.GetSqlInjectionMatchSetRequest$ = GetSqlInjectionMatchSetRequest$;
|
|
4173
|
+
exports.GetSqlInjectionMatchSetResponse$ = GetSqlInjectionMatchSetResponse$;
|
|
4174
|
+
exports.GetWebACL$ = GetWebACL$;
|
|
1588
4175
|
exports.GetWebACLCommand = GetWebACLCommand;
|
|
4176
|
+
exports.GetWebACLForResource$ = GetWebACLForResource$;
|
|
1589
4177
|
exports.GetWebACLForResourceCommand = GetWebACLForResourceCommand;
|
|
4178
|
+
exports.GetWebACLForResourceRequest$ = GetWebACLForResourceRequest$;
|
|
4179
|
+
exports.GetWebACLForResourceResponse$ = GetWebACLForResourceResponse$;
|
|
4180
|
+
exports.GetWebACLRequest$ = GetWebACLRequest$;
|
|
4181
|
+
exports.GetWebACLResponse$ = GetWebACLResponse$;
|
|
4182
|
+
exports.GetXssMatchSet$ = GetXssMatchSet$;
|
|
1590
4183
|
exports.GetXssMatchSetCommand = GetXssMatchSetCommand;
|
|
4184
|
+
exports.GetXssMatchSetRequest$ = GetXssMatchSetRequest$;
|
|
4185
|
+
exports.GetXssMatchSetResponse$ = GetXssMatchSetResponse$;
|
|
4186
|
+
exports.HTTPHeader$ = HTTPHeader$;
|
|
4187
|
+
exports.HTTPRequest$ = HTTPRequest$;
|
|
4188
|
+
exports.IPSet$ = IPSet$;
|
|
4189
|
+
exports.IPSetDescriptor$ = IPSetDescriptor$;
|
|
1591
4190
|
exports.IPSetDescriptorType = IPSetDescriptorType;
|
|
4191
|
+
exports.IPSetSummary$ = IPSetSummary$;
|
|
4192
|
+
exports.IPSetUpdate$ = IPSetUpdate$;
|
|
4193
|
+
exports.ListActivatedRulesInRuleGroup$ = ListActivatedRulesInRuleGroup$;
|
|
1592
4194
|
exports.ListActivatedRulesInRuleGroupCommand = ListActivatedRulesInRuleGroupCommand;
|
|
4195
|
+
exports.ListActivatedRulesInRuleGroupRequest$ = ListActivatedRulesInRuleGroupRequest$;
|
|
4196
|
+
exports.ListActivatedRulesInRuleGroupResponse$ = ListActivatedRulesInRuleGroupResponse$;
|
|
4197
|
+
exports.ListByteMatchSets$ = ListByteMatchSets$;
|
|
1593
4198
|
exports.ListByteMatchSetsCommand = ListByteMatchSetsCommand;
|
|
4199
|
+
exports.ListByteMatchSetsRequest$ = ListByteMatchSetsRequest$;
|
|
4200
|
+
exports.ListByteMatchSetsResponse$ = ListByteMatchSetsResponse$;
|
|
4201
|
+
exports.ListGeoMatchSets$ = ListGeoMatchSets$;
|
|
1594
4202
|
exports.ListGeoMatchSetsCommand = ListGeoMatchSetsCommand;
|
|
4203
|
+
exports.ListGeoMatchSetsRequest$ = ListGeoMatchSetsRequest$;
|
|
4204
|
+
exports.ListGeoMatchSetsResponse$ = ListGeoMatchSetsResponse$;
|
|
4205
|
+
exports.ListIPSets$ = ListIPSets$;
|
|
1595
4206
|
exports.ListIPSetsCommand = ListIPSetsCommand;
|
|
4207
|
+
exports.ListIPSetsRequest$ = ListIPSetsRequest$;
|
|
4208
|
+
exports.ListIPSetsResponse$ = ListIPSetsResponse$;
|
|
4209
|
+
exports.ListLoggingConfigurations$ = ListLoggingConfigurations$;
|
|
1596
4210
|
exports.ListLoggingConfigurationsCommand = ListLoggingConfigurationsCommand;
|
|
4211
|
+
exports.ListLoggingConfigurationsRequest$ = ListLoggingConfigurationsRequest$;
|
|
4212
|
+
exports.ListLoggingConfigurationsResponse$ = ListLoggingConfigurationsResponse$;
|
|
4213
|
+
exports.ListRateBasedRules$ = ListRateBasedRules$;
|
|
1597
4214
|
exports.ListRateBasedRulesCommand = ListRateBasedRulesCommand;
|
|
4215
|
+
exports.ListRateBasedRulesRequest$ = ListRateBasedRulesRequest$;
|
|
4216
|
+
exports.ListRateBasedRulesResponse$ = ListRateBasedRulesResponse$;
|
|
4217
|
+
exports.ListRegexMatchSets$ = ListRegexMatchSets$;
|
|
1598
4218
|
exports.ListRegexMatchSetsCommand = ListRegexMatchSetsCommand;
|
|
4219
|
+
exports.ListRegexMatchSetsRequest$ = ListRegexMatchSetsRequest$;
|
|
4220
|
+
exports.ListRegexMatchSetsResponse$ = ListRegexMatchSetsResponse$;
|
|
4221
|
+
exports.ListRegexPatternSets$ = ListRegexPatternSets$;
|
|
1599
4222
|
exports.ListRegexPatternSetsCommand = ListRegexPatternSetsCommand;
|
|
4223
|
+
exports.ListRegexPatternSetsRequest$ = ListRegexPatternSetsRequest$;
|
|
4224
|
+
exports.ListRegexPatternSetsResponse$ = ListRegexPatternSetsResponse$;
|
|
4225
|
+
exports.ListResourcesForWebACL$ = ListResourcesForWebACL$;
|
|
1600
4226
|
exports.ListResourcesForWebACLCommand = ListResourcesForWebACLCommand;
|
|
4227
|
+
exports.ListResourcesForWebACLRequest$ = ListResourcesForWebACLRequest$;
|
|
4228
|
+
exports.ListResourcesForWebACLResponse$ = ListResourcesForWebACLResponse$;
|
|
4229
|
+
exports.ListRuleGroups$ = ListRuleGroups$;
|
|
1601
4230
|
exports.ListRuleGroupsCommand = ListRuleGroupsCommand;
|
|
4231
|
+
exports.ListRuleGroupsRequest$ = ListRuleGroupsRequest$;
|
|
4232
|
+
exports.ListRuleGroupsResponse$ = ListRuleGroupsResponse$;
|
|
4233
|
+
exports.ListRules$ = ListRules$;
|
|
1602
4234
|
exports.ListRulesCommand = ListRulesCommand;
|
|
4235
|
+
exports.ListRulesRequest$ = ListRulesRequest$;
|
|
4236
|
+
exports.ListRulesResponse$ = ListRulesResponse$;
|
|
4237
|
+
exports.ListSizeConstraintSets$ = ListSizeConstraintSets$;
|
|
1603
4238
|
exports.ListSizeConstraintSetsCommand = ListSizeConstraintSetsCommand;
|
|
4239
|
+
exports.ListSizeConstraintSetsRequest$ = ListSizeConstraintSetsRequest$;
|
|
4240
|
+
exports.ListSizeConstraintSetsResponse$ = ListSizeConstraintSetsResponse$;
|
|
4241
|
+
exports.ListSqlInjectionMatchSets$ = ListSqlInjectionMatchSets$;
|
|
1604
4242
|
exports.ListSqlInjectionMatchSetsCommand = ListSqlInjectionMatchSetsCommand;
|
|
4243
|
+
exports.ListSqlInjectionMatchSetsRequest$ = ListSqlInjectionMatchSetsRequest$;
|
|
4244
|
+
exports.ListSqlInjectionMatchSetsResponse$ = ListSqlInjectionMatchSetsResponse$;
|
|
4245
|
+
exports.ListSubscribedRuleGroups$ = ListSubscribedRuleGroups$;
|
|
1605
4246
|
exports.ListSubscribedRuleGroupsCommand = ListSubscribedRuleGroupsCommand;
|
|
4247
|
+
exports.ListSubscribedRuleGroupsRequest$ = ListSubscribedRuleGroupsRequest$;
|
|
4248
|
+
exports.ListSubscribedRuleGroupsResponse$ = ListSubscribedRuleGroupsResponse$;
|
|
4249
|
+
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
1606
4250
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
4251
|
+
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
4252
|
+
exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
|
|
4253
|
+
exports.ListWebACLs$ = ListWebACLs$;
|
|
1607
4254
|
exports.ListWebACLsCommand = ListWebACLsCommand;
|
|
4255
|
+
exports.ListWebACLsRequest$ = ListWebACLsRequest$;
|
|
4256
|
+
exports.ListWebACLsResponse$ = ListWebACLsResponse$;
|
|
4257
|
+
exports.ListXssMatchSets$ = ListXssMatchSets$;
|
|
1608
4258
|
exports.ListXssMatchSetsCommand = ListXssMatchSetsCommand;
|
|
4259
|
+
exports.ListXssMatchSetsRequest$ = ListXssMatchSetsRequest$;
|
|
4260
|
+
exports.ListXssMatchSetsResponse$ = ListXssMatchSetsResponse$;
|
|
4261
|
+
exports.LoggingConfiguration$ = LoggingConfiguration$;
|
|
1609
4262
|
exports.MatchFieldType = MatchFieldType;
|
|
1610
4263
|
exports.MigrationErrorType = MigrationErrorType;
|
|
1611
4264
|
exports.ParameterExceptionField = ParameterExceptionField;
|
|
1612
4265
|
exports.ParameterExceptionReason = ParameterExceptionReason;
|
|
1613
4266
|
exports.PositionalConstraint = PositionalConstraint;
|
|
4267
|
+
exports.Predicate$ = Predicate$;
|
|
1614
4268
|
exports.PredicateType = PredicateType;
|
|
4269
|
+
exports.PutLoggingConfiguration$ = PutLoggingConfiguration$;
|
|
1615
4270
|
exports.PutLoggingConfigurationCommand = PutLoggingConfigurationCommand;
|
|
4271
|
+
exports.PutLoggingConfigurationRequest$ = PutLoggingConfigurationRequest$;
|
|
4272
|
+
exports.PutLoggingConfigurationResponse$ = PutLoggingConfigurationResponse$;
|
|
4273
|
+
exports.PutPermissionPolicy$ = PutPermissionPolicy$;
|
|
1616
4274
|
exports.PutPermissionPolicyCommand = PutPermissionPolicyCommand;
|
|
4275
|
+
exports.PutPermissionPolicyRequest$ = PutPermissionPolicyRequest$;
|
|
4276
|
+
exports.PutPermissionPolicyResponse$ = PutPermissionPolicyResponse$;
|
|
4277
|
+
exports.RateBasedRule$ = RateBasedRule$;
|
|
1617
4278
|
exports.RateKey = RateKey;
|
|
4279
|
+
exports.RegexMatchSet$ = RegexMatchSet$;
|
|
4280
|
+
exports.RegexMatchSetSummary$ = RegexMatchSetSummary$;
|
|
4281
|
+
exports.RegexMatchSetUpdate$ = RegexMatchSetUpdate$;
|
|
4282
|
+
exports.RegexMatchTuple$ = RegexMatchTuple$;
|
|
4283
|
+
exports.RegexPatternSet$ = RegexPatternSet$;
|
|
4284
|
+
exports.RegexPatternSetSummary$ = RegexPatternSetSummary$;
|
|
4285
|
+
exports.RegexPatternSetUpdate$ = RegexPatternSetUpdate$;
|
|
1618
4286
|
exports.ResourceType = ResourceType;
|
|
4287
|
+
exports.Rule$ = Rule$;
|
|
4288
|
+
exports.RuleGroup$ = RuleGroup$;
|
|
4289
|
+
exports.RuleGroupSummary$ = RuleGroupSummary$;
|
|
4290
|
+
exports.RuleGroupUpdate$ = RuleGroupUpdate$;
|
|
4291
|
+
exports.RuleSummary$ = RuleSummary$;
|
|
4292
|
+
exports.RuleUpdate$ = RuleUpdate$;
|
|
4293
|
+
exports.SampledHTTPRequest$ = SampledHTTPRequest$;
|
|
4294
|
+
exports.SizeConstraint$ = SizeConstraint$;
|
|
4295
|
+
exports.SizeConstraintSet$ = SizeConstraintSet$;
|
|
4296
|
+
exports.SizeConstraintSetSummary$ = SizeConstraintSetSummary$;
|
|
4297
|
+
exports.SizeConstraintSetUpdate$ = SizeConstraintSetUpdate$;
|
|
4298
|
+
exports.SqlInjectionMatchSet$ = SqlInjectionMatchSet$;
|
|
4299
|
+
exports.SqlInjectionMatchSetSummary$ = SqlInjectionMatchSetSummary$;
|
|
4300
|
+
exports.SqlInjectionMatchSetUpdate$ = SqlInjectionMatchSetUpdate$;
|
|
4301
|
+
exports.SqlInjectionMatchTuple$ = SqlInjectionMatchTuple$;
|
|
4302
|
+
exports.SubscribedRuleGroupSummary$ = SubscribedRuleGroupSummary$;
|
|
4303
|
+
exports.Tag$ = Tag$;
|
|
4304
|
+
exports.TagInfoForResource$ = TagInfoForResource$;
|
|
4305
|
+
exports.TagResource$ = TagResource$;
|
|
1619
4306
|
exports.TagResourceCommand = TagResourceCommand;
|
|
4307
|
+
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
4308
|
+
exports.TagResourceResponse$ = TagResourceResponse$;
|
|
1620
4309
|
exports.TextTransformation = TextTransformation;
|
|
4310
|
+
exports.TimeWindow$ = TimeWindow$;
|
|
4311
|
+
exports.UntagResource$ = UntagResource$;
|
|
1621
4312
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
4313
|
+
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
4314
|
+
exports.UntagResourceResponse$ = UntagResourceResponse$;
|
|
4315
|
+
exports.UpdateByteMatchSet$ = UpdateByteMatchSet$;
|
|
1622
4316
|
exports.UpdateByteMatchSetCommand = UpdateByteMatchSetCommand;
|
|
4317
|
+
exports.UpdateByteMatchSetRequest$ = UpdateByteMatchSetRequest$;
|
|
4318
|
+
exports.UpdateByteMatchSetResponse$ = UpdateByteMatchSetResponse$;
|
|
4319
|
+
exports.UpdateGeoMatchSet$ = UpdateGeoMatchSet$;
|
|
1623
4320
|
exports.UpdateGeoMatchSetCommand = UpdateGeoMatchSetCommand;
|
|
4321
|
+
exports.UpdateGeoMatchSetRequest$ = UpdateGeoMatchSetRequest$;
|
|
4322
|
+
exports.UpdateGeoMatchSetResponse$ = UpdateGeoMatchSetResponse$;
|
|
4323
|
+
exports.UpdateIPSet$ = UpdateIPSet$;
|
|
1624
4324
|
exports.UpdateIPSetCommand = UpdateIPSetCommand;
|
|
4325
|
+
exports.UpdateIPSetRequest$ = UpdateIPSetRequest$;
|
|
4326
|
+
exports.UpdateIPSetResponse$ = UpdateIPSetResponse$;
|
|
4327
|
+
exports.UpdateRateBasedRule$ = UpdateRateBasedRule$;
|
|
1625
4328
|
exports.UpdateRateBasedRuleCommand = UpdateRateBasedRuleCommand;
|
|
4329
|
+
exports.UpdateRateBasedRuleRequest$ = UpdateRateBasedRuleRequest$;
|
|
4330
|
+
exports.UpdateRateBasedRuleResponse$ = UpdateRateBasedRuleResponse$;
|
|
4331
|
+
exports.UpdateRegexMatchSet$ = UpdateRegexMatchSet$;
|
|
1626
4332
|
exports.UpdateRegexMatchSetCommand = UpdateRegexMatchSetCommand;
|
|
4333
|
+
exports.UpdateRegexMatchSetRequest$ = UpdateRegexMatchSetRequest$;
|
|
4334
|
+
exports.UpdateRegexMatchSetResponse$ = UpdateRegexMatchSetResponse$;
|
|
4335
|
+
exports.UpdateRegexPatternSet$ = UpdateRegexPatternSet$;
|
|
1627
4336
|
exports.UpdateRegexPatternSetCommand = UpdateRegexPatternSetCommand;
|
|
4337
|
+
exports.UpdateRegexPatternSetRequest$ = UpdateRegexPatternSetRequest$;
|
|
4338
|
+
exports.UpdateRegexPatternSetResponse$ = UpdateRegexPatternSetResponse$;
|
|
4339
|
+
exports.UpdateRule$ = UpdateRule$;
|
|
1628
4340
|
exports.UpdateRuleCommand = UpdateRuleCommand;
|
|
4341
|
+
exports.UpdateRuleGroup$ = UpdateRuleGroup$;
|
|
1629
4342
|
exports.UpdateRuleGroupCommand = UpdateRuleGroupCommand;
|
|
4343
|
+
exports.UpdateRuleGroupRequest$ = UpdateRuleGroupRequest$;
|
|
4344
|
+
exports.UpdateRuleGroupResponse$ = UpdateRuleGroupResponse$;
|
|
4345
|
+
exports.UpdateRuleRequest$ = UpdateRuleRequest$;
|
|
4346
|
+
exports.UpdateRuleResponse$ = UpdateRuleResponse$;
|
|
4347
|
+
exports.UpdateSizeConstraintSet$ = UpdateSizeConstraintSet$;
|
|
1630
4348
|
exports.UpdateSizeConstraintSetCommand = UpdateSizeConstraintSetCommand;
|
|
4349
|
+
exports.UpdateSizeConstraintSetRequest$ = UpdateSizeConstraintSetRequest$;
|
|
4350
|
+
exports.UpdateSizeConstraintSetResponse$ = UpdateSizeConstraintSetResponse$;
|
|
4351
|
+
exports.UpdateSqlInjectionMatchSet$ = UpdateSqlInjectionMatchSet$;
|
|
1631
4352
|
exports.UpdateSqlInjectionMatchSetCommand = UpdateSqlInjectionMatchSetCommand;
|
|
4353
|
+
exports.UpdateSqlInjectionMatchSetRequest$ = UpdateSqlInjectionMatchSetRequest$;
|
|
4354
|
+
exports.UpdateSqlInjectionMatchSetResponse$ = UpdateSqlInjectionMatchSetResponse$;
|
|
4355
|
+
exports.UpdateWebACL$ = UpdateWebACL$;
|
|
1632
4356
|
exports.UpdateWebACLCommand = UpdateWebACLCommand;
|
|
4357
|
+
exports.UpdateWebACLRequest$ = UpdateWebACLRequest$;
|
|
4358
|
+
exports.UpdateWebACLResponse$ = UpdateWebACLResponse$;
|
|
4359
|
+
exports.UpdateXssMatchSet$ = UpdateXssMatchSet$;
|
|
1633
4360
|
exports.UpdateXssMatchSetCommand = UpdateXssMatchSetCommand;
|
|
4361
|
+
exports.UpdateXssMatchSetRequest$ = UpdateXssMatchSetRequest$;
|
|
4362
|
+
exports.UpdateXssMatchSetResponse$ = UpdateXssMatchSetResponse$;
|
|
4363
|
+
exports.WAFBadRequestException = WAFBadRequestException;
|
|
4364
|
+
exports.WAFBadRequestException$ = WAFBadRequestException$;
|
|
4365
|
+
exports.WAFDisallowedNameException = WAFDisallowedNameException;
|
|
4366
|
+
exports.WAFDisallowedNameException$ = WAFDisallowedNameException$;
|
|
4367
|
+
exports.WAFEntityMigrationException = WAFEntityMigrationException;
|
|
4368
|
+
exports.WAFEntityMigrationException$ = WAFEntityMigrationException$;
|
|
4369
|
+
exports.WAFInternalErrorException = WAFInternalErrorException;
|
|
4370
|
+
exports.WAFInternalErrorException$ = WAFInternalErrorException$;
|
|
4371
|
+
exports.WAFInvalidAccountException = WAFInvalidAccountException;
|
|
4372
|
+
exports.WAFInvalidAccountException$ = WAFInvalidAccountException$;
|
|
4373
|
+
exports.WAFInvalidOperationException = WAFInvalidOperationException;
|
|
4374
|
+
exports.WAFInvalidOperationException$ = WAFInvalidOperationException$;
|
|
4375
|
+
exports.WAFInvalidParameterException = WAFInvalidParameterException;
|
|
4376
|
+
exports.WAFInvalidParameterException$ = WAFInvalidParameterException$;
|
|
4377
|
+
exports.WAFInvalidPermissionPolicyException = WAFInvalidPermissionPolicyException;
|
|
4378
|
+
exports.WAFInvalidPermissionPolicyException$ = WAFInvalidPermissionPolicyException$;
|
|
4379
|
+
exports.WAFInvalidRegexPatternException = WAFInvalidRegexPatternException;
|
|
4380
|
+
exports.WAFInvalidRegexPatternException$ = WAFInvalidRegexPatternException$;
|
|
4381
|
+
exports.WAFLimitsExceededException = WAFLimitsExceededException;
|
|
4382
|
+
exports.WAFLimitsExceededException$ = WAFLimitsExceededException$;
|
|
4383
|
+
exports.WAFNonEmptyEntityException = WAFNonEmptyEntityException;
|
|
4384
|
+
exports.WAFNonEmptyEntityException$ = WAFNonEmptyEntityException$;
|
|
4385
|
+
exports.WAFNonexistentContainerException = WAFNonexistentContainerException;
|
|
4386
|
+
exports.WAFNonexistentContainerException$ = WAFNonexistentContainerException$;
|
|
4387
|
+
exports.WAFNonexistentItemException = WAFNonexistentItemException;
|
|
4388
|
+
exports.WAFNonexistentItemException$ = WAFNonexistentItemException$;
|
|
4389
|
+
exports.WAFReferencedItemException = WAFReferencedItemException;
|
|
4390
|
+
exports.WAFReferencedItemException$ = WAFReferencedItemException$;
|
|
1634
4391
|
exports.WAFRegional = WAFRegional;
|
|
1635
4392
|
exports.WAFRegionalClient = WAFRegionalClient;
|
|
4393
|
+
exports.WAFRegionalServiceException = WAFRegionalServiceException;
|
|
4394
|
+
exports.WAFRegionalServiceException$ = WAFRegionalServiceException$;
|
|
4395
|
+
exports.WAFServiceLinkedRoleErrorException = WAFServiceLinkedRoleErrorException;
|
|
4396
|
+
exports.WAFServiceLinkedRoleErrorException$ = WAFServiceLinkedRoleErrorException$;
|
|
4397
|
+
exports.WAFStaleDataException = WAFStaleDataException;
|
|
4398
|
+
exports.WAFStaleDataException$ = WAFStaleDataException$;
|
|
4399
|
+
exports.WAFSubscriptionNotFoundException = WAFSubscriptionNotFoundException;
|
|
4400
|
+
exports.WAFSubscriptionNotFoundException$ = WAFSubscriptionNotFoundException$;
|
|
4401
|
+
exports.WAFTagOperationException = WAFTagOperationException;
|
|
4402
|
+
exports.WAFTagOperationException$ = WAFTagOperationException$;
|
|
4403
|
+
exports.WAFTagOperationInternalErrorException = WAFTagOperationInternalErrorException;
|
|
4404
|
+
exports.WAFTagOperationInternalErrorException$ = WAFTagOperationInternalErrorException$;
|
|
4405
|
+
exports.WAFUnavailableEntityException = WAFUnavailableEntityException;
|
|
4406
|
+
exports.WAFUnavailableEntityException$ = WAFUnavailableEntityException$;
|
|
4407
|
+
exports.WafAction$ = WafAction$;
|
|
1636
4408
|
exports.WafActionType = WafActionType;
|
|
4409
|
+
exports.WafOverrideAction$ = WafOverrideAction$;
|
|
1637
4410
|
exports.WafOverrideActionType = WafOverrideActionType;
|
|
1638
4411
|
exports.WafRuleType = WafRuleType;
|
|
4412
|
+
exports.WebACL$ = WebACL$;
|
|
4413
|
+
exports.WebACLSummary$ = WebACLSummary$;
|
|
4414
|
+
exports.WebACLUpdate$ = WebACLUpdate$;
|
|
4415
|
+
exports.XssMatchSet$ = XssMatchSet$;
|
|
4416
|
+
exports.XssMatchSetSummary$ = XssMatchSetSummary$;
|
|
4417
|
+
exports.XssMatchSetUpdate$ = XssMatchSetUpdate$;
|
|
4418
|
+
exports.XssMatchTuple$ = XssMatchTuple$;
|
|
4419
|
+
exports.errorTypeRegistries = errorTypeRegistries;
|