@aws-sdk/client-shield 3.43.0 → 3.47.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.
Files changed (51) hide show
  1. package/CHANGELOG.md +50 -0
  2. package/dist-cjs/Shield.js +45 -0
  3. package/dist-cjs/commands/DisableApplicationLayerAutomaticResponseCommand.js +36 -0
  4. package/dist-cjs/commands/EnableApplicationLayerAutomaticResponseCommand.js +36 -0
  5. package/dist-cjs/commands/UpdateApplicationLayerAutomaticResponseCommand.js +36 -0
  6. package/dist-cjs/commands/index.js +3 -0
  7. package/dist-cjs/endpoints.js +1 -0
  8. package/dist-cjs/models/models_0.js +64 -77
  9. package/dist-cjs/protocols/Aws_json1_1.js +363 -2
  10. package/dist-cjs/runtimeConfig.browser.js +7 -2
  11. package/dist-cjs/runtimeConfig.js +9 -3
  12. package/dist-es/Shield.js +45 -0
  13. package/dist-es/commands/DisableApplicationLayerAutomaticResponseCommand.js +39 -0
  14. package/dist-es/commands/EnableApplicationLayerAutomaticResponseCommand.js +39 -0
  15. package/dist-es/commands/UpdateApplicationLayerAutomaticResponseCommand.js +39 -0
  16. package/dist-es/commands/index.js +3 -0
  17. package/dist-es/endpoints.js +1 -0
  18. package/dist-es/models/models_0.js +45 -52
  19. package/dist-es/protocols/Aws_json1_1.js +430 -50
  20. package/dist-es/runtimeConfig.browser.js +12 -3
  21. package/dist-es/runtimeConfig.js +13 -6
  22. package/dist-types/Shield.d.ts +50 -12
  23. package/dist-types/ShieldClient.d.ts +10 -3
  24. package/dist-types/commands/AssociateDRTLogBucketCommand.d.ts +1 -1
  25. package/dist-types/commands/AssociateDRTRoleCommand.d.ts +4 -3
  26. package/dist-types/commands/AssociateHealthCheckCommand.d.ts +2 -2
  27. package/dist-types/commands/CreateProtectionCommand.d.ts +6 -2
  28. package/dist-types/commands/DisableApplicationLayerAutomaticResponseCommand.d.ts +36 -0
  29. package/dist-types/commands/DisassociateDRTLogBucketCommand.d.ts +0 -1
  30. package/dist-types/commands/DisassociateDRTRoleCommand.d.ts +0 -1
  31. package/dist-types/commands/DisassociateHealthCheckCommand.d.ts +2 -2
  32. package/dist-types/commands/EnableApplicationLayerAutomaticResponseCommand.d.ts +48 -0
  33. package/dist-types/commands/UpdateApplicationLayerAutomaticResponseCommand.d.ts +35 -0
  34. package/dist-types/commands/index.d.ts +3 -0
  35. package/dist-types/models/models_0.d.ts +250 -128
  36. package/dist-types/protocols/Aws_json1_1.d.ts +9 -0
  37. package/dist-types/runtimeConfig.browser.d.ts +3 -2
  38. package/dist-types/runtimeConfig.d.ts +4 -3
  39. package/dist-types/runtimeConfig.native.d.ts +1 -0
  40. package/dist-types/ts3.4/Shield.d.ts +15 -0
  41. package/dist-types/ts3.4/ShieldClient.d.ts +8 -3
  42. package/dist-types/ts3.4/commands/DisableApplicationLayerAutomaticResponseCommand.d.ts +17 -0
  43. package/dist-types/ts3.4/commands/EnableApplicationLayerAutomaticResponseCommand.d.ts +17 -0
  44. package/dist-types/ts3.4/commands/UpdateApplicationLayerAutomaticResponseCommand.d.ts +17 -0
  45. package/dist-types/ts3.4/commands/index.d.ts +3 -0
  46. package/dist-types/ts3.4/models/models_0.d.ts +92 -56
  47. package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +9 -0
  48. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +3 -2
  49. package/dist-types/ts3.4/runtimeConfig.d.ts +4 -3
  50. package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -0
  51. package/package.json +38 -45
