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