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