package/dist-es/Shield.js CHANGED
@@ -16,10 +16,12 @@ import { DescribeEmergencyContactSettingsCommand, } from "./commands/DescribeEme
16
16
  import { DescribeProtectionCommand, } from "./commands/DescribeProtectionCommand";
17
17
  import { DescribeProtectionGroupCommand, } from "./commands/DescribeProtectionGroupCommand";
18
18
  import { DescribeSubscriptionCommand, } from "./commands/DescribeSubscriptionCommand";
19
+ import { DisableApplicationLayerAutomaticResponseCommand, } from "./commands/DisableApplicationLayerAutomaticResponseCommand";
19
20
  import { DisableProactiveEngagementCommand, } from "./commands/DisableProactiveEngagementCommand";
20
21
  import { DisassociateDRTLogBucketCommand, } from "./commands/DisassociateDRTLogBucketCommand";
21
22
  import { DisassociateDRTRoleCommand, } from "./commands/DisassociateDRTRoleCommand";
22
23
  import { DisassociateHealthCheckCommand, } from "./commands/DisassociateHealthCheckCommand";
24
+ import { EnableApplicationLayerAutomaticResponseCommand, } from "./commands/EnableApplicationLayerAutomaticResponseCommand";
23
25
  import { EnableProactiveEngagementCommand, } from "./commands/EnableProactiveEngagementCommand";
24
26
  import { GetSubscriptionStateCommand, } from "./commands/GetSubscriptionStateCommand";
25
27
  import { ListAttacksCommand } from "./commands/ListAttacksCommand";
@@ -29,6 +31,7 @@ import { ListResourcesInProtectionGroupCommand, } from "./commands/ListResources
29
31
  import { ListTagsForResourceCommand, } from "./commands/ListTagsForResourceCommand";
30
32
  import { TagResourceCommand } from "./commands/TagResourceCommand";
31
33
  import { UntagResourceCommand, } from "./commands/UntagResourceCommand";
34
+ import { UpdateApplicationLayerAutomaticResponseCommand, } from "./commands/UpdateApplicationLayerAutomaticResponseCommand";
32
35
  import { UpdateEmergencyContactSettingsCommand, } from "./commands/UpdateEmergencyContactSettingsCommand";
33
36
  import { UpdateProtectionGroupCommand, } from "./commands/UpdateProtectionGroupCommand";
34
37
  import { UpdateSubscriptionCommand, } from "./commands/UpdateSubscriptionCommand";
@@ -276,6 +279,20 @@ var Shield = (function (_super) {
276
279
  return this.send(command, optionsOrCb);
277
280
  }
278
281
  };
