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