@aws-sdk/client-network-firewall 3.51.0 → 3.54.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-es/index.js CHANGED
@@ -3,3 +3,4 @@ export * from "./NetworkFirewallClient";
3
3
  export * from "./commands";
4
4
  export * from "./models";
5
5
  export * from "./pagination";
6
+ export { NetworkFirewallServiceException } from "./models/NetworkFirewallServiceException";
@@ -0,0 +1,12 @@
1
+ import { __extends } from "tslib";
2
+ import { ServiceException as __ServiceException, } from "@aws-sdk/smithy-client";
3
+ var NetworkFirewallServiceException = (function (_super) {
4
+ __extends(NetworkFirewallServiceException, _super);
5
+ function NetworkFirewallServiceException(options) {
6
+ var _this = _super.call(this, options) || this;
7
+ Object.setPrototypeOf(_this, NetworkFirewallServiceException.prototype);
8
+ return _this;
9
+ }
10
+ return NetworkFirewallServiceException;
11
+ }(__ServiceException));
12
+ export { NetworkFirewallServiceException };
@@ -1,4 +1,5 @@
1
- import { __assign } from "tslib";
1
+ import { __assign, __extends } from "tslib";
2
+ import { NetworkFirewallServiceException as __BaseException } from "./NetworkFirewallServiceException";
2
3
  export var Dimension;