282
+ Shield.prototype.disableApplicationLayerAutomaticResponse = function (args, optionsOrCb, cb) {
283
+ var command = new DisableApplicationLayerAutomaticResponseCommand(args);
284
+ if (typeof optionsOrCb === "function") {
285
+ this.send(command, optionsOrCb);
286
+ }
287
+ else if (typeof cb === "function") {
288
+ if (typeof optionsOrCb !== "object")
289
+ throw new Error("Expect http options but get " + typeof optionsOrCb);
290
+ this.send(command, optionsOrCb || {}, cb);
291
+ }
292
+ else {
293
+ return this.send(command, optionsOrCb);
294
+ }
295
+ };
279
296
  Shield.prototype.disableProactiveEngagement = function (args, optionsOrCb, cb) {
280
297
  var command = new DisableProactiveEngagementCommand(args);
281
298
  if (typeof optionsOrCb === "function") {
@@ -332,6 +349,20 @@ var Shield = (function (_super) {
332
349
  return this.send(command, optionsOrCb);
333
350
  }
334
351
  };
352
+ Shield.prototype.enableApplicationLayerAutomaticResponse = function (args, optionsOrCb, cb) {
353
+ var command = new EnableApplicationLayerAutomaticResponseCommand(args);
354
+ if (typeof optionsOrCb === "function") {
355
+ this.send(command, optionsOrCb);
356
+ }
357
+ else if (typeof cb === "function") {
358
+ if (typeof optionsOrCb !== "object")
359
+ throw new Error("Expect http options but get " + typeof optionsOrCb);
360
+ this.send(command, optionsOrCb || {}, cb);
361
+ }
362
+ else {
363
+ return this.send(command, optionsOrCb);
364
+ }
365
+ };
335
366
  Shield.prototype.enableProactiveEngagement = function (args, optionsOrCb, cb) {
336
367
  var command = new EnableProactiveEngagementCommand(args);
337
368
  if (typeof optionsOrCb === "function") {
@@ -458,6 +489,20 @@ var Shield = (function (_super) {
458
489
  return this.send(command, optionsOrCb);
459
490
  }
460
491
  };
492
+ Shield.prototype.updateApplicationLayerAutomaticResponse = function (args, optionsOrCb, cb) {
493
+ var command = new UpdateApplicationLayerAutomaticResponseCommand(args);
494
+ if (typeof optionsOrCb === "function") {
495
+ this.send(command, optionsOrCb);
496
+ }
497
+ else if (typeof cb === "function") {
498
+ if (typeof optionsOrCb !== "object")
499
+ throw new Error("Expect http options but get " + typeof optionsOrCb);
500
+ this.send(command, optionsOrCb || {}, cb);
501
+ }
502
+ else {
503
+ return this.send(command, optionsOrCb);
504
+ }
505
+ };
461
506
  Shield.prototype.updateEmergencyContactSettings = function (args, optionsOrCb, cb) {
462
507
  var command = new UpdateEmergencyContactSettingsCommand(args);
463
508
  if (typeof optionsOrCb === "function") {
@@ -0,0 +1,39 @@
1
+ import { __extends } from "tslib";
2
+ import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
+ import { Command as $Command } from "@aws-sdk/smithy-client";
4
+ import { DisableApplicationLayerAutomaticResponseRequest, DisableApplicationLayerAutomaticResponseResponse, } from "../models/models_0";
5
+ import { deserializeAws_json1_1DisableApplicationLayerAutomaticResponseCommand, serializeAws_json1_1DisableApplicationLayerAutomaticResponseCommand, } from "../protocols/Aws_json1_1";
6
+ var DisableApplicationLayerAutomaticResponseCommand = (function (_super) {
7
+ __extends(DisableApplicationLayerAutomaticResponseCommand, _super);
8
+ function DisableApplicationLayerAutomaticResponseCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
12
+ }
13
+ DisableApplicationLayerAutomaticResponseCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
14
+ this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "ShieldClient";
18
+ var commandName = "DisableApplicationLayerAutomaticResponseCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
23
+ inputFilterSensitiveLog: DisableApplicationLayerAutomaticResponseRequest.filterSensitiveLog,
24
+ outputFilterSensitiveLog: DisableApplicationLayerAutomaticResponseResponse.filterSensitiveLog,
25
+ };
26
+ var requestHandler = configuration.requestHandler;
27
+ return stack.resolve(function (request) {
28
+ return requestHandler.handle(request.request, options || {});
29
+ }, handlerExecutionContext);
30
+ };
31
+ DisableApplicationLayerAutomaticResponseCommand.prototype.serialize = function (input, context) {
32
+ return serializeAws_json1_1DisableApplicationLayerAutomaticResponseCommand(input, context);
33
+ };
34
+ DisableApplicationLayerAutomaticResponseCommand.prototype.deserialize = function (output, context) {
35
+ return deserializeAws_json1_1DisableApplicationLayerAutomaticResponseCommand(output, context);
36
+ };
37
+ return DisableApplicationLayerAutomaticResponseCommand;
38
+ }($Command));
39
+ export { DisableApplicationLayerAutomaticResponseCommand };
@@ -0,0 +1,39 @@
1
+ import { __extends } from "tslib";
2
+ import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
+ import { Command as $Command } from "@aws-sdk/smithy-client";
4
+ import { EnableApplicationLayerAutomaticResponseRequest, EnableApplicationLayerAutomaticResponseResponse, } from "../models/models_0";
5
+ import { deserializeAws_json1_1EnableApplicationLayerAutomaticResponseCommand, serializeAws_json1_1EnableApplicationLayerAutomaticResponseCommand, } from "../protocols/Aws_json1_1";
6
+ var EnableApplicationLayerAutomaticResponseCommand = (function (_super) {
7
+ __extends(EnableApplicationLayerAutomaticResponseCommand, _super);
8
+ function EnableApplicationLayerAutomaticResponseCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
12
+ }
13
+ EnableApplicationLayerAutomaticResponseCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
14
+ this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "ShieldClient";
18
+ var commandName = "EnableApplicationLayerAutomaticResponseCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
23
+ inputFilterSensitiveLog: EnableApplicationLayerAutomaticResponseRequest.filterSensitiveLog,
24
+ outputFilterSensitiveLog: EnableApplicationLayerAutomaticResponseResponse.filterSensitiveLog,
25
+ };
26
+ var requestHandler = configuration.requestHandler;
27
+ return stack.resolve(function (request) {
28
+ return requestHandler.handle(request.request, options || {});
29
+ }, handlerExecutionContext);
30
+ };
31
+ EnableApplicationLayerAutomaticResponseCommand.prototype.serialize = function (input, context) {
32
+ return serializeAws_json1_1EnableApplicationLayerAutomaticResponseCommand(input, context);
33
+ };
34
+ EnableApplicationLayerAutomaticResponseCommand.prototype.deserialize = function (output, context) {
35
+ return deserializeAws_json1_1EnableApplicationLayerAutomaticResponseCommand(output, context);
36
+ };
37
+ return EnableApplicationLayerAutomaticResponseCommand;
38
+ }($Command));
39
+ export { EnableApplicationLayerAutomaticResponseCommand };
@@ -0,0 +1,39 @@
1
+ import { __extends } from "tslib";
2
+ import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
+ import { Command as $Command } from "@aws-sdk/smithy-client";
4
+ import { UpdateApplicationLayerAutomaticResponseRequest, UpdateApplicationLayerAutomaticResponseResponse, } from "../models/models_0";
5
+ import { deserializeAws_json1_1UpdateApplicationLayerAutomaticResponseCommand, serializeAws_json1_1UpdateApplicationLayerAutomaticResponseCommand, } from "../protocols/Aws_json1_1";
6
+ var UpdateApplicationLayerAutomaticResponseCommand = (function (_super) {
7
+ __extends(UpdateApplicationLayerAutomaticResponseCommand, _super);
8
+ function UpdateApplicationLayerAutomaticResponseCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
12
+ }
13
+ UpdateApplicationLayerAutomaticResponseCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
14
+ this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "ShieldClient";
18
+ var commandName = "UpdateApplicationLayerAutomaticResponseCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
23
+ inputFilterSensitiveLog: UpdateApplicationLayerAutomaticResponseRequest.filterSensitiveLog,
24
+ outputFilterSensitiveLog: UpdateApplicationLayerAutomaticResponseResponse.filterSensitiveLog,
25
+ };
26
+ var requestHandler = configuration.requestHandler;
27
+ return stack.resolve(function (request) {
28
+ return requestHandler.handle(request.request, options || {});
29
+ }, handlerExecutionContext);
30
+ };
31
+ UpdateApplicationLayerAutomaticResponseCommand.prototype.serialize = function (input, context) {
32
+ return serializeAws_json1_1UpdateApplicationLayerAutomaticResponseCommand(input, context);
33
+ };
34
+ UpdateApplicationLayerAutomaticResponseCommand.prototype.deserialize = function (output, context) {
35
+ return deserializeAws_json1_1UpdateApplicationLayerAutomaticResponseCommand(output, context);
36
+ };
37
+ return UpdateApplicationLayerAutomaticResponseCommand;
38
+ }($Command));
39
+ export { UpdateApplicationLayerAutomaticResponseCommand };
@@ -15,10 +15,12 @@ export * from "./DescribeEmergencyContactSettingsCommand";
15
15
  export * from "./DescribeProtectionCommand";
