@aws-sdk/client-waf 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/CHANGELOG.md +27 -0
- package/dist-cjs/index.js +3 -0
- package/dist-cjs/models/WAFServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +258 -5
- package/dist-cjs/protocols/Aws_json1_1.js +802 -3145
- package/dist-es/index.js +1 -0
- package/dist-es/models/WAFServiceException.js +12 -0
- package/dist-es/models/models_0.js +235 -1
- package/dist-es/protocols/Aws_json1_1.js +1794 -3416
- package/dist-types/WAFClient.d.ts +2 -2
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/WAFServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +135 -75
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/WAFClient.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/WAFServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +97 -75
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -1
- package/package.json +33 -33
package/dist-es/index.js
CHANGED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { __extends } from "tslib";
|
|
2
|
+
import { ServiceException as __ServiceException, } from "@aws-sdk/smithy-client";
|
|
3
|
+
var WAFServiceException = (function (_super) {
|
|
4
|
+
__extends(WAFServiceException, _super);
|
|
5
|
+
function WAFServiceException(options) {
|
|
6
|
+
var _this = _super.call(this, options) || this;
|
|
7
|
+
Object.setPrototypeOf(_this, WAFServiceException.prototype);
|
|
8
|
+
return _this;
|
|
9
|
+
}
|
|
10
|
+
return WAFServiceException;
|
|
11
|
+
}(__ServiceException));
|
|
12
|
+
export { WAFServiceException };
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import { __assign } from "tslib";
|
|
1
|
+
import { __assign, __extends } from "tslib";
|
|
2
|
+
import { WAFServiceException as __BaseException } from "./WAFServiceException";
|
|
2
3
|
export var WafActionType;
|
|
3
4
|
(function (WafActionType) {
|
|
4
5
|
WafActionType["ALLOW"] = "ALLOW";
|
|
@@ -79,6 +80,42 @@ export var CreateByteMatchSetResponse;
|
|
|
79
80
|
(function (CreateByteMatchSetResponse) {
|
|
80
81
|
CreateByteMatchSetResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
81
82
|
})(CreateByteMatchSetResponse || (CreateByteMatchSetResponse = {}));
|
|
83
|
+
var WAFDisallowedNameException = (function (_super) {
|
|
84
|
+
__extends(WAFDisallowedNameException, _super);
|
|
85
|
+
function WAFDisallowedNameException(opts) {
|
|
86
|
+
var _this = _super.call(this, __assign({ name: "WAFDisallowedNameException", $fault: "client" }, opts)) || this;
|
|
87
|
+
_this.name = "WAFDisallowedNameException";
|
|
88
|
+
_this.$fault = "client";
|
|
89
|
+
Object.setPrototypeOf(_this, WAFDisallowedNameException.prototype);
|
|
90
|
+
return _this;
|
|
91
|
+
}
|
|
92
|
+
return WAFDisallowedNameException;
|
|
93
|
+
}(__BaseException));
|
|
94
|
+
export { WAFDisallowedNameException };
|
|
95
|
+
var WAFInternalErrorException = (function (_super) {
|
|
96
|
+
__extends(WAFInternalErrorException, _super);
|
|
97
|
+
function WAFInternalErrorException(opts) {
|
|
98
|
+
var _this = _super.call(this, __assign({ name: "WAFInternalErrorException", $fault: "server" }, opts)) || this;
|
|
99
|
+
_this.name = "WAFInternalErrorException";
|
|
100
|
+
_this.$fault = "server";
|
|
101
|
+
Object.setPrototypeOf(_this, WAFInternalErrorException.prototype);
|
|
102
|
+
return _this;
|
|
103
|
+
}
|
|
104
|
+
return WAFInternalErrorException;
|
|
105
|
+
}(__BaseException));
|
|
106
|
+
export { WAFInternalErrorException };
|
|
107
|
+
var WAFInvalidAccountException = (function (_super) {
|
|
108
|
+
__extends(WAFInvalidAccountException, _super);
|
|
109
|
+
function WAFInvalidAccountException(opts) {
|
|
110
|
+
var _this = _super.call(this, __assign({ name: "WAFInvalidAccountException", $fault: "client" }, opts)) || this;
|
|
111
|
+
_this.name = "WAFInvalidAccountException";
|
|
112
|
+
_this.$fault = "client";
|
|
113
|
+
Object.setPrototypeOf(_this, WAFInvalidAccountException.prototype);
|
|
114
|
+
return _this;
|
|
115
|
+
}
|
|
116
|
+
return WAFInvalidAccountException;
|
|
117
|
+
}(__BaseException));
|
|
118
|
+
export { WAFInvalidAccountException };
|
|
82
119
|
export var ParameterExceptionField;
|
|
83
120
|
(function (ParameterExceptionField) {
|
|
84
121
|
ParameterExceptionField["BYTE_MATCH_FIELD_TYPE"] = "BYTE_MATCH_FIELD_TYPE";
|
|
@@ -107,6 +144,45 @@ export var ParameterExceptionReason;
|
|
|
107
144
|
ParameterExceptionReason["INVALID_OPTION"] = "INVALID_OPTION";
|
|
108
145
|
ParameterExceptionReason["INVALID_TAG_KEY"] = "INVALID_TAG_KEY";
|
|
109
146
|
})(ParameterExceptionReason || (ParameterExceptionReason = {}));
|
|
147
|
+
var WAFInvalidParameterException = (function (_super) {
|
|
148
|
+
__extends(WAFInvalidParameterException, _super);
|
|
149
|
+
function WAFInvalidParameterException(opts) {
|
|
150
|
+
var _this = _super.call(this, __assign({ name: "WAFInvalidParameterException", $fault: "client" }, opts)) || this;
|
|
151
|
+
_this.name = "WAFInvalidParameterException";
|
|
152
|
+
_this.$fault = "client";
|
|
153
|
+
Object.setPrototypeOf(_this, WAFInvalidParameterException.prototype);
|
|
154
|
+
_this.field = opts.field;
|
|
155
|
+
_this.parameter = opts.parameter;
|
|
156
|
+
_this.reason = opts.reason;
|
|
157
|
+
return _this;
|
|
158
|
+
}
|
|
159
|
+
return WAFInvalidParameterException;
|
|
160
|
+
}(__BaseException));
|
|
161
|
+
export { WAFInvalidParameterException };
|
|
162
|
+
var WAFLimitsExceededException = (function (_super) {
|
|
163
|
+
__extends(WAFLimitsExceededException, _super);
|
|
164
|
+
function WAFLimitsExceededException(opts) {
|
|
165
|
+
var _this = _super.call(this, __assign({ name: "WAFLimitsExceededException", $fault: "client" }, opts)) || this;
|
|
166
|
+
_this.name = "WAFLimitsExceededException";
|
|
167
|
+
_this.$fault = "client";
|
|
168
|
+
Object.setPrototypeOf(_this, WAFLimitsExceededException.prototype);
|
|
169
|
+
return _this;
|
|
170
|
+
}
|
|
171
|
+
return WAFLimitsExceededException;
|
|
172
|
+
}(__BaseException));
|
|
173
|
+
export { WAFLimitsExceededException };
|
|
174
|
+
var WAFStaleDataException = (function (_super) {
|
|
175
|
+
__extends(WAFStaleDataException, _super);
|
|
176
|
+
function WAFStaleDataException(opts) {
|
|
177
|
+
var _this = _super.call(this, __assign({ name: "WAFStaleDataException", $fault: "client" }, opts)) || this;
|
|
178
|
+
_this.name = "WAFStaleDataException";
|
|
179
|
+
_this.$fault = "client";
|
|
180
|
+
Object.setPrototypeOf(_this, WAFStaleDataException.prototype);
|
|
181
|
+
return _this;
|
|
182
|
+
}
|
|
183
|
+
return WAFStaleDataException;
|
|
184
|
+
}(__BaseException));
|
|
185
|
+
export { WAFStaleDataException };
|
|
110
186
|
export var CreateGeoMatchSetRequest;
|
|
111
187
|
(function (CreateGeoMatchSetRequest) {
|
|
112
188
|
CreateGeoMatchSetRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -434,6 +510,42 @@ export var CreateRateBasedRuleResponse;
|
|
|
434
510
|
(function (CreateRateBasedRuleResponse) {
|
|
435
511
|
CreateRateBasedRuleResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
436
512
|
})(CreateRateBasedRuleResponse || (CreateRateBasedRuleResponse = {}));
|
|
513
|
+
var WAFBadRequestException = (function (_super) {
|
|
514
|
+
__extends(WAFBadRequestException, _super);
|
|
515
|
+
function WAFBadRequestException(opts) {
|
|
516
|
+
var _this = _super.call(this, __assign({ name: "WAFBadRequestException", $fault: "client" }, opts)) || this;
|
|
517
|
+
_this.name = "WAFBadRequestException";
|
|
518
|
+
_this.$fault = "client";
|
|
519
|
+
Object.setPrototypeOf(_this, WAFBadRequestException.prototype);
|
|
520
|
+
return _this;
|
|
521
|
+
}
|
|
522
|
+
return WAFBadRequestException;
|
|
523
|
+
}(__BaseException));
|
|
524
|
+
export { WAFBadRequestException };
|
|
525
|
+
var WAFTagOperationException = (function (_super) {
|
|
526
|
+
__extends(WAFTagOperationException, _super);
|
|
527
|
+
function WAFTagOperationException(opts) {
|
|
528
|
+
var _this = _super.call(this, __assign({ name: "WAFTagOperationException", $fault: "client" }, opts)) || this;
|
|
529
|
+
_this.name = "WAFTagOperationException";
|
|
530
|
+
_this.$fault = "client";
|
|
531
|
+
Object.setPrototypeOf(_this, WAFTagOperationException.prototype);
|
|
532
|
+
return _this;
|
|
533
|
+
}
|
|
534
|
+
return WAFTagOperationException;
|
|
535
|
+
}(__BaseException));
|
|
536
|
+
export { WAFTagOperationException };
|
|
537
|
+
var WAFTagOperationInternalErrorException = (function (_super) {
|
|
538
|
+
__extends(WAFTagOperationInternalErrorException, _super);
|
|
539
|
+
function WAFTagOperationInternalErrorException(opts) {
|
|
540
|
+
var _this = _super.call(this, __assign({ name: "WAFTagOperationInternalErrorException", $fault: "server" }, opts)) || this;
|
|
541
|
+
_this.name = "WAFTagOperationInternalErrorException";
|
|
542
|
+
_this.$fault = "server";
|
|
543
|
+
Object.setPrototypeOf(_this, WAFTagOperationInternalErrorException.prototype);
|
|
544
|
+
return _this;
|
|
545
|
+
}
|
|
546
|
+
return WAFTagOperationInternalErrorException;
|
|
547
|
+
}(__BaseException));
|
|
548
|
+
export { WAFTagOperationInternalErrorException };
|
|
437
549
|
export var CreateRegexMatchSetRequest;
|
|
438
550
|
(function (CreateRegexMatchSetRequest) {
|
|
439
551
|
CreateRegexMatchSetRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -557,6 +669,44 @@ export var MigrationErrorType;
|
|
|
557
669
|
MigrationErrorType["S3_BUCKET_NO_PERMISSION"] = "S3_BUCKET_NO_PERMISSION";
|
|
558
670
|
MigrationErrorType["S3_INTERNAL_ERROR"] = "S3_INTERNAL_ERROR";
|
|
559
671
|
})(MigrationErrorType || (MigrationErrorType = {}));
|
|
672
|
+
var WAFEntityMigrationException = (function (_super) {
|
|
673
|
+
__extends(WAFEntityMigrationException, _super);
|
|
674
|
+
function WAFEntityMigrationException(opts) {
|
|
675
|
+
var _this = _super.call(this, __assign({ name: "WAFEntityMigrationException", $fault: "client" }, opts)) || this;
|
|
676
|
+
_this.name = "WAFEntityMigrationException";
|
|
677
|
+
_this.$fault = "client";
|
|
678
|
+
Object.setPrototypeOf(_this, WAFEntityMigrationException.prototype);
|
|
679
|
+
_this.MigrationErrorType = opts.MigrationErrorType;
|
|
680
|
+
_this.MigrationErrorReason = opts.MigrationErrorReason;
|
|
681
|
+
return _this;
|
|
682
|
+
}
|
|
683
|
+
return WAFEntityMigrationException;
|
|
684
|
+
}(__BaseException));
|
|
685
|
+
export { WAFEntityMigrationException };
|
|
686
|
+
var WAFInvalidOperationException = (function (_super) {
|
|
687
|
+
__extends(WAFInvalidOperationException, _super);
|
|
688
|
+
function WAFInvalidOperationException(opts) {
|
|
689
|
+
var _this = _super.call(this, __assign({ name: "WAFInvalidOperationException", $fault: "client" }, opts)) || this;
|
|
690
|
+
_this.name = "WAFInvalidOperationException";
|
|
691
|
+
_this.$fault = "client";
|
|
692
|
+
Object.setPrototypeOf(_this, WAFInvalidOperationException.prototype);
|
|
693
|
+
return _this;
|
|
694
|
+
}
|
|
695
|
+
return WAFInvalidOperationException;
|
|
696
|
+
}(__BaseException));
|
|
697
|
+
export { WAFInvalidOperationException };
|
|
698
|
+
var WAFNonexistentItemException = (function (_super) {
|
|
699
|
+
__extends(WAFNonexistentItemException, _super);
|
|
700
|
+
function WAFNonexistentItemException(opts) {
|
|
701
|
+
var _this = _super.call(this, __assign({ name: "WAFNonexistentItemException", $fault: "client" }, opts)) || this;
|
|
702
|
+
_this.name = "WAFNonexistentItemException";
|
|
703
|
+
_this.$fault = "client";
|
|
704
|
+
Object.setPrototypeOf(_this, WAFNonexistentItemException.prototype);
|
|
705
|
+
return _this;
|
|
706
|
+
}
|
|
707
|
+
return WAFNonexistentItemException;
|
|
708
|
+
}(__BaseException));
|
|
709
|
+
export { WAFNonexistentItemException };
|
|
560
710
|
export var CreateXssMatchSetRequest;
|
|
561
711
|
(function (CreateXssMatchSetRequest) {
|
|
562
712
|
CreateXssMatchSetRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -581,6 +731,30 @@ export var DeleteByteMatchSetResponse;
|
|
|
581
731
|
(function (DeleteByteMatchSetResponse) {
|
|
582
732
|
DeleteByteMatchSetResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
583
733
|
})(DeleteByteMatchSetResponse || (DeleteByteMatchSetResponse = {}));
|
|
734
|
+
var WAFNonEmptyEntityException = (function (_super) {
|
|
735
|
+
__extends(WAFNonEmptyEntityException, _super);
|
|
736
|
+
function WAFNonEmptyEntityException(opts) {
|
|
737
|
+
var _this = _super.call(this, __assign({ name: "WAFNonEmptyEntityException", $fault: "client" }, opts)) || this;
|
|
738
|
+
_this.name = "WAFNonEmptyEntityException";
|
|
739
|
+
_this.$fault = "client";
|
|
740
|
+
Object.setPrototypeOf(_this, WAFNonEmptyEntityException.prototype);
|
|
741
|
+
return _this;
|
|
742
|
+
}
|
|
743
|
+
return WAFNonEmptyEntityException;
|
|
744
|
+
}(__BaseException));
|
|
745
|
+
export { WAFNonEmptyEntityException };
|
|
746
|
+
var WAFReferencedItemException = (function (_super) {
|
|
747
|
+
__extends(WAFReferencedItemException, _super);
|
|
748
|
+
function WAFReferencedItemException(opts) {
|
|
749
|
+
var _this = _super.call(this, __assign({ name: "WAFReferencedItemException", $fault: "client" }, opts)) || this;
|
|
750
|
+
_this.name = "WAFReferencedItemException";
|
|
751
|
+
_this.$fault = "client";
|
|
752
|
+
Object.setPrototypeOf(_this, WAFReferencedItemException.prototype);
|
|
753
|
+
return _this;
|
|
754
|
+
}
|
|
755
|
+
return WAFReferencedItemException;
|
|
756
|
+
}(__BaseException));
|
|
757
|
+
export { WAFReferencedItemException };
|
|
584
758
|
export var DeleteGeoMatchSetRequest;
|
|
585
759
|
(function (DeleteGeoMatchSetRequest) {
|
|
586
760
|
DeleteGeoMatchSetRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -1043,6 +1217,18 @@ export var PutLoggingConfigurationResponse;
|
|
|
1043
1217
|
(function (PutLoggingConfigurationResponse) {
|
|
1044
1218
|
PutLoggingConfigurationResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1045
1219
|
})(PutLoggingConfigurationResponse || (PutLoggingConfigurationResponse = {}));
|
|
1220
|
+
var WAFServiceLinkedRoleErrorException = (function (_super) {
|
|
1221
|
+
__extends(WAFServiceLinkedRoleErrorException, _super);
|
|
1222
|
+
function WAFServiceLinkedRoleErrorException(opts) {
|
|
1223
|
+
var _this = _super.call(this, __assign({ name: "WAFServiceLinkedRoleErrorException", $fault: "client" }, opts)) || this;
|
|
1224
|
+
_this.name = "WAFServiceLinkedRoleErrorException";
|
|
1225
|
+
_this.$fault = "client";
|
|
1226
|
+
Object.setPrototypeOf(_this, WAFServiceLinkedRoleErrorException.prototype);
|
|
1227
|
+
return _this;
|
|
1228
|
+
}
|
|
1229
|
+
return WAFServiceLinkedRoleErrorException;
|
|
1230
|
+
}(__BaseException));
|
|
1231
|
+
export { WAFServiceLinkedRoleErrorException };
|
|
1046
1232
|
export var PutPermissionPolicyRequest;
|
|
1047
1233
|
(function (PutPermissionPolicyRequest) {
|
|
1048
1234
|
PutPermissionPolicyRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -1051,6 +1237,18 @@ export var PutPermissionPolicyResponse;
|
|
|
1051
1237
|
(function (PutPermissionPolicyResponse) {
|
|
1052
1238
|
PutPermissionPolicyResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1053
1239
|
})(PutPermissionPolicyResponse || (PutPermissionPolicyResponse = {}));
|
|
1240
|
+
var WAFInvalidPermissionPolicyException = (function (_super) {
|
|
1241
|
+
__extends(WAFInvalidPermissionPolicyException, _super);
|
|
1242
|
+
function WAFInvalidPermissionPolicyException(opts) {
|
|
1243
|
+
var _this = _super.call(this, __assign({ name: "WAFInvalidPermissionPolicyException", $fault: "client" }, opts)) || this;
|
|
1244
|
+
_this.name = "WAFInvalidPermissionPolicyException";
|
|
1245
|
+
_this.$fault = "client";
|
|
1246
|
+
Object.setPrototypeOf(_this, WAFInvalidPermissionPolicyException.prototype);
|
|
1247
|
+
return _this;
|
|
1248
|
+
}
|
|
1249
|
+
return WAFInvalidPermissionPolicyException;
|
|
1250
|
+
}(__BaseException));
|
|
1251
|
+
export { WAFInvalidPermissionPolicyException };
|
|
1054
1252
|
export var TagResourceRequest;
|
|
1055
1253
|
(function (TagResourceRequest) {
|
|
1056
1254
|
TagResourceRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -1084,6 +1282,18 @@ export var UpdateByteMatchSetResponse;
|
|
|
1084
1282
|
(function (UpdateByteMatchSetResponse) {
|
|
1085
1283
|
UpdateByteMatchSetResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1086
1284
|
})(UpdateByteMatchSetResponse || (UpdateByteMatchSetResponse = {}));
|
|
1285
|
+
var WAFNonexistentContainerException = (function (_super) {
|
|
1286
|
+
__extends(WAFNonexistentContainerException, _super);
|
|
1287
|
+
function WAFNonexistentContainerException(opts) {
|
|
1288
|
+
var _this = _super.call(this, __assign({ name: "WAFNonexistentContainerException", $fault: "client" }, opts)) || this;
|
|
1289
|
+
_this.name = "WAFNonexistentContainerException";
|
|
1290
|
+
_this.$fault = "client";
|
|
1291
|
+
Object.setPrototypeOf(_this, WAFNonexistentContainerException.prototype);
|
|
1292
|
+
return _this;
|
|
1293
|
+
}
|
|
1294
|
+
return WAFNonexistentContainerException;
|
|
1295
|
+
}(__BaseException));
|
|
1296
|
+
export { WAFNonexistentContainerException };
|
|
1087
1297
|
export var GeoMatchSetUpdate;
|
|
1088
1298
|
(function (GeoMatchSetUpdate) {
|
|
1089
1299
|
GeoMatchSetUpdate.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -1144,6 +1354,18 @@ export var UpdateRegexPatternSetResponse;
|
|
|
1144
1354
|
(function (UpdateRegexPatternSetResponse) {
|
|
1145
1355
|
UpdateRegexPatternSetResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1146
1356
|
})(UpdateRegexPatternSetResponse || (UpdateRegexPatternSetResponse = {}));
|
|
1357
|
+
var WAFInvalidRegexPatternException = (function (_super) {
|
|
1358
|
+
__extends(WAFInvalidRegexPatternException, _super);
|
|
1359
|
+
function WAFInvalidRegexPatternException(opts) {
|
|
1360
|
+
var _this = _super.call(this, __assign({ name: "WAFInvalidRegexPatternException", $fault: "client" }, opts)) || this;
|
|
1361
|
+
_this.name = "WAFInvalidRegexPatternException";
|
|
1362
|
+
_this.$fault = "client";
|
|
1363
|
+
Object.setPrototypeOf(_this, WAFInvalidRegexPatternException.prototype);
|
|
1364
|
+
return _this;
|
|
1365
|
+
}
|
|
1366
|
+
return WAFInvalidRegexPatternException;
|
|
1367
|
+
}(__BaseException));
|
|
1368
|
+
export { WAFInvalidRegexPatternException };
|
|
1147
1369
|
export var UpdateRuleRequest;
|
|
1148
1370
|
(function (UpdateRuleRequest) {
|
|
1149
1371
|
UpdateRuleRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -1200,6 +1422,18 @@ export var UpdateWebACLResponse;
|
|
|
1200
1422
|
(function (UpdateWebACLResponse) {
|
|
1201
1423
|
UpdateWebACLResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1202
1424
|
})(UpdateWebACLResponse || (UpdateWebACLResponse = {}));
|
|
1425
|
+
var WAFSubscriptionNotFoundException = (function (_super) {
|
|
1426
|
+
__extends(WAFSubscriptionNotFoundException, _super);
|
|
1427
|
+
function WAFSubscriptionNotFoundException(opts) {
|
|
1428
|
+
var _this = _super.call(this, __assign({ name: "WAFSubscriptionNotFoundException", $fault: "client" }, opts)) || this;
|
|
1429
|
+
_this.name = "WAFSubscriptionNotFoundException";
|
|
1430
|
+
_this.$fault = "client";
|
|
1431
|
+
Object.setPrototypeOf(_this, WAFSubscriptionNotFoundException.prototype);
|
|
1432
|
+
return _this;
|
|
1433
|
+
}
|
|
1434
|
+
return WAFSubscriptionNotFoundException;
|
|
1435
|
+
}(__BaseException));
|
|
1436
|
+
export { WAFSubscriptionNotFoundException };
|
|
1203
1437
|
export var XssMatchSetUpdate;
|
|
1204
1438
|
(function (XssMatchSetUpdate) {
|
|
1205
1439
|
XssMatchSetUpdate.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|