@aws-sdk/client-network-firewall 3.719.0 → 3.723.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 +245 -178
- package/dist-es/NetworkFirewallClient.js +1 -0
- package/dist-es/models/models_0.js +36 -24
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +5 -3
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -7
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +20 -8
- package/package.json +43 -43
package/dist-cjs/index.js
CHANGED
|
@@ -200,7 +200,14 @@ var resolveRuntimeExtensions = /* @__PURE__ */ __name((runtimeConfig, extensions
|
|
|
200
200
|
}, "resolveRuntimeExtensions");
|
|
201
201
|
|
|
202
202
|
// src/NetworkFirewallClient.ts
|
|
203
|
-
var
|
|
203
|
+
var NetworkFirewallClient = class extends import_smithy_client.Client {
|
|
204
|
+
static {
|
|
205
|
+
__name(this, "NetworkFirewallClient");
|
|
206
|
+
}
|
|
207
|
+
/**
|
|
208
|
+
* The resolved configuration of NetworkFirewallClient class. This is resolved and normalized from the {@link NetworkFirewallClientConfig | constructor configuration interface}.
|
|
209
|
+
*/
|
|
210
|
+
config;
|
|
204
211
|
constructor(...[configuration]) {
|
|
205
212
|
const _config_0 = (0, import_runtimeConfig.getRuntimeConfig)(configuration || {});
|
|
206
213
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
@@ -210,7 +217,7 @@ var _NetworkFirewallClient = class _NetworkFirewallClient extends import_smithy_
|
|
|
210
217
|
const _config_5 = (0, import_middleware_host_header.resolveHostHeaderConfig)(_config_4);
|
|
211
218
|
const _config_6 = (0, import_middleware_endpoint.resolveEndpointConfig)(_config_5);
|
|
212
219
|
const _config_7 = (0, import_httpAuthSchemeProvider.resolveHttpAuthSchemeConfig)(_config_6);
|
|
213
|
-
const _config_8 = resolveRuntimeExtensions(_config_7,
|
|
220
|
+
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
214
221
|
super(_config_8);
|
|
215
222
|
this.config = _config_8;
|
|
216
223
|
this.middlewareStack.use((0, import_middleware_user_agent.getUserAgentPlugin)(this.config));
|
|
@@ -238,8 +245,6 @@ var _NetworkFirewallClient = class _NetworkFirewallClient extends import_smithy_
|
|
|
238
245
|
super.destroy();
|
|
239
246
|
}
|
|
240
247
|
};
|
|
241
|
-
__name(_NetworkFirewallClient, "NetworkFirewallClient");
|
|
242
|
-
var NetworkFirewallClient = _NetworkFirewallClient;
|
|
243
248
|
|
|
244
249
|
// src/NetworkFirewall.ts
|
|
245
250
|
|
|
@@ -256,7 +261,10 @@ var import_core2 = require("@aws-sdk/core");
|
|
|
256
261
|
|
|
257
262
|
// src/models/NetworkFirewallServiceException.ts
|
|
258
263
|
|
|
259
|
-
var
|
|
264
|
+
var NetworkFirewallServiceException = class _NetworkFirewallServiceException extends import_smithy_client.ServiceException {
|
|
265
|
+
static {
|
|
266
|
+
__name(this, "NetworkFirewallServiceException");
|
|
267
|
+
}
|
|
260
268
|
/**
|
|
261
269
|
* @internal
|
|
262
270
|
*/
|
|
@@ -265,15 +273,19 @@ var _NetworkFirewallServiceException = class _NetworkFirewallServiceException ex
|
|
|
265
273
|
Object.setPrototypeOf(this, _NetworkFirewallServiceException.prototype);
|
|
266
274
|
}
|
|
267
275
|
};
|
|
268
|
-
__name(_NetworkFirewallServiceException, "NetworkFirewallServiceException");
|
|
269
|
-
var NetworkFirewallServiceException = _NetworkFirewallServiceException;
|
|
270
276
|
|
|
271
277
|
// src/models/models_0.ts
|
|
272
278
|
var IdentifiedType = {
|
|
273
279
|
STATELESS_RULE_CONTAINS_TCP_FLAGS: "STATELESS_RULE_CONTAINS_TCP_FLAGS",
|
|
274
280
|
STATELESS_RULE_FORWARDING_ASYMMETRICALLY: "STATELESS_RULE_FORWARDING_ASYMMETRICALLY"
|
|
275
281
|
};
|
|
276
|
-
var
|
|
282
|
+
var InternalServerError = class _InternalServerError extends NetworkFirewallServiceException {
|
|
283
|
+
static {
|
|
284
|
+
__name(this, "InternalServerError");
|
|
285
|
+
}
|
|
286
|
+
name = "InternalServerError";
|
|
287
|
+
$fault = "server";
|
|
288
|
+
Message;
|
|
277
289
|
/**
|
|
278
290
|
* @internal
|
|
279
291
|
*/
|
|
@@ -283,15 +295,17 @@ var _InternalServerError = class _InternalServerError extends NetworkFirewallSer
|
|
|
283
295
|
$fault: "server",
|
|
284
296
|
...opts
|
|
285
297
|
});
|
|
286
|
-
this.name = "InternalServerError";
|
|
287
|
-
this.$fault = "server";
|
|
288
298
|
Object.setPrototypeOf(this, _InternalServerError.prototype);
|
|
289
299
|
this.Message = opts.Message;
|
|
290
300
|
}
|
|
291
301
|
};
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
302
|
+
var InvalidOperationException = class _InvalidOperationException extends NetworkFirewallServiceException {
|
|
303
|
+
static {
|
|
304
|
+
__name(this, "InvalidOperationException");
|
|
305
|
+
}
|
|
306
|
+
name = "InvalidOperationException";
|
|
307
|
+
$fault = "client";
|
|
308
|
+
Message;
|
|
295
309
|
/**
|
|
296
310
|
* @internal
|
|
297
311
|
*/
|
|
@@ -301,15 +315,17 @@ var _InvalidOperationException = class _InvalidOperationException extends Networ
|
|
|
301
315
|
$fault: "client",
|
|
302
316
|
...opts
|
|
303
317
|
});
|
|
304
|
-
this.name = "InvalidOperationException";
|
|
305
|
-
this.$fault = "client";
|
|
306
318
|
Object.setPrototypeOf(this, _InvalidOperationException.prototype);
|
|
307
319
|
this.Message = opts.Message;
|
|
308
320
|
}
|
|
309
321
|
};
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
322
|
+
var InvalidRequestException = class _InvalidRequestException extends NetworkFirewallServiceException {
|
|
323
|
+
static {
|
|
324
|
+
__name(this, "InvalidRequestException");
|
|
325
|
+
}
|
|
326
|
+
name = "InvalidRequestException";
|
|
327
|
+
$fault = "client";
|
|
328
|
+
Message;
|
|
313
329
|
/**
|
|
314
330
|
* @internal
|
|
315
331
|
*/
|
|
@@ -319,15 +335,17 @@ var _InvalidRequestException = class _InvalidRequestException extends NetworkFir
|
|
|
319
335
|
$fault: "client",
|
|
320
336
|
...opts
|
|
321
337
|
});
|
|
322
|
-
this.name = "InvalidRequestException";
|
|
323
|
-
this.$fault = "client";
|
|
324
338
|
Object.setPrototypeOf(this, _InvalidRequestException.prototype);
|
|
325
339
|
this.Message = opts.Message;
|
|
326
340
|
}
|
|
327
341
|
};
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
342
|
+
var InvalidTokenException = class _InvalidTokenException extends NetworkFirewallServiceException {
|
|
343
|
+
static {
|
|
344
|
+
__name(this, "InvalidTokenException");
|
|
345
|
+
}
|
|
346
|
+
name = "InvalidTokenException";
|
|
347
|
+
$fault = "client";
|
|
348
|
+
Message;
|
|
331
349
|
/**
|
|
332
350
|
* @internal
|
|
333
351
|
*/
|
|
@@ -337,15 +355,17 @@ var _InvalidTokenException = class _InvalidTokenException extends NetworkFirewal
|
|
|
337
355
|
$fault: "client",
|
|
338
356
|
...opts
|
|
339
357
|
});
|
|
340
|
-
this.name = "InvalidTokenException";
|
|
341
|
-
this.$fault = "client";
|
|
342
358
|
Object.setPrototypeOf(this, _InvalidTokenException.prototype);
|
|
343
359
|
this.Message = opts.Message;
|
|
344
360
|
}
|
|
345
361
|
};
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
362
|
+
var ResourceNotFoundException = class _ResourceNotFoundException extends NetworkFirewallServiceException {
|
|
363
|
+
static {
|
|
364
|
+
__name(this, "ResourceNotFoundException");
|
|
365
|
+
}
|
|
366
|
+
name = "ResourceNotFoundException";
|
|
367
|
+
$fault = "client";
|
|
368
|
+
Message;
|
|
349
369
|
/**
|
|
350
370
|
* @internal
|
|
351
371
|
*/
|
|
@@ -355,15 +375,17 @@ var _ResourceNotFoundException = class _ResourceNotFoundException extends Networ
|
|
|
355
375
|
$fault: "client",
|
|
356
376
|
...opts
|
|
357
377
|
});
|
|
358
|
-
this.name = "ResourceNotFoundException";
|
|
359
|
-
this.$fault = "client";
|
|
360
378
|
Object.setPrototypeOf(this, _ResourceNotFoundException.prototype);
|
|
361
379
|
this.Message = opts.Message;
|
|
362
380
|
}
|
|
363
381
|
};
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
382
|
+
var ThrottlingException = class _ThrottlingException extends NetworkFirewallServiceException {
|
|
383
|
+
static {
|
|
384
|
+
__name(this, "ThrottlingException");
|
|
385
|
+
}
|
|
386
|
+
name = "ThrottlingException";
|
|
387
|
+
$fault = "client";
|
|
388
|
+
Message;
|
|
367
389
|
/**
|
|
368
390
|
* @internal
|
|
369
391
|
*/
|
|
@@ -373,20 +395,22 @@ var _ThrottlingException = class _ThrottlingException extends NetworkFirewallSer
|
|
|
373
395
|
$fault: "client",
|
|
374
396
|
...opts
|
|
375
397
|
});
|
|
376
|
-
this.name = "ThrottlingException";
|
|
377
|
-
this.$fault = "client";
|
|
378
398
|
Object.setPrototypeOf(this, _ThrottlingException.prototype);
|
|
379
399
|
this.Message = opts.Message;
|
|
380
400
|
}
|
|
381
401
|
};
|
|
382
|
-
__name(_ThrottlingException, "ThrottlingException");
|
|
383
|
-
var ThrottlingException = _ThrottlingException;
|
|
384
402
|
var IPAddressType = {
|
|
385
403
|
DUALSTACK: "DUALSTACK",
|
|
386
404
|
IPV4: "IPV4",
|
|
387
405
|
IPV6: "IPV6"
|
|
388
406
|
};
|
|
389
|
-
var
|
|
407
|
+
var InsufficientCapacityException = class _InsufficientCapacityException extends NetworkFirewallServiceException {
|
|
408
|
+
static {
|
|
409
|
+
__name(this, "InsufficientCapacityException");
|
|
410
|
+
}
|
|
411
|
+
name = "InsufficientCapacityException";
|
|
412
|
+
$fault = "server";
|
|
413
|
+
Message;
|
|
390
414
|
/**
|
|
391
415
|
* @internal
|
|
392
416
|
*/
|
|
@@ -396,14 +420,10 @@ var _InsufficientCapacityException = class _InsufficientCapacityException extend
|
|
|
396
420
|
$fault: "server",
|
|
397
421
|
...opts
|
|
398
422
|
});
|
|
399
|
-
this.name = "InsufficientCapacityException";
|
|
400
|
-
this.$fault = "server";
|
|
401
423
|
Object.setPrototypeOf(this, _InsufficientCapacityException.prototype);
|
|
402
424
|
this.Message = opts.Message;
|
|
403
425
|
}
|
|
404
426
|
};
|
|
405
|
-
__name(_InsufficientCapacityException, "InsufficientCapacityException");
|
|
406
|
-
var InsufficientCapacityException = _InsufficientCapacityException;
|
|
407
427
|
var AttachmentStatus = {
|
|
408
428
|
CREATING: "CREATING",
|
|
409
429
|
DELETING: "DELETING",
|
|
@@ -436,7 +456,13 @@ var PerObjectSyncStatus = {
|
|
|
436
456
|
IN_SYNC: "IN_SYNC",
|
|
437
457
|
PENDING: "PENDING"
|
|
438
458
|
};
|
|
439
|
-
var
|
|
459
|
+
var LimitExceededException = class _LimitExceededException extends NetworkFirewallServiceException {
|
|
460
|
+
static {
|
|
461
|
+
__name(this, "LimitExceededException");
|
|
462
|
+
}
|
|
463
|
+
name = "LimitExceededException";
|
|
464
|
+
$fault = "client";
|
|
465
|
+
Message;
|
|
440
466
|
/**
|
|
441
467
|
* @internal
|
|
442
468
|
*/
|
|
@@ -446,14 +472,10 @@ var _LimitExceededException = class _LimitExceededException extends NetworkFirew
|
|
|
446
472
|
$fault: "client",
|
|
447
473
|
...opts
|
|
448
474
|
});
|
|
449
|
-
this.name = "LimitExceededException";
|
|
450
|
-
this.$fault = "client";
|
|
451
475
|
Object.setPrototypeOf(this, _LimitExceededException.prototype);
|
|
452
476
|
this.Message = opts.Message;
|
|
453
477
|
}
|
|
454
478
|
};
|
|
455
|
-
__name(_LimitExceededException, "LimitExceededException");
|
|
456
|
-
var LimitExceededException = _LimitExceededException;
|
|
457
479
|
var RuleOrder = {
|
|
458
480
|
DEFAULT_ACTION_ORDER: "DEFAULT_ACTION_ORDER",
|
|
459
481
|
STRICT_ORDER: "STRICT_ORDER"
|
|
@@ -524,7 +546,13 @@ var RuleGroupType = {
|
|
|
524
546
|
STATEFUL: "STATEFUL",
|
|
525
547
|
STATELESS: "STATELESS"
|
|
526
548
|
};
|
|
527
|
-
var
|
|
549
|
+
var UnsupportedOperationException = class _UnsupportedOperationException extends NetworkFirewallServiceException {
|
|
550
|
+
static {
|
|
551
|
+
__name(this, "UnsupportedOperationException");
|
|
552
|
+
}
|
|
553
|
+
name = "UnsupportedOperationException";
|
|
554
|
+
$fault = "client";
|
|
555
|
+
Message;
|
|
528
556
|
/**
|
|
529
557
|
* @internal
|
|
530
558
|
*/
|
|
@@ -534,15 +562,17 @@ var _UnsupportedOperationException = class _UnsupportedOperationException extend
|
|
|
534
562
|
$fault: "client",
|
|
535
563
|
...opts
|
|
536
564
|
});
|
|
537
|
-
this.name = "UnsupportedOperationException";
|
|
538
|
-
this.$fault = "client";
|
|
539
565
|
Object.setPrototypeOf(this, _UnsupportedOperationException.prototype);
|
|
540
566
|
this.Message = opts.Message;
|
|
541
567
|
}
|
|
542
568
|
};
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
569
|
+
var InvalidResourcePolicyException = class _InvalidResourcePolicyException extends NetworkFirewallServiceException {
|
|
570
|
+
static {
|
|
571
|
+
__name(this, "InvalidResourcePolicyException");
|
|
572
|
+
}
|
|
573
|
+
name = "InvalidResourcePolicyException";
|
|
574
|
+
$fault = "client";
|
|
575
|
+
Message;
|
|
546
576
|
/**
|
|
547
577
|
* @internal
|
|
548
578
|
*/
|
|
@@ -552,14 +582,10 @@ var _InvalidResourcePolicyException = class _InvalidResourcePolicyException exte
|
|
|
552
582
|
$fault: "client",
|
|
553
583
|
...opts
|
|
554
584
|
});
|
|
555
|
-
this.name = "InvalidResourcePolicyException";
|
|
556
|
-
this.$fault = "client";
|
|
557
585
|
Object.setPrototypeOf(this, _InvalidResourcePolicyException.prototype);
|
|
558
586
|
this.Message = opts.Message;
|
|
559
587
|
}
|
|
560
588
|
};
|
|
561
|
-
__name(_InvalidResourcePolicyException, "InvalidResourcePolicyException");
|
|
562
|
-
var InvalidResourcePolicyException = _InvalidResourcePolicyException;
|
|
563
589
|
var LogDestinationType = {
|
|
564
590
|
CLOUDWATCH_LOGS: "CloudWatchLogs",
|
|
565
591
|
KINESIS_DATA_FIREHOSE: "KinesisDataFirehose",
|
|
@@ -578,7 +604,13 @@ var ResourceManagedStatus = {
|
|
|
578
604
|
ACCOUNT: "ACCOUNT",
|
|
579
605
|
MANAGED: "MANAGED"
|
|
580
606
|
};
|
|
581
|
-
var
|
|
607
|
+
var LogDestinationPermissionException = class _LogDestinationPermissionException extends NetworkFirewallServiceException {
|
|
608
|
+
static {
|
|
609
|
+
__name(this, "LogDestinationPermissionException");
|
|
610
|
+
}
|
|
611
|
+
name = "LogDestinationPermissionException";
|
|
612
|
+
$fault = "client";
|
|
613
|
+
Message;
|
|
582
614
|
/**
|
|
583
615
|
* @internal
|
|
584
616
|
*/
|
|
@@ -588,15 +620,17 @@ var _LogDestinationPermissionException = class _LogDestinationPermissionExceptio
|
|
|
588
620
|
$fault: "client",
|
|
589
621
|
...opts
|
|
590
622
|
});
|
|
591
|
-
this.name = "LogDestinationPermissionException";
|
|
592
|
-
this.$fault = "client";
|
|
593
623
|
Object.setPrototypeOf(this, _LogDestinationPermissionException.prototype);
|
|
594
624
|
this.Message = opts.Message;
|
|
595
625
|
}
|
|
596
626
|
};
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
627
|
+
var ResourceOwnerCheckException = class _ResourceOwnerCheckException extends NetworkFirewallServiceException {
|
|
628
|
+
static {
|
|
629
|
+
__name(this, "ResourceOwnerCheckException");
|
|
630
|
+
}
|
|
631
|
+
name = "ResourceOwnerCheckException";
|
|
632
|
+
$fault = "client";
|
|
633
|
+
Message;
|
|
600
634
|
/**
|
|
601
635
|
* @internal
|
|
602
636
|
*/
|
|
@@ -606,14 +640,10 @@ var _ResourceOwnerCheckException = class _ResourceOwnerCheckException extends Ne
|
|
|
606
640
|
$fault: "client",
|
|
607
641
|
...opts
|
|
608
642
|
});
|
|
609
|
-
this.name = "ResourceOwnerCheckException";
|
|
610
|
-
this.$fault = "client";
|
|
611
643
|
Object.setPrototypeOf(this, _ResourceOwnerCheckException.prototype);
|
|
612
644
|
this.Message = opts.Message;
|
|
613
645
|
}
|
|
614
646
|
};
|
|
615
|
-
__name(_ResourceOwnerCheckException, "ResourceOwnerCheckException");
|
|
616
|
-
var ResourceOwnerCheckException = _ResourceOwnerCheckException;
|
|
617
647
|
|
|
618
648
|
// src/protocols/Aws_json1_0.ts
|
|
619
649
|
var se_AssociateFirewallPolicyCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
@@ -1656,505 +1686,541 @@ function sharedHeaders(operation) {
|
|
|
1656
1686
|
__name(sharedHeaders, "sharedHeaders");
|
|
1657
1687
|
|
|
1658
1688
|
// src/commands/AssociateFirewallPolicyCommand.ts
|
|
1659
|
-
var
|
|
1689
|
+
var AssociateFirewallPolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1660
1690
|
return [
|
|
1661
1691
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1662
1692
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1663
1693
|
];
|
|
1664
1694
|
}).s("NetworkFirewall_20201112", "AssociateFirewallPolicy", {}).n("NetworkFirewallClient", "AssociateFirewallPolicyCommand").f(void 0, void 0).ser(se_AssociateFirewallPolicyCommand).de(de_AssociateFirewallPolicyCommand).build() {
|
|
1695
|
+
static {
|
|
1696
|
+
__name(this, "AssociateFirewallPolicyCommand");
|
|
1697
|
+
}
|
|
1665
1698
|
};
|
|
1666
|
-
__name(_AssociateFirewallPolicyCommand, "AssociateFirewallPolicyCommand");
|
|
1667
|
-
var AssociateFirewallPolicyCommand = _AssociateFirewallPolicyCommand;
|
|
1668
1699
|
|
|
1669
1700
|
// src/commands/AssociateSubnetsCommand.ts
|
|
1670
1701
|
|
|
1671
1702
|
|
|
1672
1703
|
|
|
1673
|
-
var
|
|
1704
|
+
var AssociateSubnetsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1674
1705
|
return [
|
|
1675
1706
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1676
1707
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1677
1708
|
];
|
|
1678
1709
|
}).s("NetworkFirewall_20201112", "AssociateSubnets", {}).n("NetworkFirewallClient", "AssociateSubnetsCommand").f(void 0, void 0).ser(se_AssociateSubnetsCommand).de(de_AssociateSubnetsCommand).build() {
|
|
1710
|
+
static {
|
|
1711
|
+
__name(this, "AssociateSubnetsCommand");
|
|
1712
|
+
}
|
|
1679
1713
|
};
|
|
1680
|
-
__name(_AssociateSubnetsCommand, "AssociateSubnetsCommand");
|
|
1681
|
-
var AssociateSubnetsCommand = _AssociateSubnetsCommand;
|
|
1682
1714
|
|
|
1683
1715
|
// src/commands/CreateFirewallCommand.ts
|
|
1684
1716
|
|
|
1685
1717
|
|
|
1686
1718
|
|
|
1687
|
-
var
|
|
1719
|
+
var CreateFirewallCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1688
1720
|
return [
|
|
1689
1721
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1690
1722
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1691
1723
|
];
|
|
1692
1724
|
}).s("NetworkFirewall_20201112", "CreateFirewall", {}).n("NetworkFirewallClient", "CreateFirewallCommand").f(void 0, void 0).ser(se_CreateFirewallCommand).de(de_CreateFirewallCommand).build() {
|
|
1725
|
+
static {
|
|
1726
|
+
__name(this, "CreateFirewallCommand");
|
|
1727
|
+
}
|
|
1693
1728
|
};
|
|
1694
|
-
__name(_CreateFirewallCommand, "CreateFirewallCommand");
|
|
1695
|
-
var CreateFirewallCommand = _CreateFirewallCommand;
|
|
1696
1729
|
|
|
1697
1730
|
// src/commands/CreateFirewallPolicyCommand.ts
|
|
1698
1731
|
|
|
1699
1732
|
|
|
1700
1733
|
|
|
1701
|
-
var
|
|
1734
|
+
var CreateFirewallPolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1702
1735
|
return [
|
|
1703
1736
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1704
1737
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1705
1738
|
];
|
|
1706
1739
|
}).s("NetworkFirewall_20201112", "CreateFirewallPolicy", {}).n("NetworkFirewallClient", "CreateFirewallPolicyCommand").f(void 0, void 0).ser(se_CreateFirewallPolicyCommand).de(de_CreateFirewallPolicyCommand).build() {
|
|
1740
|
+
static {
|
|
1741
|
+
__name(this, "CreateFirewallPolicyCommand");
|
|
1742
|
+
}
|
|
1707
1743
|
};
|
|
1708
|
-
__name(_CreateFirewallPolicyCommand, "CreateFirewallPolicyCommand");
|
|
1709
|
-
var CreateFirewallPolicyCommand = _CreateFirewallPolicyCommand;
|
|
1710
1744
|
|
|
1711
1745
|
// src/commands/CreateRuleGroupCommand.ts
|
|
1712
1746
|
|
|
1713
1747
|
|
|
1714
1748
|
|
|
1715
|
-
var
|
|
1749
|
+
var CreateRuleGroupCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1716
1750
|
return [
|
|
1717
1751
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1718
1752
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1719
1753
|
];
|
|
1720
1754
|
}).s("NetworkFirewall_20201112", "CreateRuleGroup", {}).n("NetworkFirewallClient", "CreateRuleGroupCommand").f(void 0, void 0).ser(se_CreateRuleGroupCommand).de(de_CreateRuleGroupCommand).build() {
|
|
1755
|
+
static {
|
|
1756
|
+
__name(this, "CreateRuleGroupCommand");
|
|
1757
|
+
}
|
|
1721
1758
|
};
|
|
1722
|
-
__name(_CreateRuleGroupCommand, "CreateRuleGroupCommand");
|
|
1723
|
-
var CreateRuleGroupCommand = _CreateRuleGroupCommand;
|
|
1724
1759
|
|
|
1725
1760
|
// src/commands/CreateTLSInspectionConfigurationCommand.ts
|
|
1726
1761
|
|
|
1727
1762
|
|
|
1728
1763
|
|
|
1729
|
-
var
|
|
1764
|
+
var CreateTLSInspectionConfigurationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1730
1765
|
return [
|
|
1731
1766
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1732
1767
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1733
1768
|
];
|
|
1734
1769
|
}).s("NetworkFirewall_20201112", "CreateTLSInspectionConfiguration", {}).n("NetworkFirewallClient", "CreateTLSInspectionConfigurationCommand").f(void 0, void 0).ser(se_CreateTLSInspectionConfigurationCommand).de(de_CreateTLSInspectionConfigurationCommand).build() {
|
|
1770
|
+
static {
|
|
1771
|
+
__name(this, "CreateTLSInspectionConfigurationCommand");
|
|
1772
|
+
}
|
|
1735
1773
|
};
|
|
1736
|
-
__name(_CreateTLSInspectionConfigurationCommand, "CreateTLSInspectionConfigurationCommand");
|
|
1737
|
-
var CreateTLSInspectionConfigurationCommand = _CreateTLSInspectionConfigurationCommand;
|
|
1738
1774
|
|
|
1739
1775
|
// src/commands/DeleteFirewallCommand.ts
|
|
1740
1776
|
|
|
1741
1777
|
|
|
1742
1778
|
|
|
1743
|
-
var
|
|
1779
|
+
var DeleteFirewallCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1744
1780
|
return [
|
|
1745
1781
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1746
1782
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1747
1783
|
];
|
|
1748
1784
|
}).s("NetworkFirewall_20201112", "DeleteFirewall", {}).n("NetworkFirewallClient", "DeleteFirewallCommand").f(void 0, void 0).ser(se_DeleteFirewallCommand).de(de_DeleteFirewallCommand).build() {
|
|
1785
|
+
static {
|
|
1786
|
+
__name(this, "DeleteFirewallCommand");
|
|
1787
|
+
}
|
|
1749
1788
|
};
|
|
1750
|
-
__name(_DeleteFirewallCommand, "DeleteFirewallCommand");
|
|
1751
|
-
var DeleteFirewallCommand = _DeleteFirewallCommand;
|
|
1752
1789
|
|
|
1753
1790
|
// src/commands/DeleteFirewallPolicyCommand.ts
|
|
1754
1791
|
|
|
1755
1792
|
|
|
1756
1793
|
|
|
1757
|
-
var
|
|
1794
|
+
var DeleteFirewallPolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1758
1795
|
return [
|
|
1759
1796
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1760
1797
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1761
1798
|
];
|
|
1762
1799
|
}).s("NetworkFirewall_20201112", "DeleteFirewallPolicy", {}).n("NetworkFirewallClient", "DeleteFirewallPolicyCommand").f(void 0, void 0).ser(se_DeleteFirewallPolicyCommand).de(de_DeleteFirewallPolicyCommand).build() {
|
|
1800
|
+
static {
|
|
1801
|
+
__name(this, "DeleteFirewallPolicyCommand");
|
|
1802
|
+
}
|
|
1763
1803
|
};
|
|
1764
|
-
__name(_DeleteFirewallPolicyCommand, "DeleteFirewallPolicyCommand");
|
|
1765
|
-
var DeleteFirewallPolicyCommand = _DeleteFirewallPolicyCommand;
|
|
1766
1804
|
|
|
1767
1805
|
// src/commands/DeleteResourcePolicyCommand.ts
|
|
1768
1806
|
|
|
1769
1807
|
|
|
1770
1808
|
|
|
1771
|
-
var
|
|
1809
|
+
var DeleteResourcePolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1772
1810
|
return [
|
|
1773
1811
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1774
1812
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1775
1813
|
];
|
|
1776
1814
|
}).s("NetworkFirewall_20201112", "DeleteResourcePolicy", {}).n("NetworkFirewallClient", "DeleteResourcePolicyCommand").f(void 0, void 0).ser(se_DeleteResourcePolicyCommand).de(de_DeleteResourcePolicyCommand).build() {
|
|
1815
|
+
static {
|
|
1816
|
+
__name(this, "DeleteResourcePolicyCommand");
|
|
1817
|
+
}
|
|
1777
1818
|
};
|
|
1778
|
-
__name(_DeleteResourcePolicyCommand, "DeleteResourcePolicyCommand");
|
|
1779
|
-
var DeleteResourcePolicyCommand = _DeleteResourcePolicyCommand;
|
|
1780
1819
|
|
|
1781
1820
|
// src/commands/DeleteRuleGroupCommand.ts
|
|
1782
1821
|
|
|
1783
1822
|
|
|
1784
1823
|
|
|
1785
|
-
var
|
|
1824
|
+
var DeleteRuleGroupCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1786
1825
|
return [
|
|
1787
1826
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1788
1827
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1789
1828
|
];
|
|
1790
1829
|
}).s("NetworkFirewall_20201112", "DeleteRuleGroup", {}).n("NetworkFirewallClient", "DeleteRuleGroupCommand").f(void 0, void 0).ser(se_DeleteRuleGroupCommand).de(de_DeleteRuleGroupCommand).build() {
|
|
1830
|
+
static {
|
|
1831
|
+
__name(this, "DeleteRuleGroupCommand");
|
|
1832
|
+
}
|
|
1791
1833
|
};
|
|
1792
|
-
__name(_DeleteRuleGroupCommand, "DeleteRuleGroupCommand");
|
|
1793
|
-
var DeleteRuleGroupCommand = _DeleteRuleGroupCommand;
|
|
1794
1834
|
|
|
1795
1835
|
// src/commands/DeleteTLSInspectionConfigurationCommand.ts
|
|
1796
1836
|
|
|
1797
1837
|
|
|
1798
1838
|
|
|
1799
|
-
var
|
|
1839
|
+
var DeleteTLSInspectionConfigurationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1800
1840
|
return [
|
|
1801
1841
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1802
1842
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1803
1843
|
];
|
|
1804
1844
|
}).s("NetworkFirewall_20201112", "DeleteTLSInspectionConfiguration", {}).n("NetworkFirewallClient", "DeleteTLSInspectionConfigurationCommand").f(void 0, void 0).ser(se_DeleteTLSInspectionConfigurationCommand).de(de_DeleteTLSInspectionConfigurationCommand).build() {
|
|
1845
|
+
static {
|
|
1846
|
+
__name(this, "DeleteTLSInspectionConfigurationCommand");
|
|
1847
|
+
}
|
|
1805
1848
|
};
|
|
1806
|
-
__name(_DeleteTLSInspectionConfigurationCommand, "DeleteTLSInspectionConfigurationCommand");
|
|
1807
|
-
var DeleteTLSInspectionConfigurationCommand = _DeleteTLSInspectionConfigurationCommand;
|
|
1808
1849
|
|
|
1809
1850
|
// src/commands/DescribeFirewallCommand.ts
|
|
1810
1851
|
|
|
1811
1852
|
|
|
1812
1853
|
|
|
1813
|
-
var
|
|
1854
|
+
var DescribeFirewallCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1814
1855
|
return [
|
|
1815
1856
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1816
1857
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1817
1858
|
];
|
|
1818
1859
|
}).s("NetworkFirewall_20201112", "DescribeFirewall", {}).n("NetworkFirewallClient", "DescribeFirewallCommand").f(void 0, void 0).ser(se_DescribeFirewallCommand).de(de_DescribeFirewallCommand).build() {
|
|
1860
|
+
static {
|
|
1861
|
+
__name(this, "DescribeFirewallCommand");
|
|
1862
|
+
}
|
|
1819
1863
|
};
|
|
1820
|
-
__name(_DescribeFirewallCommand, "DescribeFirewallCommand");
|
|
1821
|
-
var DescribeFirewallCommand = _DescribeFirewallCommand;
|
|
1822
1864
|
|
|
1823
1865
|
// src/commands/DescribeFirewallPolicyCommand.ts
|
|
1824
1866
|
|
|
1825
1867
|
|
|
1826
1868
|
|
|
1827
|
-
var
|
|
1869
|
+
var DescribeFirewallPolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1828
1870
|
return [
|
|
1829
1871
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1830
1872
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1831
1873
|
];
|
|
1832
1874
|
}).s("NetworkFirewall_20201112", "DescribeFirewallPolicy", {}).n("NetworkFirewallClient", "DescribeFirewallPolicyCommand").f(void 0, void 0).ser(se_DescribeFirewallPolicyCommand).de(de_DescribeFirewallPolicyCommand).build() {
|
|
1875
|
+
static {
|
|
1876
|
+
__name(this, "DescribeFirewallPolicyCommand");
|
|
1877
|
+
}
|
|
1833
1878
|
};
|
|
1834
|
-
__name(_DescribeFirewallPolicyCommand, "DescribeFirewallPolicyCommand");
|
|
1835
|
-
var DescribeFirewallPolicyCommand = _DescribeFirewallPolicyCommand;
|
|
1836
1879
|
|
|
1837
1880
|
// src/commands/DescribeLoggingConfigurationCommand.ts
|
|
1838
1881
|
|
|
1839
1882
|
|
|
1840
1883
|
|
|
1841
|
-
var
|
|
1884
|
+
var DescribeLoggingConfigurationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1842
1885
|
return [
|
|
1843
1886
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1844
1887
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1845
1888
|
];
|
|
1846
1889
|
}).s("NetworkFirewall_20201112", "DescribeLoggingConfiguration", {}).n("NetworkFirewallClient", "DescribeLoggingConfigurationCommand").f(void 0, void 0).ser(se_DescribeLoggingConfigurationCommand).de(de_DescribeLoggingConfigurationCommand).build() {
|
|
1890
|
+
static {
|
|
1891
|
+
__name(this, "DescribeLoggingConfigurationCommand");
|
|
1892
|
+
}
|
|
1847
1893
|
};
|
|
1848
|
-
__name(_DescribeLoggingConfigurationCommand, "DescribeLoggingConfigurationCommand");
|
|
1849
|
-
var DescribeLoggingConfigurationCommand = _DescribeLoggingConfigurationCommand;
|
|
1850
1894
|
|
|
1851
1895
|
// src/commands/DescribeResourcePolicyCommand.ts
|
|
1852
1896
|
|
|
1853
1897
|
|
|
1854
1898
|
|
|
1855
|
-
var
|
|
1899
|
+
var DescribeResourcePolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1856
1900
|
return [
|
|
1857
1901
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1858
1902
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1859
1903
|
];
|
|
1860
1904
|
}).s("NetworkFirewall_20201112", "DescribeResourcePolicy", {}).n("NetworkFirewallClient", "DescribeResourcePolicyCommand").f(void 0, void 0).ser(se_DescribeResourcePolicyCommand).de(de_DescribeResourcePolicyCommand).build() {
|
|
1905
|
+
static {
|
|
1906
|
+
__name(this, "DescribeResourcePolicyCommand");
|
|
1907
|
+
}
|
|
1861
1908
|
};
|
|
1862
|
-
__name(_DescribeResourcePolicyCommand, "DescribeResourcePolicyCommand");
|
|
1863
|
-
var DescribeResourcePolicyCommand = _DescribeResourcePolicyCommand;
|
|
1864
1909
|
|
|
1865
1910
|
// src/commands/DescribeRuleGroupCommand.ts
|
|
1866
1911
|
|
|
1867
1912
|
|
|
1868
1913
|
|
|
1869
|
-
var
|
|
1914
|
+
var DescribeRuleGroupCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1870
1915
|
return [
|
|
1871
1916
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1872
1917
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1873
1918
|
];
|
|
1874
1919
|
}).s("NetworkFirewall_20201112", "DescribeRuleGroup", {}).n("NetworkFirewallClient", "DescribeRuleGroupCommand").f(void 0, void 0).ser(se_DescribeRuleGroupCommand).de(de_DescribeRuleGroupCommand).build() {
|
|
1920
|
+
static {
|
|
1921
|
+
__name(this, "DescribeRuleGroupCommand");
|
|
1922
|
+
}
|
|
1875
1923
|
};
|
|
1876
|
-
__name(_DescribeRuleGroupCommand, "DescribeRuleGroupCommand");
|
|
1877
|
-
var DescribeRuleGroupCommand = _DescribeRuleGroupCommand;
|
|
1878
1924
|
|
|
1879
1925
|
// src/commands/DescribeRuleGroupMetadataCommand.ts
|
|
1880
1926
|
|
|
1881
1927
|
|
|
1882
1928
|
|
|
1883
|
-
var
|
|
1929
|
+
var DescribeRuleGroupMetadataCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1884
1930
|
return [
|
|
1885
1931
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1886
1932
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1887
1933
|
];
|
|
1888
1934
|
}).s("NetworkFirewall_20201112", "DescribeRuleGroupMetadata", {}).n("NetworkFirewallClient", "DescribeRuleGroupMetadataCommand").f(void 0, void 0).ser(se_DescribeRuleGroupMetadataCommand).de(de_DescribeRuleGroupMetadataCommand).build() {
|
|
1935
|
+
static {
|
|
1936
|
+
__name(this, "DescribeRuleGroupMetadataCommand");
|
|
1937
|
+
}
|
|
1889
1938
|
};
|
|
1890
|
-
__name(_DescribeRuleGroupMetadataCommand, "DescribeRuleGroupMetadataCommand");
|
|
1891
|
-
var DescribeRuleGroupMetadataCommand = _DescribeRuleGroupMetadataCommand;
|
|
1892
1939
|
|
|
1893
1940
|
// src/commands/DescribeTLSInspectionConfigurationCommand.ts
|
|
1894
1941
|
|
|
1895
1942
|
|
|
1896
1943
|
|
|
1897
|
-
var
|
|
1944
|
+
var DescribeTLSInspectionConfigurationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1898
1945
|
return [
|
|
1899
1946
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1900
1947
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1901
1948
|
];
|
|
1902
1949
|
}).s("NetworkFirewall_20201112", "DescribeTLSInspectionConfiguration", {}).n("NetworkFirewallClient", "DescribeTLSInspectionConfigurationCommand").f(void 0, void 0).ser(se_DescribeTLSInspectionConfigurationCommand).de(de_DescribeTLSInspectionConfigurationCommand).build() {
|
|
1950
|
+
static {
|
|
1951
|
+
__name(this, "DescribeTLSInspectionConfigurationCommand");
|
|
1952
|
+
}
|
|
1903
1953
|
};
|
|
1904
|
-
__name(_DescribeTLSInspectionConfigurationCommand, "DescribeTLSInspectionConfigurationCommand");
|
|
1905
|
-
var DescribeTLSInspectionConfigurationCommand = _DescribeTLSInspectionConfigurationCommand;
|
|
1906
1954
|
|
|
1907
1955
|
// src/commands/DisassociateSubnetsCommand.ts
|
|
1908
1956
|
|
|
1909
1957
|
|
|
1910
1958
|
|
|
1911
|
-
var
|
|
1959
|
+
var DisassociateSubnetsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1912
1960
|
return [
|
|
1913
1961
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1914
1962
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1915
1963
|
];
|
|
1916
1964
|
}).s("NetworkFirewall_20201112", "DisassociateSubnets", {}).n("NetworkFirewallClient", "DisassociateSubnetsCommand").f(void 0, void 0).ser(se_DisassociateSubnetsCommand).de(de_DisassociateSubnetsCommand).build() {
|
|
1965
|
+
static {
|
|
1966
|
+
__name(this, "DisassociateSubnetsCommand");
|
|
1967
|
+
}
|
|
1917
1968
|
};
|
|
1918
|
-
__name(_DisassociateSubnetsCommand, "DisassociateSubnetsCommand");
|
|
1919
|
-
var DisassociateSubnetsCommand = _DisassociateSubnetsCommand;
|
|
1920
1969
|
|
|
1921
1970
|
// src/commands/ListFirewallPoliciesCommand.ts
|
|
1922
1971
|
|
|
1923
1972
|
|
|
1924
1973
|
|
|
1925
|
-
var
|
|
1974
|
+
var ListFirewallPoliciesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1926
1975
|
return [
|
|
1927
1976
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1928
1977
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1929
1978
|
];
|
|
1930
1979
|
}).s("NetworkFirewall_20201112", "ListFirewallPolicies", {}).n("NetworkFirewallClient", "ListFirewallPoliciesCommand").f(void 0, void 0).ser(se_ListFirewallPoliciesCommand).de(de_ListFirewallPoliciesCommand).build() {
|
|
1980
|
+
static {
|
|
1981
|
+
__name(this, "ListFirewallPoliciesCommand");
|
|
1982
|
+
}
|
|
1931
1983
|
};
|
|
1932
|
-
__name(_ListFirewallPoliciesCommand, "ListFirewallPoliciesCommand");
|
|
1933
|
-
var ListFirewallPoliciesCommand = _ListFirewallPoliciesCommand;
|
|
1934
1984
|
|
|
1935
1985
|
// src/commands/ListFirewallsCommand.ts
|
|
1936
1986
|
|
|
1937
1987
|
|
|
1938
1988
|
|
|
1939
|
-
var
|
|
1989
|
+
var ListFirewallsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1940
1990
|
return [
|
|
1941
1991
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1942
1992
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1943
1993
|
];
|
|
1944
1994
|
}).s("NetworkFirewall_20201112", "ListFirewalls", {}).n("NetworkFirewallClient", "ListFirewallsCommand").f(void 0, void 0).ser(se_ListFirewallsCommand).de(de_ListFirewallsCommand).build() {
|
|
1995
|
+
static {
|
|
1996
|
+
__name(this, "ListFirewallsCommand");
|
|
1997
|
+
}
|
|
1945
1998
|
};
|
|
1946
|
-
__name(_ListFirewallsCommand, "ListFirewallsCommand");
|
|
1947
|
-
var ListFirewallsCommand = _ListFirewallsCommand;
|
|
1948
1999
|
|
|
1949
2000
|
// src/commands/ListRuleGroupsCommand.ts
|
|
1950
2001
|
|
|
1951
2002
|
|
|
1952
2003
|
|
|
1953
|
-
var
|
|
2004
|
+
var ListRuleGroupsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1954
2005
|
return [
|
|
1955
2006
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1956
2007
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1957
2008
|
];
|
|
1958
2009
|
}).s("NetworkFirewall_20201112", "ListRuleGroups", {}).n("NetworkFirewallClient", "ListRuleGroupsCommand").f(void 0, void 0).ser(se_ListRuleGroupsCommand).de(de_ListRuleGroupsCommand).build() {
|
|
2010
|
+
static {
|
|
2011
|
+
__name(this, "ListRuleGroupsCommand");
|
|
2012
|
+
}
|
|
1959
2013
|
};
|
|
1960
|
-
__name(_ListRuleGroupsCommand, "ListRuleGroupsCommand");
|
|
1961
|
-
var ListRuleGroupsCommand = _ListRuleGroupsCommand;
|
|
1962
2014
|
|
|
1963
2015
|
// src/commands/ListTagsForResourceCommand.ts
|
|
1964
2016
|
|
|
1965
2017
|
|
|
1966
2018
|
|
|
1967
|
-
var
|
|
2019
|
+
var ListTagsForResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1968
2020
|
return [
|
|
1969
2021
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1970
2022
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1971
2023
|
];
|
|
1972
2024
|
}).s("NetworkFirewall_20201112", "ListTagsForResource", {}).n("NetworkFirewallClient", "ListTagsForResourceCommand").f(void 0, void 0).ser(se_ListTagsForResourceCommand).de(de_ListTagsForResourceCommand).build() {
|
|
2025
|
+
static {
|
|
2026
|
+
__name(this, "ListTagsForResourceCommand");
|
|
2027
|
+
}
|
|
1973
2028
|
};
|
|
1974
|
-
__name(_ListTagsForResourceCommand, "ListTagsForResourceCommand");
|
|
1975
|
-
var ListTagsForResourceCommand = _ListTagsForResourceCommand;
|
|
1976
2029
|
|
|
1977
2030
|
// src/commands/ListTLSInspectionConfigurationsCommand.ts
|
|
1978
2031
|
|
|
1979
2032
|
|
|
1980
2033
|
|
|
1981
|
-
var
|
|
2034
|
+
var ListTLSInspectionConfigurationsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1982
2035
|
return [
|
|
1983
2036
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1984
2037
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1985
2038
|
];
|
|
1986
2039
|
}).s("NetworkFirewall_20201112", "ListTLSInspectionConfigurations", {}).n("NetworkFirewallClient", "ListTLSInspectionConfigurationsCommand").f(void 0, void 0).ser(se_ListTLSInspectionConfigurationsCommand).de(de_ListTLSInspectionConfigurationsCommand).build() {
|
|
2040
|
+
static {
|
|
2041
|
+
__name(this, "ListTLSInspectionConfigurationsCommand");
|
|
2042
|
+
}
|
|
1987
2043
|
};
|
|
1988
|
-
__name(_ListTLSInspectionConfigurationsCommand, "ListTLSInspectionConfigurationsCommand");
|
|
1989
|
-
var ListTLSInspectionConfigurationsCommand = _ListTLSInspectionConfigurationsCommand;
|
|
1990
2044
|
|
|
1991
2045
|
// src/commands/PutResourcePolicyCommand.ts
|
|
1992
2046
|
|
|
1993
2047
|
|
|
1994
2048
|
|
|
1995
|
-
var
|
|
2049
|
+
var PutResourcePolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1996
2050
|
return [
|
|
1997
2051
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1998
2052
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1999
2053
|
];
|
|
2000
2054
|
}).s("NetworkFirewall_20201112", "PutResourcePolicy", {}).n("NetworkFirewallClient", "PutResourcePolicyCommand").f(void 0, void 0).ser(se_PutResourcePolicyCommand).de(de_PutResourcePolicyCommand).build() {
|
|
2055
|
+
static {
|
|
2056
|
+
__name(this, "PutResourcePolicyCommand");
|
|
2057
|
+
}
|
|
2001
2058
|
};
|
|
2002
|
-
__name(_PutResourcePolicyCommand, "PutResourcePolicyCommand");
|
|
2003
|
-
var PutResourcePolicyCommand = _PutResourcePolicyCommand;
|
|
2004
2059
|
|
|
2005
2060
|
// src/commands/TagResourceCommand.ts
|
|
2006
2061
|
|
|
2007
2062
|
|
|
2008
2063
|
|
|
2009
|
-
var
|
|
2064
|
+
var TagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2010
2065
|
return [
|
|
2011
2066
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2012
2067
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2013
2068
|
];
|
|
2014
2069
|
}).s("NetworkFirewall_20201112", "TagResource", {}).n("NetworkFirewallClient", "TagResourceCommand").f(void 0, void 0).ser(se_TagResourceCommand).de(de_TagResourceCommand).build() {
|
|
2070
|
+
static {
|
|
2071
|
+
__name(this, "TagResourceCommand");
|
|
2072
|
+
}
|
|
2015
2073
|
};
|
|
2016
|
-
__name(_TagResourceCommand, "TagResourceCommand");
|
|
2017
|
-
var TagResourceCommand = _TagResourceCommand;
|
|
2018
2074
|
|
|
2019
2075
|
// src/commands/UntagResourceCommand.ts
|
|
2020
2076
|
|
|
2021
2077
|
|
|
2022
2078
|
|
|
2023
|
-
var
|
|
2079
|
+
var UntagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2024
2080
|
return [
|
|
2025
2081
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2026
2082
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2027
2083
|
];
|
|
2028
2084
|
}).s("NetworkFirewall_20201112", "UntagResource", {}).n("NetworkFirewallClient", "UntagResourceCommand").f(void 0, void 0).ser(se_UntagResourceCommand).de(de_UntagResourceCommand).build() {
|
|
2085
|
+
static {
|
|
2086
|
+
__name(this, "UntagResourceCommand");
|
|
2087
|
+
}
|
|
2029
2088
|
};
|
|
2030
|
-
__name(_UntagResourceCommand, "UntagResourceCommand");
|
|
2031
|
-
var UntagResourceCommand = _UntagResourceCommand;
|
|
2032
2089
|
|
|
2033
2090
|
// src/commands/UpdateFirewallDeleteProtectionCommand.ts
|
|
2034
2091
|
|
|
2035
2092
|
|
|
2036
2093
|
|
|
2037
|
-
var
|
|
2094
|
+
var UpdateFirewallDeleteProtectionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2038
2095
|
return [
|
|
2039
2096
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2040
2097
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2041
2098
|
];
|
|
2042
2099
|
}).s("NetworkFirewall_20201112", "UpdateFirewallDeleteProtection", {}).n("NetworkFirewallClient", "UpdateFirewallDeleteProtectionCommand").f(void 0, void 0).ser(se_UpdateFirewallDeleteProtectionCommand).de(de_UpdateFirewallDeleteProtectionCommand).build() {
|
|
2100
|
+
static {
|
|
2101
|
+
__name(this, "UpdateFirewallDeleteProtectionCommand");
|
|
2102
|
+
}
|
|
2043
2103
|
};
|
|
2044
|
-
__name(_UpdateFirewallDeleteProtectionCommand, "UpdateFirewallDeleteProtectionCommand");
|
|
2045
|
-
var UpdateFirewallDeleteProtectionCommand = _UpdateFirewallDeleteProtectionCommand;
|
|
2046
2104
|
|
|
2047
2105
|
// src/commands/UpdateFirewallDescriptionCommand.ts
|
|
2048
2106
|
|
|
2049
2107
|
|
|
2050
2108
|
|
|
2051
|
-
var
|
|
2109
|
+
var UpdateFirewallDescriptionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2052
2110
|
return [
|
|
2053
2111
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2054
2112
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2055
2113
|
];
|
|
2056
2114
|
}).s("NetworkFirewall_20201112", "UpdateFirewallDescription", {}).n("NetworkFirewallClient", "UpdateFirewallDescriptionCommand").f(void 0, void 0).ser(se_UpdateFirewallDescriptionCommand).de(de_UpdateFirewallDescriptionCommand).build() {
|
|
2115
|
+
static {
|
|
2116
|
+
__name(this, "UpdateFirewallDescriptionCommand");
|
|
2117
|
+
}
|
|
2057
2118
|
};
|
|
2058
|
-
__name(_UpdateFirewallDescriptionCommand, "UpdateFirewallDescriptionCommand");
|
|
2059
|
-
var UpdateFirewallDescriptionCommand = _UpdateFirewallDescriptionCommand;
|
|
2060
2119
|
|
|
2061
2120
|
// src/commands/UpdateFirewallEncryptionConfigurationCommand.ts
|
|
2062
2121
|
|
|
2063
2122
|
|
|
2064
2123
|
|
|
2065
|
-
var
|
|
2124
|
+
var UpdateFirewallEncryptionConfigurationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2066
2125
|
return [
|
|
2067
2126
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2068
2127
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2069
2128
|
];
|
|
2070
2129
|
}).s("NetworkFirewall_20201112", "UpdateFirewallEncryptionConfiguration", {}).n("NetworkFirewallClient", "UpdateFirewallEncryptionConfigurationCommand").f(void 0, void 0).ser(se_UpdateFirewallEncryptionConfigurationCommand).de(de_UpdateFirewallEncryptionConfigurationCommand).build() {
|
|
2130
|
+
static {
|
|
2131
|
+
__name(this, "UpdateFirewallEncryptionConfigurationCommand");
|
|
2132
|
+
}
|
|
2071
2133
|
};
|
|
2072
|
-
__name(_UpdateFirewallEncryptionConfigurationCommand, "UpdateFirewallEncryptionConfigurationCommand");
|
|
2073
|
-
var UpdateFirewallEncryptionConfigurationCommand = _UpdateFirewallEncryptionConfigurationCommand;
|
|
2074
2134
|
|
|
2075
2135
|
// src/commands/UpdateFirewallPolicyChangeProtectionCommand.ts
|
|
2076
2136
|
|
|
2077
2137
|
|
|
2078
2138
|
|
|
2079
|
-
var
|
|
2139
|
+
var UpdateFirewallPolicyChangeProtectionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2080
2140
|
return [
|
|
2081
2141
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2082
2142
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2083
2143
|
];
|
|
2084
2144
|
}).s("NetworkFirewall_20201112", "UpdateFirewallPolicyChangeProtection", {}).n("NetworkFirewallClient", "UpdateFirewallPolicyChangeProtectionCommand").f(void 0, void 0).ser(se_UpdateFirewallPolicyChangeProtectionCommand).de(de_UpdateFirewallPolicyChangeProtectionCommand).build() {
|
|
2145
|
+
static {
|
|
2146
|
+
__name(this, "UpdateFirewallPolicyChangeProtectionCommand");
|
|
2147
|
+
}
|
|
2085
2148
|
};
|
|
2086
|
-
__name(_UpdateFirewallPolicyChangeProtectionCommand, "UpdateFirewallPolicyChangeProtectionCommand");
|
|
2087
|
-
var UpdateFirewallPolicyChangeProtectionCommand = _UpdateFirewallPolicyChangeProtectionCommand;
|
|
2088
2149
|
|
|
2089
2150
|
// src/commands/UpdateFirewallPolicyCommand.ts
|
|
2090
2151
|
|
|
2091
2152
|
|
|
2092
2153
|
|
|
2093
|
-
var
|
|
2154
|
+
var UpdateFirewallPolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2094
2155
|
return [
|
|
2095
2156
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2096
2157
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2097
2158
|
];
|
|
2098
2159
|
}).s("NetworkFirewall_20201112", "UpdateFirewallPolicy", {}).n("NetworkFirewallClient", "UpdateFirewallPolicyCommand").f(void 0, void 0).ser(se_UpdateFirewallPolicyCommand).de(de_UpdateFirewallPolicyCommand).build() {
|
|
2160
|
+
static {
|
|
2161
|
+
__name(this, "UpdateFirewallPolicyCommand");
|
|
2162
|
+
}
|
|
2099
2163
|
};
|
|
2100
|
-
__name(_UpdateFirewallPolicyCommand, "UpdateFirewallPolicyCommand");
|
|
2101
|
-
var UpdateFirewallPolicyCommand = _UpdateFirewallPolicyCommand;
|
|
2102
2164
|
|
|
2103
2165
|
// src/commands/UpdateLoggingConfigurationCommand.ts
|
|
2104
2166
|
|
|
2105
2167
|
|
|
2106
2168
|
|
|
2107
|
-
var
|
|
2169
|
+
var UpdateLoggingConfigurationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2108
2170
|
return [
|
|
2109
2171
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2110
2172
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2111
2173
|
];
|
|
2112
2174
|
}).s("NetworkFirewall_20201112", "UpdateLoggingConfiguration", {}).n("NetworkFirewallClient", "UpdateLoggingConfigurationCommand").f(void 0, void 0).ser(se_UpdateLoggingConfigurationCommand).de(de_UpdateLoggingConfigurationCommand).build() {
|
|
2175
|
+
static {
|
|
2176
|
+
__name(this, "UpdateLoggingConfigurationCommand");
|
|
2177
|
+
}
|
|
2113
2178
|
};
|
|
2114
|
-
__name(_UpdateLoggingConfigurationCommand, "UpdateLoggingConfigurationCommand");
|
|
2115
|
-
var UpdateLoggingConfigurationCommand = _UpdateLoggingConfigurationCommand;
|
|
2116
2179
|
|
|
2117
2180
|
// src/commands/UpdateRuleGroupCommand.ts
|
|
2118
2181
|
|
|
2119
2182
|
|
|
2120
2183
|
|
|
2121
|
-
var
|
|
2184
|
+
var UpdateRuleGroupCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2122
2185
|
return [
|
|
2123
2186
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2124
2187
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2125
2188
|
];
|
|
2126
2189
|
}).s("NetworkFirewall_20201112", "UpdateRuleGroup", {}).n("NetworkFirewallClient", "UpdateRuleGroupCommand").f(void 0, void 0).ser(se_UpdateRuleGroupCommand).de(de_UpdateRuleGroupCommand).build() {
|
|
2190
|
+
static {
|
|
2191
|
+
__name(this, "UpdateRuleGroupCommand");
|
|
2192
|
+
}
|
|
2127
2193
|
};
|
|
2128
|
-
__name(_UpdateRuleGroupCommand, "UpdateRuleGroupCommand");
|
|
2129
|
-
var UpdateRuleGroupCommand = _UpdateRuleGroupCommand;
|
|
2130
2194
|
|
|
2131
2195
|
// src/commands/UpdateSubnetChangeProtectionCommand.ts
|
|
2132
2196
|
|
|
2133
2197
|
|
|
2134
2198
|
|
|
2135
|
-
var
|
|
2199
|
+
var UpdateSubnetChangeProtectionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2136
2200
|
return [
|
|
2137
2201
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2138
2202
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2139
2203
|
];
|
|
2140
2204
|
}).s("NetworkFirewall_20201112", "UpdateSubnetChangeProtection", {}).n("NetworkFirewallClient", "UpdateSubnetChangeProtectionCommand").f(void 0, void 0).ser(se_UpdateSubnetChangeProtectionCommand).de(de_UpdateSubnetChangeProtectionCommand).build() {
|
|
2205
|
+
static {
|
|
2206
|
+
__name(this, "UpdateSubnetChangeProtectionCommand");
|
|
2207
|
+
}
|
|
2141
2208
|
};
|
|
2142
|
-
__name(_UpdateSubnetChangeProtectionCommand, "UpdateSubnetChangeProtectionCommand");
|
|
2143
|
-
var UpdateSubnetChangeProtectionCommand = _UpdateSubnetChangeProtectionCommand;
|
|
2144
2209
|
|
|
2145
2210
|
// src/commands/UpdateTLSInspectionConfigurationCommand.ts
|
|
2146
2211
|
|
|
2147
2212
|
|
|
2148
2213
|
|
|
2149
|
-
var
|
|
2214
|
+
var UpdateTLSInspectionConfigurationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2150
2215
|
return [
|
|
2151
2216
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2152
2217
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2153
2218
|
];
|
|
2154
2219
|
}).s("NetworkFirewall_20201112", "UpdateTLSInspectionConfiguration", {}).n("NetworkFirewallClient", "UpdateTLSInspectionConfigurationCommand").f(void 0, void 0).ser(se_UpdateTLSInspectionConfigurationCommand).de(de_UpdateTLSInspectionConfigurationCommand).build() {
|
|
2220
|
+
static {
|
|
2221
|
+
__name(this, "UpdateTLSInspectionConfigurationCommand");
|
|
2222
|
+
}
|
|
2155
2223
|
};
|
|
2156
|
-
__name(_UpdateTLSInspectionConfigurationCommand, "UpdateTLSInspectionConfigurationCommand");
|
|
2157
|
-
var UpdateTLSInspectionConfigurationCommand = _UpdateTLSInspectionConfigurationCommand;
|
|
2158
2224
|
|
|
2159
2225
|
// src/NetworkFirewall.ts
|
|
2160
2226
|
var commands = {
|
|
@@ -2195,10 +2261,11 @@ var commands = {
|
|
|
2195
2261
|
UpdateSubnetChangeProtectionCommand,
|
|
2196
2262
|
UpdateTLSInspectionConfigurationCommand
|
|
2197
2263
|
};
|
|
2198
|
-
var
|
|
2264
|
+
var NetworkFirewall = class extends NetworkFirewallClient {
|
|
2265
|
+
static {
|
|
2266
|
+
__name(this, "NetworkFirewall");
|
|
2267
|
+
}
|
|
2199
2268
|
};
|
|
2200
|
-
__name(_NetworkFirewall, "NetworkFirewall");
|
|
2201
|
-
var NetworkFirewall = _NetworkFirewall;
|
|
2202
2269
|
(0, import_smithy_client.createAggregatedClient)(commands, NetworkFirewall);
|
|
2203
2270
|
|
|
2204
2271
|
// src/pagination/ListFirewallPoliciesPaginator.ts
|