16
16
  export * from "./DescribeProtectionGroupCommand";
17
17
  export * from "./DescribeSubscriptionCommand";
18
+ export * from "./DisableApplicationLayerAutomaticResponseCommand";
18
19
  export * from "./DisableProactiveEngagementCommand";
19
20
  export * from "./DisassociateDRTLogBucketCommand";
20
21
  export * from "./DisassociateDRTRoleCommand";
21
22
  export * from "./DisassociateHealthCheckCommand";
23
+ export * from "./EnableApplicationLayerAutomaticResponseCommand";
22
24
  export * from "./EnableProactiveEngagementCommand";
23
25
  export * from "./GetSubscriptionStateCommand";
24
26
  export * from "./ListAttacksCommand";
@@ -28,6 +30,7 @@ export * from "./ListResourcesInProtectionGroupCommand";
28
30
  export * from "./ListTagsForResourceCommand";
29
31
  export * from "./TagResourceCommand";
30
32
  export * from "./UntagResourceCommand";
33
+ export * from "./UpdateApplicationLayerAutomaticResponseCommand";
31
34
  export * from "./UpdateEmergencyContactSettingsCommand";
32
35
  export * from "./UpdateProtectionGroupCommand";
33
36
  export * from "./UpdateSubscriptionCommand";
@@ -26,6 +26,7 @@ var partitionHash = {
26
26
  "ap-south-1",
27
27
  "ap-southeast-1",
28
28
  "ap-southeast-2",
29
+ "ap-southeast-3",
29
30
  "aws-global",
30
31
  "ca-central-1",
31
32
  "eu-central-1",
@@ -1,12 +1,25 @@
1
1
  import { __assign } from "tslib";
2
- export var AccessDeniedException;
3
- (function (AccessDeniedException) {
4
- AccessDeniedException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
5
- })(AccessDeniedException || (AccessDeniedException = {}));
6
- export var AccessDeniedForDependencyException;
7
- (function (AccessDeniedForDependencyException) {
8
- AccessDeniedForDependencyException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
9
- })(AccessDeniedForDependencyException || (AccessDeniedForDependencyException = {}));
2
+ export var BlockAction;
3
+ (function (BlockAction) {
4
+ BlockAction.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
5
+ })(BlockAction || (BlockAction = {}));
6
+ export var CountAction;
7
+ (function (CountAction) {
8
+ CountAction.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
9
+ })(CountAction || (CountAction = {}));
10
+ export var ResponseAction;
11
+ (function (ResponseAction) {
12
+ ResponseAction.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
13
+ })(ResponseAction || (ResponseAction = {}));
14
+ export var ApplicationLayerAutomaticResponseStatus;
15
+ (function (ApplicationLayerAutomaticResponseStatus) {
16
+ ApplicationLayerAutomaticResponseStatus["DISABLED"] = "DISABLED";
17
+ ApplicationLayerAutomaticResponseStatus["ENABLED"] = "ENABLED";
18
+ })(ApplicationLayerAutomaticResponseStatus || (ApplicationLayerAutomaticResponseStatus = {}));
19
+ export var ApplicationLayerAutomaticResponseConfiguration;
20
+ (function (ApplicationLayerAutomaticResponseConfiguration) {
21
+ ApplicationLayerAutomaticResponseConfiguration.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
22
+ })(ApplicationLayerAutomaticResponseConfiguration || (ApplicationLayerAutomaticResponseConfiguration = {}));
10
23
  export var AssociateDRTLogBucketRequest;
11
24
  (function (AssociateDRTLogBucketRequest) {
12
25
  AssociateDRTLogBucketRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -15,14 +28,6 @@ export var AssociateDRTLogBucketResponse;
15
28
  (function (AssociateDRTLogBucketResponse) {
16
29
  AssociateDRTLogBucketResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
17
30
  })(AssociateDRTLogBucketResponse || (AssociateDRTLogBucketResponse = {}));
18
- export var InternalErrorException;
19
- (function (InternalErrorException) {
20
- InternalErrorException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
21
- })(InternalErrorException || (InternalErrorException = {}));
22
- export var InvalidOperationException;
23
- (function (InvalidOperationException) {
24
- InvalidOperationException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
25
- })(InvalidOperationException || (InvalidOperationException = {}));
26
31
  export var ValidationExceptionField;
27
32
  (function (ValidationExceptionField) {
28
33
  ValidationExceptionField.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -32,26 +37,6 @@ export var ValidationExceptionReason;
32
37
  ValidationExceptionReason["FIELD_VALIDATION_FAILED"] = "FIELD_VALIDATION_FAILED";
33
38
  ValidationExceptionReason["OTHER"] = "OTHER";
34
39
  })(ValidationExceptionReason || (ValidationExceptionReason = {}));
35
- export var InvalidParameterException;
36
- (function (InvalidParameterException) {
37
- InvalidParameterException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
38
- })(InvalidParameterException || (InvalidParameterException = {}));
39
- export var LimitsExceededException;
40
- (function (LimitsExceededException) {
41
- LimitsExceededException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
42
- })(LimitsExceededException || (LimitsExceededException = {}));
43
- export var NoAssociatedRoleException;
44
- (function (NoAssociatedRoleException) {
45
- NoAssociatedRoleException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
46
- })(NoAssociatedRoleException || (NoAssociatedRoleException = {}));
47
- export var OptimisticLockException;
48
- (function (OptimisticLockException) {
49
- OptimisticLockException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
50
- })(OptimisticLockException || (OptimisticLockException = {}));
51
- export var ResourceNotFoundException;
52
- (function (ResourceNotFoundException) {
53
- ResourceNotFoundException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
54
- })(ResourceNotFoundException || (ResourceNotFoundException = {}));
55
40
  export var AssociateDRTRoleRequest;
56
41
  (function (AssociateDRTRoleRequest) {
57
42
  AssociateDRTRoleRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -173,14 +158,6 @@ export var CreateProtectionResponse;
173
158
  (function (CreateProtectionResponse) {
174
159
  CreateProtectionResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
175
160
  })(CreateProtectionResponse || (CreateProtectionResponse = {}));
176
- export var InvalidResourceException;
177
- (function (InvalidResourceException) {
178
- InvalidResourceException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
179
- })(InvalidResourceException || (InvalidResourceException = {}));
180
- export var ResourceAlreadyExistsException;
181
- (function (ResourceAlreadyExistsException) {
182
- ResourceAlreadyExistsException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
183
- })(ResourceAlreadyExistsException || (ResourceAlreadyExistsException = {}));
184
161
  export var ProtectionGroupAggregation;
185
162
  (function (ProtectionGroupAggregation) {
186
163
  ProtectionGroupAggregation["MAX"] = "MAX";
@@ -242,10 +219,6 @@ export var DeleteSubscriptionResponse;
242
219
  (function (DeleteSubscriptionResponse) {
243
220
  DeleteSubscriptionResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
244
221
  })(DeleteSubscriptionResponse || (DeleteSubscriptionResponse = {}));
245
- export var LockedSubscriptionException;
246
- (function (LockedSubscriptionException) {
247
- LockedSubscriptionException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
248
- })(LockedSubscriptionException || (LockedSubscriptionException = {}));
249
222
  export var DescribeAttackRequest;
250
223
  (function (DescribeAttackRequest) {
251
224
  DescribeAttackRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -348,6 +321,14 @@ export var DescribeSubscriptionResponse;
348
321
  (function (DescribeSubscriptionResponse) {
349
322
  DescribeSubscriptionResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
350
323
  })(DescribeSubscriptionResponse || (DescribeSubscriptionResponse = {}));
324
+ export var DisableApplicationLayerAutomaticResponseRequest;
325
+ (function (DisableApplicationLayerAutomaticResponseRequest) {
326
+ DisableApplicationLayerAutomaticResponseRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
327
+ })(DisableApplicationLayerAutomaticResponseRequest || (DisableApplicationLayerAutomaticResponseRequest = {}));
328
+ export var DisableApplicationLayerAutomaticResponseResponse;
329
+ (function (DisableApplicationLayerAutomaticResponseResponse) {
330
+ DisableApplicationLayerAutomaticResponseResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
331
+ })(DisableApplicationLayerAutomaticResponseResponse || (DisableApplicationLayerAutomaticResponseResponse = {}));
351
332
  export var DisableProactiveEngagementRequest;
352
333
  (function (DisableProactiveEngagementRequest) {
353
334
  DisableProactiveEngagementRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -380,6 +361,14 @@ export var DisassociateHealthCheckResponse;
380
361
  (function (DisassociateHealthCheckResponse) {
381
362
  DisassociateHealthCheckResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
382
363
  })(DisassociateHealthCheckResponse || (DisassociateHealthCheckResponse = {}));
364
+ export var EnableApplicationLayerAutomaticResponseRequest;
365
+ (function (EnableApplicationLayerAutomaticResponseRequest) {
366
+ EnableApplicationLayerAutomaticResponseRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
367
+ })(EnableApplicationLayerAutomaticResponseRequest || (EnableApplicationLayerAutomaticResponseRequest = {}));
368
+ export var EnableApplicationLayerAutomaticResponseResponse;
369
+ (function (EnableApplicationLayerAutomaticResponseResponse) {
370
+ EnableApplicationLayerAutomaticResponseResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
371
+ })(EnableApplicationLayerAutomaticResponseResponse || (EnableApplicationLayerAutomaticResponseResponse = {}));
383
372
  export var EnableProactiveEngagementRequest;
384
373
  (function (EnableProactiveEngagementRequest) {
385
374
  EnableProactiveEngagementRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -409,10 +398,6 @@ export var ListAttacksResponse;
409
398
  (function (ListAttacksResponse) {
410
399
  ListAttacksResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
411
400
  })(ListAttacksResponse || (ListAttacksResponse = {}));
412
- export var InvalidPaginationTokenException;
413
- (function (InvalidPaginationTokenException) {
414
- InvalidPaginationTokenException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
415
- })(InvalidPaginationTokenException || (InvalidPaginationTokenException = {}));
416
401
  export var ListProtectionGroupsRequest;
417
402
  (function (ListProtectionGroupsRequest) {
418
403
  ListProtectionGroupsRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -461,6 +446,14 @@ export var UntagResourceResponse;
461
446
  (function (UntagResourceResponse) {
462
447
  UntagResourceResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
463
448
  })(UntagResourceResponse || (UntagResourceResponse = {}));
449
+ export var UpdateApplicationLayerAutomaticResponseRequest;
450
+ (function (UpdateApplicationLayerAutomaticResponseRequest) {
451
+ UpdateApplicationLayerAutomaticResponseRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
452
+ })(UpdateApplicationLayerAutomaticResponseRequest || (UpdateApplicationLayerAutomaticResponseRequest = {}));
453
+ export var UpdateApplicationLayerAutomaticResponseResponse;
454
+ (function (UpdateApplicationLayerAutomaticResponseResponse) {
455
+ UpdateApplicationLayerAutomaticResponseResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
456
+ })(UpdateApplicationLayerAutomaticResponseResponse || (UpdateApplicationLayerAutomaticResponseResponse = {}));
464
457
  export var UpdateEmergencyContactSettingsRequest;
465
458
  (function (UpdateEmergencyContactSettingsRequest) {
466
459
  UpdateEmergencyContactSettingsRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };