@aws-sdk/client-waf-regional 3.987.0 → 3.989.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 +100 -2689
- package/dist-cjs/models/WAFRegionalServiceException.js +12 -0
- package/dist-cjs/models/errors.js +274 -0
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-cjs/schemas/schemas_0.js +2032 -0
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +130 -124
- package/dist-types/schemas/schemas_0.d.ts +28 -21
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +23 -21
- package/package.json +13 -13
package/dist-cjs/index.js
CHANGED
|
@@ -15,6 +15,9 @@ var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');
|
|
|
15
15
|
var runtimeConfig = require('./runtimeConfig');
|
|
16
16
|
var regionConfigResolver = require('@aws-sdk/region-config-resolver');
|
|
17
17
|
var protocolHttp = require('@smithy/protocol-http');
|
|
18
|
+
var schemas_0 = require('./schemas/schemas_0');
|
|
19
|
+
var errors = require('./models/errors');
|
|
20
|
+
var WAFRegionalServiceException = require('./models/WAFRegionalServiceException');
|
|
18
21
|
|
|
19
22
|
const resolveClientEndpointParameters = (options) => {
|
|
20
23
|
return Object.assign(options, {
|
|
@@ -110,2274 +113,6 @@ class WAFRegionalClient extends smithyClient.Client {
|
|
|
110
113
|
}
|
|
111
114
|
}
|
|
112
115
|
|
|
113
|
-
class WAFRegionalServiceException extends smithyClient.ServiceException {
|
|
114
|
-
constructor(options) {
|
|
115
|
-
super(options);
|
|
116
|
-
Object.setPrototypeOf(this, WAFRegionalServiceException.prototype);
|
|
117
|
-
}
|
|
118
|
-
}
|
|
119
|
-
|
|
120
|
-
class WAFInternalErrorException extends WAFRegionalServiceException {
|
|
121
|
-
name = "WAFInternalErrorException";
|
|
122
|
-
$fault = "server";
|
|
123
|
-
constructor(opts) {
|
|
124
|
-
super({
|
|
125
|
-
name: "WAFInternalErrorException",
|
|
126
|
-
$fault: "server",
|
|
127
|
-
...opts,
|
|
128
|
-
});
|
|
129
|
-
Object.setPrototypeOf(this, WAFInternalErrorException.prototype);
|
|
130
|
-
}
|
|
131
|
-
}
|
|
132
|
-
class WAFInvalidAccountException extends WAFRegionalServiceException {
|
|
133
|
-
name = "WAFInvalidAccountException";
|
|
134
|
-
$fault = "client";
|
|
135
|
-
constructor(opts) {
|
|
136
|
-
super({
|
|
137
|
-
name: "WAFInvalidAccountException",
|
|
138
|
-
$fault: "client",
|
|
139
|
-
...opts,
|
|
140
|
-
});
|
|
141
|
-
Object.setPrototypeOf(this, WAFInvalidAccountException.prototype);
|
|
142
|
-
}
|
|
143
|
-
}
|
|
144
|
-
class WAFInvalidParameterException extends WAFRegionalServiceException {
|
|
145
|
-
name = "WAFInvalidParameterException";
|
|
146
|
-
$fault = "client";
|
|
147
|
-
field;
|
|
148
|
-
parameter;
|
|
149
|
-
reason;
|
|
150
|
-
constructor(opts) {
|
|
151
|
-
super({
|
|
152
|
-
name: "WAFInvalidParameterException",
|
|
153
|
-
$fault: "client",
|
|
154
|
-
...opts,
|
|
155
|
-
});
|
|
156
|
-
Object.setPrototypeOf(this, WAFInvalidParameterException.prototype);
|
|
157
|
-
this.field = opts.field;
|
|
158
|
-
this.parameter = opts.parameter;
|
|
159
|
-
this.reason = opts.reason;
|
|
160
|
-
}
|
|
161
|
-
}
|
|
162
|
-
class WAFNonexistentItemException extends WAFRegionalServiceException {
|
|
163
|
-
name = "WAFNonexistentItemException";
|
|
164
|
-
$fault = "client";
|
|
165
|
-
constructor(opts) {
|
|
166
|
-
super({
|
|
167
|
-
name: "WAFNonexistentItemException",
|
|
168
|
-
$fault: "client",
|
|
169
|
-
...opts,
|
|
170
|
-
});
|
|
171
|
-
Object.setPrototypeOf(this, WAFNonexistentItemException.prototype);
|
|
172
|
-
}
|
|
173
|
-
}
|
|
174
|
-
class WAFUnavailableEntityException extends WAFRegionalServiceException {
|
|
175
|
-
name = "WAFUnavailableEntityException";
|
|
176
|
-
$fault = "client";
|
|
177
|
-
constructor(opts) {
|
|
178
|
-
super({
|
|
179
|
-
name: "WAFUnavailableEntityException",
|
|
180
|
-
$fault: "client",
|
|
181
|
-
...opts,
|
|
182
|
-
});
|
|
183
|
-
Object.setPrototypeOf(this, WAFUnavailableEntityException.prototype);
|
|
184
|
-
}
|
|
185
|
-
}
|
|
186
|
-
class WAFDisallowedNameException extends WAFRegionalServiceException {
|
|
187
|
-
name = "WAFDisallowedNameException";
|
|
188
|
-
$fault = "client";
|
|
189
|
-
constructor(opts) {
|
|
190
|
-
super({
|
|
191
|
-
name: "WAFDisallowedNameException",
|
|
192
|
-
$fault: "client",
|
|
193
|
-
...opts,
|
|
194
|
-
});
|
|
195
|
-
Object.setPrototypeOf(this, WAFDisallowedNameException.prototype);
|
|
196
|
-
}
|
|
197
|
-
}
|
|
198
|
-
class WAFLimitsExceededException extends WAFRegionalServiceException {
|
|
199
|
-
name = "WAFLimitsExceededException";
|
|
200
|
-
$fault = "client";
|
|
201
|
-
constructor(opts) {
|
|
202
|
-
super({
|
|
203
|
-
name: "WAFLimitsExceededException",
|
|
204
|
-
$fault: "client",
|
|
205
|
-
...opts,
|
|
206
|
-
});
|
|
207
|
-
Object.setPrototypeOf(this, WAFLimitsExceededException.prototype);
|
|
208
|
-
}
|
|
209
|
-
}
|
|
210
|
-
class WAFStaleDataException extends WAFRegionalServiceException {
|
|
211
|
-
name = "WAFStaleDataException";
|
|
212
|
-
$fault = "client";
|
|
213
|
-
constructor(opts) {
|
|
214
|
-
super({
|
|
215
|
-
name: "WAFStaleDataException",
|
|
216
|
-
$fault: "client",
|
|
217
|
-
...opts,
|
|
218
|
-
});
|
|
219
|
-
Object.setPrototypeOf(this, WAFStaleDataException.prototype);
|
|
220
|
-
}
|
|
221
|
-
}
|
|
222
|
-
class WAFBadRequestException extends WAFRegionalServiceException {
|
|
223
|
-
name = "WAFBadRequestException";
|
|
224
|
-
$fault = "client";
|
|
225
|
-
constructor(opts) {
|
|
226
|
-
super({
|
|
227
|
-
name: "WAFBadRequestException",
|
|
228
|
-
$fault: "client",
|
|
229
|
-
...opts,
|
|
230
|
-
});
|
|
231
|
-
Object.setPrototypeOf(this, WAFBadRequestException.prototype);
|
|
232
|
-
}
|
|
233
|
-
}
|
|
234
|
-
class WAFTagOperationException extends WAFRegionalServiceException {
|
|
235
|
-
name = "WAFTagOperationException";
|
|
236
|
-
$fault = "client";
|
|
237
|
-
constructor(opts) {
|
|
238
|
-
super({
|
|
239
|
-
name: "WAFTagOperationException",
|
|
240
|
-
$fault: "client",
|
|
241
|
-
...opts,
|
|
242
|
-
});
|
|
243
|
-
Object.setPrototypeOf(this, WAFTagOperationException.prototype);
|
|
244
|
-
}
|
|
245
|
-
}
|
|
246
|
-
class WAFTagOperationInternalErrorException extends WAFRegionalServiceException {
|
|
247
|
-
name = "WAFTagOperationInternalErrorException";
|
|
248
|
-
$fault = "server";
|
|
249
|
-
constructor(opts) {
|
|
250
|
-
super({
|
|
251
|
-
name: "WAFTagOperationInternalErrorException",
|
|
252
|
-
$fault: "server",
|
|
253
|
-
...opts,
|
|
254
|
-
});
|
|
255
|
-
Object.setPrototypeOf(this, WAFTagOperationInternalErrorException.prototype);
|
|
256
|
-
}
|
|
257
|
-
}
|
|
258
|
-
class WAFEntityMigrationException extends WAFRegionalServiceException {
|
|
259
|
-
name = "WAFEntityMigrationException";
|
|
260
|
-
$fault = "client";
|
|
261
|
-
MigrationErrorType;
|
|
262
|
-
MigrationErrorReason;
|
|
263
|
-
constructor(opts) {
|
|
264
|
-
super({
|
|
265
|
-
name: "WAFEntityMigrationException",
|
|
266
|
-
$fault: "client",
|
|
267
|
-
...opts,
|
|
268
|
-
});
|
|
269
|
-
Object.setPrototypeOf(this, WAFEntityMigrationException.prototype);
|
|
270
|
-
this.MigrationErrorType = opts.MigrationErrorType;
|
|
271
|
-
this.MigrationErrorReason = opts.MigrationErrorReason;
|
|
272
|
-
}
|
|
273
|
-
}
|
|
274
|
-
class WAFInvalidOperationException extends WAFRegionalServiceException {
|
|
275
|
-
name = "WAFInvalidOperationException";
|
|
276
|
-
$fault = "client";
|
|
277
|
-
constructor(opts) {
|
|
278
|
-
super({
|
|
279
|
-
name: "WAFInvalidOperationException",
|
|
280
|
-
$fault: "client",
|
|
281
|
-
...opts,
|
|
282
|
-
});
|
|
283
|
-
Object.setPrototypeOf(this, WAFInvalidOperationException.prototype);
|
|
284
|
-
}
|
|
285
|
-
}
|
|
286
|
-
class WAFNonEmptyEntityException extends WAFRegionalServiceException {
|
|
287
|
-
name = "WAFNonEmptyEntityException";
|
|
288
|
-
$fault = "client";
|
|
289
|
-
constructor(opts) {
|
|
290
|
-
super({
|
|
291
|
-
name: "WAFNonEmptyEntityException",
|
|
292
|
-
$fault: "client",
|
|
293
|
-
...opts,
|
|
294
|
-
});
|
|
295
|
-
Object.setPrototypeOf(this, WAFNonEmptyEntityException.prototype);
|
|
296
|
-
}
|
|
297
|
-
}
|
|
298
|
-
class WAFReferencedItemException extends WAFRegionalServiceException {
|
|
299
|
-
name = "WAFReferencedItemException";
|
|
300
|
-
$fault = "client";
|
|
301
|
-
constructor(opts) {
|
|
302
|
-
super({
|
|
303
|
-
name: "WAFReferencedItemException",
|
|
304
|
-
$fault: "client",
|
|
305
|
-
...opts,
|
|
306
|
-
});
|
|
307
|
-
Object.setPrototypeOf(this, WAFReferencedItemException.prototype);
|
|
308
|
-
}
|
|
309
|
-
}
|
|
310
|
-
class WAFServiceLinkedRoleErrorException extends WAFRegionalServiceException {
|
|
311
|
-
name = "WAFServiceLinkedRoleErrorException";
|
|
312
|
-
$fault = "client";
|
|
313
|
-
constructor(opts) {
|
|
314
|
-
super({
|
|
315
|
-
name: "WAFServiceLinkedRoleErrorException",
|
|
316
|
-
$fault: "client",
|
|
317
|
-
...opts,
|
|
318
|
-
});
|
|
319
|
-
Object.setPrototypeOf(this, WAFServiceLinkedRoleErrorException.prototype);
|
|
320
|
-
}
|
|
321
|
-
}
|
|
322
|
-
class WAFInvalidPermissionPolicyException extends WAFRegionalServiceException {
|
|
323
|
-
name = "WAFInvalidPermissionPolicyException";
|
|
324
|
-
$fault = "client";
|
|
325
|
-
constructor(opts) {
|
|
326
|
-
super({
|
|
327
|
-
name: "WAFInvalidPermissionPolicyException",
|
|
328
|
-
$fault: "client",
|
|
329
|
-
...opts,
|
|
330
|
-
});
|
|
331
|
-
Object.setPrototypeOf(this, WAFInvalidPermissionPolicyException.prototype);
|
|
332
|
-
}
|
|
333
|
-
}
|
|
334
|
-
class WAFNonexistentContainerException extends WAFRegionalServiceException {
|
|
335
|
-
name = "WAFNonexistentContainerException";
|
|
336
|
-
$fault = "client";
|
|
337
|
-
constructor(opts) {
|
|
338
|
-
super({
|
|
339
|
-
name: "WAFNonexistentContainerException",
|
|
340
|
-
$fault: "client",
|
|
341
|
-
...opts,
|
|
342
|
-
});
|
|
343
|
-
Object.setPrototypeOf(this, WAFNonexistentContainerException.prototype);
|
|
344
|
-
}
|
|
345
|
-
}
|
|
346
|
-
class WAFInvalidRegexPatternException extends WAFRegionalServiceException {
|
|
347
|
-
name = "WAFInvalidRegexPatternException";
|
|
348
|
-
$fault = "client";
|
|
349
|
-
constructor(opts) {
|
|
350
|
-
super({
|
|
351
|
-
name: "WAFInvalidRegexPatternException",
|
|
352
|
-
$fault: "client",
|
|
353
|
-
...opts,
|
|
354
|
-
});
|
|
355
|
-
Object.setPrototypeOf(this, WAFInvalidRegexPatternException.prototype);
|
|
356
|
-
}
|
|
357
|
-
}
|
|
358
|
-
class WAFSubscriptionNotFoundException extends WAFRegionalServiceException {
|
|
359
|
-
name = "WAFSubscriptionNotFoundException";
|
|
360
|
-
$fault = "client";
|
|
361
|
-
constructor(opts) {
|
|
362
|
-
super({
|
|
363
|
-
name: "WAFSubscriptionNotFoundException",
|
|
364
|
-
$fault: "client",
|
|
365
|
-
...opts,
|
|
366
|
-
});
|
|
367
|
-
Object.setPrototypeOf(this, WAFSubscriptionNotFoundException.prototype);
|
|
368
|
-
}
|
|
369
|
-
}
|
|
370
|
-
|
|
371
|
-
const _A = "Action";
|
|
372
|
-
const _AR = "ActivatedRule";
|
|
373
|
-
const _ARc = "ActivatedRules";
|
|
374
|
-
const _AWACL = "AssociateWebACL";
|
|
375
|
-
const _AWACLR = "AssociateWebACLRequest";
|
|
376
|
-
const _AWACLRs = "AssociateWebACLResponse";
|
|
377
|
-
const _BMS = "ByteMatchSet";
|
|
378
|
-
const _BMSI = "ByteMatchSetId";
|
|
379
|
-
const _BMSS = "ByteMatchSetSummary";
|
|
380
|
-
const _BMSSy = "ByteMatchSetSummaries";
|
|
381
|
-
const _BMSU = "ByteMatchSetUpdate";
|
|
382
|
-
const _BMSUy = "ByteMatchSetUpdates";
|
|
383
|
-
const _BMSy = "ByteMatchSets";
|
|
384
|
-
const _BMT = "ByteMatchTuples";
|
|
385
|
-
const _BMTy = "ByteMatchTuple";
|
|
386
|
-
const _C = "Country";
|
|
387
|
-
const _CBMS = "CreateByteMatchSet";
|
|
388
|
-
const _CBMSR = "CreateByteMatchSetRequest";
|
|
389
|
-
const _CBMSRr = "CreateByteMatchSetResponse";
|
|
390
|
-
const _CGMS = "CreateGeoMatchSet";
|
|
391
|
-
const _CGMSR = "CreateGeoMatchSetRequest";
|
|
392
|
-
const _CGMSRr = "CreateGeoMatchSetResponse";
|
|
393
|
-
const _CIP = "ClientIP";
|
|
394
|
-
const _CIPS = "CreateIPSet";
|
|
395
|
-
const _CIPSR = "CreateIPSetRequest";
|
|
396
|
-
const _CIPSRr = "CreateIPSetResponse";
|
|
397
|
-
const _CO = "ComparisonOperator";
|
|
398
|
-
const _CR = "CreateRule";
|
|
399
|
-
const _CRBR = "CreateRateBasedRule";
|
|
400
|
-
const _CRBRR = "CreateRateBasedRuleRequest";
|
|
401
|
-
const _CRBRRr = "CreateRateBasedRuleResponse";
|
|
402
|
-
const _CRG = "CreateRuleGroup";
|
|
403
|
-
const _CRGR = "CreateRuleGroupRequest";
|
|
404
|
-
const _CRGRr = "CreateRuleGroupResponse";
|
|
405
|
-
const _CRMS = "CreateRegexMatchSet";
|
|
406
|
-
const _CRMSR = "CreateRegexMatchSetRequest";
|
|
407
|
-
const _CRMSRr = "CreateRegexMatchSetResponse";
|
|
408
|
-
const _CRPS = "CreateRegexPatternSet";
|
|
409
|
-
const _CRPSR = "CreateRegexPatternSetRequest";
|
|
410
|
-
const _CRPSRr = "CreateRegexPatternSetResponse";
|
|
411
|
-
const _CRR = "CreateRuleRequest";
|
|
412
|
-
const _CRRr = "CreateRuleResponse";
|
|
413
|
-
const _CSCS = "CreateSizeConstraintSet";
|
|
414
|
-
const _CSCSR = "CreateSizeConstraintSetRequest";
|
|
415
|
-
const _CSCSRr = "CreateSizeConstraintSetResponse";
|
|
416
|
-
const _CSIMS = "CreateSqlInjectionMatchSet";
|
|
417
|
-
const _CSIMSR = "CreateSqlInjectionMatchSetRequest";
|
|
418
|
-
const _CSIMSRr = "CreateSqlInjectionMatchSetResponse";
|
|
419
|
-
const _CT = "ChangeToken";
|
|
420
|
-
const _CTS = "ChangeTokenStatus";
|
|
421
|
-
const _CWACL = "CreateWebACL";
|
|
422
|
-
const _CWACLMS = "CreateWebACLMigrationStack";
|
|
423
|
-
const _CWACLMSR = "CreateWebACLMigrationStackRequest";
|
|
424
|
-
const _CWACLMSRr = "CreateWebACLMigrationStackResponse";
|
|
425
|
-
const _CWACLR = "CreateWebACLRequest";
|
|
426
|
-
const _CWACLRr = "CreateWebACLResponse";
|
|
427
|
-
const _CXMS = "CreateXssMatchSet";
|
|
428
|
-
const _CXMSR = "CreateXssMatchSetRequest";
|
|
429
|
-
const _CXMSRr = "CreateXssMatchSetResponse";
|
|
430
|
-
const _D = "Data";
|
|
431
|
-
const _DA = "DefaultAction";
|
|
432
|
-
const _DBMS = "DeleteByteMatchSet";
|
|
433
|
-
const _DBMSR = "DeleteByteMatchSetRequest";
|
|
434
|
-
const _DBMSRe = "DeleteByteMatchSetResponse";
|
|
435
|
-
const _DGMS = "DeleteGeoMatchSet";
|
|
436
|
-
const _DGMSR = "DeleteGeoMatchSetRequest";
|
|
437
|
-
const _DGMSRe = "DeleteGeoMatchSetResponse";
|
|
438
|
-
const _DI = "DataId";
|
|
439
|
-
const _DIPS = "DeleteIPSet";
|
|
440
|
-
const _DIPSR = "DeleteIPSetRequest";
|
|
441
|
-
const _DIPSRe = "DeleteIPSetResponse";
|
|
442
|
-
const _DLC = "DeleteLoggingConfiguration";
|
|
443
|
-
const _DLCR = "DeleteLoggingConfigurationRequest";
|
|
444
|
-
const _DLCRe = "DeleteLoggingConfigurationResponse";
|
|
445
|
-
const _DPP = "DeletePermissionPolicy";
|
|
446
|
-
const _DPPR = "DeletePermissionPolicyRequest";
|
|
447
|
-
const _DPPRe = "DeletePermissionPolicyResponse";
|
|
448
|
-
const _DR = "DeleteRule";
|
|
449
|
-
const _DRBR = "DeleteRateBasedRule";
|
|
450
|
-
const _DRBRR = "DeleteRateBasedRuleRequest";
|
|
451
|
-
const _DRBRRe = "DeleteRateBasedRuleResponse";
|
|
452
|
-
const _DRG = "DeleteRuleGroup";
|
|
453
|
-
const _DRGR = "DeleteRuleGroupRequest";
|
|
454
|
-
const _DRGRe = "DeleteRuleGroupResponse";
|
|
455
|
-
const _DRMS = "DeleteRegexMatchSet";
|
|
456
|
-
const _DRMSR = "DeleteRegexMatchSetRequest";
|
|
457
|
-
const _DRMSRe = "DeleteRegexMatchSetResponse";
|
|
458
|
-
const _DRPS = "DeleteRegexPatternSet";
|
|
459
|
-
const _DRPSR = "DeleteRegexPatternSetRequest";
|
|
460
|
-
const _DRPSRe = "DeleteRegexPatternSetResponse";
|
|
461
|
-
const _DRR = "DeleteRuleRequest";
|
|
462
|
-
const _DRRe = "DeleteRuleResponse";
|
|
463
|
-
const _DSCS = "DeleteSizeConstraintSet";
|
|
464
|
-
const _DSCSR = "DeleteSizeConstraintSetRequest";
|
|
465
|
-
const _DSCSRe = "DeleteSizeConstraintSetResponse";
|
|
466
|
-
const _DSIMS = "DeleteSqlInjectionMatchSet";
|
|
467
|
-
const _DSIMSR = "DeleteSqlInjectionMatchSetRequest";
|
|
468
|
-
const _DSIMSRe = "DeleteSqlInjectionMatchSetResponse";
|
|
469
|
-
const _DWACL = "DeleteWebACL";
|
|
470
|
-
const _DWACLR = "DeleteWebACLRequest";
|
|
471
|
-
const _DWACLRe = "DeleteWebACLResponse";
|
|
472
|
-
const _DWACLRi = "DisassociateWebACLRequest";
|
|
473
|
-
const _DWACLRis = "DisassociateWebACLResponse";
|
|
474
|
-
const _DWACLi = "DisassociateWebACL";
|
|
475
|
-
const _DXMS = "DeleteXssMatchSet";
|
|
476
|
-
const _DXMSR = "DeleteXssMatchSetRequest";
|
|
477
|
-
const _DXMSRe = "DeleteXssMatchSetResponse";
|
|
478
|
-
const _ER = "ExcludedRules";
|
|
479
|
-
const _ERx = "ExcludedRule";
|
|
480
|
-
const _ET = "EndTime";
|
|
481
|
-
const _FTM = "FieldToMatch";
|
|
482
|
-
const _GBMS = "GetByteMatchSet";
|
|
483
|
-
const _GBMSR = "GetByteMatchSetRequest";
|
|
484
|
-
const _GBMSRe = "GetByteMatchSetResponse";
|
|
485
|
-
const _GCT = "GetChangeToken";
|
|
486
|
-
const _GCTR = "GetChangeTokenRequest";
|
|
487
|
-
const _GCTRe = "GetChangeTokenResponse";
|
|
488
|
-
const _GCTS = "GetChangeTokenStatus";
|
|
489
|
-
const _GCTSR = "GetChangeTokenStatusRequest";
|
|
490
|
-
const _GCTSRe = "GetChangeTokenStatusResponse";
|
|
491
|
-
const _GGMS = "GetGeoMatchSet";
|
|
492
|
-
const _GGMSR = "GetGeoMatchSetRequest";
|
|
493
|
-
const _GGMSRe = "GetGeoMatchSetResponse";
|
|
494
|
-
const _GIPS = "GetIPSet";
|
|
495
|
-
const _GIPSR = "GetIPSetRequest";
|
|
496
|
-
const _GIPSRe = "GetIPSetResponse";
|
|
497
|
-
const _GLC = "GetLoggingConfiguration";
|
|
498
|
-
const _GLCR = "GetLoggingConfigurationRequest";
|
|
499
|
-
const _GLCRe = "GetLoggingConfigurationResponse";
|
|
500
|
-
const _GMC = "GeoMatchConstraint";
|
|
501
|
-
const _GMCe = "GeoMatchConstraints";
|
|
502
|
-
const _GMS = "GeoMatchSet";
|
|
503
|
-
const _GMSI = "GeoMatchSetId";
|
|
504
|
-
const _GMSS = "GeoMatchSetSummary";
|
|
505
|
-
const _GMSSe = "GeoMatchSetSummaries";
|
|
506
|
-
const _GMSU = "GeoMatchSetUpdate";
|
|
507
|
-
const _GMSUe = "GeoMatchSetUpdates";
|
|
508
|
-
const _GMSe = "GeoMatchSets";
|
|
509
|
-
const _GPP = "GetPermissionPolicy";
|
|
510
|
-
const _GPPR = "GetPermissionPolicyRequest";
|
|
511
|
-
const _GPPRe = "GetPermissionPolicyResponse";
|
|
512
|
-
const _GR = "GetRule";
|
|
513
|
-
const _GRBR = "GetRateBasedRule";
|
|
514
|
-
const _GRBRMK = "GetRateBasedRuleManagedKeys";
|
|
515
|
-
const _GRBRMKR = "GetRateBasedRuleManagedKeysRequest";
|
|
516
|
-
const _GRBRMKRe = "GetRateBasedRuleManagedKeysResponse";
|
|
517
|
-
const _GRBRR = "GetRateBasedRuleRequest";
|
|
518
|
-
const _GRBRRe = "GetRateBasedRuleResponse";
|
|
519
|
-
const _GRG = "GetRuleGroup";
|
|
520
|
-
const _GRGR = "GetRuleGroupRequest";
|
|
521
|
-
const _GRGRe = "GetRuleGroupResponse";
|
|
522
|
-
const _GRMS = "GetRegexMatchSet";
|
|
523
|
-
const _GRMSR = "GetRegexMatchSetRequest";
|
|
524
|
-
const _GRMSRe = "GetRegexMatchSetResponse";
|
|
525
|
-
const _GRPS = "GetRegexPatternSet";
|
|
526
|
-
const _GRPSR = "GetRegexPatternSetRequest";
|
|
527
|
-
const _GRPSRe = "GetRegexPatternSetResponse";
|
|
528
|
-
const _GRR = "GetRuleRequest";
|
|
529
|
-
const _GRRe = "GetRuleResponse";
|
|
530
|
-
const _GSCS = "GetSizeConstraintSet";
|
|
531
|
-
const _GSCSR = "GetSizeConstraintSetRequest";
|
|
532
|
-
const _GSCSRe = "GetSizeConstraintSetResponse";
|
|
533
|
-
const _GSIMS = "GetSqlInjectionMatchSet";
|
|
534
|
-
const _GSIMSR = "GetSqlInjectionMatchSetRequest";
|
|
535
|
-
const _GSIMSRe = "GetSqlInjectionMatchSetResponse";
|
|
536
|
-
const _GSR = "GetSampledRequests";
|
|
537
|
-
const _GSRR = "GetSampledRequestsRequest";
|
|
538
|
-
const _GSRRe = "GetSampledRequestsResponse";
|
|
539
|
-
const _GWACL = "GetWebACL";
|
|
540
|
-
const _GWACLFR = "GetWebACLForResource";
|
|
541
|
-
const _GWACLFRR = "GetWebACLForResourceRequest";
|
|
542
|
-
const _GWACLFRRe = "GetWebACLForResourceResponse";
|
|
543
|
-
const _GWACLR = "GetWebACLRequest";
|
|
544
|
-
const _GWACLRe = "GetWebACLResponse";
|
|
545
|
-
const _GXMS = "GetXssMatchSet";
|
|
546
|
-
const _GXMSR = "GetXssMatchSetRequest";
|
|
547
|
-
const _GXMSRe = "GetXssMatchSetResponse";
|
|
548
|
-
const _H = "Headers";
|
|
549
|
-
const _HTTPH = "HTTPHeader";
|
|
550
|
-
const _HTTPHe = "HTTPHeaders";
|
|
551
|
-
const _HTTPR = "HTTPRequest";
|
|
552
|
-
const _HTTPV = "HTTPVersion";
|
|
553
|
-
const _IPS = "IPSet";
|
|
554
|
-
const _IPSD = "IPSetDescriptors";
|
|
555
|
-
const _IPSDe = "IPSetDescriptor";
|
|
556
|
-
const _IPSI = "IPSetId";
|
|
557
|
-
const _IPSS = "IPSetSummary";
|
|
558
|
-
const _IPSSe = "IPSetSummaries";
|
|
559
|
-
const _IPSU = "IPSetUpdate";
|
|
560
|
-
const _IPSUe = "IPSetUpdates";
|
|
561
|
-
const _IPSe = "IPSets";
|
|
562
|
-
const _IUT = "IgnoreUnsupportedType";
|
|
563
|
-
const _K = "Key";
|
|
564
|
-
const _L = "Limit";
|
|
565
|
-
const _LARIRG = "ListActivatedRulesInRuleGroup";
|
|
566
|
-
const _LARIRGR = "ListActivatedRulesInRuleGroupRequest";
|
|
567
|
-
const _LARIRGRi = "ListActivatedRulesInRuleGroupResponse";
|
|
568
|
-
const _LBMS = "ListByteMatchSets";
|
|
569
|
-
const _LBMSR = "ListByteMatchSetsRequest";
|
|
570
|
-
const _LBMSRi = "ListByteMatchSetsResponse";
|
|
571
|
-
const _LC = "LoggingConfiguration";
|
|
572
|
-
const _LCo = "LoggingConfigurations";
|
|
573
|
-
const _LDC = "LogDestinationConfigs";
|
|
574
|
-
const _LGMS = "ListGeoMatchSets";
|
|
575
|
-
const _LGMSR = "ListGeoMatchSetsRequest";
|
|
576
|
-
const _LGMSRi = "ListGeoMatchSetsResponse";
|
|
577
|
-
const _LIPS = "ListIPSets";
|
|
578
|
-
const _LIPSR = "ListIPSetsRequest";
|
|
579
|
-
const _LIPSRi = "ListIPSetsResponse";
|
|
580
|
-
const _LLC = "ListLoggingConfigurations";
|
|
581
|
-
const _LLCR = "ListLoggingConfigurationsRequest";
|
|
582
|
-
const _LLCRi = "ListLoggingConfigurationsResponse";
|
|
583
|
-
const _LR = "ListRules";
|
|
584
|
-
const _LRBR = "ListRateBasedRules";
|
|
585
|
-
const _LRBRR = "ListRateBasedRulesRequest";
|
|
586
|
-
const _LRBRRi = "ListRateBasedRulesResponse";
|
|
587
|
-
const _LRFWACL = "ListResourcesForWebACL";
|
|
588
|
-
const _LRFWACLR = "ListResourcesForWebACLRequest";
|
|
589
|
-
const _LRFWACLRi = "ListResourcesForWebACLResponse";
|
|
590
|
-
const _LRG = "ListRuleGroups";
|
|
591
|
-
const _LRGR = "ListRuleGroupsRequest";
|
|
592
|
-
const _LRGRi = "ListRuleGroupsResponse";
|
|
593
|
-
const _LRMS = "ListRegexMatchSets";
|
|
594
|
-
const _LRMSR = "ListRegexMatchSetsRequest";
|
|
595
|
-
const _LRMSRi = "ListRegexMatchSetsResponse";
|
|
596
|
-
const _LRPS = "ListRegexPatternSets";
|
|
597
|
-
const _LRPSR = "ListRegexPatternSetsRequest";
|
|
598
|
-
const _LRPSRi = "ListRegexPatternSetsResponse";
|
|
599
|
-
const _LRR = "ListRulesRequest";
|
|
600
|
-
const _LRRi = "ListRulesResponse";
|
|
601
|
-
const _LSCS = "ListSizeConstraintSets";
|
|
602
|
-
const _LSCSR = "ListSizeConstraintSetsRequest";
|
|
603
|
-
const _LSCSRi = "ListSizeConstraintSetsResponse";
|
|
604
|
-
const _LSIMS = "ListSqlInjectionMatchSets";
|
|
605
|
-
const _LSIMSR = "ListSqlInjectionMatchSetsRequest";
|
|
606
|
-
const _LSIMSRi = "ListSqlInjectionMatchSetsResponse";
|
|
607
|
-
const _LSRG = "ListSubscribedRuleGroups";
|
|
608
|
-
const _LSRGR = "ListSubscribedRuleGroupsRequest";
|
|
609
|
-
const _LSRGRi = "ListSubscribedRuleGroupsResponse";
|
|
610
|
-
const _LTFR = "ListTagsForResource";
|
|
611
|
-
const _LTFRR = "ListTagsForResourceRequest";
|
|
612
|
-
const _LTFRRi = "ListTagsForResourceResponse";
|
|
613
|
-
const _LWACL = "ListWebACLs";
|
|
614
|
-
const _LWACLR = "ListWebACLsRequest";
|
|
615
|
-
const _LWACLRi = "ListWebACLsResponse";
|
|
616
|
-
const _LXMS = "ListXssMatchSets";
|
|
617
|
-
const _LXMSR = "ListXssMatchSetsRequest";
|
|
618
|
-
const _LXMSRi = "ListXssMatchSetsResponse";
|
|
619
|
-
const _M = "Method";
|
|
620
|
-
const _MER = "MigrationErrorReason";
|
|
621
|
-
const _MET = "MigrationErrorType";
|
|
622
|
-
const _MI = "MaxItems";
|
|
623
|
-
const _MK = "ManagedKeys";
|
|
624
|
-
const _MN = "MetricName";
|
|
625
|
-
const _MP = "MatchPredicates";
|
|
626
|
-
const _N = "Name";
|
|
627
|
-
const _NM = "NextMarker";
|
|
628
|
-
const _Ne = "Negated";
|
|
629
|
-
const _OA = "OverrideAction";
|
|
630
|
-
const _P = "Priority";
|
|
631
|
-
const _PC = "PositionalConstraint";
|
|
632
|
-
const _PLC = "PutLoggingConfiguration";
|
|
633
|
-
const _PLCR = "PutLoggingConfigurationRequest";
|
|
634
|
-
const _PLCRu = "PutLoggingConfigurationResponse";
|
|
635
|
-
const _PPP = "PutPermissionPolicy";
|
|
636
|
-
const _PPPR = "PutPermissionPolicyRequest";
|
|
637
|
-
const _PPPRu = "PutPermissionPolicyResponse";
|
|
638
|
-
const _PS = "PopulationSize";
|
|
639
|
-
const _Po = "Policy";
|
|
640
|
-
const _Pr = "Predicate";
|
|
641
|
-
const _Pre = "Predicates";
|
|
642
|
-
const _R = "Rule";
|
|
643
|
-
const _RA = "ResourceArn";
|
|
644
|
-
const _RARN = "ResourceARN";
|
|
645
|
-
const _RAe = "ResourceArns";
|
|
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 _RT = "ResourceType";
|
|
679
|
-
const _RU = "RuleUpdate";
|
|
680
|
-
const _RUu = "RuleUpdates";
|
|
681
|
-
const _RWRG = "RuleWithinRuleGroup";
|
|
682
|
-
const _Re = "Request";
|
|
683
|
-
const _Ru = "Rules";
|
|
684
|
-
const _S = "Size";
|
|
685
|
-
const _SBN = "S3BucketName";
|
|
686
|
-
const _SC = "SizeConstraint";
|
|
687
|
-
const _SCS = "SizeConstraintSet";
|
|
688
|
-
const _SCSI = "SizeConstraintSetId";
|
|
689
|
-
const _SCSS = "SizeConstraintSetSummary";
|
|
690
|
-
const _SCSSi = "SizeConstraintSetSummaries";
|
|
691
|
-
const _SCSU = "SizeConstraintSetUpdate";
|
|
692
|
-
const _SCSUi = "SizeConstraintSetUpdates";
|
|
693
|
-
const _SCSi = "SizeConstraintSets";
|
|
694
|
-
const _SCi = "SizeConstraints";
|
|
695
|
-
const _SHTTPR = "SampledHTTPRequest";
|
|
696
|
-
const _SHTTPRa = "SampledHTTPRequests";
|
|
697
|
-
const _SIMS = "SqlInjectionMatchSet";
|
|
698
|
-
const _SIMSI = "SqlInjectionMatchSetId";
|
|
699
|
-
const _SIMSS = "SqlInjectionMatchSetSummary";
|
|
700
|
-
const _SIMSSq = "SqlInjectionMatchSetSummaries";
|
|
701
|
-
const _SIMSU = "SqlInjectionMatchSetUpdate";
|
|
702
|
-
const _SIMSUq = "SqlInjectionMatchSetUpdates";
|
|
703
|
-
const _SIMSq = "SqlInjectionMatchSets";
|
|
704
|
-
const _SIMT = "SqlInjectionMatchTuples";
|
|
705
|
-
const _SIMTq = "SqlInjectionMatchTuple";
|
|
706
|
-
const _SOU = "S3ObjectUrl";
|
|
707
|
-
const _SR = "SampledRequests";
|
|
708
|
-
const _SRGS = "SubscribedRuleGroupSummary";
|
|
709
|
-
const _SRGSu = "SubscribedRuleGroupSummaries";
|
|
710
|
-
const _ST = "StartTime";
|
|
711
|
-
const _T = "Type";
|
|
712
|
-
const _TIFR = "TagInfoForResource";
|
|
713
|
-
const _TK = "TagKeys";
|
|
714
|
-
const _TL = "TagList";
|
|
715
|
-
const _TR = "TagResource";
|
|
716
|
-
const _TRR = "TagResourceRequest";
|
|
717
|
-
const _TRRa = "TagResourceResponse";
|
|
718
|
-
const _TS = "TargetString";
|
|
719
|
-
const _TT = "TextTransformation";
|
|
720
|
-
const _TW = "TimeWindow";
|
|
721
|
-
const _Ta = "Tags";
|
|
722
|
-
const _Tag = "Tag";
|
|
723
|
-
const _Ti = "Timestamp";
|
|
724
|
-
const _U = "Updates";
|
|
725
|
-
const _UBMS = "UpdateByteMatchSet";
|
|
726
|
-
const _UBMSR = "UpdateByteMatchSetRequest";
|
|
727
|
-
const _UBMSRp = "UpdateByteMatchSetResponse";
|
|
728
|
-
const _UGMS = "UpdateGeoMatchSet";
|
|
729
|
-
const _UGMSR = "UpdateGeoMatchSetRequest";
|
|
730
|
-
const _UGMSRp = "UpdateGeoMatchSetResponse";
|
|
731
|
-
const _UIPS = "UpdateIPSet";
|
|
732
|
-
const _UIPSR = "UpdateIPSetRequest";
|
|
733
|
-
const _UIPSRp = "UpdateIPSetResponse";
|
|
734
|
-
const _UR = "UntagResource";
|
|
735
|
-
const _URBR = "UpdateRateBasedRule";
|
|
736
|
-
const _URBRR = "UpdateRateBasedRuleRequest";
|
|
737
|
-
const _URBRRp = "UpdateRateBasedRuleResponse";
|
|
738
|
-
const _URG = "UpdateRuleGroup";
|
|
739
|
-
const _URGR = "UpdateRuleGroupRequest";
|
|
740
|
-
const _URGRp = "UpdateRuleGroupResponse";
|
|
741
|
-
const _URI = "URI";
|
|
742
|
-
const _URMS = "UpdateRegexMatchSet";
|
|
743
|
-
const _URMSR = "UpdateRegexMatchSetRequest";
|
|
744
|
-
const _URMSRp = "UpdateRegexMatchSetResponse";
|
|
745
|
-
const _URPS = "UpdateRegexPatternSet";
|
|
746
|
-
const _URPSR = "UpdateRegexPatternSetRequest";
|
|
747
|
-
const _URPSRp = "UpdateRegexPatternSetResponse";
|
|
748
|
-
const _URR = "UntagResourceRequest";
|
|
749
|
-
const _URRn = "UntagResourceResponse";
|
|
750
|
-
const _URRp = "UpdateRuleRequest";
|
|
751
|
-
const _URRpd = "UpdateRuleResponse";
|
|
752
|
-
const _URp = "UpdateRule";
|
|
753
|
-
const _USCS = "UpdateSizeConstraintSet";
|
|
754
|
-
const _USCSR = "UpdateSizeConstraintSetRequest";
|
|
755
|
-
const _USCSRp = "UpdateSizeConstraintSetResponse";
|
|
756
|
-
const _USIMS = "UpdateSqlInjectionMatchSet";
|
|
757
|
-
const _USIMSR = "UpdateSqlInjectionMatchSetRequest";
|
|
758
|
-
const _USIMSRp = "UpdateSqlInjectionMatchSetResponse";
|
|
759
|
-
const _UWACL = "UpdateWebACL";
|
|
760
|
-
const _UWACLR = "UpdateWebACLRequest";
|
|
761
|
-
const _UWACLRp = "UpdateWebACLResponse";
|
|
762
|
-
const _UXMS = "UpdateXssMatchSet";
|
|
763
|
-
const _UXMSR = "UpdateXssMatchSetRequest";
|
|
764
|
-
const _UXMSRp = "UpdateXssMatchSetResponse";
|
|
765
|
-
const _V = "Value";
|
|
766
|
-
const _W = "Weight";
|
|
767
|
-
const _WA = "WafAction";
|
|
768
|
-
const _WACL = "WebACL";
|
|
769
|
-
const _WACLA = "WebACLArn";
|
|
770
|
-
const _WACLI = "WebACLId";
|
|
771
|
-
const _WACLS = "WebACLSummary";
|
|
772
|
-
const _WACLSe = "WebACLSummaries";
|
|
773
|
-
const _WACLU = "WebACLUpdate";
|
|
774
|
-
const _WACLUe = "WebACLUpdates";
|
|
775
|
-
const _WACLe = "WebACLs";
|
|
776
|
-
const _WAFBRE = "WAFBadRequestException";
|
|
777
|
-
const _WAFDNE = "WAFDisallowedNameException";
|
|
778
|
-
const _WAFEME = "WAFEntityMigrationException";
|
|
779
|
-
const _WAFIAE = "WAFInvalidAccountException";
|
|
780
|
-
const _WAFIEE = "WAFInternalErrorException";
|
|
781
|
-
const _WAFIOE = "WAFInvalidOperationException";
|
|
782
|
-
const _WAFIPE = "WAFInvalidParameterException";
|
|
783
|
-
const _WAFIPPE = "WAFInvalidPermissionPolicyException";
|
|
784
|
-
const _WAFIRPE = "WAFInvalidRegexPatternException";
|
|
785
|
-
const _WAFLEE = "WAFLimitsExceededException";
|
|
786
|
-
const _WAFNCE = "WAFNonexistentContainerException";
|
|
787
|
-
const _WAFNEEE = "WAFNonEmptyEntityException";
|
|
788
|
-
const _WAFNIE = "WAFNonexistentItemException";
|
|
789
|
-
const _WAFRIE = "WAFReferencedItemException";
|
|
790
|
-
const _WAFSDE = "WAFStaleDataException";
|
|
791
|
-
const _WAFSLREE = "WAFServiceLinkedRoleErrorException";
|
|
792
|
-
const _WAFSNFE = "WAFSubscriptionNotFoundException";
|
|
793
|
-
const _WAFTOE = "WAFTagOperationException";
|
|
794
|
-
const _WAFTOIEE = "WAFTagOperationInternalErrorException";
|
|
795
|
-
const _WAFUEE = "WAFUnavailableEntityException";
|
|
796
|
-
const _WAI = "WebAclId";
|
|
797
|
-
const _WOA = "WafOverrideAction";
|
|
798
|
-
const _XMS = "XssMatchSet";
|
|
799
|
-
const _XMSI = "XssMatchSetId";
|
|
800
|
-
const _XMSS = "XssMatchSetSummary";
|
|
801
|
-
const _XMSSs = "XssMatchSetSummaries";
|
|
802
|
-
const _XMSU = "XssMatchSetUpdate";
|
|
803
|
-
const _XMSUs = "XssMatchSetUpdates";
|
|
804
|
-
const _XMSs = "XssMatchSets";
|
|
805
|
-
const _XMT = "XssMatchTuples";
|
|
806
|
-
const _XMTs = "XssMatchTuple";
|
|
807
|
-
const _c = "client";
|
|
808
|
-
const _e = "error";
|
|
809
|
-
const _f = "field";
|
|
810
|
-
const _m = "message";
|
|
811
|
-
const _p = "parameter";
|
|
812
|
-
const _r = "reason";
|
|
813
|
-
const _s = "server";
|
|
814
|
-
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.wafregional";
|
|
815
|
-
const n0 = "com.amazonaws.wafregional";
|
|
816
|
-
var ActivatedRule$ = [3, n0, _AR,
|
|
817
|
-
0,
|
|
818
|
-
[_P, _RI, _A, _OA, _T, _ER],
|
|
819
|
-
[1, 0, () => WafAction$, () => WafOverrideAction$, 0, () => ExcludedRules], 2
|
|
820
|
-
];
|
|
821
|
-
var AssociateWebACLRequest$ = [3, n0, _AWACLR,
|
|
822
|
-
0,
|
|
823
|
-
[_WACLI, _RA],
|
|
824
|
-
[0, 0], 2
|
|
825
|
-
];
|
|
826
|
-
var AssociateWebACLResponse$ = [3, n0, _AWACLRs,
|
|
827
|
-
0,
|
|
828
|
-
[],
|
|
829
|
-
[]
|
|
830
|
-
];
|
|
831
|
-
var ByteMatchSet$ = [3, n0, _BMS,
|
|
832
|
-
0,
|
|
833
|
-
[_BMSI, _BMT, _N],
|
|
834
|
-
[0, () => ByteMatchTuples, 0], 2
|
|
835
|
-
];
|
|
836
|
-
var ByteMatchSetSummary$ = [3, n0, _BMSS,
|
|
837
|
-
0,
|
|
838
|
-
[_BMSI, _N],
|
|
839
|
-
[0, 0], 2
|
|
840
|
-
];
|
|
841
|
-
var ByteMatchSetUpdate$ = [3, n0, _BMSU,
|
|
842
|
-
0,
|
|
843
|
-
[_A, _BMTy],
|
|
844
|
-
[0, () => ByteMatchTuple$], 2
|
|
845
|
-
];
|
|
846
|
-
var ByteMatchTuple$ = [3, n0, _BMTy,
|
|
847
|
-
0,
|
|
848
|
-
[_FTM, _TS, _TT, _PC],
|
|
849
|
-
[() => FieldToMatch$, 21, 0, 0], 4
|
|
850
|
-
];
|
|
851
|
-
var CreateByteMatchSetRequest$ = [3, n0, _CBMSR,
|
|
852
|
-
0,
|
|
853
|
-
[_N, _CT],
|
|
854
|
-
[0, 0], 2
|
|
855
|
-
];
|
|
856
|
-
var CreateByteMatchSetResponse$ = [3, n0, _CBMSRr,
|
|
857
|
-
0,
|
|
858
|
-
[_BMS, _CT],
|
|
859
|
-
[() => ByteMatchSet$, 0]
|
|
860
|
-
];
|
|
861
|
-
var CreateGeoMatchSetRequest$ = [3, n0, _CGMSR,
|
|
862
|
-
0,
|
|
863
|
-
[_N, _CT],
|
|
864
|
-
[0, 0], 2
|
|
865
|
-
];
|
|
866
|
-
var CreateGeoMatchSetResponse$ = [3, n0, _CGMSRr,
|
|
867
|
-
0,
|
|
868
|
-
[_GMS, _CT],
|
|
869
|
-
[() => GeoMatchSet$, 0]
|
|
870
|
-
];
|
|
871
|
-
var CreateIPSetRequest$ = [3, n0, _CIPSR,
|
|
872
|
-
0,
|
|
873
|
-
[_N, _CT],
|
|
874
|
-
[0, 0], 2
|
|
875
|
-
];
|
|
876
|
-
var CreateIPSetResponse$ = [3, n0, _CIPSRr,
|
|
877
|
-
0,
|
|
878
|
-
[_IPS, _CT],
|
|
879
|
-
[() => IPSet$, 0]
|
|
880
|
-
];
|
|
881
|
-
var CreateRateBasedRuleRequest$ = [3, n0, _CRBRR,
|
|
882
|
-
0,
|
|
883
|
-
[_N, _MN, _RK, _RL, _CT, _Ta],
|
|
884
|
-
[0, 0, 0, 1, 0, () => TagList], 5
|
|
885
|
-
];
|
|
886
|
-
var CreateRateBasedRuleResponse$ = [3, n0, _CRBRRr,
|
|
887
|
-
0,
|
|
888
|
-
[_R, _CT],
|
|
889
|
-
[() => RateBasedRule$, 0]
|
|
890
|
-
];
|
|
891
|
-
var CreateRegexMatchSetRequest$ = [3, n0, _CRMSR,
|
|
892
|
-
0,
|
|
893
|
-
[_N, _CT],
|
|
894
|
-
[0, 0], 2
|
|
895
|
-
];
|
|
896
|
-
var CreateRegexMatchSetResponse$ = [3, n0, _CRMSRr,
|
|
897
|
-
0,
|
|
898
|
-
[_RMS, _CT],
|
|
899
|
-
[() => RegexMatchSet$, 0]
|
|
900
|
-
];
|
|
901
|
-
var CreateRegexPatternSetRequest$ = [3, n0, _CRPSR,
|
|
902
|
-
0,
|
|
903
|
-
[_N, _CT],
|
|
904
|
-
[0, 0], 2
|
|
905
|
-
];
|
|
906
|
-
var CreateRegexPatternSetResponse$ = [3, n0, _CRPSRr,
|
|
907
|
-
0,
|
|
908
|
-
[_RPS, _CT],
|
|
909
|
-
[() => RegexPatternSet$, 0]
|
|
910
|
-
];
|
|
911
|
-
var CreateRuleGroupRequest$ = [3, n0, _CRGR,
|
|
912
|
-
0,
|
|
913
|
-
[_N, _MN, _CT, _Ta],
|
|
914
|
-
[0, 0, 0, () => TagList], 3
|
|
915
|
-
];
|
|
916
|
-
var CreateRuleGroupResponse$ = [3, n0, _CRGRr,
|
|
917
|
-
0,
|
|
918
|
-
[_RG, _CT],
|
|
919
|
-
[() => RuleGroup$, 0]
|
|
920
|
-
];
|
|
921
|
-
var CreateRuleRequest$ = [3, n0, _CRR,
|
|
922
|
-
0,
|
|
923
|
-
[_N, _MN, _CT, _Ta],
|
|
924
|
-
[0, 0, 0, () => TagList], 3
|
|
925
|
-
];
|
|
926
|
-
var CreateRuleResponse$ = [3, n0, _CRRr,
|
|
927
|
-
0,
|
|
928
|
-
[_R, _CT],
|
|
929
|
-
[() => Rule$, 0]
|
|
930
|
-
];
|
|
931
|
-
var CreateSizeConstraintSetRequest$ = [3, n0, _CSCSR,
|
|
932
|
-
0,
|
|
933
|
-
[_N, _CT],
|
|
934
|
-
[0, 0], 2
|
|
935
|
-
];
|
|
936
|
-
var CreateSizeConstraintSetResponse$ = [3, n0, _CSCSRr,
|
|
937
|
-
0,
|
|
938
|
-
[_SCS, _CT],
|
|
939
|
-
[() => SizeConstraintSet$, 0]
|
|
940
|
-
];
|
|
941
|
-
var CreateSqlInjectionMatchSetRequest$ = [3, n0, _CSIMSR,
|
|
942
|
-
0,
|
|
943
|
-
[_N, _CT],
|
|
944
|
-
[0, 0], 2
|
|
945
|
-
];
|
|
946
|
-
var CreateSqlInjectionMatchSetResponse$ = [3, n0, _CSIMSRr,
|
|
947
|
-
0,
|
|
948
|
-
[_SIMS, _CT],
|
|
949
|
-
[() => SqlInjectionMatchSet$, 0]
|
|
950
|
-
];
|
|
951
|
-
var CreateWebACLMigrationStackRequest$ = [3, n0, _CWACLMSR,
|
|
952
|
-
0,
|
|
953
|
-
[_WACLI, _SBN, _IUT],
|
|
954
|
-
[0, 0, 2], 3
|
|
955
|
-
];
|
|
956
|
-
var CreateWebACLMigrationStackResponse$ = [3, n0, _CWACLMSRr,
|
|
957
|
-
0,
|
|
958
|
-
[_SOU],
|
|
959
|
-
[0], 1
|
|
960
|
-
];
|
|
961
|
-
var CreateWebACLRequest$ = [3, n0, _CWACLR,
|
|
962
|
-
0,
|
|
963
|
-
[_N, _MN, _DA, _CT, _Ta],
|
|
964
|
-
[0, 0, () => WafAction$, 0, () => TagList], 4
|
|
965
|
-
];
|
|
966
|
-
var CreateWebACLResponse$ = [3, n0, _CWACLRr,
|
|
967
|
-
0,
|
|
968
|
-
[_WACL, _CT],
|
|
969
|
-
[() => WebACL$, 0]
|
|
970
|
-
];
|
|
971
|
-
var CreateXssMatchSetRequest$ = [3, n0, _CXMSR,
|
|
972
|
-
0,
|
|
973
|
-
[_N, _CT],
|
|
974
|
-
[0, 0], 2
|
|
975
|
-
];
|
|
976
|
-
var CreateXssMatchSetResponse$ = [3, n0, _CXMSRr,
|
|
977
|
-
0,
|
|
978
|
-
[_XMS, _CT],
|
|
979
|
-
[() => XssMatchSet$, 0]
|
|
980
|
-
];
|
|
981
|
-
var DeleteByteMatchSetRequest$ = [3, n0, _DBMSR,
|
|
982
|
-
0,
|
|
983
|
-
[_BMSI, _CT],
|
|
984
|
-
[0, 0], 2
|
|
985
|
-
];
|
|
986
|
-
var DeleteByteMatchSetResponse$ = [3, n0, _DBMSRe,
|
|
987
|
-
0,
|
|
988
|
-
[_CT],
|
|
989
|
-
[0]
|
|
990
|
-
];
|
|
991
|
-
var DeleteGeoMatchSetRequest$ = [3, n0, _DGMSR,
|
|
992
|
-
0,
|
|
993
|
-
[_GMSI, _CT],
|
|
994
|
-
[0, 0], 2
|
|
995
|
-
];
|
|
996
|
-
var DeleteGeoMatchSetResponse$ = [3, n0, _DGMSRe,
|
|
997
|
-
0,
|
|
998
|
-
[_CT],
|
|
999
|
-
[0]
|
|
1000
|
-
];
|
|
1001
|
-
var DeleteIPSetRequest$ = [3, n0, _DIPSR,
|
|
1002
|
-
0,
|
|
1003
|
-
[_IPSI, _CT],
|
|
1004
|
-
[0, 0], 2
|
|
1005
|
-
];
|
|
1006
|
-
var DeleteIPSetResponse$ = [3, n0, _DIPSRe,
|
|
1007
|
-
0,
|
|
1008
|
-
[_CT],
|
|
1009
|
-
[0]
|
|
1010
|
-
];
|
|
1011
|
-
var DeleteLoggingConfigurationRequest$ = [3, n0, _DLCR,
|
|
1012
|
-
0,
|
|
1013
|
-
[_RA],
|
|
1014
|
-
[0], 1
|
|
1015
|
-
];
|
|
1016
|
-
var DeleteLoggingConfigurationResponse$ = [3, n0, _DLCRe,
|
|
1017
|
-
0,
|
|
1018
|
-
[],
|
|
1019
|
-
[]
|
|
1020
|
-
];
|
|
1021
|
-
var DeletePermissionPolicyRequest$ = [3, n0, _DPPR,
|
|
1022
|
-
0,
|
|
1023
|
-
[_RA],
|
|
1024
|
-
[0], 1
|
|
1025
|
-
];
|
|
1026
|
-
var DeletePermissionPolicyResponse$ = [3, n0, _DPPRe,
|
|
1027
|
-
0,
|
|
1028
|
-
[],
|
|
1029
|
-
[]
|
|
1030
|
-
];
|
|
1031
|
-
var DeleteRateBasedRuleRequest$ = [3, n0, _DRBRR,
|
|
1032
|
-
0,
|
|
1033
|
-
[_RI, _CT],
|
|
1034
|
-
[0, 0], 2
|
|
1035
|
-
];
|
|
1036
|
-
var DeleteRateBasedRuleResponse$ = [3, n0, _DRBRRe,
|
|
1037
|
-
0,
|
|
1038
|
-
[_CT],
|
|
1039
|
-
[0]
|
|
1040
|
-
];
|
|
1041
|
-
var DeleteRegexMatchSetRequest$ = [3, n0, _DRMSR,
|
|
1042
|
-
0,
|
|
1043
|
-
[_RMSI, _CT],
|
|
1044
|
-
[0, 0], 2
|
|
1045
|
-
];
|
|
1046
|
-
var DeleteRegexMatchSetResponse$ = [3, n0, _DRMSRe,
|
|
1047
|
-
0,
|
|
1048
|
-
[_CT],
|
|
1049
|
-
[0]
|
|
1050
|
-
];
|
|
1051
|
-
var DeleteRegexPatternSetRequest$ = [3, n0, _DRPSR,
|
|
1052
|
-
0,
|
|
1053
|
-
[_RPSI, _CT],
|
|
1054
|
-
[0, 0], 2
|
|
1055
|
-
];
|
|
1056
|
-
var DeleteRegexPatternSetResponse$ = [3, n0, _DRPSRe,
|
|
1057
|
-
0,
|
|
1058
|
-
[_CT],
|
|
1059
|
-
[0]
|
|
1060
|
-
];
|
|
1061
|
-
var DeleteRuleGroupRequest$ = [3, n0, _DRGR,
|
|
1062
|
-
0,
|
|
1063
|
-
[_RGI, _CT],
|
|
1064
|
-
[0, 0], 2
|
|
1065
|
-
];
|
|
1066
|
-
var DeleteRuleGroupResponse$ = [3, n0, _DRGRe,
|
|
1067
|
-
0,
|
|
1068
|
-
[_CT],
|
|
1069
|
-
[0]
|
|
1070
|
-
];
|
|
1071
|
-
var DeleteRuleRequest$ = [3, n0, _DRR,
|
|
1072
|
-
0,
|
|
1073
|
-
[_RI, _CT],
|
|
1074
|
-
[0, 0], 2
|
|
1075
|
-
];
|
|
1076
|
-
var DeleteRuleResponse$ = [3, n0, _DRRe,
|
|
1077
|
-
0,
|
|
1078
|
-
[_CT],
|
|
1079
|
-
[0]
|
|
1080
|
-
];
|
|
1081
|
-
var DeleteSizeConstraintSetRequest$ = [3, n0, _DSCSR,
|
|
1082
|
-
0,
|
|
1083
|
-
[_SCSI, _CT],
|
|
1084
|
-
[0, 0], 2
|
|
1085
|
-
];
|
|
1086
|
-
var DeleteSizeConstraintSetResponse$ = [3, n0, _DSCSRe,
|
|
1087
|
-
0,
|
|
1088
|
-
[_CT],
|
|
1089
|
-
[0]
|
|
1090
|
-
];
|
|
1091
|
-
var DeleteSqlInjectionMatchSetRequest$ = [3, n0, _DSIMSR,
|
|
1092
|
-
0,
|
|
1093
|
-
[_SIMSI, _CT],
|
|
1094
|
-
[0, 0], 2
|
|
1095
|
-
];
|
|
1096
|
-
var DeleteSqlInjectionMatchSetResponse$ = [3, n0, _DSIMSRe,
|
|
1097
|
-
0,
|
|
1098
|
-
[_CT],
|
|
1099
|
-
[0]
|
|
1100
|
-
];
|
|
1101
|
-
var DeleteWebACLRequest$ = [3, n0, _DWACLR,
|
|
1102
|
-
0,
|
|
1103
|
-
[_WACLI, _CT],
|
|
1104
|
-
[0, 0], 2
|
|
1105
|
-
];
|
|
1106
|
-
var DeleteWebACLResponse$ = [3, n0, _DWACLRe,
|
|
1107
|
-
0,
|
|
1108
|
-
[_CT],
|
|
1109
|
-
[0]
|
|
1110
|
-
];
|
|
1111
|
-
var DeleteXssMatchSetRequest$ = [3, n0, _DXMSR,
|
|
1112
|
-
0,
|
|
1113
|
-
[_XMSI, _CT],
|
|
1114
|
-
[0, 0], 2
|
|
1115
|
-
];
|
|
1116
|
-
var DeleteXssMatchSetResponse$ = [3, n0, _DXMSRe,
|
|
1117
|
-
0,
|
|
1118
|
-
[_CT],
|
|
1119
|
-
[0]
|
|
1120
|
-
];
|
|
1121
|
-
var DisassociateWebACLRequest$ = [3, n0, _DWACLRi,
|
|
1122
|
-
0,
|
|
1123
|
-
[_RA],
|
|
1124
|
-
[0], 1
|
|
1125
|
-
];
|
|
1126
|
-
var DisassociateWebACLResponse$ = [3, n0, _DWACLRis,
|
|
1127
|
-
0,
|
|
1128
|
-
[],
|
|
1129
|
-
[]
|
|
1130
|
-
];
|
|
1131
|
-
var ExcludedRule$ = [3, n0, _ERx,
|
|
1132
|
-
0,
|
|
1133
|
-
[_RI],
|
|
1134
|
-
[0], 1
|
|
1135
|
-
];
|
|
1136
|
-
var FieldToMatch$ = [3, n0, _FTM,
|
|
1137
|
-
0,
|
|
1138
|
-
[_T, _D],
|
|
1139
|
-
[0, 0], 1
|
|
1140
|
-
];
|
|
1141
|
-
var GeoMatchConstraint$ = [3, n0, _GMC,
|
|
1142
|
-
0,
|
|
1143
|
-
[_T, _V],
|
|
1144
|
-
[0, 0], 2
|
|
1145
|
-
];
|
|
1146
|
-
var GeoMatchSet$ = [3, n0, _GMS,
|
|
1147
|
-
0,
|
|
1148
|
-
[_GMSI, _GMCe, _N],
|
|
1149
|
-
[0, () => GeoMatchConstraints, 0], 2
|
|
1150
|
-
];
|
|
1151
|
-
var GeoMatchSetSummary$ = [3, n0, _GMSS,
|
|
1152
|
-
0,
|
|
1153
|
-
[_GMSI, _N],
|
|
1154
|
-
[0, 0], 2
|
|
1155
|
-
];
|
|
1156
|
-
var GeoMatchSetUpdate$ = [3, n0, _GMSU,
|
|
1157
|
-
0,
|
|
1158
|
-
[_A, _GMC],
|
|
1159
|
-
[0, () => GeoMatchConstraint$], 2
|
|
1160
|
-
];
|
|
1161
|
-
var GetByteMatchSetRequest$ = [3, n0, _GBMSR,
|
|
1162
|
-
0,
|
|
1163
|
-
[_BMSI],
|
|
1164
|
-
[0], 1
|
|
1165
|
-
];
|
|
1166
|
-
var GetByteMatchSetResponse$ = [3, n0, _GBMSRe,
|
|
1167
|
-
0,
|
|
1168
|
-
[_BMS],
|
|
1169
|
-
[() => ByteMatchSet$]
|
|
1170
|
-
];
|
|
1171
|
-
var GetChangeTokenRequest$ = [3, n0, _GCTR,
|
|
1172
|
-
0,
|
|
1173
|
-
[],
|
|
1174
|
-
[]
|
|
1175
|
-
];
|
|
1176
|
-
var GetChangeTokenResponse$ = [3, n0, _GCTRe,
|
|
1177
|
-
0,
|
|
1178
|
-
[_CT],
|
|
1179
|
-
[0]
|
|
1180
|
-
];
|
|
1181
|
-
var GetChangeTokenStatusRequest$ = [3, n0, _GCTSR,
|
|
1182
|
-
0,
|
|
1183
|
-
[_CT],
|
|
1184
|
-
[0], 1
|
|
1185
|
-
];
|
|
1186
|
-
var GetChangeTokenStatusResponse$ = [3, n0, _GCTSRe,
|
|
1187
|
-
0,
|
|
1188
|
-
[_CTS],
|
|
1189
|
-
[0]
|
|
1190
|
-
];
|
|
1191
|
-
var GetGeoMatchSetRequest$ = [3, n0, _GGMSR,
|
|
1192
|
-
0,
|
|
1193
|
-
[_GMSI],
|
|
1194
|
-
[0], 1
|
|
1195
|
-
];
|
|
1196
|
-
var GetGeoMatchSetResponse$ = [3, n0, _GGMSRe,
|
|
1197
|
-
0,
|
|
1198
|
-
[_GMS],
|
|
1199
|
-
[() => GeoMatchSet$]
|
|
1200
|
-
];
|
|
1201
|
-
var GetIPSetRequest$ = [3, n0, _GIPSR,
|
|
1202
|
-
0,
|
|
1203
|
-
[_IPSI],
|
|
1204
|
-
[0], 1
|
|
1205
|
-
];
|
|
1206
|
-
var GetIPSetResponse$ = [3, n0, _GIPSRe,
|
|
1207
|
-
0,
|
|
1208
|
-
[_IPS],
|
|
1209
|
-
[() => IPSet$]
|
|
1210
|
-
];
|
|
1211
|
-
var GetLoggingConfigurationRequest$ = [3, n0, _GLCR,
|
|
1212
|
-
0,
|
|
1213
|
-
[_RA],
|
|
1214
|
-
[0], 1
|
|
1215
|
-
];
|
|
1216
|
-
var GetLoggingConfigurationResponse$ = [3, n0, _GLCRe,
|
|
1217
|
-
0,
|
|
1218
|
-
[_LC],
|
|
1219
|
-
[() => LoggingConfiguration$]
|
|
1220
|
-
];
|
|
1221
|
-
var GetPermissionPolicyRequest$ = [3, n0, _GPPR,
|
|
1222
|
-
0,
|
|
1223
|
-
[_RA],
|
|
1224
|
-
[0], 1
|
|
1225
|
-
];
|
|
1226
|
-
var GetPermissionPolicyResponse$ = [3, n0, _GPPRe,
|
|
1227
|
-
0,
|
|
1228
|
-
[_Po],
|
|
1229
|
-
[0]
|
|
1230
|
-
];
|
|
1231
|
-
var GetRateBasedRuleManagedKeysRequest$ = [3, n0, _GRBRMKR,
|
|
1232
|
-
0,
|
|
1233
|
-
[_RI, _NM],
|
|
1234
|
-
[0, 0], 1
|
|
1235
|
-
];
|
|
1236
|
-
var GetRateBasedRuleManagedKeysResponse$ = [3, n0, _GRBRMKRe,
|
|
1237
|
-
0,
|
|
1238
|
-
[_MK, _NM],
|
|
1239
|
-
[64 | 0, 0]
|
|
1240
|
-
];
|
|
1241
|
-
var GetRateBasedRuleRequest$ = [3, n0, _GRBRR,
|
|
1242
|
-
0,
|
|
1243
|
-
[_RI],
|
|
1244
|
-
[0], 1
|
|
1245
|
-
];
|
|
1246
|
-
var GetRateBasedRuleResponse$ = [3, n0, _GRBRRe,
|
|
1247
|
-
0,
|
|
1248
|
-
[_R],
|
|
1249
|
-
[() => RateBasedRule$]
|
|
1250
|
-
];
|
|
1251
|
-
var GetRegexMatchSetRequest$ = [3, n0, _GRMSR,
|
|
1252
|
-
0,
|
|
1253
|
-
[_RMSI],
|
|
1254
|
-
[0], 1
|
|
1255
|
-
];
|
|
1256
|
-
var GetRegexMatchSetResponse$ = [3, n0, _GRMSRe,
|
|
1257
|
-
0,
|
|
1258
|
-
[_RMS],
|
|
1259
|
-
[() => RegexMatchSet$]
|
|
1260
|
-
];
|
|
1261
|
-
var GetRegexPatternSetRequest$ = [3, n0, _GRPSR,
|
|
1262
|
-
0,
|
|
1263
|
-
[_RPSI],
|
|
1264
|
-
[0], 1
|
|
1265
|
-
];
|
|
1266
|
-
var GetRegexPatternSetResponse$ = [3, n0, _GRPSRe,
|
|
1267
|
-
0,
|
|
1268
|
-
[_RPS],
|
|
1269
|
-
[() => RegexPatternSet$]
|
|
1270
|
-
];
|
|
1271
|
-
var GetRuleGroupRequest$ = [3, n0, _GRGR,
|
|
1272
|
-
0,
|
|
1273
|
-
[_RGI],
|
|
1274
|
-
[0], 1
|
|
1275
|
-
];
|
|
1276
|
-
var GetRuleGroupResponse$ = [3, n0, _GRGRe,
|
|
1277
|
-
0,
|
|
1278
|
-
[_RG],
|
|
1279
|
-
[() => RuleGroup$]
|
|
1280
|
-
];
|
|
1281
|
-
var GetRuleRequest$ = [3, n0, _GRR,
|
|
1282
|
-
0,
|
|
1283
|
-
[_RI],
|
|
1284
|
-
[0], 1
|
|
1285
|
-
];
|
|
1286
|
-
var GetRuleResponse$ = [3, n0, _GRRe,
|
|
1287
|
-
0,
|
|
1288
|
-
[_R],
|
|
1289
|
-
[() => Rule$]
|
|
1290
|
-
];
|
|
1291
|
-
var GetSampledRequestsRequest$ = [3, n0, _GSRR,
|
|
1292
|
-
0,
|
|
1293
|
-
[_WAI, _RI, _TW, _MI],
|
|
1294
|
-
[0, 0, () => TimeWindow$, 1], 4
|
|
1295
|
-
];
|
|
1296
|
-
var GetSampledRequestsResponse$ = [3, n0, _GSRRe,
|
|
1297
|
-
0,
|
|
1298
|
-
[_SR, _PS, _TW],
|
|
1299
|
-
[() => SampledHTTPRequests, 1, () => TimeWindow$]
|
|
1300
|
-
];
|
|
1301
|
-
var GetSizeConstraintSetRequest$ = [3, n0, _GSCSR,
|
|
1302
|
-
0,
|
|
1303
|
-
[_SCSI],
|
|
1304
|
-
[0], 1
|
|
1305
|
-
];
|
|
1306
|
-
var GetSizeConstraintSetResponse$ = [3, n0, _GSCSRe,
|
|
1307
|
-
0,
|
|
1308
|
-
[_SCS],
|
|
1309
|
-
[() => SizeConstraintSet$]
|
|
1310
|
-
];
|
|
1311
|
-
var GetSqlInjectionMatchSetRequest$ = [3, n0, _GSIMSR,
|
|
1312
|
-
0,
|
|
1313
|
-
[_SIMSI],
|
|
1314
|
-
[0], 1
|
|
1315
|
-
];
|
|
1316
|
-
var GetSqlInjectionMatchSetResponse$ = [3, n0, _GSIMSRe,
|
|
1317
|
-
0,
|
|
1318
|
-
[_SIMS],
|
|
1319
|
-
[() => SqlInjectionMatchSet$]
|
|
1320
|
-
];
|
|
1321
|
-
var GetWebACLForResourceRequest$ = [3, n0, _GWACLFRR,
|
|
1322
|
-
0,
|
|
1323
|
-
[_RA],
|
|
1324
|
-
[0], 1
|
|
1325
|
-
];
|
|
1326
|
-
var GetWebACLForResourceResponse$ = [3, n0, _GWACLFRRe,
|
|
1327
|
-
0,
|
|
1328
|
-
[_WACLS],
|
|
1329
|
-
[() => WebACLSummary$]
|
|
1330
|
-
];
|
|
1331
|
-
var GetWebACLRequest$ = [3, n0, _GWACLR,
|
|
1332
|
-
0,
|
|
1333
|
-
[_WACLI],
|
|
1334
|
-
[0], 1
|
|
1335
|
-
];
|
|
1336
|
-
var GetWebACLResponse$ = [3, n0, _GWACLRe,
|
|
1337
|
-
0,
|
|
1338
|
-
[_WACL],
|
|
1339
|
-
[() => WebACL$]
|
|
1340
|
-
];
|
|
1341
|
-
var GetXssMatchSetRequest$ = [3, n0, _GXMSR,
|
|
1342
|
-
0,
|
|
1343
|
-
[_XMSI],
|
|
1344
|
-
[0], 1
|
|
1345
|
-
];
|
|
1346
|
-
var GetXssMatchSetResponse$ = [3, n0, _GXMSRe,
|
|
1347
|
-
0,
|
|
1348
|
-
[_XMS],
|
|
1349
|
-
[() => XssMatchSet$]
|
|
1350
|
-
];
|
|
1351
|
-
var HTTPHeader$ = [3, n0, _HTTPH,
|
|
1352
|
-
0,
|
|
1353
|
-
[_N, _V],
|
|
1354
|
-
[0, 0]
|
|
1355
|
-
];
|
|
1356
|
-
var HTTPRequest$ = [3, n0, _HTTPR,
|
|
1357
|
-
0,
|
|
1358
|
-
[_CIP, _C, _URI, _M, _HTTPV, _H],
|
|
1359
|
-
[0, 0, 0, 0, 0, () => HTTPHeaders]
|
|
1360
|
-
];
|
|
1361
|
-
var IPSet$ = [3, n0, _IPS,
|
|
1362
|
-
0,
|
|
1363
|
-
[_IPSI, _IPSD, _N],
|
|
1364
|
-
[0, () => IPSetDescriptors, 0], 2
|
|
1365
|
-
];
|
|
1366
|
-
var IPSetDescriptor$ = [3, n0, _IPSDe,
|
|
1367
|
-
0,
|
|
1368
|
-
[_T, _V],
|
|
1369
|
-
[0, 0], 2
|
|
1370
|
-
];
|
|
1371
|
-
var IPSetSummary$ = [3, n0, _IPSS,
|
|
1372
|
-
0,
|
|
1373
|
-
[_IPSI, _N],
|
|
1374
|
-
[0, 0], 2
|
|
1375
|
-
];
|
|
1376
|
-
var IPSetUpdate$ = [3, n0, _IPSU,
|
|
1377
|
-
0,
|
|
1378
|
-
[_A, _IPSDe],
|
|
1379
|
-
[0, () => IPSetDescriptor$], 2
|
|
1380
|
-
];
|
|
1381
|
-
var ListActivatedRulesInRuleGroupRequest$ = [3, n0, _LARIRGR,
|
|
1382
|
-
0,
|
|
1383
|
-
[_RGI, _NM, _L],
|
|
1384
|
-
[0, 0, 1]
|
|
1385
|
-
];
|
|
1386
|
-
var ListActivatedRulesInRuleGroupResponse$ = [3, n0, _LARIRGRi,
|
|
1387
|
-
0,
|
|
1388
|
-
[_NM, _ARc],
|
|
1389
|
-
[0, () => ActivatedRules]
|
|
1390
|
-
];
|
|
1391
|
-
var ListByteMatchSetsRequest$ = [3, n0, _LBMSR,
|
|
1392
|
-
0,
|
|
1393
|
-
[_NM, _L],
|
|
1394
|
-
[0, 1]
|
|
1395
|
-
];
|
|
1396
|
-
var ListByteMatchSetsResponse$ = [3, n0, _LBMSRi,
|
|
1397
|
-
0,
|
|
1398
|
-
[_NM, _BMSy],
|
|
1399
|
-
[0, () => ByteMatchSetSummaries]
|
|
1400
|
-
];
|
|
1401
|
-
var ListGeoMatchSetsRequest$ = [3, n0, _LGMSR,
|
|
1402
|
-
0,
|
|
1403
|
-
[_NM, _L],
|
|
1404
|
-
[0, 1]
|
|
1405
|
-
];
|
|
1406
|
-
var ListGeoMatchSetsResponse$ = [3, n0, _LGMSRi,
|
|
1407
|
-
0,
|
|
1408
|
-
[_NM, _GMSe],
|
|
1409
|
-
[0, () => GeoMatchSetSummaries]
|
|
1410
|
-
];
|
|
1411
|
-
var ListIPSetsRequest$ = [3, n0, _LIPSR,
|
|
1412
|
-
0,
|
|
1413
|
-
[_NM, _L],
|
|
1414
|
-
[0, 1]
|
|
1415
|
-
];
|
|
1416
|
-
var ListIPSetsResponse$ = [3, n0, _LIPSRi,
|
|
1417
|
-
0,
|
|
1418
|
-
[_NM, _IPSe],
|
|
1419
|
-
[0, () => IPSetSummaries]
|
|
1420
|
-
];
|
|
1421
|
-
var ListLoggingConfigurationsRequest$ = [3, n0, _LLCR,
|
|
1422
|
-
0,
|
|
1423
|
-
[_NM, _L],
|
|
1424
|
-
[0, 1]
|
|
1425
|
-
];
|
|
1426
|
-
var ListLoggingConfigurationsResponse$ = [3, n0, _LLCRi,
|
|
1427
|
-
0,
|
|
1428
|
-
[_LCo, _NM],
|
|
1429
|
-
[() => LoggingConfigurations, 0]
|
|
1430
|
-
];
|
|
1431
|
-
var ListRateBasedRulesRequest$ = [3, n0, _LRBRR,
|
|
1432
|
-
0,
|
|
1433
|
-
[_NM, _L],
|
|
1434
|
-
[0, 1]
|
|
1435
|
-
];
|
|
1436
|
-
var ListRateBasedRulesResponse$ = [3, n0, _LRBRRi,
|
|
1437
|
-
0,
|
|
1438
|
-
[_NM, _Ru],
|
|
1439
|
-
[0, () => RuleSummaries]
|
|
1440
|
-
];
|
|
1441
|
-
var ListRegexMatchSetsRequest$ = [3, n0, _LRMSR,
|
|
1442
|
-
0,
|
|
1443
|
-
[_NM, _L],
|
|
1444
|
-
[0, 1]
|
|
1445
|
-
];
|
|
1446
|
-
var ListRegexMatchSetsResponse$ = [3, n0, _LRMSRi,
|
|
1447
|
-
0,
|
|
1448
|
-
[_NM, _RMSe],
|
|
1449
|
-
[0, () => RegexMatchSetSummaries]
|
|
1450
|
-
];
|
|
1451
|
-
var ListRegexPatternSetsRequest$ = [3, n0, _LRPSR,
|
|
1452
|
-
0,
|
|
1453
|
-
[_NM, _L],
|
|
1454
|
-
[0, 1]
|
|
1455
|
-
];
|
|
1456
|
-
var ListRegexPatternSetsResponse$ = [3, n0, _LRPSRi,
|
|
1457
|
-
0,
|
|
1458
|
-
[_NM, _RPSe],
|
|
1459
|
-
[0, () => RegexPatternSetSummaries]
|
|
1460
|
-
];
|
|
1461
|
-
var ListResourcesForWebACLRequest$ = [3, n0, _LRFWACLR,
|
|
1462
|
-
0,
|
|
1463
|
-
[_WACLI, _RT],
|
|
1464
|
-
[0, 0], 1
|
|
1465
|
-
];
|
|
1466
|
-
var ListResourcesForWebACLResponse$ = [3, n0, _LRFWACLRi,
|
|
1467
|
-
0,
|
|
1468
|
-
[_RAe],
|
|
1469
|
-
[64 | 0]
|
|
1470
|
-
];
|
|
1471
|
-
var ListRuleGroupsRequest$ = [3, n0, _LRGR,
|
|
1472
|
-
0,
|
|
1473
|
-
[_NM, _L],
|
|
1474
|
-
[0, 1]
|
|
1475
|
-
];
|
|
1476
|
-
var ListRuleGroupsResponse$ = [3, n0, _LRGRi,
|
|
1477
|
-
0,
|
|
1478
|
-
[_NM, _RGu],
|
|
1479
|
-
[0, () => RuleGroupSummaries]
|
|
1480
|
-
];
|
|
1481
|
-
var ListRulesRequest$ = [3, n0, _LRR,
|
|
1482
|
-
0,
|
|
1483
|
-
[_NM, _L],
|
|
1484
|
-
[0, 1]
|
|
1485
|
-
];
|
|
1486
|
-
var ListRulesResponse$ = [3, n0, _LRRi,
|
|
1487
|
-
0,
|
|
1488
|
-
[_NM, _Ru],
|
|
1489
|
-
[0, () => RuleSummaries]
|
|
1490
|
-
];
|
|
1491
|
-
var ListSizeConstraintSetsRequest$ = [3, n0, _LSCSR,
|
|
1492
|
-
0,
|
|
1493
|
-
[_NM, _L],
|
|
1494
|
-
[0, 1]
|
|
1495
|
-
];
|
|
1496
|
-
var ListSizeConstraintSetsResponse$ = [3, n0, _LSCSRi,
|
|
1497
|
-
0,
|
|
1498
|
-
[_NM, _SCSi],
|
|
1499
|
-
[0, () => SizeConstraintSetSummaries]
|
|
1500
|
-
];
|
|
1501
|
-
var ListSqlInjectionMatchSetsRequest$ = [3, n0, _LSIMSR,
|
|
1502
|
-
0,
|
|
1503
|
-
[_NM, _L],
|
|
1504
|
-
[0, 1]
|
|
1505
|
-
];
|
|
1506
|
-
var ListSqlInjectionMatchSetsResponse$ = [3, n0, _LSIMSRi,
|
|
1507
|
-
0,
|
|
1508
|
-
[_NM, _SIMSq],
|
|
1509
|
-
[0, () => SqlInjectionMatchSetSummaries]
|
|
1510
|
-
];
|
|
1511
|
-
var ListSubscribedRuleGroupsRequest$ = [3, n0, _LSRGR,
|
|
1512
|
-
0,
|
|
1513
|
-
[_NM, _L],
|
|
1514
|
-
[0, 1]
|
|
1515
|
-
];
|
|
1516
|
-
var ListSubscribedRuleGroupsResponse$ = [3, n0, _LSRGRi,
|
|
1517
|
-
0,
|
|
1518
|
-
[_NM, _RGu],
|
|
1519
|
-
[0, () => SubscribedRuleGroupSummaries]
|
|
1520
|
-
];
|
|
1521
|
-
var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
|
|
1522
|
-
0,
|
|
1523
|
-
[_RARN, _NM, _L],
|
|
1524
|
-
[0, 0, 1], 1
|
|
1525
|
-
];
|
|
1526
|
-
var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
|
|
1527
|
-
0,
|
|
1528
|
-
[_NM, _TIFR],
|
|
1529
|
-
[0, () => TagInfoForResource$]
|
|
1530
|
-
];
|
|
1531
|
-
var ListWebACLsRequest$ = [3, n0, _LWACLR,
|
|
1532
|
-
0,
|
|
1533
|
-
[_NM, _L],
|
|
1534
|
-
[0, 1]
|
|
1535
|
-
];
|
|
1536
|
-
var ListWebACLsResponse$ = [3, n0, _LWACLRi,
|
|
1537
|
-
0,
|
|
1538
|
-
[_NM, _WACLe],
|
|
1539
|
-
[0, () => WebACLSummaries]
|
|
1540
|
-
];
|
|
1541
|
-
var ListXssMatchSetsRequest$ = [3, n0, _LXMSR,
|
|
1542
|
-
0,
|
|
1543
|
-
[_NM, _L],
|
|
1544
|
-
[0, 1]
|
|
1545
|
-
];
|
|
1546
|
-
var ListXssMatchSetsResponse$ = [3, n0, _LXMSRi,
|
|
1547
|
-
0,
|
|
1548
|
-
[_NM, _XMSs],
|
|
1549
|
-
[0, () => XssMatchSetSummaries]
|
|
1550
|
-
];
|
|
1551
|
-
var LoggingConfiguration$ = [3, n0, _LC,
|
|
1552
|
-
0,
|
|
1553
|
-
[_RA, _LDC, _RF],
|
|
1554
|
-
[0, 64 | 0, () => RedactedFields], 2
|
|
1555
|
-
];
|
|
1556
|
-
var Predicate$ = [3, n0, _Pr,
|
|
1557
|
-
0,
|
|
1558
|
-
[_Ne, _T, _DI],
|
|
1559
|
-
[2, 0, 0], 3
|
|
1560
|
-
];
|
|
1561
|
-
var PutLoggingConfigurationRequest$ = [3, n0, _PLCR,
|
|
1562
|
-
0,
|
|
1563
|
-
[_LC],
|
|
1564
|
-
[() => LoggingConfiguration$], 1
|
|
1565
|
-
];
|
|
1566
|
-
var PutLoggingConfigurationResponse$ = [3, n0, _PLCRu,
|
|
1567
|
-
0,
|
|
1568
|
-
[_LC],
|
|
1569
|
-
[() => LoggingConfiguration$]
|
|
1570
|
-
];
|
|
1571
|
-
var PutPermissionPolicyRequest$ = [3, n0, _PPPR,
|
|
1572
|
-
0,
|
|
1573
|
-
[_RA, _Po],
|
|
1574
|
-
[0, 0], 2
|
|
1575
|
-
];
|
|
1576
|
-
var PutPermissionPolicyResponse$ = [3, n0, _PPPRu,
|
|
1577
|
-
0,
|
|
1578
|
-
[],
|
|
1579
|
-
[]
|
|
1580
|
-
];
|
|
1581
|
-
var RateBasedRule$ = [3, n0, _RBR,
|
|
1582
|
-
0,
|
|
1583
|
-
[_RI, _MP, _RK, _RL, _N, _MN],
|
|
1584
|
-
[0, () => Predicates, 0, 1, 0, 0], 4
|
|
1585
|
-
];
|
|
1586
|
-
var RegexMatchSet$ = [3, n0, _RMS,
|
|
1587
|
-
0,
|
|
1588
|
-
[_RMSI, _N, _RMT],
|
|
1589
|
-
[0, 0, () => RegexMatchTuples]
|
|
1590
|
-
];
|
|
1591
|
-
var RegexMatchSetSummary$ = [3, n0, _RMSS,
|
|
1592
|
-
0,
|
|
1593
|
-
[_RMSI, _N],
|
|
1594
|
-
[0, 0], 2
|
|
1595
|
-
];
|
|
1596
|
-
var RegexMatchSetUpdate$ = [3, n0, _RMSU,
|
|
1597
|
-
0,
|
|
1598
|
-
[_A, _RMTe],
|
|
1599
|
-
[0, () => RegexMatchTuple$], 2
|
|
1600
|
-
];
|
|
1601
|
-
var RegexMatchTuple$ = [3, n0, _RMTe,
|
|
1602
|
-
0,
|
|
1603
|
-
[_FTM, _TT, _RPSI],
|
|
1604
|
-
[() => FieldToMatch$, 0, 0], 3
|
|
1605
|
-
];
|
|
1606
|
-
var RegexPatternSet$ = [3, n0, _RPS,
|
|
1607
|
-
0,
|
|
1608
|
-
[_RPSI, _RPSeg, _N],
|
|
1609
|
-
[0, 64 | 0, 0], 2
|
|
1610
|
-
];
|
|
1611
|
-
var RegexPatternSetSummary$ = [3, n0, _RPSS,
|
|
1612
|
-
0,
|
|
1613
|
-
[_RPSI, _N],
|
|
1614
|
-
[0, 0], 2
|
|
1615
|
-
];
|
|
1616
|
-
var RegexPatternSetUpdate$ = [3, n0, _RPSU,
|
|
1617
|
-
0,
|
|
1618
|
-
[_A, _RPSege],
|
|
1619
|
-
[0, 0], 2
|
|
1620
|
-
];
|
|
1621
|
-
var Rule$ = [3, n0, _R,
|
|
1622
|
-
0,
|
|
1623
|
-
[_RI, _Pre, _N, _MN],
|
|
1624
|
-
[0, () => Predicates, 0, 0], 2
|
|
1625
|
-
];
|
|
1626
|
-
var RuleGroup$ = [3, n0, _RG,
|
|
1627
|
-
0,
|
|
1628
|
-
[_RGI, _N, _MN],
|
|
1629
|
-
[0, 0, 0], 1
|
|
1630
|
-
];
|
|
1631
|
-
var RuleGroupSummary$ = [3, n0, _RGS,
|
|
1632
|
-
0,
|
|
1633
|
-
[_RGI, _N],
|
|
1634
|
-
[0, 0], 2
|
|
1635
|
-
];
|
|
1636
|
-
var RuleGroupUpdate$ = [3, n0, _RGU,
|
|
1637
|
-
0,
|
|
1638
|
-
[_A, _AR],
|
|
1639
|
-
[0, () => ActivatedRule$], 2
|
|
1640
|
-
];
|
|
1641
|
-
var RuleSummary$ = [3, n0, _RS,
|
|
1642
|
-
0,
|
|
1643
|
-
[_RI, _N],
|
|
1644
|
-
[0, 0], 2
|
|
1645
|
-
];
|
|
1646
|
-
var RuleUpdate$ = [3, n0, _RU,
|
|
1647
|
-
0,
|
|
1648
|
-
[_A, _Pr],
|
|
1649
|
-
[0, () => Predicate$], 2
|
|
1650
|
-
];
|
|
1651
|
-
var SampledHTTPRequest$ = [3, n0, _SHTTPR,
|
|
1652
|
-
0,
|
|
1653
|
-
[_Re, _W, _Ti, _A, _RWRG],
|
|
1654
|
-
[() => HTTPRequest$, 1, 4, 0, 0], 2
|
|
1655
|
-
];
|
|
1656
|
-
var SizeConstraint$ = [3, n0, _SC,
|
|
1657
|
-
0,
|
|
1658
|
-
[_FTM, _TT, _CO, _S],
|
|
1659
|
-
[() => FieldToMatch$, 0, 0, 1], 4
|
|
1660
|
-
];
|
|
1661
|
-
var SizeConstraintSet$ = [3, n0, _SCS,
|
|
1662
|
-
0,
|
|
1663
|
-
[_SCSI, _SCi, _N],
|
|
1664
|
-
[0, () => SizeConstraints, 0], 2
|
|
1665
|
-
];
|
|
1666
|
-
var SizeConstraintSetSummary$ = [3, n0, _SCSS,
|
|
1667
|
-
0,
|
|
1668
|
-
[_SCSI, _N],
|
|
1669
|
-
[0, 0], 2
|
|
1670
|
-
];
|
|
1671
|
-
var SizeConstraintSetUpdate$ = [3, n0, _SCSU,
|
|
1672
|
-
0,
|
|
1673
|
-
[_A, _SC],
|
|
1674
|
-
[0, () => SizeConstraint$], 2
|
|
1675
|
-
];
|
|
1676
|
-
var SqlInjectionMatchSet$ = [3, n0, _SIMS,
|
|
1677
|
-
0,
|
|
1678
|
-
[_SIMSI, _SIMT, _N],
|
|
1679
|
-
[0, () => SqlInjectionMatchTuples, 0], 2
|
|
1680
|
-
];
|
|
1681
|
-
var SqlInjectionMatchSetSummary$ = [3, n0, _SIMSS,
|
|
1682
|
-
0,
|
|
1683
|
-
[_SIMSI, _N],
|
|
1684
|
-
[0, 0], 2
|
|
1685
|
-
];
|
|
1686
|
-
var SqlInjectionMatchSetUpdate$ = [3, n0, _SIMSU,
|
|
1687
|
-
0,
|
|
1688
|
-
[_A, _SIMTq],
|
|
1689
|
-
[0, () => SqlInjectionMatchTuple$], 2
|
|
1690
|
-
];
|
|
1691
|
-
var SqlInjectionMatchTuple$ = [3, n0, _SIMTq,
|
|
1692
|
-
0,
|
|
1693
|
-
[_FTM, _TT],
|
|
1694
|
-
[() => FieldToMatch$, 0], 2
|
|
1695
|
-
];
|
|
1696
|
-
var SubscribedRuleGroupSummary$ = [3, n0, _SRGS,
|
|
1697
|
-
0,
|
|
1698
|
-
[_RGI, _N, _MN],
|
|
1699
|
-
[0, 0, 0], 3
|
|
1700
|
-
];
|
|
1701
|
-
var Tag$ = [3, n0, _Tag,
|
|
1702
|
-
0,
|
|
1703
|
-
[_K, _V],
|
|
1704
|
-
[0, 0], 2
|
|
1705
|
-
];
|
|
1706
|
-
var TagInfoForResource$ = [3, n0, _TIFR,
|
|
1707
|
-
0,
|
|
1708
|
-
[_RARN, _TL],
|
|
1709
|
-
[0, () => TagList]
|
|
1710
|
-
];
|
|
1711
|
-
var TagResourceRequest$ = [3, n0, _TRR,
|
|
1712
|
-
0,
|
|
1713
|
-
[_RARN, _Ta],
|
|
1714
|
-
[0, () => TagList], 2
|
|
1715
|
-
];
|
|
1716
|
-
var TagResourceResponse$ = [3, n0, _TRRa,
|
|
1717
|
-
0,
|
|
1718
|
-
[],
|
|
1719
|
-
[]
|
|
1720
|
-
];
|
|
1721
|
-
var TimeWindow$ = [3, n0, _TW,
|
|
1722
|
-
0,
|
|
1723
|
-
[_ST, _ET],
|
|
1724
|
-
[4, 4], 2
|
|
1725
|
-
];
|
|
1726
|
-
var UntagResourceRequest$ = [3, n0, _URR,
|
|
1727
|
-
0,
|
|
1728
|
-
[_RARN, _TK],
|
|
1729
|
-
[0, 64 | 0], 2
|
|
1730
|
-
];
|
|
1731
|
-
var UntagResourceResponse$ = [3, n0, _URRn,
|
|
1732
|
-
0,
|
|
1733
|
-
[],
|
|
1734
|
-
[]
|
|
1735
|
-
];
|
|
1736
|
-
var UpdateByteMatchSetRequest$ = [3, n0, _UBMSR,
|
|
1737
|
-
0,
|
|
1738
|
-
[_BMSI, _CT, _U],
|
|
1739
|
-
[0, 0, () => ByteMatchSetUpdates], 3
|
|
1740
|
-
];
|
|
1741
|
-
var UpdateByteMatchSetResponse$ = [3, n0, _UBMSRp,
|
|
1742
|
-
0,
|
|
1743
|
-
[_CT],
|
|
1744
|
-
[0]
|
|
1745
|
-
];
|
|
1746
|
-
var UpdateGeoMatchSetRequest$ = [3, n0, _UGMSR,
|
|
1747
|
-
0,
|
|
1748
|
-
[_GMSI, _CT, _U],
|
|
1749
|
-
[0, 0, () => GeoMatchSetUpdates], 3
|
|
1750
|
-
];
|
|
1751
|
-
var UpdateGeoMatchSetResponse$ = [3, n0, _UGMSRp,
|
|
1752
|
-
0,
|
|
1753
|
-
[_CT],
|
|
1754
|
-
[0]
|
|
1755
|
-
];
|
|
1756
|
-
var UpdateIPSetRequest$ = [3, n0, _UIPSR,
|
|
1757
|
-
0,
|
|
1758
|
-
[_IPSI, _CT, _U],
|
|
1759
|
-
[0, 0, () => IPSetUpdates], 3
|
|
1760
|
-
];
|
|
1761
|
-
var UpdateIPSetResponse$ = [3, n0, _UIPSRp,
|
|
1762
|
-
0,
|
|
1763
|
-
[_CT],
|
|
1764
|
-
[0]
|
|
1765
|
-
];
|
|
1766
|
-
var UpdateRateBasedRuleRequest$ = [3, n0, _URBRR,
|
|
1767
|
-
0,
|
|
1768
|
-
[_RI, _CT, _U, _RL],
|
|
1769
|
-
[0, 0, () => RuleUpdates, 1], 4
|
|
1770
|
-
];
|
|
1771
|
-
var UpdateRateBasedRuleResponse$ = [3, n0, _URBRRp,
|
|
1772
|
-
0,
|
|
1773
|
-
[_CT],
|
|
1774
|
-
[0]
|
|
1775
|
-
];
|
|
1776
|
-
var UpdateRegexMatchSetRequest$ = [3, n0, _URMSR,
|
|
1777
|
-
0,
|
|
1778
|
-
[_RMSI, _U, _CT],
|
|
1779
|
-
[0, () => RegexMatchSetUpdates, 0], 3
|
|
1780
|
-
];
|
|
1781
|
-
var UpdateRegexMatchSetResponse$ = [3, n0, _URMSRp,
|
|
1782
|
-
0,
|
|
1783
|
-
[_CT],
|
|
1784
|
-
[0]
|
|
1785
|
-
];
|
|
1786
|
-
var UpdateRegexPatternSetRequest$ = [3, n0, _URPSR,
|
|
1787
|
-
0,
|
|
1788
|
-
[_RPSI, _U, _CT],
|
|
1789
|
-
[0, () => RegexPatternSetUpdates, 0], 3
|
|
1790
|
-
];
|
|
1791
|
-
var UpdateRegexPatternSetResponse$ = [3, n0, _URPSRp,
|
|
1792
|
-
0,
|
|
1793
|
-
[_CT],
|
|
1794
|
-
[0]
|
|
1795
|
-
];
|
|
1796
|
-
var UpdateRuleGroupRequest$ = [3, n0, _URGR,
|
|
1797
|
-
0,
|
|
1798
|
-
[_RGI, _U, _CT],
|
|
1799
|
-
[0, () => RuleGroupUpdates, 0], 3
|
|
1800
|
-
];
|
|
1801
|
-
var UpdateRuleGroupResponse$ = [3, n0, _URGRp,
|
|
1802
|
-
0,
|
|
1803
|
-
[_CT],
|
|
1804
|
-
[0]
|
|
1805
|
-
];
|
|
1806
|
-
var UpdateRuleRequest$ = [3, n0, _URRp,
|
|
1807
|
-
0,
|
|
1808
|
-
[_RI, _CT, _U],
|
|
1809
|
-
[0, 0, () => RuleUpdates], 3
|
|
1810
|
-
];
|
|
1811
|
-
var UpdateRuleResponse$ = [3, n0, _URRpd,
|
|
1812
|
-
0,
|
|
1813
|
-
[_CT],
|
|
1814
|
-
[0]
|
|
1815
|
-
];
|
|
1816
|
-
var UpdateSizeConstraintSetRequest$ = [3, n0, _USCSR,
|
|
1817
|
-
0,
|
|
1818
|
-
[_SCSI, _CT, _U],
|
|
1819
|
-
[0, 0, () => SizeConstraintSetUpdates], 3
|
|
1820
|
-
];
|
|
1821
|
-
var UpdateSizeConstraintSetResponse$ = [3, n0, _USCSRp,
|
|
1822
|
-
0,
|
|
1823
|
-
[_CT],
|
|
1824
|
-
[0]
|
|
1825
|
-
];
|
|
1826
|
-
var UpdateSqlInjectionMatchSetRequest$ = [3, n0, _USIMSR,
|
|
1827
|
-
0,
|
|
1828
|
-
[_SIMSI, _CT, _U],
|
|
1829
|
-
[0, 0, () => SqlInjectionMatchSetUpdates], 3
|
|
1830
|
-
];
|
|
1831
|
-
var UpdateSqlInjectionMatchSetResponse$ = [3, n0, _USIMSRp,
|
|
1832
|
-
0,
|
|
1833
|
-
[_CT],
|
|
1834
|
-
[0]
|
|
1835
|
-
];
|
|
1836
|
-
var UpdateWebACLRequest$ = [3, n0, _UWACLR,
|
|
1837
|
-
0,
|
|
1838
|
-
[_WACLI, _CT, _U, _DA],
|
|
1839
|
-
[0, 0, () => WebACLUpdates, () => WafAction$], 2
|
|
1840
|
-
];
|
|
1841
|
-
var UpdateWebACLResponse$ = [3, n0, _UWACLRp,
|
|
1842
|
-
0,
|
|
1843
|
-
[_CT],
|
|
1844
|
-
[0]
|
|
1845
|
-
];
|
|
1846
|
-
var UpdateXssMatchSetRequest$ = [3, n0, _UXMSR,
|
|
1847
|
-
0,
|
|
1848
|
-
[_XMSI, _CT, _U],
|
|
1849
|
-
[0, 0, () => XssMatchSetUpdates], 3
|
|
1850
|
-
];
|
|
1851
|
-
var UpdateXssMatchSetResponse$ = [3, n0, _UXMSRp,
|
|
1852
|
-
0,
|
|
1853
|
-
[_CT],
|
|
1854
|
-
[0]
|
|
1855
|
-
];
|
|
1856
|
-
var WafAction$ = [3, n0, _WA,
|
|
1857
|
-
0,
|
|
1858
|
-
[_T],
|
|
1859
|
-
[0], 1
|
|
1860
|
-
];
|
|
1861
|
-
var WAFBadRequestException$ = [-3, n0, _WAFBRE,
|
|
1862
|
-
{ [_e]: _c },
|
|
1863
|
-
[_m],
|
|
1864
|
-
[0]
|
|
1865
|
-
];
|
|
1866
|
-
schema.TypeRegistry.for(n0).registerError(WAFBadRequestException$, WAFBadRequestException);
|
|
1867
|
-
var WAFDisallowedNameException$ = [-3, n0, _WAFDNE,
|
|
1868
|
-
{ [_e]: _c },
|
|
1869
|
-
[_m],
|
|
1870
|
-
[0]
|
|
1871
|
-
];
|
|
1872
|
-
schema.TypeRegistry.for(n0).registerError(WAFDisallowedNameException$, WAFDisallowedNameException);
|
|
1873
|
-
var WAFEntityMigrationException$ = [-3, n0, _WAFEME,
|
|
1874
|
-
{ [_e]: _c },
|
|
1875
|
-
[_m, _MET, _MER],
|
|
1876
|
-
[0, 0, 0]
|
|
1877
|
-
];
|
|
1878
|
-
schema.TypeRegistry.for(n0).registerError(WAFEntityMigrationException$, WAFEntityMigrationException);
|
|
1879
|
-
var WAFInternalErrorException$ = [-3, n0, _WAFIEE,
|
|
1880
|
-
{ [_e]: _s },
|
|
1881
|
-
[_m],
|
|
1882
|
-
[0]
|
|
1883
|
-
];
|
|
1884
|
-
schema.TypeRegistry.for(n0).registerError(WAFInternalErrorException$, WAFInternalErrorException);
|
|
1885
|
-
var WAFInvalidAccountException$ = [-3, n0, _WAFIAE,
|
|
1886
|
-
{ [_e]: _c },
|
|
1887
|
-
[],
|
|
1888
|
-
[]
|
|
1889
|
-
];
|
|
1890
|
-
schema.TypeRegistry.for(n0).registerError(WAFInvalidAccountException$, WAFInvalidAccountException);
|
|
1891
|
-
var WAFInvalidOperationException$ = [-3, n0, _WAFIOE,
|
|
1892
|
-
{ [_e]: _c },
|
|
1893
|
-
[_m],
|
|
1894
|
-
[0]
|
|
1895
|
-
];
|
|
1896
|
-
schema.TypeRegistry.for(n0).registerError(WAFInvalidOperationException$, WAFInvalidOperationException);
|
|
1897
|
-
var WAFInvalidParameterException$ = [-3, n0, _WAFIPE,
|
|
1898
|
-
{ [_e]: _c },
|
|
1899
|
-
[_f, _p, _r],
|
|
1900
|
-
[0, 0, 0]
|
|
1901
|
-
];
|
|
1902
|
-
schema.TypeRegistry.for(n0).registerError(WAFInvalidParameterException$, WAFInvalidParameterException);
|
|
1903
|
-
var WAFInvalidPermissionPolicyException$ = [-3, n0, _WAFIPPE,
|
|
1904
|
-
{ [_e]: _c },
|
|
1905
|
-
[_m],
|
|
1906
|
-
[0]
|
|
1907
|
-
];
|
|
1908
|
-
schema.TypeRegistry.for(n0).registerError(WAFInvalidPermissionPolicyException$, WAFInvalidPermissionPolicyException);
|
|
1909
|
-
var WAFInvalidRegexPatternException$ = [-3, n0, _WAFIRPE,
|
|
1910
|
-
{ [_e]: _c },
|
|
1911
|
-
[_m],
|
|
1912
|
-
[0]
|
|
1913
|
-
];
|
|
1914
|
-
schema.TypeRegistry.for(n0).registerError(WAFInvalidRegexPatternException$, WAFInvalidRegexPatternException);
|
|
1915
|
-
var WAFLimitsExceededException$ = [-3, n0, _WAFLEE,
|
|
1916
|
-
{ [_e]: _c },
|
|
1917
|
-
[_m],
|
|
1918
|
-
[0]
|
|
1919
|
-
];
|
|
1920
|
-
schema.TypeRegistry.for(n0).registerError(WAFLimitsExceededException$, WAFLimitsExceededException);
|
|
1921
|
-
var WAFNonEmptyEntityException$ = [-3, n0, _WAFNEEE,
|
|
1922
|
-
{ [_e]: _c },
|
|
1923
|
-
[_m],
|
|
1924
|
-
[0]
|
|
1925
|
-
];
|
|
1926
|
-
schema.TypeRegistry.for(n0).registerError(WAFNonEmptyEntityException$, WAFNonEmptyEntityException);
|
|
1927
|
-
var WAFNonexistentContainerException$ = [-3, n0, _WAFNCE,
|
|
1928
|
-
{ [_e]: _c },
|
|
1929
|
-
[_m],
|
|
1930
|
-
[0]
|
|
1931
|
-
];
|
|
1932
|
-
schema.TypeRegistry.for(n0).registerError(WAFNonexistentContainerException$, WAFNonexistentContainerException);
|
|
1933
|
-
var WAFNonexistentItemException$ = [-3, n0, _WAFNIE,
|
|
1934
|
-
{ [_e]: _c },
|
|
1935
|
-
[_m],
|
|
1936
|
-
[0]
|
|
1937
|
-
];
|
|
1938
|
-
schema.TypeRegistry.for(n0).registerError(WAFNonexistentItemException$, WAFNonexistentItemException);
|
|
1939
|
-
var WafOverrideAction$ = [3, n0, _WOA,
|
|
1940
|
-
0,
|
|
1941
|
-
[_T],
|
|
1942
|
-
[0], 1
|
|
1943
|
-
];
|
|
1944
|
-
var WAFReferencedItemException$ = [-3, n0, _WAFRIE,
|
|
1945
|
-
{ [_e]: _c },
|
|
1946
|
-
[_m],
|
|
1947
|
-
[0]
|
|
1948
|
-
];
|
|
1949
|
-
schema.TypeRegistry.for(n0).registerError(WAFReferencedItemException$, WAFReferencedItemException);
|
|
1950
|
-
var WAFServiceLinkedRoleErrorException$ = [-3, n0, _WAFSLREE,
|
|
1951
|
-
{ [_e]: _c },
|
|
1952
|
-
[_m],
|
|
1953
|
-
[0]
|
|
1954
|
-
];
|
|
1955
|
-
schema.TypeRegistry.for(n0).registerError(WAFServiceLinkedRoleErrorException$, WAFServiceLinkedRoleErrorException);
|
|
1956
|
-
var WAFStaleDataException$ = [-3, n0, _WAFSDE,
|
|
1957
|
-
{ [_e]: _c },
|
|
1958
|
-
[_m],
|
|
1959
|
-
[0]
|
|
1960
|
-
];
|
|
1961
|
-
schema.TypeRegistry.for(n0).registerError(WAFStaleDataException$, WAFStaleDataException);
|
|
1962
|
-
var WAFSubscriptionNotFoundException$ = [-3, n0, _WAFSNFE,
|
|
1963
|
-
{ [_e]: _c },
|
|
1964
|
-
[_m],
|
|
1965
|
-
[0]
|
|
1966
|
-
];
|
|
1967
|
-
schema.TypeRegistry.for(n0).registerError(WAFSubscriptionNotFoundException$, WAFSubscriptionNotFoundException);
|
|
1968
|
-
var WAFTagOperationException$ = [-3, n0, _WAFTOE,
|
|
1969
|
-
{ [_e]: _c },
|
|
1970
|
-
[_m],
|
|
1971
|
-
[0]
|
|
1972
|
-
];
|
|
1973
|
-
schema.TypeRegistry.for(n0).registerError(WAFTagOperationException$, WAFTagOperationException);
|
|
1974
|
-
var WAFTagOperationInternalErrorException$ = [-3, n0, _WAFTOIEE,
|
|
1975
|
-
{ [_e]: _s },
|
|
1976
|
-
[_m],
|
|
1977
|
-
[0]
|
|
1978
|
-
];
|
|
1979
|
-
schema.TypeRegistry.for(n0).registerError(WAFTagOperationInternalErrorException$, WAFTagOperationInternalErrorException);
|
|
1980
|
-
var WAFUnavailableEntityException$ = [-3, n0, _WAFUEE,
|
|
1981
|
-
{ [_e]: _c },
|
|
1982
|
-
[_m],
|
|
1983
|
-
[0]
|
|
1984
|
-
];
|
|
1985
|
-
schema.TypeRegistry.for(n0).registerError(WAFUnavailableEntityException$, WAFUnavailableEntityException);
|
|
1986
|
-
var WebACL$ = [3, n0, _WACL,
|
|
1987
|
-
0,
|
|
1988
|
-
[_WACLI, _DA, _Ru, _N, _MN, _WACLA],
|
|
1989
|
-
[0, () => WafAction$, () => ActivatedRules, 0, 0, 0], 3
|
|
1990
|
-
];
|
|
1991
|
-
var WebACLSummary$ = [3, n0, _WACLS,
|
|
1992
|
-
0,
|
|
1993
|
-
[_WACLI, _N],
|
|
1994
|
-
[0, 0], 2
|
|
1995
|
-
];
|
|
1996
|
-
var WebACLUpdate$ = [3, n0, _WACLU,
|
|
1997
|
-
0,
|
|
1998
|
-
[_A, _AR],
|
|
1999
|
-
[0, () => ActivatedRule$], 2
|
|
2000
|
-
];
|
|
2001
|
-
var XssMatchSet$ = [3, n0, _XMS,
|
|
2002
|
-
0,
|
|
2003
|
-
[_XMSI, _XMT, _N],
|
|
2004
|
-
[0, () => XssMatchTuples, 0], 2
|
|
2005
|
-
];
|
|
2006
|
-
var XssMatchSetSummary$ = [3, n0, _XMSS,
|
|
2007
|
-
0,
|
|
2008
|
-
[_XMSI, _N],
|
|
2009
|
-
[0, 0], 2
|
|
2010
|
-
];
|
|
2011
|
-
var XssMatchSetUpdate$ = [3, n0, _XMSU,
|
|
2012
|
-
0,
|
|
2013
|
-
[_A, _XMTs],
|
|
2014
|
-
[0, () => XssMatchTuple$], 2
|
|
2015
|
-
];
|
|
2016
|
-
var XssMatchTuple$ = [3, n0, _XMTs,
|
|
2017
|
-
0,
|
|
2018
|
-
[_FTM, _TT],
|
|
2019
|
-
[() => FieldToMatch$, 0], 2
|
|
2020
|
-
];
|
|
2021
|
-
var WAFRegionalServiceException$ = [-3, _sm, "WAFRegionalServiceException", 0, [], []];
|
|
2022
|
-
schema.TypeRegistry.for(_sm).registerError(WAFRegionalServiceException$, WAFRegionalServiceException);
|
|
2023
|
-
var ActivatedRules = [1, n0, _ARc,
|
|
2024
|
-
0, () => ActivatedRule$
|
|
2025
|
-
];
|
|
2026
|
-
var ByteMatchSetSummaries = [1, n0, _BMSSy,
|
|
2027
|
-
0, () => ByteMatchSetSummary$
|
|
2028
|
-
];
|
|
2029
|
-
var ByteMatchSetUpdates = [1, n0, _BMSUy,
|
|
2030
|
-
0, () => ByteMatchSetUpdate$
|
|
2031
|
-
];
|
|
2032
|
-
var ByteMatchTuples = [1, n0, _BMT,
|
|
2033
|
-
0, () => ByteMatchTuple$
|
|
2034
|
-
];
|
|
2035
|
-
var ExcludedRules = [1, n0, _ER,
|
|
2036
|
-
0, () => ExcludedRule$
|
|
2037
|
-
];
|
|
2038
|
-
var GeoMatchConstraints = [1, n0, _GMCe,
|
|
2039
|
-
0, () => GeoMatchConstraint$
|
|
2040
|
-
];
|
|
2041
|
-
var GeoMatchSetSummaries = [1, n0, _GMSSe,
|
|
2042
|
-
0, () => GeoMatchSetSummary$
|
|
2043
|
-
];
|
|
2044
|
-
var GeoMatchSetUpdates = [1, n0, _GMSUe,
|
|
2045
|
-
0, () => GeoMatchSetUpdate$
|
|
2046
|
-
];
|
|
2047
|
-
var HTTPHeaders = [1, n0, _HTTPHe,
|
|
2048
|
-
0, () => HTTPHeader$
|
|
2049
|
-
];
|
|
2050
|
-
var IPSetDescriptors = [1, n0, _IPSD,
|
|
2051
|
-
0, () => IPSetDescriptor$
|
|
2052
|
-
];
|
|
2053
|
-
var IPSetSummaries = [1, n0, _IPSSe,
|
|
2054
|
-
0, () => IPSetSummary$
|
|
2055
|
-
];
|
|
2056
|
-
var IPSetUpdates = [1, n0, _IPSUe,
|
|
2057
|
-
0, () => IPSetUpdate$
|
|
2058
|
-
];
|
|
2059
|
-
var LoggingConfigurations = [1, n0, _LCo,
|
|
2060
|
-
0, () => LoggingConfiguration$
|
|
2061
|
-
];
|
|
2062
|
-
var Predicates = [1, n0, _Pre,
|
|
2063
|
-
0, () => Predicate$
|
|
2064
|
-
];
|
|
2065
|
-
var RedactedFields = [1, n0, _RF,
|
|
2066
|
-
0, () => FieldToMatch$
|
|
2067
|
-
];
|
|
2068
|
-
var RegexMatchSetSummaries = [1, n0, _RMSSe,
|
|
2069
|
-
0, () => RegexMatchSetSummary$
|
|
2070
|
-
];
|
|
2071
|
-
var RegexMatchSetUpdates = [1, n0, _RMSUe,
|
|
2072
|
-
0, () => RegexMatchSetUpdate$
|
|
2073
|
-
];
|
|
2074
|
-
var RegexMatchTuples = [1, n0, _RMT,
|
|
2075
|
-
0, () => RegexMatchTuple$
|
|
2076
|
-
];
|
|
2077
|
-
var RegexPatternSetSummaries = [1, n0, _RPSSe,
|
|
2078
|
-
0, () => RegexPatternSetSummary$
|
|
2079
|
-
];
|
|
2080
|
-
var RegexPatternSetUpdates = [1, n0, _RPSUe,
|
|
2081
|
-
0, () => RegexPatternSetUpdate$
|
|
2082
|
-
];
|
|
2083
|
-
var RuleGroupSummaries = [1, n0, _RGSu,
|
|
2084
|
-
0, () => RuleGroupSummary$
|
|
2085
|
-
];
|
|
2086
|
-
var RuleGroupUpdates = [1, n0, _RGUu,
|
|
2087
|
-
0, () => RuleGroupUpdate$
|
|
2088
|
-
];
|
|
2089
|
-
var RuleSummaries = [1, n0, _RSu,
|
|
2090
|
-
0, () => RuleSummary$
|
|
2091
|
-
];
|
|
2092
|
-
var RuleUpdates = [1, n0, _RUu,
|
|
2093
|
-
0, () => RuleUpdate$
|
|
2094
|
-
];
|
|
2095
|
-
var SampledHTTPRequests = [1, n0, _SHTTPRa,
|
|
2096
|
-
0, () => SampledHTTPRequest$
|
|
2097
|
-
];
|
|
2098
|
-
var SizeConstraints = [1, n0, _SCi,
|
|
2099
|
-
0, () => SizeConstraint$
|
|
2100
|
-
];
|
|
2101
|
-
var SizeConstraintSetSummaries = [1, n0, _SCSSi,
|
|
2102
|
-
0, () => SizeConstraintSetSummary$
|
|
2103
|
-
];
|
|
2104
|
-
var SizeConstraintSetUpdates = [1, n0, _SCSUi,
|
|
2105
|
-
0, () => SizeConstraintSetUpdate$
|
|
2106
|
-
];
|
|
2107
|
-
var SqlInjectionMatchSetSummaries = [1, n0, _SIMSSq,
|
|
2108
|
-
0, () => SqlInjectionMatchSetSummary$
|
|
2109
|
-
];
|
|
2110
|
-
var SqlInjectionMatchSetUpdates = [1, n0, _SIMSUq,
|
|
2111
|
-
0, () => SqlInjectionMatchSetUpdate$
|
|
2112
|
-
];
|
|
2113
|
-
var SqlInjectionMatchTuples = [1, n0, _SIMT,
|
|
2114
|
-
0, () => SqlInjectionMatchTuple$
|
|
2115
|
-
];
|
|
2116
|
-
var SubscribedRuleGroupSummaries = [1, n0, _SRGSu,
|
|
2117
|
-
0, () => SubscribedRuleGroupSummary$
|
|
2118
|
-
];
|
|
2119
|
-
var TagList = [1, n0, _TL,
|
|
2120
|
-
0, () => Tag$
|
|
2121
|
-
];
|
|
2122
|
-
var WebACLSummaries = [1, n0, _WACLSe,
|
|
2123
|
-
0, () => WebACLSummary$
|
|
2124
|
-
];
|
|
2125
|
-
var WebACLUpdates = [1, n0, _WACLUe,
|
|
2126
|
-
0, () => WebACLUpdate$
|
|
2127
|
-
];
|
|
2128
|
-
var XssMatchSetSummaries = [1, n0, _XMSSs,
|
|
2129
|
-
0, () => XssMatchSetSummary$
|
|
2130
|
-
];
|
|
2131
|
-
var XssMatchSetUpdates = [1, n0, _XMSUs,
|
|
2132
|
-
0, () => XssMatchSetUpdate$
|
|
2133
|
-
];
|
|
2134
|
-
var XssMatchTuples = [1, n0, _XMT,
|
|
2135
|
-
0, () => XssMatchTuple$
|
|
2136
|
-
];
|
|
2137
|
-
var AssociateWebACL$ = [9, n0, _AWACL,
|
|
2138
|
-
0, () => AssociateWebACLRequest$, () => AssociateWebACLResponse$
|
|
2139
|
-
];
|
|
2140
|
-
var CreateByteMatchSet$ = [9, n0, _CBMS,
|
|
2141
|
-
0, () => CreateByteMatchSetRequest$, () => CreateByteMatchSetResponse$
|
|
2142
|
-
];
|
|
2143
|
-
var CreateGeoMatchSet$ = [9, n0, _CGMS,
|
|
2144
|
-
0, () => CreateGeoMatchSetRequest$, () => CreateGeoMatchSetResponse$
|
|
2145
|
-
];
|
|
2146
|
-
var CreateIPSet$ = [9, n0, _CIPS,
|
|
2147
|
-
0, () => CreateIPSetRequest$, () => CreateIPSetResponse$
|
|
2148
|
-
];
|
|
2149
|
-
var CreateRateBasedRule$ = [9, n0, _CRBR,
|
|
2150
|
-
0, () => CreateRateBasedRuleRequest$, () => CreateRateBasedRuleResponse$
|
|
2151
|
-
];
|
|
2152
|
-
var CreateRegexMatchSet$ = [9, n0, _CRMS,
|
|
2153
|
-
0, () => CreateRegexMatchSetRequest$, () => CreateRegexMatchSetResponse$
|
|
2154
|
-
];
|
|
2155
|
-
var CreateRegexPatternSet$ = [9, n0, _CRPS,
|
|
2156
|
-
0, () => CreateRegexPatternSetRequest$, () => CreateRegexPatternSetResponse$
|
|
2157
|
-
];
|
|
2158
|
-
var CreateRule$ = [9, n0, _CR,
|
|
2159
|
-
0, () => CreateRuleRequest$, () => CreateRuleResponse$
|
|
2160
|
-
];
|
|
2161
|
-
var CreateRuleGroup$ = [9, n0, _CRG,
|
|
2162
|
-
0, () => CreateRuleGroupRequest$, () => CreateRuleGroupResponse$
|
|
2163
|
-
];
|
|
2164
|
-
var CreateSizeConstraintSet$ = [9, n0, _CSCS,
|
|
2165
|
-
0, () => CreateSizeConstraintSetRequest$, () => CreateSizeConstraintSetResponse$
|
|
2166
|
-
];
|
|
2167
|
-
var CreateSqlInjectionMatchSet$ = [9, n0, _CSIMS,
|
|
2168
|
-
0, () => CreateSqlInjectionMatchSetRequest$, () => CreateSqlInjectionMatchSetResponse$
|
|
2169
|
-
];
|
|
2170
|
-
var CreateWebACL$ = [9, n0, _CWACL,
|
|
2171
|
-
0, () => CreateWebACLRequest$, () => CreateWebACLResponse$
|
|
2172
|
-
];
|
|
2173
|
-
var CreateWebACLMigrationStack$ = [9, n0, _CWACLMS,
|
|
2174
|
-
0, () => CreateWebACLMigrationStackRequest$, () => CreateWebACLMigrationStackResponse$
|
|
2175
|
-
];
|
|
2176
|
-
var CreateXssMatchSet$ = [9, n0, _CXMS,
|
|
2177
|
-
0, () => CreateXssMatchSetRequest$, () => CreateXssMatchSetResponse$
|
|
2178
|
-
];
|
|
2179
|
-
var DeleteByteMatchSet$ = [9, n0, _DBMS,
|
|
2180
|
-
0, () => DeleteByteMatchSetRequest$, () => DeleteByteMatchSetResponse$
|
|
2181
|
-
];
|
|
2182
|
-
var DeleteGeoMatchSet$ = [9, n0, _DGMS,
|
|
2183
|
-
0, () => DeleteGeoMatchSetRequest$, () => DeleteGeoMatchSetResponse$
|
|
2184
|
-
];
|
|
2185
|
-
var DeleteIPSet$ = [9, n0, _DIPS,
|
|
2186
|
-
0, () => DeleteIPSetRequest$, () => DeleteIPSetResponse$
|
|
2187
|
-
];
|
|
2188
|
-
var DeleteLoggingConfiguration$ = [9, n0, _DLC,
|
|
2189
|
-
0, () => DeleteLoggingConfigurationRequest$, () => DeleteLoggingConfigurationResponse$
|
|
2190
|
-
];
|
|
2191
|
-
var DeletePermissionPolicy$ = [9, n0, _DPP,
|
|
2192
|
-
0, () => DeletePermissionPolicyRequest$, () => DeletePermissionPolicyResponse$
|
|
2193
|
-
];
|
|
2194
|
-
var DeleteRateBasedRule$ = [9, n0, _DRBR,
|
|
2195
|
-
0, () => DeleteRateBasedRuleRequest$, () => DeleteRateBasedRuleResponse$
|
|
2196
|
-
];
|
|
2197
|
-
var DeleteRegexMatchSet$ = [9, n0, _DRMS,
|
|
2198
|
-
0, () => DeleteRegexMatchSetRequest$, () => DeleteRegexMatchSetResponse$
|
|
2199
|
-
];
|
|
2200
|
-
var DeleteRegexPatternSet$ = [9, n0, _DRPS,
|
|
2201
|
-
0, () => DeleteRegexPatternSetRequest$, () => DeleteRegexPatternSetResponse$
|
|
2202
|
-
];
|
|
2203
|
-
var DeleteRule$ = [9, n0, _DR,
|
|
2204
|
-
0, () => DeleteRuleRequest$, () => DeleteRuleResponse$
|
|
2205
|
-
];
|
|
2206
|
-
var DeleteRuleGroup$ = [9, n0, _DRG,
|
|
2207
|
-
0, () => DeleteRuleGroupRequest$, () => DeleteRuleGroupResponse$
|
|
2208
|
-
];
|
|
2209
|
-
var DeleteSizeConstraintSet$ = [9, n0, _DSCS,
|
|
2210
|
-
0, () => DeleteSizeConstraintSetRequest$, () => DeleteSizeConstraintSetResponse$
|
|
2211
|
-
];
|
|
2212
|
-
var DeleteSqlInjectionMatchSet$ = [9, n0, _DSIMS,
|
|
2213
|
-
0, () => DeleteSqlInjectionMatchSetRequest$, () => DeleteSqlInjectionMatchSetResponse$
|
|
2214
|
-
];
|
|
2215
|
-
var DeleteWebACL$ = [9, n0, _DWACL,
|
|
2216
|
-
0, () => DeleteWebACLRequest$, () => DeleteWebACLResponse$
|
|
2217
|
-
];
|
|
2218
|
-
var DeleteXssMatchSet$ = [9, n0, _DXMS,
|
|
2219
|
-
0, () => DeleteXssMatchSetRequest$, () => DeleteXssMatchSetResponse$
|
|
2220
|
-
];
|
|
2221
|
-
var DisassociateWebACL$ = [9, n0, _DWACLi,
|
|
2222
|
-
0, () => DisassociateWebACLRequest$, () => DisassociateWebACLResponse$
|
|
2223
|
-
];
|
|
2224
|
-
var GetByteMatchSet$ = [9, n0, _GBMS,
|
|
2225
|
-
0, () => GetByteMatchSetRequest$, () => GetByteMatchSetResponse$
|
|
2226
|
-
];
|
|
2227
|
-
var GetChangeToken$ = [9, n0, _GCT,
|
|
2228
|
-
0, () => GetChangeTokenRequest$, () => GetChangeTokenResponse$
|
|
2229
|
-
];
|
|
2230
|
-
var GetChangeTokenStatus$ = [9, n0, _GCTS,
|
|
2231
|
-
0, () => GetChangeTokenStatusRequest$, () => GetChangeTokenStatusResponse$
|
|
2232
|
-
];
|
|
2233
|
-
var GetGeoMatchSet$ = [9, n0, _GGMS,
|
|
2234
|
-
0, () => GetGeoMatchSetRequest$, () => GetGeoMatchSetResponse$
|
|
2235
|
-
];
|
|
2236
|
-
var GetIPSet$ = [9, n0, _GIPS,
|
|
2237
|
-
0, () => GetIPSetRequest$, () => GetIPSetResponse$
|
|
2238
|
-
];
|
|
2239
|
-
var GetLoggingConfiguration$ = [9, n0, _GLC,
|
|
2240
|
-
0, () => GetLoggingConfigurationRequest$, () => GetLoggingConfigurationResponse$
|
|
2241
|
-
];
|
|
2242
|
-
var GetPermissionPolicy$ = [9, n0, _GPP,
|
|
2243
|
-
0, () => GetPermissionPolicyRequest$, () => GetPermissionPolicyResponse$
|
|
2244
|
-
];
|
|
2245
|
-
var GetRateBasedRule$ = [9, n0, _GRBR,
|
|
2246
|
-
0, () => GetRateBasedRuleRequest$, () => GetRateBasedRuleResponse$
|
|
2247
|
-
];
|
|
2248
|
-
var GetRateBasedRuleManagedKeys$ = [9, n0, _GRBRMK,
|
|
2249
|
-
0, () => GetRateBasedRuleManagedKeysRequest$, () => GetRateBasedRuleManagedKeysResponse$
|
|
2250
|
-
];
|
|
2251
|
-
var GetRegexMatchSet$ = [9, n0, _GRMS,
|
|
2252
|
-
0, () => GetRegexMatchSetRequest$, () => GetRegexMatchSetResponse$
|
|
2253
|
-
];
|
|
2254
|
-
var GetRegexPatternSet$ = [9, n0, _GRPS,
|
|
2255
|
-
0, () => GetRegexPatternSetRequest$, () => GetRegexPatternSetResponse$
|
|
2256
|
-
];
|
|
2257
|
-
var GetRule$ = [9, n0, _GR,
|
|
2258
|
-
0, () => GetRuleRequest$, () => GetRuleResponse$
|
|
2259
|
-
];
|
|
2260
|
-
var GetRuleGroup$ = [9, n0, _GRG,
|
|
2261
|
-
0, () => GetRuleGroupRequest$, () => GetRuleGroupResponse$
|
|
2262
|
-
];
|
|
2263
|
-
var GetSampledRequests$ = [9, n0, _GSR,
|
|
2264
|
-
0, () => GetSampledRequestsRequest$, () => GetSampledRequestsResponse$
|
|
2265
|
-
];
|
|
2266
|
-
var GetSizeConstraintSet$ = [9, n0, _GSCS,
|
|
2267
|
-
0, () => GetSizeConstraintSetRequest$, () => GetSizeConstraintSetResponse$
|
|
2268
|
-
];
|
|
2269
|
-
var GetSqlInjectionMatchSet$ = [9, n0, _GSIMS,
|
|
2270
|
-
0, () => GetSqlInjectionMatchSetRequest$, () => GetSqlInjectionMatchSetResponse$
|
|
2271
|
-
];
|
|
2272
|
-
var GetWebACL$ = [9, n0, _GWACL,
|
|
2273
|
-
0, () => GetWebACLRequest$, () => GetWebACLResponse$
|
|
2274
|
-
];
|
|
2275
|
-
var GetWebACLForResource$ = [9, n0, _GWACLFR,
|
|
2276
|
-
0, () => GetWebACLForResourceRequest$, () => GetWebACLForResourceResponse$
|
|
2277
|
-
];
|
|
2278
|
-
var GetXssMatchSet$ = [9, n0, _GXMS,
|
|
2279
|
-
0, () => GetXssMatchSetRequest$, () => GetXssMatchSetResponse$
|
|
2280
|
-
];
|
|
2281
|
-
var ListActivatedRulesInRuleGroup$ = [9, n0, _LARIRG,
|
|
2282
|
-
0, () => ListActivatedRulesInRuleGroupRequest$, () => ListActivatedRulesInRuleGroupResponse$
|
|
2283
|
-
];
|
|
2284
|
-
var ListByteMatchSets$ = [9, n0, _LBMS,
|
|
2285
|
-
0, () => ListByteMatchSetsRequest$, () => ListByteMatchSetsResponse$
|
|
2286
|
-
];
|
|
2287
|
-
var ListGeoMatchSets$ = [9, n0, _LGMS,
|
|
2288
|
-
0, () => ListGeoMatchSetsRequest$, () => ListGeoMatchSetsResponse$
|
|
2289
|
-
];
|
|
2290
|
-
var ListIPSets$ = [9, n0, _LIPS,
|
|
2291
|
-
0, () => ListIPSetsRequest$, () => ListIPSetsResponse$
|
|
2292
|
-
];
|
|
2293
|
-
var ListLoggingConfigurations$ = [9, n0, _LLC,
|
|
2294
|
-
0, () => ListLoggingConfigurationsRequest$, () => ListLoggingConfigurationsResponse$
|
|
2295
|
-
];
|
|
2296
|
-
var ListRateBasedRules$ = [9, n0, _LRBR,
|
|
2297
|
-
0, () => ListRateBasedRulesRequest$, () => ListRateBasedRulesResponse$
|
|
2298
|
-
];
|
|
2299
|
-
var ListRegexMatchSets$ = [9, n0, _LRMS,
|
|
2300
|
-
0, () => ListRegexMatchSetsRequest$, () => ListRegexMatchSetsResponse$
|
|
2301
|
-
];
|
|
2302
|
-
var ListRegexPatternSets$ = [9, n0, _LRPS,
|
|
2303
|
-
0, () => ListRegexPatternSetsRequest$, () => ListRegexPatternSetsResponse$
|
|
2304
|
-
];
|
|
2305
|
-
var ListResourcesForWebACL$ = [9, n0, _LRFWACL,
|
|
2306
|
-
0, () => ListResourcesForWebACLRequest$, () => ListResourcesForWebACLResponse$
|
|
2307
|
-
];
|
|
2308
|
-
var ListRuleGroups$ = [9, n0, _LRG,
|
|
2309
|
-
0, () => ListRuleGroupsRequest$, () => ListRuleGroupsResponse$
|
|
2310
|
-
];
|
|
2311
|
-
var ListRules$ = [9, n0, _LR,
|
|
2312
|
-
0, () => ListRulesRequest$, () => ListRulesResponse$
|
|
2313
|
-
];
|
|
2314
|
-
var ListSizeConstraintSets$ = [9, n0, _LSCS,
|
|
2315
|
-
0, () => ListSizeConstraintSetsRequest$, () => ListSizeConstraintSetsResponse$
|
|
2316
|
-
];
|
|
2317
|
-
var ListSqlInjectionMatchSets$ = [9, n0, _LSIMS,
|
|
2318
|
-
0, () => ListSqlInjectionMatchSetsRequest$, () => ListSqlInjectionMatchSetsResponse$
|
|
2319
|
-
];
|
|
2320
|
-
var ListSubscribedRuleGroups$ = [9, n0, _LSRG,
|
|
2321
|
-
0, () => ListSubscribedRuleGroupsRequest$, () => ListSubscribedRuleGroupsResponse$
|
|
2322
|
-
];
|
|
2323
|
-
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
2324
|
-
0, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
|
|
2325
|
-
];
|
|
2326
|
-
var ListWebACLs$ = [9, n0, _LWACL,
|
|
2327
|
-
0, () => ListWebACLsRequest$, () => ListWebACLsResponse$
|
|
2328
|
-
];
|
|
2329
|
-
var ListXssMatchSets$ = [9, n0, _LXMS,
|
|
2330
|
-
0, () => ListXssMatchSetsRequest$, () => ListXssMatchSetsResponse$
|
|
2331
|
-
];
|
|
2332
|
-
var PutLoggingConfiguration$ = [9, n0, _PLC,
|
|
2333
|
-
0, () => PutLoggingConfigurationRequest$, () => PutLoggingConfigurationResponse$
|
|
2334
|
-
];
|
|
2335
|
-
var PutPermissionPolicy$ = [9, n0, _PPP,
|
|
2336
|
-
0, () => PutPermissionPolicyRequest$, () => PutPermissionPolicyResponse$
|
|
2337
|
-
];
|
|
2338
|
-
var TagResource$ = [9, n0, _TR,
|
|
2339
|
-
0, () => TagResourceRequest$, () => TagResourceResponse$
|
|
2340
|
-
];
|
|
2341
|
-
var UntagResource$ = [9, n0, _UR,
|
|
2342
|
-
0, () => UntagResourceRequest$, () => UntagResourceResponse$
|
|
2343
|
-
];
|
|
2344
|
-
var UpdateByteMatchSet$ = [9, n0, _UBMS,
|
|
2345
|
-
0, () => UpdateByteMatchSetRequest$, () => UpdateByteMatchSetResponse$
|
|
2346
|
-
];
|
|
2347
|
-
var UpdateGeoMatchSet$ = [9, n0, _UGMS,
|
|
2348
|
-
0, () => UpdateGeoMatchSetRequest$, () => UpdateGeoMatchSetResponse$
|
|
2349
|
-
];
|
|
2350
|
-
var UpdateIPSet$ = [9, n0, _UIPS,
|
|
2351
|
-
0, () => UpdateIPSetRequest$, () => UpdateIPSetResponse$
|
|
2352
|
-
];
|
|
2353
|
-
var UpdateRateBasedRule$ = [9, n0, _URBR,
|
|
2354
|
-
0, () => UpdateRateBasedRuleRequest$, () => UpdateRateBasedRuleResponse$
|
|
2355
|
-
];
|
|
2356
|
-
var UpdateRegexMatchSet$ = [9, n0, _URMS,
|
|
2357
|
-
0, () => UpdateRegexMatchSetRequest$, () => UpdateRegexMatchSetResponse$
|
|
2358
|
-
];
|
|
2359
|
-
var UpdateRegexPatternSet$ = [9, n0, _URPS,
|
|
2360
|
-
0, () => UpdateRegexPatternSetRequest$, () => UpdateRegexPatternSetResponse$
|
|
2361
|
-
];
|
|
2362
|
-
var UpdateRule$ = [9, n0, _URp,
|
|
2363
|
-
0, () => UpdateRuleRequest$, () => UpdateRuleResponse$
|
|
2364
|
-
];
|
|
2365
|
-
var UpdateRuleGroup$ = [9, n0, _URG,
|
|
2366
|
-
0, () => UpdateRuleGroupRequest$, () => UpdateRuleGroupResponse$
|
|
2367
|
-
];
|
|
2368
|
-
var UpdateSizeConstraintSet$ = [9, n0, _USCS,
|
|
2369
|
-
0, () => UpdateSizeConstraintSetRequest$, () => UpdateSizeConstraintSetResponse$
|
|
2370
|
-
];
|
|
2371
|
-
var UpdateSqlInjectionMatchSet$ = [9, n0, _USIMS,
|
|
2372
|
-
0, () => UpdateSqlInjectionMatchSetRequest$, () => UpdateSqlInjectionMatchSetResponse$
|
|
2373
|
-
];
|
|
2374
|
-
var UpdateWebACL$ = [9, n0, _UWACL,
|
|
2375
|
-
0, () => UpdateWebACLRequest$, () => UpdateWebACLResponse$
|
|
2376
|
-
];
|
|
2377
|
-
var UpdateXssMatchSet$ = [9, n0, _UXMS,
|
|
2378
|
-
0, () => UpdateXssMatchSetRequest$, () => UpdateXssMatchSetResponse$
|
|
2379
|
-
];
|
|
2380
|
-
|
|
2381
116
|
class AssociateWebACLCommand extends smithyClient.Command
|
|
2382
117
|
.classBuilder()
|
|
2383
118
|
.ep(commonParams)
|
|
@@ -2386,7 +121,7 @@ class AssociateWebACLCommand extends smithyClient.Command
|
|
|
2386
121
|
})
|
|
2387
122
|
.s("AWSWAF_Regional_20161128", "AssociateWebACL", {})
|
|
2388
123
|
.n("WAFRegionalClient", "AssociateWebACLCommand")
|
|
2389
|
-
.sc(AssociateWebACL$)
|
|
124
|
+
.sc(schemas_0.AssociateWebACL$)
|
|
2390
125
|
.build() {
|
|
2391
126
|
}
|
|
2392
127
|
|
|
@@ -2398,7 +133,7 @@ class CreateByteMatchSetCommand extends smithyClient.Command
|
|
|
2398
133
|
})
|
|
2399
134
|
.s("AWSWAF_Regional_20161128", "CreateByteMatchSet", {})
|
|
2400
135
|
.n("WAFRegionalClient", "CreateByteMatchSetCommand")
|
|
2401
|
-
.sc(CreateByteMatchSet$)
|
|
136
|
+
.sc(schemas_0.CreateByteMatchSet$)
|
|
2402
137
|
.build() {
|
|
2403
138
|
}
|
|
2404
139
|
|
|
@@ -2410,7 +145,7 @@ class CreateGeoMatchSetCommand extends smithyClient.Command
|
|
|
2410
145
|
})
|
|
2411
146
|
.s("AWSWAF_Regional_20161128", "CreateGeoMatchSet", {})
|
|
2412
147
|
.n("WAFRegionalClient", "CreateGeoMatchSetCommand")
|
|
2413
|
-
.sc(CreateGeoMatchSet$)
|
|
148
|
+
.sc(schemas_0.CreateGeoMatchSet$)
|
|
2414
149
|
.build() {
|
|
2415
150
|
}
|
|
2416
151
|
|
|
@@ -2422,7 +157,7 @@ class CreateIPSetCommand extends smithyClient.Command
|
|
|
2422
157
|
})
|
|
2423
158
|
.s("AWSWAF_Regional_20161128", "CreateIPSet", {})
|
|
2424
159
|
.n("WAFRegionalClient", "CreateIPSetCommand")
|
|
2425
|
-
.sc(CreateIPSet$)
|
|
160
|
+
.sc(schemas_0.CreateIPSet$)
|
|
2426
161
|
.build() {
|
|
2427
162
|
}
|
|
2428
163
|
|
|
@@ -2434,7 +169,7 @@ class CreateRateBasedRuleCommand extends smithyClient.Command
|
|
|
2434
169
|
})
|
|
2435
170
|
.s("AWSWAF_Regional_20161128", "CreateRateBasedRule", {})
|
|
2436
171
|
.n("WAFRegionalClient", "CreateRateBasedRuleCommand")
|
|
2437
|
-
.sc(CreateRateBasedRule$)
|
|
172
|
+
.sc(schemas_0.CreateRateBasedRule$)
|
|
2438
173
|
.build() {
|
|
2439
174
|
}
|
|
2440
175
|
|
|
@@ -2446,7 +181,7 @@ class CreateRegexMatchSetCommand extends smithyClient.Command
|
|
|
2446
181
|
})
|
|
2447
182
|
.s("AWSWAF_Regional_20161128", "CreateRegexMatchSet", {})
|
|
2448
183
|
.n("WAFRegionalClient", "CreateRegexMatchSetCommand")
|
|
2449
|
-
.sc(CreateRegexMatchSet$)
|
|
184
|
+
.sc(schemas_0.CreateRegexMatchSet$)
|
|
2450
185
|
.build() {
|
|
2451
186
|
}
|
|
2452
187
|
|
|
@@ -2458,7 +193,7 @@ class CreateRegexPatternSetCommand extends smithyClient.Command
|
|
|
2458
193
|
})
|
|
2459
194
|
.s("AWSWAF_Regional_20161128", "CreateRegexPatternSet", {})
|
|
2460
195
|
.n("WAFRegionalClient", "CreateRegexPatternSetCommand")
|
|
2461
|
-
.sc(CreateRegexPatternSet$)
|
|
196
|
+
.sc(schemas_0.CreateRegexPatternSet$)
|
|
2462
197
|
.build() {
|
|
2463
198
|
}
|
|
2464
199
|
|
|
@@ -2470,7 +205,7 @@ class CreateRuleCommand extends smithyClient.Command
|
|
|
2470
205
|
})
|
|
2471
206
|
.s("AWSWAF_Regional_20161128", "CreateRule", {})
|
|
2472
207
|
.n("WAFRegionalClient", "CreateRuleCommand")
|
|
2473
|
-
.sc(CreateRule$)
|
|
208
|
+
.sc(schemas_0.CreateRule$)
|
|
2474
209
|
.build() {
|
|
2475
210
|
}
|
|
2476
211
|
|
|
@@ -2482,7 +217,7 @@ class CreateRuleGroupCommand extends smithyClient.Command
|
|
|
2482
217
|
})
|
|
2483
218
|
.s("AWSWAF_Regional_20161128", "CreateRuleGroup", {})
|
|
2484
219
|
.n("WAFRegionalClient", "CreateRuleGroupCommand")
|
|
2485
|
-
.sc(CreateRuleGroup$)
|
|
220
|
+
.sc(schemas_0.CreateRuleGroup$)
|
|
2486
221
|
.build() {
|
|
2487
222
|
}
|
|
2488
223
|
|
|
@@ -2494,7 +229,7 @@ class CreateSizeConstraintSetCommand extends smithyClient.Command
|
|
|
2494
229
|
})
|
|
2495
230
|
.s("AWSWAF_Regional_20161128", "CreateSizeConstraintSet", {})
|
|
2496
231
|
.n("WAFRegionalClient", "CreateSizeConstraintSetCommand")
|
|
2497
|
-
.sc(CreateSizeConstraintSet$)
|
|
232
|
+
.sc(schemas_0.CreateSizeConstraintSet$)
|
|
2498
233
|
.build() {
|
|
2499
234
|
}
|
|
2500
235
|
|
|
@@ -2506,7 +241,7 @@ class CreateSqlInjectionMatchSetCommand extends smithyClient.Command
|
|
|
2506
241
|
})
|
|
2507
242
|
.s("AWSWAF_Regional_20161128", "CreateSqlInjectionMatchSet", {})
|
|
2508
243
|
.n("WAFRegionalClient", "CreateSqlInjectionMatchSetCommand")
|
|
2509
|
-
.sc(CreateSqlInjectionMatchSet$)
|
|
244
|
+
.sc(schemas_0.CreateSqlInjectionMatchSet$)
|
|
2510
245
|
.build() {
|
|
2511
246
|
}
|
|
2512
247
|
|
|
@@ -2518,7 +253,7 @@ class CreateWebACLCommand extends smithyClient.Command
|
|
|
2518
253
|
})
|
|
2519
254
|
.s("AWSWAF_Regional_20161128", "CreateWebACL", {})
|
|
2520
255
|
.n("WAFRegionalClient", "CreateWebACLCommand")
|
|
2521
|
-
.sc(CreateWebACL$)
|
|
256
|
+
.sc(schemas_0.CreateWebACL$)
|
|
2522
257
|
.build() {
|
|
2523
258
|
}
|
|
2524
259
|
|
|
@@ -2530,7 +265,7 @@ class CreateWebACLMigrationStackCommand extends smithyClient.Command
|
|
|
2530
265
|
})
|
|
2531
266
|
.s("AWSWAF_Regional_20161128", "CreateWebACLMigrationStack", {})
|
|
2532
267
|
.n("WAFRegionalClient", "CreateWebACLMigrationStackCommand")
|
|
2533
|
-
.sc(CreateWebACLMigrationStack$)
|
|
268
|
+
.sc(schemas_0.CreateWebACLMigrationStack$)
|
|
2534
269
|
.build() {
|
|
2535
270
|
}
|
|
2536
271
|
|
|
@@ -2542,7 +277,7 @@ class CreateXssMatchSetCommand extends smithyClient.Command
|
|
|
2542
277
|
})
|
|
2543
278
|
.s("AWSWAF_Regional_20161128", "CreateXssMatchSet", {})
|
|
2544
279
|
.n("WAFRegionalClient", "CreateXssMatchSetCommand")
|
|
2545
|
-
.sc(CreateXssMatchSet$)
|
|
280
|
+
.sc(schemas_0.CreateXssMatchSet$)
|
|
2546
281
|
.build() {
|
|
2547
282
|
}
|
|
2548
283
|
|
|
@@ -2554,7 +289,7 @@ class DeleteByteMatchSetCommand extends smithyClient.Command
|
|
|
2554
289
|
})
|
|
2555
290
|
.s("AWSWAF_Regional_20161128", "DeleteByteMatchSet", {})
|
|
2556
291
|
.n("WAFRegionalClient", "DeleteByteMatchSetCommand")
|
|
2557
|
-
.sc(DeleteByteMatchSet$)
|
|
292
|
+
.sc(schemas_0.DeleteByteMatchSet$)
|
|
2558
293
|
.build() {
|
|
2559
294
|
}
|
|
2560
295
|
|
|
@@ -2566,7 +301,7 @@ class DeleteGeoMatchSetCommand extends smithyClient.Command
|
|
|
2566
301
|
})
|
|
2567
302
|
.s("AWSWAF_Regional_20161128", "DeleteGeoMatchSet", {})
|
|
2568
303
|
.n("WAFRegionalClient", "DeleteGeoMatchSetCommand")
|
|
2569
|
-
.sc(DeleteGeoMatchSet$)
|
|
304
|
+
.sc(schemas_0.DeleteGeoMatchSet$)
|
|
2570
305
|
.build() {
|
|
2571
306
|
}
|
|
2572
307
|
|
|
@@ -2578,7 +313,7 @@ class DeleteIPSetCommand extends smithyClient.Command
|
|
|
2578
313
|
})
|
|
2579
314
|
.s("AWSWAF_Regional_20161128", "DeleteIPSet", {})
|
|
2580
315
|
.n("WAFRegionalClient", "DeleteIPSetCommand")
|
|
2581
|
-
.sc(DeleteIPSet$)
|
|
316
|
+
.sc(schemas_0.DeleteIPSet$)
|
|
2582
317
|
.build() {
|
|
2583
318
|
}
|
|
2584
319
|
|
|
@@ -2590,7 +325,7 @@ class DeleteLoggingConfigurationCommand extends smithyClient.Command
|
|
|
2590
325
|
})
|
|
2591
326
|
.s("AWSWAF_Regional_20161128", "DeleteLoggingConfiguration", {})
|
|
2592
327
|
.n("WAFRegionalClient", "DeleteLoggingConfigurationCommand")
|
|
2593
|
-
.sc(DeleteLoggingConfiguration$)
|
|
328
|
+
.sc(schemas_0.DeleteLoggingConfiguration$)
|
|
2594
329
|
.build() {
|
|
2595
330
|
}
|
|
2596
331
|
|
|
@@ -2602,7 +337,7 @@ class DeletePermissionPolicyCommand extends smithyClient.Command
|
|
|
2602
337
|
})
|
|
2603
338
|
.s("AWSWAF_Regional_20161128", "DeletePermissionPolicy", {})
|
|
2604
339
|
.n("WAFRegionalClient", "DeletePermissionPolicyCommand")
|
|
2605
|
-
.sc(DeletePermissionPolicy$)
|
|
340
|
+
.sc(schemas_0.DeletePermissionPolicy$)
|
|
2606
341
|
.build() {
|
|
2607
342
|
}
|
|
2608
343
|
|
|
@@ -2614,7 +349,7 @@ class DeleteRateBasedRuleCommand extends smithyClient.Command
|
|
|
2614
349
|
})
|
|
2615
350
|
.s("AWSWAF_Regional_20161128", "DeleteRateBasedRule", {})
|
|
2616
351
|
.n("WAFRegionalClient", "DeleteRateBasedRuleCommand")
|
|
2617
|
-
.sc(DeleteRateBasedRule$)
|
|
352
|
+
.sc(schemas_0.DeleteRateBasedRule$)
|
|
2618
353
|
.build() {
|
|
2619
354
|
}
|
|
2620
355
|
|
|
@@ -2626,7 +361,7 @@ class DeleteRegexMatchSetCommand extends smithyClient.Command
|
|
|
2626
361
|
})
|
|
2627
362
|
.s("AWSWAF_Regional_20161128", "DeleteRegexMatchSet", {})
|
|
2628
363
|
.n("WAFRegionalClient", "DeleteRegexMatchSetCommand")
|
|
2629
|
-
.sc(DeleteRegexMatchSet$)
|
|
364
|
+
.sc(schemas_0.DeleteRegexMatchSet$)
|
|
2630
365
|
.build() {
|
|
2631
366
|
}
|
|
2632
367
|
|
|
@@ -2638,7 +373,7 @@ class DeleteRegexPatternSetCommand extends smithyClient.Command
|
|
|
2638
373
|
})
|
|
2639
374
|
.s("AWSWAF_Regional_20161128", "DeleteRegexPatternSet", {})
|
|
2640
375
|
.n("WAFRegionalClient", "DeleteRegexPatternSetCommand")
|
|
2641
|
-
.sc(DeleteRegexPatternSet$)
|
|
376
|
+
.sc(schemas_0.DeleteRegexPatternSet$)
|
|
2642
377
|
.build() {
|
|
2643
378
|
}
|
|
2644
379
|
|
|
@@ -2650,7 +385,7 @@ class DeleteRuleCommand extends smithyClient.Command
|
|
|
2650
385
|
})
|
|
2651
386
|
.s("AWSWAF_Regional_20161128", "DeleteRule", {})
|
|
2652
387
|
.n("WAFRegionalClient", "DeleteRuleCommand")
|
|
2653
|
-
.sc(DeleteRule$)
|
|
388
|
+
.sc(schemas_0.DeleteRule$)
|
|
2654
389
|
.build() {
|
|
2655
390
|
}
|
|
2656
391
|
|
|
@@ -2662,7 +397,7 @@ class DeleteRuleGroupCommand extends smithyClient.Command
|
|
|
2662
397
|
})
|
|
2663
398
|
.s("AWSWAF_Regional_20161128", "DeleteRuleGroup", {})
|
|
2664
399
|
.n("WAFRegionalClient", "DeleteRuleGroupCommand")
|
|
2665
|
-
.sc(DeleteRuleGroup$)
|
|
400
|
+
.sc(schemas_0.DeleteRuleGroup$)
|
|
2666
401
|
.build() {
|
|
2667
402
|
}
|
|
2668
403
|
|
|
@@ -2674,7 +409,7 @@ class DeleteSizeConstraintSetCommand extends smithyClient.Command
|
|
|
2674
409
|
})
|
|
2675
410
|
.s("AWSWAF_Regional_20161128", "DeleteSizeConstraintSet", {})
|
|
2676
411
|
.n("WAFRegionalClient", "DeleteSizeConstraintSetCommand")
|
|
2677
|
-
.sc(DeleteSizeConstraintSet$)
|
|
412
|
+
.sc(schemas_0.DeleteSizeConstraintSet$)
|
|
2678
413
|
.build() {
|
|
2679
414
|
}
|
|
2680
415
|
|
|
@@ -2686,7 +421,7 @@ class DeleteSqlInjectionMatchSetCommand extends smithyClient.Command
|
|
|
2686
421
|
})
|
|
2687
422
|
.s("AWSWAF_Regional_20161128", "DeleteSqlInjectionMatchSet", {})
|
|
2688
423
|
.n("WAFRegionalClient", "DeleteSqlInjectionMatchSetCommand")
|
|
2689
|
-
.sc(DeleteSqlInjectionMatchSet$)
|
|
424
|
+
.sc(schemas_0.DeleteSqlInjectionMatchSet$)
|
|
2690
425
|
.build() {
|
|
2691
426
|
}
|
|
2692
427
|
|
|
@@ -2698,7 +433,7 @@ class DeleteWebACLCommand extends smithyClient.Command
|
|
|
2698
433
|
})
|
|
2699
434
|
.s("AWSWAF_Regional_20161128", "DeleteWebACL", {})
|
|
2700
435
|
.n("WAFRegionalClient", "DeleteWebACLCommand")
|
|
2701
|
-
.sc(DeleteWebACL$)
|
|
436
|
+
.sc(schemas_0.DeleteWebACL$)
|
|
2702
437
|
.build() {
|
|
2703
438
|
}
|
|
2704
439
|
|
|
@@ -2710,7 +445,7 @@ class DeleteXssMatchSetCommand extends smithyClient.Command
|
|
|
2710
445
|
})
|
|
2711
446
|
.s("AWSWAF_Regional_20161128", "DeleteXssMatchSet", {})
|
|
2712
447
|
.n("WAFRegionalClient", "DeleteXssMatchSetCommand")
|
|
2713
|
-
.sc(DeleteXssMatchSet$)
|
|
448
|
+
.sc(schemas_0.DeleteXssMatchSet$)
|
|
2714
449
|
.build() {
|
|
2715
450
|
}
|
|
2716
451
|
|
|
@@ -2722,7 +457,7 @@ class DisassociateWebACLCommand extends smithyClient.Command
|
|
|
2722
457
|
})
|
|
2723
458
|
.s("AWSWAF_Regional_20161128", "DisassociateWebACL", {})
|
|
2724
459
|
.n("WAFRegionalClient", "DisassociateWebACLCommand")
|
|
2725
|
-
.sc(DisassociateWebACL$)
|
|
460
|
+
.sc(schemas_0.DisassociateWebACL$)
|
|
2726
461
|
.build() {
|
|
2727
462
|
}
|
|
2728
463
|
|
|
@@ -2734,7 +469,7 @@ class GetByteMatchSetCommand extends smithyClient.Command
|
|
|
2734
469
|
})
|
|
2735
470
|
.s("AWSWAF_Regional_20161128", "GetByteMatchSet", {})
|
|
2736
471
|
.n("WAFRegionalClient", "GetByteMatchSetCommand")
|
|
2737
|
-
.sc(GetByteMatchSet$)
|
|
472
|
+
.sc(schemas_0.GetByteMatchSet$)
|
|
2738
473
|
.build() {
|
|
2739
474
|
}
|
|
2740
475
|
|
|
@@ -2746,7 +481,7 @@ class GetChangeTokenCommand extends smithyClient.Command
|
|
|
2746
481
|
})
|
|
2747
482
|
.s("AWSWAF_Regional_20161128", "GetChangeToken", {})
|
|
2748
483
|
.n("WAFRegionalClient", "GetChangeTokenCommand")
|
|
2749
|
-
.sc(GetChangeToken$)
|
|
484
|
+
.sc(schemas_0.GetChangeToken$)
|
|
2750
485
|
.build() {
|
|
2751
486
|
}
|
|
2752
487
|
|
|
@@ -2758,7 +493,7 @@ class GetChangeTokenStatusCommand extends smithyClient.Command
|
|
|
2758
493
|
})
|
|
2759
494
|
.s("AWSWAF_Regional_20161128", "GetChangeTokenStatus", {})
|
|
2760
495
|
.n("WAFRegionalClient", "GetChangeTokenStatusCommand")
|
|
2761
|
-
.sc(GetChangeTokenStatus$)
|
|
496
|
+
.sc(schemas_0.GetChangeTokenStatus$)
|
|
2762
497
|
.build() {
|
|
2763
498
|
}
|
|
2764
499
|
|
|
@@ -2770,7 +505,7 @@ class GetGeoMatchSetCommand extends smithyClient.Command
|
|
|
2770
505
|
})
|
|
2771
506
|
.s("AWSWAF_Regional_20161128", "GetGeoMatchSet", {})
|
|
2772
507
|
.n("WAFRegionalClient", "GetGeoMatchSetCommand")
|
|
2773
|
-
.sc(GetGeoMatchSet$)
|
|
508
|
+
.sc(schemas_0.GetGeoMatchSet$)
|
|
2774
509
|
.build() {
|
|
2775
510
|
}
|
|
2776
511
|
|
|
@@ -2782,7 +517,7 @@ class GetIPSetCommand extends smithyClient.Command
|
|
|
2782
517
|
})
|
|
2783
518
|
.s("AWSWAF_Regional_20161128", "GetIPSet", {})
|
|
2784
519
|
.n("WAFRegionalClient", "GetIPSetCommand")
|
|
2785
|
-
.sc(GetIPSet$)
|
|
520
|
+
.sc(schemas_0.GetIPSet$)
|
|
2786
521
|
.build() {
|
|
2787
522
|
}
|
|
2788
523
|
|
|
@@ -2794,7 +529,7 @@ class GetLoggingConfigurationCommand extends smithyClient.Command
|
|
|
2794
529
|
})
|
|
2795
530
|
.s("AWSWAF_Regional_20161128", "GetLoggingConfiguration", {})
|
|
2796
531
|
.n("WAFRegionalClient", "GetLoggingConfigurationCommand")
|
|
2797
|
-
.sc(GetLoggingConfiguration$)
|
|
532
|
+
.sc(schemas_0.GetLoggingConfiguration$)
|
|
2798
533
|
.build() {
|
|
2799
534
|
}
|
|
2800
535
|
|
|
@@ -2806,7 +541,7 @@ class GetPermissionPolicyCommand extends smithyClient.Command
|
|
|
2806
541
|
})
|
|
2807
542
|
.s("AWSWAF_Regional_20161128", "GetPermissionPolicy", {})
|
|
2808
543
|
.n("WAFRegionalClient", "GetPermissionPolicyCommand")
|
|
2809
|
-
.sc(GetPermissionPolicy$)
|
|
544
|
+
.sc(schemas_0.GetPermissionPolicy$)
|
|
2810
545
|
.build() {
|
|
2811
546
|
}
|
|
2812
547
|
|
|
@@ -2818,7 +553,7 @@ class GetRateBasedRuleCommand extends smithyClient.Command
|
|
|
2818
553
|
})
|
|
2819
554
|
.s("AWSWAF_Regional_20161128", "GetRateBasedRule", {})
|
|
2820
555
|
.n("WAFRegionalClient", "GetRateBasedRuleCommand")
|
|
2821
|
-
.sc(GetRateBasedRule$)
|
|
556
|
+
.sc(schemas_0.GetRateBasedRule$)
|
|
2822
557
|
.build() {
|
|
2823
558
|
}
|
|
2824
559
|
|
|
@@ -2830,7 +565,7 @@ class GetRateBasedRuleManagedKeysCommand extends smithyClient.Command
|
|
|
2830
565
|
})
|
|
2831
566
|
.s("AWSWAF_Regional_20161128", "GetRateBasedRuleManagedKeys", {})
|
|
2832
567
|
.n("WAFRegionalClient", "GetRateBasedRuleManagedKeysCommand")
|
|
2833
|
-
.sc(GetRateBasedRuleManagedKeys$)
|
|
568
|
+
.sc(schemas_0.GetRateBasedRuleManagedKeys$)
|
|
2834
569
|
.build() {
|
|
2835
570
|
}
|
|
2836
571
|
|
|
@@ -2842,7 +577,7 @@ class GetRegexMatchSetCommand extends smithyClient.Command
|
|
|
2842
577
|
})
|
|
2843
578
|
.s("AWSWAF_Regional_20161128", "GetRegexMatchSet", {})
|
|
2844
579
|
.n("WAFRegionalClient", "GetRegexMatchSetCommand")
|
|
2845
|
-
.sc(GetRegexMatchSet$)
|
|
580
|
+
.sc(schemas_0.GetRegexMatchSet$)
|
|
2846
581
|
.build() {
|
|
2847
582
|
}
|
|
2848
583
|
|
|
@@ -2854,7 +589,7 @@ class GetRegexPatternSetCommand extends smithyClient.Command
|
|
|
2854
589
|
})
|
|
2855
590
|
.s("AWSWAF_Regional_20161128", "GetRegexPatternSet", {})
|
|
2856
591
|
.n("WAFRegionalClient", "GetRegexPatternSetCommand")
|
|
2857
|
-
.sc(GetRegexPatternSet$)
|
|
592
|
+
.sc(schemas_0.GetRegexPatternSet$)
|
|
2858
593
|
.build() {
|
|
2859
594
|
}
|
|
2860
595
|
|
|
@@ -2866,7 +601,7 @@ class GetRuleCommand extends smithyClient.Command
|
|
|
2866
601
|
})
|
|
2867
602
|
.s("AWSWAF_Regional_20161128", "GetRule", {})
|
|
2868
603
|
.n("WAFRegionalClient", "GetRuleCommand")
|
|
2869
|
-
.sc(GetRule$)
|
|
604
|
+
.sc(schemas_0.GetRule$)
|
|
2870
605
|
.build() {
|
|
2871
606
|
}
|
|
2872
607
|
|
|
@@ -2878,7 +613,7 @@ class GetRuleGroupCommand extends smithyClient.Command
|
|
|
2878
613
|
})
|
|
2879
614
|
.s("AWSWAF_Regional_20161128", "GetRuleGroup", {})
|
|
2880
615
|
.n("WAFRegionalClient", "GetRuleGroupCommand")
|
|
2881
|
-
.sc(GetRuleGroup$)
|
|
616
|
+
.sc(schemas_0.GetRuleGroup$)
|
|
2882
617
|
.build() {
|
|
2883
618
|
}
|
|
2884
619
|
|
|
@@ -2890,7 +625,7 @@ class GetSampledRequestsCommand extends smithyClient.Command
|
|
|
2890
625
|
})
|
|
2891
626
|
.s("AWSWAF_Regional_20161128", "GetSampledRequests", {})
|
|
2892
627
|
.n("WAFRegionalClient", "GetSampledRequestsCommand")
|
|
2893
|
-
.sc(GetSampledRequests$)
|
|
628
|
+
.sc(schemas_0.GetSampledRequests$)
|
|
2894
629
|
.build() {
|
|
2895
630
|
}
|
|
2896
631
|
|
|
@@ -2902,7 +637,7 @@ class GetSizeConstraintSetCommand extends smithyClient.Command
|
|
|
2902
637
|
})
|
|
2903
638
|
.s("AWSWAF_Regional_20161128", "GetSizeConstraintSet", {})
|
|
2904
639
|
.n("WAFRegionalClient", "GetSizeConstraintSetCommand")
|
|
2905
|
-
.sc(GetSizeConstraintSet$)
|
|
640
|
+
.sc(schemas_0.GetSizeConstraintSet$)
|
|
2906
641
|
.build() {
|
|
2907
642
|
}
|
|
2908
643
|
|
|
@@ -2914,7 +649,7 @@ class GetSqlInjectionMatchSetCommand extends smithyClient.Command
|
|
|
2914
649
|
})
|
|
2915
650
|
.s("AWSWAF_Regional_20161128", "GetSqlInjectionMatchSet", {})
|
|
2916
651
|
.n("WAFRegionalClient", "GetSqlInjectionMatchSetCommand")
|
|
2917
|
-
.sc(GetSqlInjectionMatchSet$)
|
|
652
|
+
.sc(schemas_0.GetSqlInjectionMatchSet$)
|
|
2918
653
|
.build() {
|
|
2919
654
|
}
|
|
2920
655
|
|
|
@@ -2926,7 +661,7 @@ class GetWebACLCommand extends smithyClient.Command
|
|
|
2926
661
|
})
|
|
2927
662
|
.s("AWSWAF_Regional_20161128", "GetWebACL", {})
|
|
2928
663
|
.n("WAFRegionalClient", "GetWebACLCommand")
|
|
2929
|
-
.sc(GetWebACL$)
|
|
664
|
+
.sc(schemas_0.GetWebACL$)
|
|
2930
665
|
.build() {
|
|
2931
666
|
}
|
|
2932
667
|
|
|
@@ -2938,7 +673,7 @@ class GetWebACLForResourceCommand extends smithyClient.Command
|
|
|
2938
673
|
})
|
|
2939
674
|
.s("AWSWAF_Regional_20161128", "GetWebACLForResource", {})
|
|
2940
675
|
.n("WAFRegionalClient", "GetWebACLForResourceCommand")
|
|
2941
|
-
.sc(GetWebACLForResource$)
|
|
676
|
+
.sc(schemas_0.GetWebACLForResource$)
|
|
2942
677
|
.build() {
|
|
2943
678
|
}
|
|
2944
679
|
|
|
@@ -2950,7 +685,7 @@ class GetXssMatchSetCommand extends smithyClient.Command
|
|
|
2950
685
|
})
|
|
2951
686
|
.s("AWSWAF_Regional_20161128", "GetXssMatchSet", {})
|
|
2952
687
|
.n("WAFRegionalClient", "GetXssMatchSetCommand")
|
|
2953
|
-
.sc(GetXssMatchSet$)
|
|
688
|
+
.sc(schemas_0.GetXssMatchSet$)
|
|
2954
689
|
.build() {
|
|
2955
690
|
}
|
|
2956
691
|
|
|
@@ -2962,7 +697,7 @@ class ListActivatedRulesInRuleGroupCommand extends smithyClient.Command
|
|
|
2962
697
|
})
|
|
2963
698
|
.s("AWSWAF_Regional_20161128", "ListActivatedRulesInRuleGroup", {})
|
|
2964
699
|
.n("WAFRegionalClient", "ListActivatedRulesInRuleGroupCommand")
|
|
2965
|
-
.sc(ListActivatedRulesInRuleGroup$)
|
|
700
|
+
.sc(schemas_0.ListActivatedRulesInRuleGroup$)
|
|
2966
701
|
.build() {
|
|
2967
702
|
}
|
|
2968
703
|
|
|
@@ -2974,7 +709,7 @@ class ListByteMatchSetsCommand extends smithyClient.Command
|
|
|
2974
709
|
})
|
|
2975
710
|
.s("AWSWAF_Regional_20161128", "ListByteMatchSets", {})
|
|
2976
711
|
.n("WAFRegionalClient", "ListByteMatchSetsCommand")
|
|
2977
|
-
.sc(ListByteMatchSets$)
|
|
712
|
+
.sc(schemas_0.ListByteMatchSets$)
|
|
2978
713
|
.build() {
|
|
2979
714
|
}
|
|
2980
715
|
|
|
@@ -2986,7 +721,7 @@ class ListGeoMatchSetsCommand extends smithyClient.Command
|
|
|
2986
721
|
})
|
|
2987
722
|
.s("AWSWAF_Regional_20161128", "ListGeoMatchSets", {})
|
|
2988
723
|
.n("WAFRegionalClient", "ListGeoMatchSetsCommand")
|
|
2989
|
-
.sc(ListGeoMatchSets$)
|
|
724
|
+
.sc(schemas_0.ListGeoMatchSets$)
|
|
2990
725
|
.build() {
|
|
2991
726
|
}
|
|
2992
727
|
|
|
@@ -2998,7 +733,7 @@ class ListIPSetsCommand extends smithyClient.Command
|
|
|
2998
733
|
})
|
|
2999
734
|
.s("AWSWAF_Regional_20161128", "ListIPSets", {})
|
|
3000
735
|
.n("WAFRegionalClient", "ListIPSetsCommand")
|
|
3001
|
-
.sc(ListIPSets$)
|
|
736
|
+
.sc(schemas_0.ListIPSets$)
|
|
3002
737
|
.build() {
|
|
3003
738
|
}
|
|
3004
739
|
|
|
@@ -3010,7 +745,7 @@ class ListLoggingConfigurationsCommand extends smithyClient.Command
|
|
|
3010
745
|
})
|
|
3011
746
|
.s("AWSWAF_Regional_20161128", "ListLoggingConfigurations", {})
|
|
3012
747
|
.n("WAFRegionalClient", "ListLoggingConfigurationsCommand")
|
|
3013
|
-
.sc(ListLoggingConfigurations$)
|
|
748
|
+
.sc(schemas_0.ListLoggingConfigurations$)
|
|
3014
749
|
.build() {
|
|
3015
750
|
}
|
|
3016
751
|
|
|
@@ -3022,7 +757,7 @@ class ListRateBasedRulesCommand extends smithyClient.Command
|
|
|
3022
757
|
})
|
|
3023
758
|
.s("AWSWAF_Regional_20161128", "ListRateBasedRules", {})
|
|
3024
759
|
.n("WAFRegionalClient", "ListRateBasedRulesCommand")
|
|
3025
|
-
.sc(ListRateBasedRules$)
|
|
760
|
+
.sc(schemas_0.ListRateBasedRules$)
|
|
3026
761
|
.build() {
|
|
3027
762
|
}
|
|
3028
763
|
|
|
@@ -3034,7 +769,7 @@ class ListRegexMatchSetsCommand extends smithyClient.Command
|
|
|
3034
769
|
})
|
|
3035
770
|
.s("AWSWAF_Regional_20161128", "ListRegexMatchSets", {})
|
|
3036
771
|
.n("WAFRegionalClient", "ListRegexMatchSetsCommand")
|
|
3037
|
-
.sc(ListRegexMatchSets$)
|
|
772
|
+
.sc(schemas_0.ListRegexMatchSets$)
|
|
3038
773
|
.build() {
|
|
3039
774
|
}
|
|
3040
775
|
|
|
@@ -3046,7 +781,7 @@ class ListRegexPatternSetsCommand extends smithyClient.Command
|
|
|
3046
781
|
})
|
|
3047
782
|
.s("AWSWAF_Regional_20161128", "ListRegexPatternSets", {})
|
|
3048
783
|
.n("WAFRegionalClient", "ListRegexPatternSetsCommand")
|
|
3049
|
-
.sc(ListRegexPatternSets$)
|
|
784
|
+
.sc(schemas_0.ListRegexPatternSets$)
|
|
3050
785
|
.build() {
|
|
3051
786
|
}
|
|
3052
787
|
|
|
@@ -3058,7 +793,7 @@ class ListResourcesForWebACLCommand extends smithyClient.Command
|
|
|
3058
793
|
})
|
|
3059
794
|
.s("AWSWAF_Regional_20161128", "ListResourcesForWebACL", {})
|
|
3060
795
|
.n("WAFRegionalClient", "ListResourcesForWebACLCommand")
|
|
3061
|
-
.sc(ListResourcesForWebACL$)
|
|
796
|
+
.sc(schemas_0.ListResourcesForWebACL$)
|
|
3062
797
|
.build() {
|
|
3063
798
|
}
|
|
3064
799
|
|
|
@@ -3070,7 +805,7 @@ class ListRuleGroupsCommand extends smithyClient.Command
|
|
|
3070
805
|
})
|
|
3071
806
|
.s("AWSWAF_Regional_20161128", "ListRuleGroups", {})
|
|
3072
807
|
.n("WAFRegionalClient", "ListRuleGroupsCommand")
|
|
3073
|
-
.sc(ListRuleGroups$)
|
|
808
|
+
.sc(schemas_0.ListRuleGroups$)
|
|
3074
809
|
.build() {
|
|
3075
810
|
}
|
|
3076
811
|
|
|
@@ -3082,7 +817,7 @@ class ListRulesCommand extends smithyClient.Command
|
|
|
3082
817
|
})
|
|
3083
818
|
.s("AWSWAF_Regional_20161128", "ListRules", {})
|
|
3084
819
|
.n("WAFRegionalClient", "ListRulesCommand")
|
|
3085
|
-
.sc(ListRules$)
|
|
820
|
+
.sc(schemas_0.ListRules$)
|
|
3086
821
|
.build() {
|
|
3087
822
|
}
|
|
3088
823
|
|
|
@@ -3094,7 +829,7 @@ class ListSizeConstraintSetsCommand extends smithyClient.Command
|
|
|
3094
829
|
})
|
|
3095
830
|
.s("AWSWAF_Regional_20161128", "ListSizeConstraintSets", {})
|
|
3096
831
|
.n("WAFRegionalClient", "ListSizeConstraintSetsCommand")
|
|
3097
|
-
.sc(ListSizeConstraintSets$)
|
|
832
|
+
.sc(schemas_0.ListSizeConstraintSets$)
|
|
3098
833
|
.build() {
|
|
3099
834
|
}
|
|
3100
835
|
|
|
@@ -3106,7 +841,7 @@ class ListSqlInjectionMatchSetsCommand extends smithyClient.Command
|
|
|
3106
841
|
})
|
|
3107
842
|
.s("AWSWAF_Regional_20161128", "ListSqlInjectionMatchSets", {})
|
|
3108
843
|
.n("WAFRegionalClient", "ListSqlInjectionMatchSetsCommand")
|
|
3109
|
-
.sc(ListSqlInjectionMatchSets$)
|
|
844
|
+
.sc(schemas_0.ListSqlInjectionMatchSets$)
|
|
3110
845
|
.build() {
|
|
3111
846
|
}
|
|
3112
847
|
|
|
@@ -3118,7 +853,7 @@ class ListSubscribedRuleGroupsCommand extends smithyClient.Command
|
|
|
3118
853
|
})
|
|
3119
854
|
.s("AWSWAF_Regional_20161128", "ListSubscribedRuleGroups", {})
|
|
3120
855
|
.n("WAFRegionalClient", "ListSubscribedRuleGroupsCommand")
|
|
3121
|
-
.sc(ListSubscribedRuleGroups$)
|
|
856
|
+
.sc(schemas_0.ListSubscribedRuleGroups$)
|
|
3122
857
|
.build() {
|
|
3123
858
|
}
|
|
3124
859
|
|
|
@@ -3130,7 +865,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
|
|
|
3130
865
|
})
|
|
3131
866
|
.s("AWSWAF_Regional_20161128", "ListTagsForResource", {})
|
|
3132
867
|
.n("WAFRegionalClient", "ListTagsForResourceCommand")
|
|
3133
|
-
.sc(ListTagsForResource$)
|
|
868
|
+
.sc(schemas_0.ListTagsForResource$)
|
|
3134
869
|
.build() {
|
|
3135
870
|
}
|
|
3136
871
|
|
|
@@ -3142,7 +877,7 @@ class ListWebACLsCommand extends smithyClient.Command
|
|
|
3142
877
|
})
|
|
3143
878
|
.s("AWSWAF_Regional_20161128", "ListWebACLs", {})
|
|
3144
879
|
.n("WAFRegionalClient", "ListWebACLsCommand")
|
|
3145
|
-
.sc(ListWebACLs$)
|
|
880
|
+
.sc(schemas_0.ListWebACLs$)
|
|
3146
881
|
.build() {
|
|
3147
882
|
}
|
|
3148
883
|
|
|
@@ -3154,7 +889,7 @@ class ListXssMatchSetsCommand extends smithyClient.Command
|
|
|
3154
889
|
})
|
|
3155
890
|
.s("AWSWAF_Regional_20161128", "ListXssMatchSets", {})
|
|
3156
891
|
.n("WAFRegionalClient", "ListXssMatchSetsCommand")
|
|
3157
|
-
.sc(ListXssMatchSets$)
|
|
892
|
+
.sc(schemas_0.ListXssMatchSets$)
|
|
3158
893
|
.build() {
|
|
3159
894
|
}
|
|
3160
895
|
|
|
@@ -3166,7 +901,7 @@ class PutLoggingConfigurationCommand extends smithyClient.Command
|
|
|
3166
901
|
})
|
|
3167
902
|
.s("AWSWAF_Regional_20161128", "PutLoggingConfiguration", {})
|
|
3168
903
|
.n("WAFRegionalClient", "PutLoggingConfigurationCommand")
|
|
3169
|
-
.sc(PutLoggingConfiguration$)
|
|
904
|
+
.sc(schemas_0.PutLoggingConfiguration$)
|
|
3170
905
|
.build() {
|
|
3171
906
|
}
|
|
3172
907
|
|
|
@@ -3178,7 +913,7 @@ class PutPermissionPolicyCommand extends smithyClient.Command
|
|
|
3178
913
|
})
|
|
3179
914
|
.s("AWSWAF_Regional_20161128", "PutPermissionPolicy", {})
|
|
3180
915
|
.n("WAFRegionalClient", "PutPermissionPolicyCommand")
|
|
3181
|
-
.sc(PutPermissionPolicy$)
|
|
916
|
+
.sc(schemas_0.PutPermissionPolicy$)
|
|
3182
917
|
.build() {
|
|
3183
918
|
}
|
|
3184
919
|
|
|
@@ -3190,7 +925,7 @@ class TagResourceCommand extends smithyClient.Command
|
|
|
3190
925
|
})
|
|
3191
926
|
.s("AWSWAF_Regional_20161128", "TagResource", {})
|
|
3192
927
|
.n("WAFRegionalClient", "TagResourceCommand")
|
|
3193
|
-
.sc(TagResource$)
|
|
928
|
+
.sc(schemas_0.TagResource$)
|
|
3194
929
|
.build() {
|
|
3195
930
|
}
|
|
3196
931
|
|
|
@@ -3202,7 +937,7 @@ class UntagResourceCommand extends smithyClient.Command
|
|
|
3202
937
|
})
|
|
3203
938
|
.s("AWSWAF_Regional_20161128", "UntagResource", {})
|
|
3204
939
|
.n("WAFRegionalClient", "UntagResourceCommand")
|
|
3205
|
-
.sc(UntagResource$)
|
|
940
|
+
.sc(schemas_0.UntagResource$)
|
|
3206
941
|
.build() {
|
|
3207
942
|
}
|
|
3208
943
|
|
|
@@ -3214,7 +949,7 @@ class UpdateByteMatchSetCommand extends smithyClient.Command
|
|
|
3214
949
|
})
|
|
3215
950
|
.s("AWSWAF_Regional_20161128", "UpdateByteMatchSet", {})
|
|
3216
951
|
.n("WAFRegionalClient", "UpdateByteMatchSetCommand")
|
|
3217
|
-
.sc(UpdateByteMatchSet$)
|
|
952
|
+
.sc(schemas_0.UpdateByteMatchSet$)
|
|
3218
953
|
.build() {
|
|
3219
954
|
}
|
|
3220
955
|
|
|
@@ -3226,7 +961,7 @@ class UpdateGeoMatchSetCommand extends smithyClient.Command
|
|
|
3226
961
|
})
|
|
3227
962
|
.s("AWSWAF_Regional_20161128", "UpdateGeoMatchSet", {})
|
|
3228
963
|
.n("WAFRegionalClient", "UpdateGeoMatchSetCommand")
|
|
3229
|
-
.sc(UpdateGeoMatchSet$)
|
|
964
|
+
.sc(schemas_0.UpdateGeoMatchSet$)
|
|
3230
965
|
.build() {
|
|
3231
966
|
}
|
|
3232
967
|
|
|
@@ -3238,7 +973,7 @@ class UpdateIPSetCommand extends smithyClient.Command
|
|
|
3238
973
|
})
|
|
3239
974
|
.s("AWSWAF_Regional_20161128", "UpdateIPSet", {})
|
|
3240
975
|
.n("WAFRegionalClient", "UpdateIPSetCommand")
|
|
3241
|
-
.sc(UpdateIPSet$)
|
|
976
|
+
.sc(schemas_0.UpdateIPSet$)
|
|
3242
977
|
.build() {
|
|
3243
978
|
}
|
|
3244
979
|
|
|
@@ -3250,7 +985,7 @@ class UpdateRateBasedRuleCommand extends smithyClient.Command
|
|
|
3250
985
|
})
|
|
3251
986
|
.s("AWSWAF_Regional_20161128", "UpdateRateBasedRule", {})
|
|
3252
987
|
.n("WAFRegionalClient", "UpdateRateBasedRuleCommand")
|
|
3253
|
-
.sc(UpdateRateBasedRule$)
|
|
988
|
+
.sc(schemas_0.UpdateRateBasedRule$)
|
|
3254
989
|
.build() {
|
|
3255
990
|
}
|
|
3256
991
|
|
|
@@ -3262,7 +997,7 @@ class UpdateRegexMatchSetCommand extends smithyClient.Command
|
|
|
3262
997
|
})
|
|
3263
998
|
.s("AWSWAF_Regional_20161128", "UpdateRegexMatchSet", {})
|
|
3264
999
|
.n("WAFRegionalClient", "UpdateRegexMatchSetCommand")
|
|
3265
|
-
.sc(UpdateRegexMatchSet$)
|
|
1000
|
+
.sc(schemas_0.UpdateRegexMatchSet$)
|
|
3266
1001
|
.build() {
|
|
3267
1002
|
}
|
|
3268
1003
|
|
|
@@ -3274,7 +1009,7 @@ class UpdateRegexPatternSetCommand extends smithyClient.Command
|
|
|
3274
1009
|
})
|
|
3275
1010
|
.s("AWSWAF_Regional_20161128", "UpdateRegexPatternSet", {})
|
|
3276
1011
|
.n("WAFRegionalClient", "UpdateRegexPatternSetCommand")
|
|
3277
|
-
.sc(UpdateRegexPatternSet$)
|
|
1012
|
+
.sc(schemas_0.UpdateRegexPatternSet$)
|
|
3278
1013
|
.build() {
|
|
3279
1014
|
}
|
|
3280
1015
|
|
|
@@ -3286,7 +1021,7 @@ class UpdateRuleCommand extends smithyClient.Command
|
|
|
3286
1021
|
})
|
|
3287
1022
|
.s("AWSWAF_Regional_20161128", "UpdateRule", {})
|
|
3288
1023
|
.n("WAFRegionalClient", "UpdateRuleCommand")
|
|
3289
|
-
.sc(UpdateRule$)
|
|
1024
|
+
.sc(schemas_0.UpdateRule$)
|
|
3290
1025
|
.build() {
|
|
3291
1026
|
}
|
|
3292
1027
|
|
|
@@ -3298,7 +1033,7 @@ class UpdateRuleGroupCommand extends smithyClient.Command
|
|
|
3298
1033
|
})
|
|
3299
1034
|
.s("AWSWAF_Regional_20161128", "UpdateRuleGroup", {})
|
|
3300
1035
|
.n("WAFRegionalClient", "UpdateRuleGroupCommand")
|
|
3301
|
-
.sc(UpdateRuleGroup$)
|
|
1036
|
+
.sc(schemas_0.UpdateRuleGroup$)
|
|
3302
1037
|
.build() {
|
|
3303
1038
|
}
|
|
3304
1039
|
|
|
@@ -3310,7 +1045,7 @@ class UpdateSizeConstraintSetCommand extends smithyClient.Command
|
|
|
3310
1045
|
})
|
|
3311
1046
|
.s("AWSWAF_Regional_20161128", "UpdateSizeConstraintSet", {})
|
|
3312
1047
|
.n("WAFRegionalClient", "UpdateSizeConstraintSetCommand")
|
|
3313
|
-
.sc(UpdateSizeConstraintSet$)
|
|
1048
|
+
.sc(schemas_0.UpdateSizeConstraintSet$)
|
|
3314
1049
|
.build() {
|
|
3315
1050
|
}
|
|
3316
1051
|
|
|
@@ -3322,7 +1057,7 @@ class UpdateSqlInjectionMatchSetCommand extends smithyClient.Command
|
|
|
3322
1057
|
})
|
|
3323
1058
|
.s("AWSWAF_Regional_20161128", "UpdateSqlInjectionMatchSet", {})
|
|
3324
1059
|
.n("WAFRegionalClient", "UpdateSqlInjectionMatchSetCommand")
|
|
3325
|
-
.sc(UpdateSqlInjectionMatchSet$)
|
|
1060
|
+
.sc(schemas_0.UpdateSqlInjectionMatchSet$)
|
|
3326
1061
|
.build() {
|
|
3327
1062
|
}
|
|
3328
1063
|
|
|
@@ -3334,7 +1069,7 @@ class UpdateWebACLCommand extends smithyClient.Command
|
|
|
3334
1069
|
})
|
|
3335
1070
|
.s("AWSWAF_Regional_20161128", "UpdateWebACL", {})
|
|
3336
1071
|
.n("WAFRegionalClient", "UpdateWebACLCommand")
|
|
3337
|
-
.sc(UpdateWebACL$)
|
|
1072
|
+
.sc(schemas_0.UpdateWebACL$)
|
|
3338
1073
|
.build() {
|
|
3339
1074
|
}
|
|
3340
1075
|
|
|
@@ -3346,7 +1081,7 @@ class UpdateXssMatchSetCommand extends smithyClient.Command
|
|
|
3346
1081
|
})
|
|
3347
1082
|
.s("AWSWAF_Regional_20161128", "UpdateXssMatchSet", {})
|
|
3348
1083
|
.n("WAFRegionalClient", "UpdateXssMatchSetCommand")
|
|
3349
|
-
.sc(UpdateXssMatchSet$)
|
|
1084
|
+
.sc(schemas_0.UpdateXssMatchSet$)
|
|
3350
1085
|
.build() {
|
|
3351
1086
|
}
|
|
3352
1087
|
|
|
@@ -3810,444 +1545,120 @@ Object.defineProperty(exports, "__Client", {
|
|
|
3810
1545
|
enumerable: true,
|
|
3811
1546
|
get: function () { return smithyClient.Client; }
|
|
3812
1547
|
});
|
|
3813
|
-
exports
|
|
3814
|
-
|
|
1548
|
+
Object.defineProperty(exports, "WAFRegionalServiceException", {
|
|
1549
|
+
enumerable: true,
|
|
1550
|
+
get: function () { return WAFRegionalServiceException.WAFRegionalServiceException; }
|
|
1551
|
+
});
|
|
3815
1552
|
exports.AssociateWebACLCommand = AssociateWebACLCommand;
|
|
3816
|
-
exports.AssociateWebACLRequest$ = AssociateWebACLRequest$;
|
|
3817
|
-
exports.AssociateWebACLResponse$ = AssociateWebACLResponse$;
|
|
3818
|
-
exports.ByteMatchSet$ = ByteMatchSet$;
|
|
3819
|
-
exports.ByteMatchSetSummary$ = ByteMatchSetSummary$;
|
|
3820
|
-
exports.ByteMatchSetUpdate$ = ByteMatchSetUpdate$;
|
|
3821
|
-
exports.ByteMatchTuple$ = ByteMatchTuple$;
|
|
3822
1553
|
exports.ChangeAction = ChangeAction;
|
|
3823
1554
|
exports.ChangeTokenStatus = ChangeTokenStatus;
|
|
3824
1555
|
exports.ComparisonOperator = ComparisonOperator;
|
|
3825
|
-
exports.CreateByteMatchSet$ = CreateByteMatchSet$;
|
|
3826
1556
|
exports.CreateByteMatchSetCommand = CreateByteMatchSetCommand;
|
|
3827
|
-
exports.CreateByteMatchSetRequest$ = CreateByteMatchSetRequest$;
|
|
3828
|
-
exports.CreateByteMatchSetResponse$ = CreateByteMatchSetResponse$;
|
|
3829
|
-
exports.CreateGeoMatchSet$ = CreateGeoMatchSet$;
|
|
3830
1557
|
exports.CreateGeoMatchSetCommand = CreateGeoMatchSetCommand;
|
|
3831
|
-
exports.CreateGeoMatchSetRequest$ = CreateGeoMatchSetRequest$;
|
|
3832
|
-
exports.CreateGeoMatchSetResponse$ = CreateGeoMatchSetResponse$;
|
|
3833
|
-
exports.CreateIPSet$ = CreateIPSet$;
|
|
3834
1558
|
exports.CreateIPSetCommand = CreateIPSetCommand;
|
|
3835
|
-
exports.CreateIPSetRequest$ = CreateIPSetRequest$;
|
|
3836
|
-
exports.CreateIPSetResponse$ = CreateIPSetResponse$;
|
|
3837
|
-
exports.CreateRateBasedRule$ = CreateRateBasedRule$;
|
|
3838
1559
|
exports.CreateRateBasedRuleCommand = CreateRateBasedRuleCommand;
|
|
3839
|
-
exports.CreateRateBasedRuleRequest$ = CreateRateBasedRuleRequest$;
|
|
3840
|
-
exports.CreateRateBasedRuleResponse$ = CreateRateBasedRuleResponse$;
|
|
3841
|
-
exports.CreateRegexMatchSet$ = CreateRegexMatchSet$;
|
|
3842
1560
|
exports.CreateRegexMatchSetCommand = CreateRegexMatchSetCommand;
|
|
3843
|
-
exports.CreateRegexMatchSetRequest$ = CreateRegexMatchSetRequest$;
|
|
3844
|
-
exports.CreateRegexMatchSetResponse$ = CreateRegexMatchSetResponse$;
|
|
3845
|
-
exports.CreateRegexPatternSet$ = CreateRegexPatternSet$;
|
|
3846
1561
|
exports.CreateRegexPatternSetCommand = CreateRegexPatternSetCommand;
|
|
3847
|
-
exports.CreateRegexPatternSetRequest$ = CreateRegexPatternSetRequest$;
|
|
3848
|
-
exports.CreateRegexPatternSetResponse$ = CreateRegexPatternSetResponse$;
|
|
3849
|
-
exports.CreateRule$ = CreateRule$;
|
|
3850
1562
|
exports.CreateRuleCommand = CreateRuleCommand;
|
|
3851
|
-
exports.CreateRuleGroup$ = CreateRuleGroup$;
|
|
3852
1563
|
exports.CreateRuleGroupCommand = CreateRuleGroupCommand;
|
|
3853
|
-
exports.CreateRuleGroupRequest$ = CreateRuleGroupRequest$;
|
|
3854
|
-
exports.CreateRuleGroupResponse$ = CreateRuleGroupResponse$;
|
|
3855
|
-
exports.CreateRuleRequest$ = CreateRuleRequest$;
|
|
3856
|
-
exports.CreateRuleResponse$ = CreateRuleResponse$;
|
|
3857
|
-
exports.CreateSizeConstraintSet$ = CreateSizeConstraintSet$;
|
|
3858
1564
|
exports.CreateSizeConstraintSetCommand = CreateSizeConstraintSetCommand;
|
|
3859
|
-
exports.CreateSizeConstraintSetRequest$ = CreateSizeConstraintSetRequest$;
|
|
3860
|
-
exports.CreateSizeConstraintSetResponse$ = CreateSizeConstraintSetResponse$;
|
|
3861
|
-
exports.CreateSqlInjectionMatchSet$ = CreateSqlInjectionMatchSet$;
|
|
3862
1565
|
exports.CreateSqlInjectionMatchSetCommand = CreateSqlInjectionMatchSetCommand;
|
|
3863
|
-
exports.CreateSqlInjectionMatchSetRequest$ = CreateSqlInjectionMatchSetRequest$;
|
|
3864
|
-
exports.CreateSqlInjectionMatchSetResponse$ = CreateSqlInjectionMatchSetResponse$;
|
|
3865
|
-
exports.CreateWebACL$ = CreateWebACL$;
|
|
3866
1566
|
exports.CreateWebACLCommand = CreateWebACLCommand;
|
|
3867
|
-
exports.CreateWebACLMigrationStack$ = CreateWebACLMigrationStack$;
|
|
3868
1567
|
exports.CreateWebACLMigrationStackCommand = CreateWebACLMigrationStackCommand;
|
|
3869
|
-
exports.CreateWebACLMigrationStackRequest$ = CreateWebACLMigrationStackRequest$;
|
|
3870
|
-
exports.CreateWebACLMigrationStackResponse$ = CreateWebACLMigrationStackResponse$;
|
|
3871
|
-
exports.CreateWebACLRequest$ = CreateWebACLRequest$;
|
|
3872
|
-
exports.CreateWebACLResponse$ = CreateWebACLResponse$;
|
|
3873
|
-
exports.CreateXssMatchSet$ = CreateXssMatchSet$;
|
|
3874
1568
|
exports.CreateXssMatchSetCommand = CreateXssMatchSetCommand;
|
|
3875
|
-
exports.CreateXssMatchSetRequest$ = CreateXssMatchSetRequest$;
|
|
3876
|
-
exports.CreateXssMatchSetResponse$ = CreateXssMatchSetResponse$;
|
|
3877
|
-
exports.DeleteByteMatchSet$ = DeleteByteMatchSet$;
|
|
3878
1569
|
exports.DeleteByteMatchSetCommand = DeleteByteMatchSetCommand;
|
|
3879
|
-
exports.DeleteByteMatchSetRequest$ = DeleteByteMatchSetRequest$;
|
|
3880
|
-
exports.DeleteByteMatchSetResponse$ = DeleteByteMatchSetResponse$;
|
|
3881
|
-
exports.DeleteGeoMatchSet$ = DeleteGeoMatchSet$;
|
|
3882
1570
|
exports.DeleteGeoMatchSetCommand = DeleteGeoMatchSetCommand;
|
|
3883
|
-
exports.DeleteGeoMatchSetRequest$ = DeleteGeoMatchSetRequest$;
|
|
3884
|
-
exports.DeleteGeoMatchSetResponse$ = DeleteGeoMatchSetResponse$;
|
|
3885
|
-
exports.DeleteIPSet$ = DeleteIPSet$;
|
|
3886
1571
|
exports.DeleteIPSetCommand = DeleteIPSetCommand;
|
|
3887
|
-
exports.DeleteIPSetRequest$ = DeleteIPSetRequest$;
|
|
3888
|
-
exports.DeleteIPSetResponse$ = DeleteIPSetResponse$;
|
|
3889
|
-
exports.DeleteLoggingConfiguration$ = DeleteLoggingConfiguration$;
|
|
3890
1572
|
exports.DeleteLoggingConfigurationCommand = DeleteLoggingConfigurationCommand;
|
|
3891
|
-
exports.DeleteLoggingConfigurationRequest$ = DeleteLoggingConfigurationRequest$;
|
|
3892
|
-
exports.DeleteLoggingConfigurationResponse$ = DeleteLoggingConfigurationResponse$;
|
|
3893
|
-
exports.DeletePermissionPolicy$ = DeletePermissionPolicy$;
|
|
3894
1573
|
exports.DeletePermissionPolicyCommand = DeletePermissionPolicyCommand;
|
|
3895
|
-
exports.DeletePermissionPolicyRequest$ = DeletePermissionPolicyRequest$;
|
|
3896
|
-
exports.DeletePermissionPolicyResponse$ = DeletePermissionPolicyResponse$;
|
|
3897
|
-
exports.DeleteRateBasedRule$ = DeleteRateBasedRule$;
|
|
3898
1574
|
exports.DeleteRateBasedRuleCommand = DeleteRateBasedRuleCommand;
|
|
3899
|
-
exports.DeleteRateBasedRuleRequest$ = DeleteRateBasedRuleRequest$;
|
|
3900
|
-
exports.DeleteRateBasedRuleResponse$ = DeleteRateBasedRuleResponse$;
|
|
3901
|
-
exports.DeleteRegexMatchSet$ = DeleteRegexMatchSet$;
|
|
3902
1575
|
exports.DeleteRegexMatchSetCommand = DeleteRegexMatchSetCommand;
|
|
3903
|
-
exports.DeleteRegexMatchSetRequest$ = DeleteRegexMatchSetRequest$;
|
|
3904
|
-
exports.DeleteRegexMatchSetResponse$ = DeleteRegexMatchSetResponse$;
|
|
3905
|
-
exports.DeleteRegexPatternSet$ = DeleteRegexPatternSet$;
|
|
3906
1576
|
exports.DeleteRegexPatternSetCommand = DeleteRegexPatternSetCommand;
|
|
3907
|
-
exports.DeleteRegexPatternSetRequest$ = DeleteRegexPatternSetRequest$;
|
|
3908
|
-
exports.DeleteRegexPatternSetResponse$ = DeleteRegexPatternSetResponse$;
|
|
3909
|
-
exports.DeleteRule$ = DeleteRule$;
|
|
3910
1577
|
exports.DeleteRuleCommand = DeleteRuleCommand;
|
|
3911
|
-
exports.DeleteRuleGroup$ = DeleteRuleGroup$;
|
|
3912
1578
|
exports.DeleteRuleGroupCommand = DeleteRuleGroupCommand;
|
|
3913
|
-
exports.DeleteRuleGroupRequest$ = DeleteRuleGroupRequest$;
|
|
3914
|
-
exports.DeleteRuleGroupResponse$ = DeleteRuleGroupResponse$;
|
|
3915
|
-
exports.DeleteRuleRequest$ = DeleteRuleRequest$;
|
|
3916
|
-
exports.DeleteRuleResponse$ = DeleteRuleResponse$;
|
|
3917
|
-
exports.DeleteSizeConstraintSet$ = DeleteSizeConstraintSet$;
|
|
3918
1579
|
exports.DeleteSizeConstraintSetCommand = DeleteSizeConstraintSetCommand;
|
|
3919
|
-
exports.DeleteSizeConstraintSetRequest$ = DeleteSizeConstraintSetRequest$;
|
|
3920
|
-
exports.DeleteSizeConstraintSetResponse$ = DeleteSizeConstraintSetResponse$;
|
|
3921
|
-
exports.DeleteSqlInjectionMatchSet$ = DeleteSqlInjectionMatchSet$;
|
|
3922
1580
|
exports.DeleteSqlInjectionMatchSetCommand = DeleteSqlInjectionMatchSetCommand;
|
|
3923
|
-
exports.DeleteSqlInjectionMatchSetRequest$ = DeleteSqlInjectionMatchSetRequest$;
|
|
3924
|
-
exports.DeleteSqlInjectionMatchSetResponse$ = DeleteSqlInjectionMatchSetResponse$;
|
|
3925
|
-
exports.DeleteWebACL$ = DeleteWebACL$;
|
|
3926
1581
|
exports.DeleteWebACLCommand = DeleteWebACLCommand;
|
|
3927
|
-
exports.DeleteWebACLRequest$ = DeleteWebACLRequest$;
|
|
3928
|
-
exports.DeleteWebACLResponse$ = DeleteWebACLResponse$;
|
|
3929
|
-
exports.DeleteXssMatchSet$ = DeleteXssMatchSet$;
|
|
3930
1582
|
exports.DeleteXssMatchSetCommand = DeleteXssMatchSetCommand;
|
|
3931
|
-
exports.DeleteXssMatchSetRequest$ = DeleteXssMatchSetRequest$;
|
|
3932
|
-
exports.DeleteXssMatchSetResponse$ = DeleteXssMatchSetResponse$;
|
|
3933
|
-
exports.DisassociateWebACL$ = DisassociateWebACL$;
|
|
3934
1583
|
exports.DisassociateWebACLCommand = DisassociateWebACLCommand;
|
|
3935
|
-
exports.DisassociateWebACLRequest$ = DisassociateWebACLRequest$;
|
|
3936
|
-
exports.DisassociateWebACLResponse$ = DisassociateWebACLResponse$;
|
|
3937
|
-
exports.ExcludedRule$ = ExcludedRule$;
|
|
3938
|
-
exports.FieldToMatch$ = FieldToMatch$;
|
|
3939
|
-
exports.GeoMatchConstraint$ = GeoMatchConstraint$;
|
|
3940
1584
|
exports.GeoMatchConstraintType = GeoMatchConstraintType;
|
|
3941
1585
|
exports.GeoMatchConstraintValue = GeoMatchConstraintValue;
|
|
3942
|
-
exports.GeoMatchSet$ = GeoMatchSet$;
|
|
3943
|
-
exports.GeoMatchSetSummary$ = GeoMatchSetSummary$;
|
|
3944
|
-
exports.GeoMatchSetUpdate$ = GeoMatchSetUpdate$;
|
|
3945
|
-
exports.GetByteMatchSet$ = GetByteMatchSet$;
|
|
3946
1586
|
exports.GetByteMatchSetCommand = GetByteMatchSetCommand;
|
|
3947
|
-
exports.GetByteMatchSetRequest$ = GetByteMatchSetRequest$;
|
|
3948
|
-
exports.GetByteMatchSetResponse$ = GetByteMatchSetResponse$;
|
|
3949
|
-
exports.GetChangeToken$ = GetChangeToken$;
|
|
3950
1587
|
exports.GetChangeTokenCommand = GetChangeTokenCommand;
|
|
3951
|
-
exports.GetChangeTokenRequest$ = GetChangeTokenRequest$;
|
|
3952
|
-
exports.GetChangeTokenResponse$ = GetChangeTokenResponse$;
|
|
3953
|
-
exports.GetChangeTokenStatus$ = GetChangeTokenStatus$;
|
|
3954
1588
|
exports.GetChangeTokenStatusCommand = GetChangeTokenStatusCommand;
|
|
3955
|
-
exports.GetChangeTokenStatusRequest$ = GetChangeTokenStatusRequest$;
|
|
3956
|
-
exports.GetChangeTokenStatusResponse$ = GetChangeTokenStatusResponse$;
|
|
3957
|
-
exports.GetGeoMatchSet$ = GetGeoMatchSet$;
|
|
3958
1589
|
exports.GetGeoMatchSetCommand = GetGeoMatchSetCommand;
|
|
3959
|
-
exports.GetGeoMatchSetRequest$ = GetGeoMatchSetRequest$;
|
|
3960
|
-
exports.GetGeoMatchSetResponse$ = GetGeoMatchSetResponse$;
|
|
3961
|
-
exports.GetIPSet$ = GetIPSet$;
|
|
3962
1590
|
exports.GetIPSetCommand = GetIPSetCommand;
|
|
3963
|
-
exports.GetIPSetRequest$ = GetIPSetRequest$;
|
|
3964
|
-
exports.GetIPSetResponse$ = GetIPSetResponse$;
|
|
3965
|
-
exports.GetLoggingConfiguration$ = GetLoggingConfiguration$;
|
|
3966
1591
|
exports.GetLoggingConfigurationCommand = GetLoggingConfigurationCommand;
|
|
3967
|
-
exports.GetLoggingConfigurationRequest$ = GetLoggingConfigurationRequest$;
|
|
3968
|
-
exports.GetLoggingConfigurationResponse$ = GetLoggingConfigurationResponse$;
|
|
3969
|
-
exports.GetPermissionPolicy$ = GetPermissionPolicy$;
|
|
3970
1592
|
exports.GetPermissionPolicyCommand = GetPermissionPolicyCommand;
|
|
3971
|
-
exports.GetPermissionPolicyRequest$ = GetPermissionPolicyRequest$;
|
|
3972
|
-
exports.GetPermissionPolicyResponse$ = GetPermissionPolicyResponse$;
|
|
3973
|
-
exports.GetRateBasedRule$ = GetRateBasedRule$;
|
|
3974
1593
|
exports.GetRateBasedRuleCommand = GetRateBasedRuleCommand;
|
|
3975
|
-
exports.GetRateBasedRuleManagedKeys$ = GetRateBasedRuleManagedKeys$;
|
|
3976
1594
|
exports.GetRateBasedRuleManagedKeysCommand = GetRateBasedRuleManagedKeysCommand;
|
|
3977
|
-
exports.GetRateBasedRuleManagedKeysRequest$ = GetRateBasedRuleManagedKeysRequest$;
|
|
3978
|
-
exports.GetRateBasedRuleManagedKeysResponse$ = GetRateBasedRuleManagedKeysResponse$;
|
|
3979
|
-
exports.GetRateBasedRuleRequest$ = GetRateBasedRuleRequest$;
|
|
3980
|
-
exports.GetRateBasedRuleResponse$ = GetRateBasedRuleResponse$;
|
|
3981
|
-
exports.GetRegexMatchSet$ = GetRegexMatchSet$;
|
|
3982
1595
|
exports.GetRegexMatchSetCommand = GetRegexMatchSetCommand;
|
|
3983
|
-
exports.GetRegexMatchSetRequest$ = GetRegexMatchSetRequest$;
|
|
3984
|
-
exports.GetRegexMatchSetResponse$ = GetRegexMatchSetResponse$;
|
|
3985
|
-
exports.GetRegexPatternSet$ = GetRegexPatternSet$;
|
|
3986
1596
|
exports.GetRegexPatternSetCommand = GetRegexPatternSetCommand;
|
|
3987
|
-
exports.GetRegexPatternSetRequest$ = GetRegexPatternSetRequest$;
|
|
3988
|
-
exports.GetRegexPatternSetResponse$ = GetRegexPatternSetResponse$;
|
|
3989
|
-
exports.GetRule$ = GetRule$;
|
|
3990
1597
|
exports.GetRuleCommand = GetRuleCommand;
|
|
3991
|
-
exports.GetRuleGroup$ = GetRuleGroup$;
|
|
3992
1598
|
exports.GetRuleGroupCommand = GetRuleGroupCommand;
|
|
3993
|
-
exports.GetRuleGroupRequest$ = GetRuleGroupRequest$;
|
|
3994
|
-
exports.GetRuleGroupResponse$ = GetRuleGroupResponse$;
|
|
3995
|
-
exports.GetRuleRequest$ = GetRuleRequest$;
|
|
3996
|
-
exports.GetRuleResponse$ = GetRuleResponse$;
|
|
3997
|
-
exports.GetSampledRequests$ = GetSampledRequests$;
|
|
3998
1599
|
exports.GetSampledRequestsCommand = GetSampledRequestsCommand;
|
|
3999
|
-
exports.GetSampledRequestsRequest$ = GetSampledRequestsRequest$;
|
|
4000
|
-
exports.GetSampledRequestsResponse$ = GetSampledRequestsResponse$;
|
|
4001
|
-
exports.GetSizeConstraintSet$ = GetSizeConstraintSet$;
|
|
4002
1600
|
exports.GetSizeConstraintSetCommand = GetSizeConstraintSetCommand;
|
|
4003
|
-
exports.GetSizeConstraintSetRequest$ = GetSizeConstraintSetRequest$;
|
|
4004
|
-
exports.GetSizeConstraintSetResponse$ = GetSizeConstraintSetResponse$;
|
|
4005
|
-
exports.GetSqlInjectionMatchSet$ = GetSqlInjectionMatchSet$;
|
|
4006
1601
|
exports.GetSqlInjectionMatchSetCommand = GetSqlInjectionMatchSetCommand;
|
|
4007
|
-
exports.GetSqlInjectionMatchSetRequest$ = GetSqlInjectionMatchSetRequest$;
|
|
4008
|
-
exports.GetSqlInjectionMatchSetResponse$ = GetSqlInjectionMatchSetResponse$;
|
|
4009
|
-
exports.GetWebACL$ = GetWebACL$;
|
|
4010
1602
|
exports.GetWebACLCommand = GetWebACLCommand;
|
|
4011
|
-
exports.GetWebACLForResource$ = GetWebACLForResource$;
|
|
4012
1603
|
exports.GetWebACLForResourceCommand = GetWebACLForResourceCommand;
|
|
4013
|
-
exports.GetWebACLForResourceRequest$ = GetWebACLForResourceRequest$;
|
|
4014
|
-
exports.GetWebACLForResourceResponse$ = GetWebACLForResourceResponse$;
|
|
4015
|
-
exports.GetWebACLRequest$ = GetWebACLRequest$;
|
|
4016
|
-
exports.GetWebACLResponse$ = GetWebACLResponse$;
|
|
4017
|
-
exports.GetXssMatchSet$ = GetXssMatchSet$;
|
|
4018
1604
|
exports.GetXssMatchSetCommand = GetXssMatchSetCommand;
|
|
4019
|
-
exports.GetXssMatchSetRequest$ = GetXssMatchSetRequest$;
|
|
4020
|
-
exports.GetXssMatchSetResponse$ = GetXssMatchSetResponse$;
|
|
4021
|
-
exports.HTTPHeader$ = HTTPHeader$;
|
|
4022
|
-
exports.HTTPRequest$ = HTTPRequest$;
|
|
4023
|
-
exports.IPSet$ = IPSet$;
|
|
4024
|
-
exports.IPSetDescriptor$ = IPSetDescriptor$;
|
|
4025
1605
|
exports.IPSetDescriptorType = IPSetDescriptorType;
|
|
4026
|
-
exports.IPSetSummary$ = IPSetSummary$;
|
|
4027
|
-
exports.IPSetUpdate$ = IPSetUpdate$;
|
|
4028
|
-
exports.ListActivatedRulesInRuleGroup$ = ListActivatedRulesInRuleGroup$;
|
|
4029
1606
|
exports.ListActivatedRulesInRuleGroupCommand = ListActivatedRulesInRuleGroupCommand;
|
|
4030
|
-
exports.ListActivatedRulesInRuleGroupRequest$ = ListActivatedRulesInRuleGroupRequest$;
|
|
4031
|
-
exports.ListActivatedRulesInRuleGroupResponse$ = ListActivatedRulesInRuleGroupResponse$;
|
|
4032
|
-
exports.ListByteMatchSets$ = ListByteMatchSets$;
|
|
4033
1607
|
exports.ListByteMatchSetsCommand = ListByteMatchSetsCommand;
|
|
4034
|
-
exports.ListByteMatchSetsRequest$ = ListByteMatchSetsRequest$;
|
|
4035
|
-
exports.ListByteMatchSetsResponse$ = ListByteMatchSetsResponse$;
|
|
4036
|
-
exports.ListGeoMatchSets$ = ListGeoMatchSets$;
|
|
4037
1608
|
exports.ListGeoMatchSetsCommand = ListGeoMatchSetsCommand;
|
|
4038
|
-
exports.ListGeoMatchSetsRequest$ = ListGeoMatchSetsRequest$;
|
|
4039
|
-
exports.ListGeoMatchSetsResponse$ = ListGeoMatchSetsResponse$;
|
|
4040
|
-
exports.ListIPSets$ = ListIPSets$;
|
|
4041
1609
|
exports.ListIPSetsCommand = ListIPSetsCommand;
|
|
4042
|
-
exports.ListIPSetsRequest$ = ListIPSetsRequest$;
|
|
4043
|
-
exports.ListIPSetsResponse$ = ListIPSetsResponse$;
|
|
4044
|
-
exports.ListLoggingConfigurations$ = ListLoggingConfigurations$;
|
|
4045
1610
|
exports.ListLoggingConfigurationsCommand = ListLoggingConfigurationsCommand;
|
|
4046
|
-
exports.ListLoggingConfigurationsRequest$ = ListLoggingConfigurationsRequest$;
|
|
4047
|
-
exports.ListLoggingConfigurationsResponse$ = ListLoggingConfigurationsResponse$;
|
|
4048
|
-
exports.ListRateBasedRules$ = ListRateBasedRules$;
|
|
4049
1611
|
exports.ListRateBasedRulesCommand = ListRateBasedRulesCommand;
|
|
4050
|
-
exports.ListRateBasedRulesRequest$ = ListRateBasedRulesRequest$;
|
|
4051
|
-
exports.ListRateBasedRulesResponse$ = ListRateBasedRulesResponse$;
|
|
4052
|
-
exports.ListRegexMatchSets$ = ListRegexMatchSets$;
|
|
4053
1612
|
exports.ListRegexMatchSetsCommand = ListRegexMatchSetsCommand;
|
|
4054
|
-
exports.ListRegexMatchSetsRequest$ = ListRegexMatchSetsRequest$;
|
|
4055
|
-
exports.ListRegexMatchSetsResponse$ = ListRegexMatchSetsResponse$;
|
|
4056
|
-
exports.ListRegexPatternSets$ = ListRegexPatternSets$;
|
|
4057
1613
|
exports.ListRegexPatternSetsCommand = ListRegexPatternSetsCommand;
|
|
4058
|
-
exports.ListRegexPatternSetsRequest$ = ListRegexPatternSetsRequest$;
|
|
4059
|
-
exports.ListRegexPatternSetsResponse$ = ListRegexPatternSetsResponse$;
|
|
4060
|
-
exports.ListResourcesForWebACL$ = ListResourcesForWebACL$;
|
|
4061
1614
|
exports.ListResourcesForWebACLCommand = ListResourcesForWebACLCommand;
|
|
4062
|
-
exports.ListResourcesForWebACLRequest$ = ListResourcesForWebACLRequest$;
|
|
4063
|
-
exports.ListResourcesForWebACLResponse$ = ListResourcesForWebACLResponse$;
|
|
4064
|
-
exports.ListRuleGroups$ = ListRuleGroups$;
|
|
4065
1615
|
exports.ListRuleGroupsCommand = ListRuleGroupsCommand;
|
|
4066
|
-
exports.ListRuleGroupsRequest$ = ListRuleGroupsRequest$;
|
|
4067
|
-
exports.ListRuleGroupsResponse$ = ListRuleGroupsResponse$;
|
|
4068
|
-
exports.ListRules$ = ListRules$;
|
|
4069
1616
|
exports.ListRulesCommand = ListRulesCommand;
|
|
4070
|
-
exports.ListRulesRequest$ = ListRulesRequest$;
|
|
4071
|
-
exports.ListRulesResponse$ = ListRulesResponse$;
|
|
4072
|
-
exports.ListSizeConstraintSets$ = ListSizeConstraintSets$;
|
|
4073
1617
|
exports.ListSizeConstraintSetsCommand = ListSizeConstraintSetsCommand;
|
|
4074
|
-
exports.ListSizeConstraintSetsRequest$ = ListSizeConstraintSetsRequest$;
|
|
4075
|
-
exports.ListSizeConstraintSetsResponse$ = ListSizeConstraintSetsResponse$;
|
|
4076
|
-
exports.ListSqlInjectionMatchSets$ = ListSqlInjectionMatchSets$;
|
|
4077
1618
|
exports.ListSqlInjectionMatchSetsCommand = ListSqlInjectionMatchSetsCommand;
|
|
4078
|
-
exports.ListSqlInjectionMatchSetsRequest$ = ListSqlInjectionMatchSetsRequest$;
|
|
4079
|
-
exports.ListSqlInjectionMatchSetsResponse$ = ListSqlInjectionMatchSetsResponse$;
|
|
4080
|
-
exports.ListSubscribedRuleGroups$ = ListSubscribedRuleGroups$;
|
|
4081
1619
|
exports.ListSubscribedRuleGroupsCommand = ListSubscribedRuleGroupsCommand;
|
|
4082
|
-
exports.ListSubscribedRuleGroupsRequest$ = ListSubscribedRuleGroupsRequest$;
|
|
4083
|
-
exports.ListSubscribedRuleGroupsResponse$ = ListSubscribedRuleGroupsResponse$;
|
|
4084
|
-
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
4085
1620
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
4086
|
-
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
4087
|
-
exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
|
|
4088
|
-
exports.ListWebACLs$ = ListWebACLs$;
|
|
4089
1621
|
exports.ListWebACLsCommand = ListWebACLsCommand;
|
|
4090
|
-
exports.ListWebACLsRequest$ = ListWebACLsRequest$;
|
|
4091
|
-
exports.ListWebACLsResponse$ = ListWebACLsResponse$;
|
|
4092
|
-
exports.ListXssMatchSets$ = ListXssMatchSets$;
|
|
4093
1622
|
exports.ListXssMatchSetsCommand = ListXssMatchSetsCommand;
|
|
4094
|
-
exports.ListXssMatchSetsRequest$ = ListXssMatchSetsRequest$;
|
|
4095
|
-
exports.ListXssMatchSetsResponse$ = ListXssMatchSetsResponse$;
|
|
4096
|
-
exports.LoggingConfiguration$ = LoggingConfiguration$;
|
|
4097
1623
|
exports.MatchFieldType = MatchFieldType;
|
|
4098
1624
|
exports.MigrationErrorType = MigrationErrorType;
|
|
4099
1625
|
exports.ParameterExceptionField = ParameterExceptionField;
|
|
4100
1626
|
exports.ParameterExceptionReason = ParameterExceptionReason;
|
|
4101
1627
|
exports.PositionalConstraint = PositionalConstraint;
|
|
4102
|
-
exports.Predicate$ = Predicate$;
|
|
4103
1628
|
exports.PredicateType = PredicateType;
|
|
4104
|
-
exports.PutLoggingConfiguration$ = PutLoggingConfiguration$;
|
|
4105
1629
|
exports.PutLoggingConfigurationCommand = PutLoggingConfigurationCommand;
|
|
4106
|
-
exports.PutLoggingConfigurationRequest$ = PutLoggingConfigurationRequest$;
|
|
4107
|
-
exports.PutLoggingConfigurationResponse$ = PutLoggingConfigurationResponse$;
|
|
4108
|
-
exports.PutPermissionPolicy$ = PutPermissionPolicy$;
|
|
4109
1630
|
exports.PutPermissionPolicyCommand = PutPermissionPolicyCommand;
|
|
4110
|
-
exports.PutPermissionPolicyRequest$ = PutPermissionPolicyRequest$;
|
|
4111
|
-
exports.PutPermissionPolicyResponse$ = PutPermissionPolicyResponse$;
|
|
4112
|
-
exports.RateBasedRule$ = RateBasedRule$;
|
|
4113
1631
|
exports.RateKey = RateKey;
|
|
4114
|
-
exports.RegexMatchSet$ = RegexMatchSet$;
|
|
4115
|
-
exports.RegexMatchSetSummary$ = RegexMatchSetSummary$;
|
|
4116
|
-
exports.RegexMatchSetUpdate$ = RegexMatchSetUpdate$;
|
|
4117
|
-
exports.RegexMatchTuple$ = RegexMatchTuple$;
|
|
4118
|
-
exports.RegexPatternSet$ = RegexPatternSet$;
|
|
4119
|
-
exports.RegexPatternSetSummary$ = RegexPatternSetSummary$;
|
|
4120
|
-
exports.RegexPatternSetUpdate$ = RegexPatternSetUpdate$;
|
|
4121
1632
|
exports.ResourceType = ResourceType;
|
|
4122
|
-
exports.Rule$ = Rule$;
|
|
4123
|
-
exports.RuleGroup$ = RuleGroup$;
|
|
4124
|
-
exports.RuleGroupSummary$ = RuleGroupSummary$;
|
|
4125
|
-
exports.RuleGroupUpdate$ = RuleGroupUpdate$;
|
|
4126
|
-
exports.RuleSummary$ = RuleSummary$;
|
|
4127
|
-
exports.RuleUpdate$ = RuleUpdate$;
|
|
4128
|
-
exports.SampledHTTPRequest$ = SampledHTTPRequest$;
|
|
4129
|
-
exports.SizeConstraint$ = SizeConstraint$;
|
|
4130
|
-
exports.SizeConstraintSet$ = SizeConstraintSet$;
|
|
4131
|
-
exports.SizeConstraintSetSummary$ = SizeConstraintSetSummary$;
|
|
4132
|
-
exports.SizeConstraintSetUpdate$ = SizeConstraintSetUpdate$;
|
|
4133
|
-
exports.SqlInjectionMatchSet$ = SqlInjectionMatchSet$;
|
|
4134
|
-
exports.SqlInjectionMatchSetSummary$ = SqlInjectionMatchSetSummary$;
|
|
4135
|
-
exports.SqlInjectionMatchSetUpdate$ = SqlInjectionMatchSetUpdate$;
|
|
4136
|
-
exports.SqlInjectionMatchTuple$ = SqlInjectionMatchTuple$;
|
|
4137
|
-
exports.SubscribedRuleGroupSummary$ = SubscribedRuleGroupSummary$;
|
|
4138
|
-
exports.Tag$ = Tag$;
|
|
4139
|
-
exports.TagInfoForResource$ = TagInfoForResource$;
|
|
4140
|
-
exports.TagResource$ = TagResource$;
|
|
4141
1633
|
exports.TagResourceCommand = TagResourceCommand;
|
|
4142
|
-
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
4143
|
-
exports.TagResourceResponse$ = TagResourceResponse$;
|
|
4144
1634
|
exports.TextTransformation = TextTransformation;
|
|
4145
|
-
exports.TimeWindow$ = TimeWindow$;
|
|
4146
|
-
exports.UntagResource$ = UntagResource$;
|
|
4147
1635
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
4148
|
-
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
4149
|
-
exports.UntagResourceResponse$ = UntagResourceResponse$;
|
|
4150
|
-
exports.UpdateByteMatchSet$ = UpdateByteMatchSet$;
|
|
4151
1636
|
exports.UpdateByteMatchSetCommand = UpdateByteMatchSetCommand;
|
|
4152
|
-
exports.UpdateByteMatchSetRequest$ = UpdateByteMatchSetRequest$;
|
|
4153
|
-
exports.UpdateByteMatchSetResponse$ = UpdateByteMatchSetResponse$;
|
|
4154
|
-
exports.UpdateGeoMatchSet$ = UpdateGeoMatchSet$;
|
|
4155
1637
|
exports.UpdateGeoMatchSetCommand = UpdateGeoMatchSetCommand;
|
|
4156
|
-
exports.UpdateGeoMatchSetRequest$ = UpdateGeoMatchSetRequest$;
|
|
4157
|
-
exports.UpdateGeoMatchSetResponse$ = UpdateGeoMatchSetResponse$;
|
|
4158
|
-
exports.UpdateIPSet$ = UpdateIPSet$;
|
|
4159
1638
|
exports.UpdateIPSetCommand = UpdateIPSetCommand;
|
|
4160
|
-
exports.UpdateIPSetRequest$ = UpdateIPSetRequest$;
|
|
4161
|
-
exports.UpdateIPSetResponse$ = UpdateIPSetResponse$;
|
|
4162
|
-
exports.UpdateRateBasedRule$ = UpdateRateBasedRule$;
|
|
4163
1639
|
exports.UpdateRateBasedRuleCommand = UpdateRateBasedRuleCommand;
|
|
4164
|
-
exports.UpdateRateBasedRuleRequest$ = UpdateRateBasedRuleRequest$;
|
|
4165
|
-
exports.UpdateRateBasedRuleResponse$ = UpdateRateBasedRuleResponse$;
|
|
4166
|
-
exports.UpdateRegexMatchSet$ = UpdateRegexMatchSet$;
|
|
4167
1640
|
exports.UpdateRegexMatchSetCommand = UpdateRegexMatchSetCommand;
|
|
4168
|
-
exports.UpdateRegexMatchSetRequest$ = UpdateRegexMatchSetRequest$;
|
|
4169
|
-
exports.UpdateRegexMatchSetResponse$ = UpdateRegexMatchSetResponse$;
|
|
4170
|
-
exports.UpdateRegexPatternSet$ = UpdateRegexPatternSet$;
|
|
4171
1641
|
exports.UpdateRegexPatternSetCommand = UpdateRegexPatternSetCommand;
|
|
4172
|
-
exports.UpdateRegexPatternSetRequest$ = UpdateRegexPatternSetRequest$;
|
|
4173
|
-
exports.UpdateRegexPatternSetResponse$ = UpdateRegexPatternSetResponse$;
|
|
4174
|
-
exports.UpdateRule$ = UpdateRule$;
|
|
4175
1642
|
exports.UpdateRuleCommand = UpdateRuleCommand;
|
|
4176
|
-
exports.UpdateRuleGroup$ = UpdateRuleGroup$;
|
|
4177
1643
|
exports.UpdateRuleGroupCommand = UpdateRuleGroupCommand;
|
|
4178
|
-
exports.UpdateRuleGroupRequest$ = UpdateRuleGroupRequest$;
|
|
4179
|
-
exports.UpdateRuleGroupResponse$ = UpdateRuleGroupResponse$;
|
|
4180
|
-
exports.UpdateRuleRequest$ = UpdateRuleRequest$;
|
|
4181
|
-
exports.UpdateRuleResponse$ = UpdateRuleResponse$;
|
|
4182
|
-
exports.UpdateSizeConstraintSet$ = UpdateSizeConstraintSet$;
|
|
4183
1644
|
exports.UpdateSizeConstraintSetCommand = UpdateSizeConstraintSetCommand;
|
|
4184
|
-
exports.UpdateSizeConstraintSetRequest$ = UpdateSizeConstraintSetRequest$;
|
|
4185
|
-
exports.UpdateSizeConstraintSetResponse$ = UpdateSizeConstraintSetResponse$;
|
|
4186
|
-
exports.UpdateSqlInjectionMatchSet$ = UpdateSqlInjectionMatchSet$;
|
|
4187
1645
|
exports.UpdateSqlInjectionMatchSetCommand = UpdateSqlInjectionMatchSetCommand;
|
|
4188
|
-
exports.UpdateSqlInjectionMatchSetRequest$ = UpdateSqlInjectionMatchSetRequest$;
|
|
4189
|
-
exports.UpdateSqlInjectionMatchSetResponse$ = UpdateSqlInjectionMatchSetResponse$;
|
|
4190
|
-
exports.UpdateWebACL$ = UpdateWebACL$;
|
|
4191
1646
|
exports.UpdateWebACLCommand = UpdateWebACLCommand;
|
|
4192
|
-
exports.UpdateWebACLRequest$ = UpdateWebACLRequest$;
|
|
4193
|
-
exports.UpdateWebACLResponse$ = UpdateWebACLResponse$;
|
|
4194
|
-
exports.UpdateXssMatchSet$ = UpdateXssMatchSet$;
|
|
4195
1647
|
exports.UpdateXssMatchSetCommand = UpdateXssMatchSetCommand;
|
|
4196
|
-
exports.UpdateXssMatchSetRequest$ = UpdateXssMatchSetRequest$;
|
|
4197
|
-
exports.UpdateXssMatchSetResponse$ = UpdateXssMatchSetResponse$;
|
|
4198
|
-
exports.WAFBadRequestException = WAFBadRequestException;
|
|
4199
|
-
exports.WAFBadRequestException$ = WAFBadRequestException$;
|
|
4200
|
-
exports.WAFDisallowedNameException = WAFDisallowedNameException;
|
|
4201
|
-
exports.WAFDisallowedNameException$ = WAFDisallowedNameException$;
|
|
4202
|
-
exports.WAFEntityMigrationException = WAFEntityMigrationException;
|
|
4203
|
-
exports.WAFEntityMigrationException$ = WAFEntityMigrationException$;
|
|
4204
|
-
exports.WAFInternalErrorException = WAFInternalErrorException;
|
|
4205
|
-
exports.WAFInternalErrorException$ = WAFInternalErrorException$;
|
|
4206
|
-
exports.WAFInvalidAccountException = WAFInvalidAccountException;
|
|
4207
|
-
exports.WAFInvalidAccountException$ = WAFInvalidAccountException$;
|
|
4208
|
-
exports.WAFInvalidOperationException = WAFInvalidOperationException;
|
|
4209
|
-
exports.WAFInvalidOperationException$ = WAFInvalidOperationException$;
|
|
4210
|
-
exports.WAFInvalidParameterException = WAFInvalidParameterException;
|
|
4211
|
-
exports.WAFInvalidParameterException$ = WAFInvalidParameterException$;
|
|
4212
|
-
exports.WAFInvalidPermissionPolicyException = WAFInvalidPermissionPolicyException;
|
|
4213
|
-
exports.WAFInvalidPermissionPolicyException$ = WAFInvalidPermissionPolicyException$;
|
|
4214
|
-
exports.WAFInvalidRegexPatternException = WAFInvalidRegexPatternException;
|
|
4215
|
-
exports.WAFInvalidRegexPatternException$ = WAFInvalidRegexPatternException$;
|
|
4216
|
-
exports.WAFLimitsExceededException = WAFLimitsExceededException;
|
|
4217
|
-
exports.WAFLimitsExceededException$ = WAFLimitsExceededException$;
|
|
4218
|
-
exports.WAFNonEmptyEntityException = WAFNonEmptyEntityException;
|
|
4219
|
-
exports.WAFNonEmptyEntityException$ = WAFNonEmptyEntityException$;
|
|
4220
|
-
exports.WAFNonexistentContainerException = WAFNonexistentContainerException;
|
|
4221
|
-
exports.WAFNonexistentContainerException$ = WAFNonexistentContainerException$;
|
|
4222
|
-
exports.WAFNonexistentItemException = WAFNonexistentItemException;
|
|
4223
|
-
exports.WAFNonexistentItemException$ = WAFNonexistentItemException$;
|
|
4224
|
-
exports.WAFReferencedItemException = WAFReferencedItemException;
|
|
4225
|
-
exports.WAFReferencedItemException$ = WAFReferencedItemException$;
|
|
4226
1648
|
exports.WAFRegional = WAFRegional;
|
|
4227
1649
|
exports.WAFRegionalClient = WAFRegionalClient;
|
|
4228
|
-
exports.WAFRegionalServiceException = WAFRegionalServiceException;
|
|
4229
|
-
exports.WAFRegionalServiceException$ = WAFRegionalServiceException$;
|
|
4230
|
-
exports.WAFServiceLinkedRoleErrorException = WAFServiceLinkedRoleErrorException;
|
|
4231
|
-
exports.WAFServiceLinkedRoleErrorException$ = WAFServiceLinkedRoleErrorException$;
|
|
4232
|
-
exports.WAFStaleDataException = WAFStaleDataException;
|
|
4233
|
-
exports.WAFStaleDataException$ = WAFStaleDataException$;
|
|
4234
|
-
exports.WAFSubscriptionNotFoundException = WAFSubscriptionNotFoundException;
|
|
4235
|
-
exports.WAFSubscriptionNotFoundException$ = WAFSubscriptionNotFoundException$;
|
|
4236
|
-
exports.WAFTagOperationException = WAFTagOperationException;
|
|
4237
|
-
exports.WAFTagOperationException$ = WAFTagOperationException$;
|
|
4238
|
-
exports.WAFTagOperationInternalErrorException = WAFTagOperationInternalErrorException;
|
|
4239
|
-
exports.WAFTagOperationInternalErrorException$ = WAFTagOperationInternalErrorException$;
|
|
4240
|
-
exports.WAFUnavailableEntityException = WAFUnavailableEntityException;
|
|
4241
|
-
exports.WAFUnavailableEntityException$ = WAFUnavailableEntityException$;
|
|
4242
|
-
exports.WafAction$ = WafAction$;
|
|
4243
1650
|
exports.WafActionType = WafActionType;
|
|
4244
|
-
exports.WafOverrideAction$ = WafOverrideAction$;
|
|
4245
1651
|
exports.WafOverrideActionType = WafOverrideActionType;
|
|
4246
1652
|
exports.WafRuleType = WafRuleType;
|
|
4247
|
-
|
|
4248
|
-
exports.
|
|
4249
|
-
|
|
4250
|
-
|
|
4251
|
-
|
|
4252
|
-
|
|
4253
|
-
|
|
1653
|
+
Object.keys(schemas_0).forEach(function (k) {
|
|
1654
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
1655
|
+
enumerable: true,
|
|
1656
|
+
get: function () { return schemas_0[k]; }
|
|
1657
|
+
});
|
|
1658
|
+
});
|
|
1659
|
+
Object.keys(errors).forEach(function (k) {
|
|
1660
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
1661
|
+
enumerable: true,
|
|
1662
|
+
get: function () { return errors[k]; }
|
|
1663
|
+
});
|
|
1664
|
+
});
|