3
4
  (function (Dimension) {
4
5
  Dimension.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -23,6 +24,84 @@ export var AssociateFirewallPolicyResponse;
23
24
  (function (AssociateFirewallPolicyResponse) {
24
25
  AssociateFirewallPolicyResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
25
26
  })(AssociateFirewallPolicyResponse || (AssociateFirewallPolicyResponse = {}));
27
+ var InternalServerError = (function (_super) {
28
+ __extends(InternalServerError, _super);
29
+ function InternalServerError(opts) {
30
+ var _this = _super.call(this, __assign({ name: "InternalServerError", $fault: "server" }, opts)) || this;
31
+ _this.name = "InternalServerError";
32
+ _this.$fault = "server";
33
+ Object.setPrototypeOf(_this, InternalServerError.prototype);
34
+ _this.Message = opts.Message;
35
+ return _this;
36
+ }
37
+ return InternalServerError;
38
+ }(__BaseException));
39
+ export { InternalServerError };
40
+ var InvalidOperationException = (function (_super) {
41
+ __extends(InvalidOperationException, _super);
42
+ function InvalidOperationException(opts) {
43
+ var _this = _super.call(this, __assign({ name: "InvalidOperationException", $fault: "client" }, opts)) || this;
44
+ _this.name = "InvalidOperationException";
45
+ _this.$fault = "client";
46
+ Object.setPrototypeOf(_this, InvalidOperationException.prototype);
47
+ _this.Message = opts.Message;
48
+ return _this;
49
+ }
50
+ return InvalidOperationException;
51
+ }(__BaseException));
52
+ export { InvalidOperationException };
53
+ var InvalidRequestException = (function (_super) {
54
+ __extends(InvalidRequestException, _super);
55
+ function InvalidRequestException(opts) {
56
+ var _this = _super.call(this, __assign({ name: "InvalidRequestException", $fault: "client" }, opts)) || this;
57
+ _this.name = "InvalidRequestException";
58
+ _this.$fault = "client";
59
+ Object.setPrototypeOf(_this, InvalidRequestException.prototype);
60
+ _this.Message = opts.Message;
61
+ return _this;
62
+ }
63
+ return InvalidRequestException;
64
+ }(__BaseException));
65
+ export { InvalidRequestException };
66
+ var InvalidTokenException = (function (_super) {
67
+ __extends(InvalidTokenException, _super);
68
+ function InvalidTokenException(opts) {
69
+ var _this = _super.call(this, __assign({ name: "InvalidTokenException", $fault: "client" }, opts)) || this;
70
+ _this.name = "InvalidTokenException";
71
+ _this.$fault = "client";
72
+ Object.setPrototypeOf(_this, InvalidTokenException.prototype);
73
+ _this.Message = opts.Message;
74
+ return _this;
75
+ }
76
+ return InvalidTokenException;
77
+ }(__BaseException));
78
+ export { InvalidTokenException };
79
+ var ResourceNotFoundException = (function (_super) {
80
+ __extends(ResourceNotFoundException, _super);
81
+ function ResourceNotFoundException(opts) {
82
+ var _this = _super.call(this, __assign({ name: "ResourceNotFoundException", $fault: "client" }, opts)) || this;
83
+ _this.name = "ResourceNotFoundException";
84
+ _this.$fault = "client";
85
+ Object.setPrototypeOf(_this, ResourceNotFoundException.prototype);
86
+ _this.Message = opts.Message;
87
+ return _this;
88
+ }
89
+ return ResourceNotFoundException;
90
+ }(__BaseException));
91
+ export { ResourceNotFoundException };
92
+ var ThrottlingException = (function (_super) {
93
+ __extends(ThrottlingException, _super);
94
+ function ThrottlingException(opts) {
95
+ var _this = _super.call(this, __assign({ name: "ThrottlingException", $fault: "client" }, opts)) || this;
96
+ _this.name = "ThrottlingException";
97
+ _this.$fault = "client";
98
+ Object.setPrototypeOf(_this, ThrottlingException.prototype);
99
+ _this.Message = opts.Message;
100
+ return _this;
101
+ }
102
+ return ThrottlingException;
103
+ }(__BaseException));
104
+ export { ThrottlingException };
26
105
  export var SubnetMapping;
27
106
  (function (SubnetMapping) {
28
107
  SubnetMapping.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -35,6 +114,19 @@ export var AssociateSubnetsResponse;
35
114
  (function (AssociateSubnetsResponse) {
36
115
  AssociateSubnetsResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
37
116
  })(AssociateSubnetsResponse || (AssociateSubnetsResponse = {}));
117
+ var InsufficientCapacityException = (function (_super) {
118
+ __extends(InsufficientCapacityException, _super);
119
+ function InsufficientCapacityException(opts) {
120
+ var _this = _super.call(this, __assign({ name: "InsufficientCapacityException", $fault: "server" }, opts)) || this;
121
+ _this.name = "InsufficientCapacityException";
122
+ _this.$fault = "server";
123
+ Object.setPrototypeOf(_this, InsufficientCapacityException.prototype);
124
+ _this.Message = opts.Message;
125
+ return _this;
126
+ }
127
+ return InsufficientCapacityException;
128
+ }(__BaseException));
129
+ export { InsufficientCapacityException };
38
130
  export var AttachmentStatus;
39
131
  (function (AttachmentStatus) {
40
132
  AttachmentStatus["CREATING"] = "CREATING";
@@ -90,6 +182,19 @@ export var CreateFirewallResponse;
90
182
  (function (CreateFirewallResponse) {
91
183
  CreateFirewallResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
92
184
  })(CreateFirewallResponse || (CreateFirewallResponse = {}));
185
+ var LimitExceededException = (function (_super) {
186
+ __extends(LimitExceededException, _super);
187
+ function LimitExceededException(opts) {
188
+ var _this = _super.call(this, __assign({ name: "LimitExceededException", $fault: "client" }, opts)) || this;
189
+ _this.name = "LimitExceededException";
190
+ _this.$fault = "client";
191
+ Object.setPrototypeOf(_this, LimitExceededException.prototype);
192
+ _this.Message = opts.Message;
193
+ return _this;
194
+ }
195
+ return LimitExceededException;
196
+ }(__BaseException));
197
+ export { LimitExceededException };
93
198
  export var RuleOrder;
94
199
  (function (RuleOrder) {
95
200
  RuleOrder["DEFAULT_ACTION_ORDER"] = "DEFAULT_ACTION_ORDER";
@@ -283,6 +388,19 @@ export var DeleteFirewallResponse;
283
388
  (function (DeleteFirewallResponse) {
284
389
  DeleteFirewallResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
285
390
  })(DeleteFirewallResponse || (DeleteFirewallResponse = {}));
391
+ var UnsupportedOperationException = (function (_super) {
392
+ __extends(UnsupportedOperationException, _super);
393
+ function UnsupportedOperationException(opts) {
394
+ var _this = _super.call(this, __assign({ name: "UnsupportedOperationException", $fault: "client" }, opts)) || this;
395
+ _this.name = "UnsupportedOperationException";
396
+ _this.$fault = "client";
397
+ Object.setPrototypeOf(_this, UnsupportedOperationException.prototype);
398
+ _this.Message = opts.Message;
399
+ return _this;
400
+ }
401
+ return UnsupportedOperationException;
402
+ }(__BaseException));
403
+ export { UnsupportedOperationException };
286
404
  export var DeleteFirewallPolicyRequest;
287
405
  (function (DeleteFirewallPolicyRequest) {
288
406
  DeleteFirewallPolicyRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -299,6 +417,19 @@ export var DeleteResourcePolicyResponse;
299
417
  (function (DeleteResourcePolicyResponse) {
300
418
  DeleteResourcePolicyResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
301
419
  })(DeleteResourcePolicyResponse || (DeleteResourcePolicyResponse = {}));
420
+ var InvalidResourcePolicyException = (function (_super) {
421
+ __extends(InvalidResourcePolicyException, _super);
422
+ function InvalidResourcePolicyException(opts) {
423
+ var _this = _super.call(this, __assign({ name: "InvalidResourcePolicyException", $fault: "client" }, opts)) || this;
424
+ _this.name = "InvalidResourcePolicyException";
425
+ _this.$fault = "client";
426
+ Object.setPrototypeOf(_this, InvalidResourcePolicyException.prototype);
427
+ _this.Message = opts.Message;
428
+ return _this;
429
+ }
430
+ return InvalidResourcePolicyException;
431
+ }(__BaseException));
432
+ export { InvalidResourcePolicyException };
302
433
  export var DeleteRuleGroupRequest;
303
434
  (function (DeleteRuleGroupRequest) {
304
435
  DeleteRuleGroupRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -431,6 +562,19 @@ export var ListTagsForResourceResponse;
431
562
  (function (ListTagsForResourceResponse) {
432
563
  ListTagsForResourceResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
433
564
  })(ListTagsForResourceResponse || (ListTagsForResourceResponse = {}));
565
+ var LogDestinationPermissionException = (function (_super) {
566
+ __extends(LogDestinationPermissionException, _super);
567
+ function LogDestinationPermissionException(opts) {
568
+ var _this = _super.call(this, __assign({ name: "LogDestinationPermissionException", $fault: "client" }, opts)) || this;
569
+ _this.name = "LogDestinationPermissionException";
570
+ _this.$fault = "client";
571
+ Object.setPrototypeOf(_this, LogDestinationPermissionException.prototype);
572
+ _this.Message = opts.Message;
573
+ return _this;
574
+ }
575
+ return LogDestinationPermissionException;
576
+ }(__BaseException));
577
+ export { LogDestinationPermissionException };
434
578
  export var PutResourcePolicyRequest;
435
579
  (function (PutResourcePolicyRequest) {
436
580
  PutResourcePolicyRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -455,6 +599,19 @@ export var UntagResourceResponse;
455
599
  (function (UntagResourceResponse) {
456
600
  UntagResourceResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
457
601
  })(UntagResourceResponse || (UntagResourceResponse = {}));
602
+ var ResourceOwnerCheckException = (function (_super) {
603
+ __extends(ResourceOwnerCheckException, _super);
604
+ function ResourceOwnerCheckException(opts) {
605
+ var _this = _super.call(this, __assign({ name: "ResourceOwnerCheckException", $fault: "client" }, opts)) || this;
606
+ _this.name = "ResourceOwnerCheckException";
607
+ _this.$fault = "client";
608
+ Object.setPrototypeOf(_this, ResourceOwnerCheckException.prototype);
609
+ _this.Message = opts.Message;
610
+ return _this;
611
+ }
612
+ return ResourceOwnerCheckException;
613
+ }(__BaseException));
614
+ export { ResourceOwnerCheckException };
458
615
  export var UpdateFirewallDeleteProtectionRequest;
459
616
  (function (UpdateFirewallDeleteProtectionRequest) {
460
617
  UpdateFirewallDeleteProtectionRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };