@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.
- package/CHANGELOG.md +50 -0
- package/dist-cjs/Shield.js +45 -0
- package/dist-cjs/commands/DisableApplicationLayerAutomaticResponseCommand.js +36 -0
- package/dist-cjs/commands/EnableApplicationLayerAutomaticResponseCommand.js +36 -0
- package/dist-cjs/commands/UpdateApplicationLayerAutomaticResponseCommand.js +36 -0
- package/dist-cjs/commands/index.js +3 -0
- package/dist-cjs/endpoints.js +1 -0
- package/dist-cjs/models/models_0.js +64 -77
- package/dist-cjs/protocols/Aws_json1_1.js +363 -2
- package/dist-cjs/runtimeConfig.browser.js +7 -2
- package/dist-cjs/runtimeConfig.js +9 -3
- package/dist-es/Shield.js +45 -0
- package/dist-es/commands/DisableApplicationLayerAutomaticResponseCommand.js +39 -0
- package/dist-es/commands/EnableApplicationLayerAutomaticResponseCommand.js +39 -0
- package/dist-es/commands/UpdateApplicationLayerAutomaticResponseCommand.js +39 -0
- package/dist-es/commands/index.js +3 -0
- package/dist-es/endpoints.js +1 -0
- package/dist-es/models/models_0.js +45 -52
- package/dist-es/protocols/Aws_json1_1.js +430 -50
- package/dist-es/runtimeConfig.browser.js +12 -3
- package/dist-es/runtimeConfig.js +13 -6
- package/dist-types/Shield.d.ts +50 -12
- package/dist-types/ShieldClient.d.ts +10 -3
- package/dist-types/commands/AssociateDRTLogBucketCommand.d.ts +1 -1
- package/dist-types/commands/AssociateDRTRoleCommand.d.ts +4 -3
- package/dist-types/commands/AssociateHealthCheckCommand.d.ts +2 -2
- package/dist-types/commands/CreateProtectionCommand.d.ts +6 -2
- package/dist-types/commands/DisableApplicationLayerAutomaticResponseCommand.d.ts +36 -0
- package/dist-types/commands/DisassociateDRTLogBucketCommand.d.ts +0 -1
- package/dist-types/commands/DisassociateDRTRoleCommand.d.ts +0 -1
- package/dist-types/commands/DisassociateHealthCheckCommand.d.ts +2 -2
- package/dist-types/commands/EnableApplicationLayerAutomaticResponseCommand.d.ts +48 -0
- package/dist-types/commands/UpdateApplicationLayerAutomaticResponseCommand.d.ts +35 -0
- package/dist-types/commands/index.d.ts +3 -0
- package/dist-types/models/models_0.d.ts +250 -128
- package/dist-types/protocols/Aws_json1_1.d.ts +9 -0
- package/dist-types/runtimeConfig.browser.d.ts +3 -2
- package/dist-types/runtimeConfig.d.ts +4 -3
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/ts3.4/Shield.d.ts +15 -0
- package/dist-types/ts3.4/ShieldClient.d.ts +8 -3
- package/dist-types/ts3.4/commands/DisableApplicationLayerAutomaticResponseCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/EnableApplicationLayerAutomaticResponseCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateApplicationLayerAutomaticResponseCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/index.d.ts +3 -0
- package/dist-types/ts3.4/models/models_0.d.ts +92 -56
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +9 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +3 -2
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -3
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -0
- package/package.json +38 -45
|
@@ -17,10 +17,12 @@ import { DescribeEmergencyContactSettingsCommandInput, DescribeEmergencyContactS
|
|
|
17
17
|
import { DescribeProtectionCommandInput, DescribeProtectionCommandOutput } from "../commands/DescribeProtectionCommand";
|
|
18
18
|
import { DescribeProtectionGroupCommandInput, DescribeProtectionGroupCommandOutput } from "../commands/DescribeProtectionGroupCommand";
|
|
19
19
|
import { DescribeSubscriptionCommandInput, DescribeSubscriptionCommandOutput } from "../commands/DescribeSubscriptionCommand";
|
|
20
|
+
import { DisableApplicationLayerAutomaticResponseCommandInput, DisableApplicationLayerAutomaticResponseCommandOutput } from "../commands/DisableApplicationLayerAutomaticResponseCommand";
|
|
20
21
|
import { DisableProactiveEngagementCommandInput, DisableProactiveEngagementCommandOutput } from "../commands/DisableProactiveEngagementCommand";
|
|
21
22
|
import { DisassociateDRTLogBucketCommandInput, DisassociateDRTLogBucketCommandOutput } from "../commands/DisassociateDRTLogBucketCommand";
|
|
22
23
|
import { DisassociateDRTRoleCommandInput, DisassociateDRTRoleCommandOutput } from "../commands/DisassociateDRTRoleCommand";
|
|
23
24
|
import { DisassociateHealthCheckCommandInput, DisassociateHealthCheckCommandOutput } from "../commands/DisassociateHealthCheckCommand";
|
|
25
|
+
import { EnableApplicationLayerAutomaticResponseCommandInput, EnableApplicationLayerAutomaticResponseCommandOutput } from "../commands/EnableApplicationLayerAutomaticResponseCommand";
|
|
24
26
|
import { EnableProactiveEngagementCommandInput, EnableProactiveEngagementCommandOutput } from "../commands/EnableProactiveEngagementCommand";
|
|
25
27
|
import { GetSubscriptionStateCommandInput, GetSubscriptionStateCommandOutput } from "../commands/GetSubscriptionStateCommand";
|
|
26
28
|
import { ListAttacksCommandInput, ListAttacksCommandOutput } from "../commands/ListAttacksCommand";
|
|
@@ -30,6 +32,7 @@ import { ListResourcesInProtectionGroupCommandInput, ListResourcesInProtectionGr
|
|
|
30
32
|
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
|
|
31
33
|
import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
|
|
32
34
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
|
|
35
|
+
import { UpdateApplicationLayerAutomaticResponseCommandInput, UpdateApplicationLayerAutomaticResponseCommandOutput } from "../commands/UpdateApplicationLayerAutomaticResponseCommand";
|
|
33
36
|
import { UpdateEmergencyContactSettingsCommandInput, UpdateEmergencyContactSettingsCommandOutput } from "../commands/UpdateEmergencyContactSettingsCommand";
|
|
34
37
|
import { UpdateProtectionGroupCommandInput, UpdateProtectionGroupCommandOutput } from "../commands/UpdateProtectionGroupCommand";
|
|
35
38
|
import { UpdateSubscriptionCommandInput, UpdateSubscriptionCommandOutput } from "../commands/UpdateSubscriptionCommand";
|
|
@@ -50,10 +53,12 @@ export declare const serializeAws_json1_1DescribeEmergencyContactSettingsCommand
|
|
|
50
53
|
export declare const serializeAws_json1_1DescribeProtectionCommand: (input: DescribeProtectionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
51
54
|
export declare const serializeAws_json1_1DescribeProtectionGroupCommand: (input: DescribeProtectionGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
52
55
|
export declare const serializeAws_json1_1DescribeSubscriptionCommand: (input: DescribeSubscriptionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
56
|
+
export declare const serializeAws_json1_1DisableApplicationLayerAutomaticResponseCommand: (input: DisableApplicationLayerAutomaticResponseCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
53
57
|
export declare const serializeAws_json1_1DisableProactiveEngagementCommand: (input: DisableProactiveEngagementCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
54
58
|
export declare const serializeAws_json1_1DisassociateDRTLogBucketCommand: (input: DisassociateDRTLogBucketCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
55
59
|
export declare const serializeAws_json1_1DisassociateDRTRoleCommand: (input: DisassociateDRTRoleCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
56
60
|
export declare const serializeAws_json1_1DisassociateHealthCheckCommand: (input: DisassociateHealthCheckCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
61
|
+
export declare const serializeAws_json1_1EnableApplicationLayerAutomaticResponseCommand: (input: EnableApplicationLayerAutomaticResponseCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
57
62
|
export declare const serializeAws_json1_1EnableProactiveEngagementCommand: (input: EnableProactiveEngagementCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
58
63
|
export declare const serializeAws_json1_1GetSubscriptionStateCommand: (input: GetSubscriptionStateCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
59
64
|
export declare const serializeAws_json1_1ListAttacksCommand: (input: ListAttacksCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -63,6 +68,7 @@ export declare const serializeAws_json1_1ListResourcesInProtectionGroupCommand:
|
|
|
63
68
|
export declare const serializeAws_json1_1ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
64
69
|
export declare const serializeAws_json1_1TagResourceCommand: (input: TagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
65
70
|
export declare const serializeAws_json1_1UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
71
|
+
export declare const serializeAws_json1_1UpdateApplicationLayerAutomaticResponseCommand: (input: UpdateApplicationLayerAutomaticResponseCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
66
72
|
export declare const serializeAws_json1_1UpdateEmergencyContactSettingsCommand: (input: UpdateEmergencyContactSettingsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
67
73
|
export declare const serializeAws_json1_1UpdateProtectionGroupCommand: (input: UpdateProtectionGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
68
74
|
export declare const serializeAws_json1_1UpdateSubscriptionCommand: (input: UpdateSubscriptionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -83,10 +89,12 @@ export declare const deserializeAws_json1_1DescribeEmergencyContactSettingsComma
|
|
|
83
89
|
export declare const deserializeAws_json1_1DescribeProtectionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeProtectionCommandOutput>;
|
|
84
90
|
export declare const deserializeAws_json1_1DescribeProtectionGroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeProtectionGroupCommandOutput>;
|
|
85
91
|
export declare const deserializeAws_json1_1DescribeSubscriptionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeSubscriptionCommandOutput>;
|
|
92
|
+
export declare const deserializeAws_json1_1DisableApplicationLayerAutomaticResponseCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DisableApplicationLayerAutomaticResponseCommandOutput>;
|
|
86
93
|
export declare const deserializeAws_json1_1DisableProactiveEngagementCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DisableProactiveEngagementCommandOutput>;
|
|
87
94
|
export declare const deserializeAws_json1_1DisassociateDRTLogBucketCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DisassociateDRTLogBucketCommandOutput>;
|
|
88
95
|
export declare const deserializeAws_json1_1DisassociateDRTRoleCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DisassociateDRTRoleCommandOutput>;
|
|
89
96
|
export declare const deserializeAws_json1_1DisassociateHealthCheckCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DisassociateHealthCheckCommandOutput>;
|
|
97
|
+
export declare const deserializeAws_json1_1EnableApplicationLayerAutomaticResponseCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<EnableApplicationLayerAutomaticResponseCommandOutput>;
|
|
90
98
|
export declare const deserializeAws_json1_1EnableProactiveEngagementCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<EnableProactiveEngagementCommandOutput>;
|
|
91
99
|
export declare const deserializeAws_json1_1GetSubscriptionStateCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetSubscriptionStateCommandOutput>;
|
|
92
100
|
export declare const deserializeAws_json1_1ListAttacksCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListAttacksCommandOutput>;
|
|
@@ -96,6 +104,7 @@ export declare const deserializeAws_json1_1ListResourcesInProtectionGroupCommand
|
|
|
96
104
|
export declare const deserializeAws_json1_1ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
|
|
97
105
|
export declare const deserializeAws_json1_1TagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagResourceCommandOutput>;
|
|
98
106
|
export declare const deserializeAws_json1_1UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
|
|
107
|
+
export declare const deserializeAws_json1_1UpdateApplicationLayerAutomaticResponseCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateApplicationLayerAutomaticResponseCommandOutput>;
|
|
99
108
|
export declare const deserializeAws_json1_1UpdateEmergencyContactSettingsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateEmergencyContactSettingsCommandOutput>;
|
|
100
109
|
export declare const deserializeAws_json1_1UpdateProtectionGroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateProtectionGroupCommandOutput>;
|
|
101
110
|
export declare const deserializeAws_json1_1UpdateSubscriptionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateSubscriptionCommandOutput>;
|
|
@@ -1,10 +1,11 @@
|
|
|
1
|
-
import { FetchHttpHandler } from "@aws-sdk/fetch-http-handler";
|
|
1
|
+
import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
|
|
2
2
|
import { ShieldClientConfig } from "./ShieldClient";
|
|
3
3
|
/**
|
|
4
4
|
* @internal
|
|
5
5
|
*/
|
|
6
6
|
export declare const getRuntimeConfig: (config: ShieldClientConfig) => {
|
|
7
7
|
runtime: string;
|
|
8
|
+
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
8
9
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
9
10
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
10
11
|
bodyLengthChecker: (body: any) => number | undefined;
|
|
@@ -12,7 +13,7 @@ export declare const getRuntimeConfig: (config: ShieldClientConfig) => {
|
|
|
12
13
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
13
14
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
14
15
|
region: string | import("@aws-sdk/types").Provider<any>;
|
|
15
|
-
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) |
|
|
16
|
+
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
|
|
16
17
|
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
17
18
|
sha256: import("@aws-sdk/types").HashConstructor;
|
|
18
19
|
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
@@ -1,18 +1,19 @@
|
|
|
1
|
-
import { NodeHttpHandler } from "@aws-sdk/node-http-handler";
|
|
1
|
+
import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
|
|
2
2
|
import { ShieldClientConfig } from "./ShieldClient";
|
|
3
3
|
/**
|
|
4
4
|
* @internal
|
|
5
5
|
*/
|
|
6
6
|
export declare const getRuntimeConfig: (config: ShieldClientConfig) => {
|
|
7
7
|
runtime: string;
|
|
8
|
+
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
8
9
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
9
10
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
10
11
|
bodyLengthChecker: (body: any) => number | undefined;
|
|
11
|
-
credentialDefaultProvider: import("@aws-sdk/
|
|
12
|
+
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
12
13
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
13
14
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
14
15
|
region: string | import("@aws-sdk/types").Provider<string>;
|
|
15
|
-
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) |
|
|
16
|
+
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
|
|
16
17
|
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
17
18
|
sha256: import("@aws-sdk/types").HashConstructor;
|
|
18
19
|
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
@@ -25,6 +25,7 @@ export declare const getRuntimeConfig: (config: ShieldClientConfig) => {
|
|
|
25
25
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
26
26
|
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
27
27
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
28
|
+
defaultsMode: import("@aws-sdk/smithy-client").DefaultsMode | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").DefaultsMode> | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
28
29
|
endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
|
|
29
30
|
tls?: boolean | undefined;
|
|
30
31
|
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
@@ -16,10 +16,12 @@ import { DescribeEmergencyContactSettingsCommandInput, DescribeEmergencyContactS
|
|
|
16
16
|
import { DescribeProtectionCommandInput, DescribeProtectionCommandOutput } from "./commands/DescribeProtectionCommand";
|
|
17
17
|
import { DescribeProtectionGroupCommandInput, DescribeProtectionGroupCommandOutput } from "./commands/DescribeProtectionGroupCommand";
|
|
18
18
|
import { DescribeSubscriptionCommandInput, DescribeSubscriptionCommandOutput } from "./commands/DescribeSubscriptionCommand";
|
|
19
|
+
import { DisableApplicationLayerAutomaticResponseCommandInput, DisableApplicationLayerAutomaticResponseCommandOutput } from "./commands/DisableApplicationLayerAutomaticResponseCommand";
|
|
19
20
|
import { DisableProactiveEngagementCommandInput, DisableProactiveEngagementCommandOutput } from "./commands/DisableProactiveEngagementCommand";
|
|
20
21
|
import { DisassociateDRTLogBucketCommandInput, DisassociateDRTLogBucketCommandOutput } from "./commands/DisassociateDRTLogBucketCommand";
|
|
21
22
|
import { DisassociateDRTRoleCommandInput, DisassociateDRTRoleCommandOutput } from "./commands/DisassociateDRTRoleCommand";
|
|
22
23
|
import { DisassociateHealthCheckCommandInput, DisassociateHealthCheckCommandOutput } from "./commands/DisassociateHealthCheckCommand";
|
|
24
|
+
import { EnableApplicationLayerAutomaticResponseCommandInput, EnableApplicationLayerAutomaticResponseCommandOutput } from "./commands/EnableApplicationLayerAutomaticResponseCommand";
|
|
23
25
|
import { EnableProactiveEngagementCommandInput, EnableProactiveEngagementCommandOutput } from "./commands/EnableProactiveEngagementCommand";
|
|
24
26
|
import { GetSubscriptionStateCommandInput, GetSubscriptionStateCommandOutput } from "./commands/GetSubscriptionStateCommand";
|
|
25
27
|
import { ListAttacksCommandInput, ListAttacksCommandOutput } from "./commands/ListAttacksCommand";
|
|
@@ -29,6 +31,7 @@ import { ListResourcesInProtectionGroupCommandInput, ListResourcesInProtectionGr
|
|
|
29
31
|
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
30
32
|
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
31
33
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
34
|
+
import { UpdateApplicationLayerAutomaticResponseCommandInput, UpdateApplicationLayerAutomaticResponseCommandOutput } from "./commands/UpdateApplicationLayerAutomaticResponseCommand";
|
|
32
35
|
import { UpdateEmergencyContactSettingsCommandInput, UpdateEmergencyContactSettingsCommandOutput } from "./commands/UpdateEmergencyContactSettingsCommand";
|
|
33
36
|
import { UpdateProtectionGroupCommandInput, UpdateProtectionGroupCommandOutput } from "./commands/UpdateProtectionGroupCommand";
|
|
34
37
|
import { UpdateSubscriptionCommandInput, UpdateSubscriptionCommandOutput } from "./commands/UpdateSubscriptionCommand";
|
|
@@ -104,6 +107,10 @@ export declare class Shield extends ShieldClient {
|
|
|
104
107
|
describeSubscription(args: DescribeSubscriptionCommandInput, cb: (err: any, data?: DescribeSubscriptionCommandOutput) => void): void;
|
|
105
108
|
describeSubscription(args: DescribeSubscriptionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeSubscriptionCommandOutput) => void): void;
|
|
106
109
|
|
|
110
|
+
disableApplicationLayerAutomaticResponse(args: DisableApplicationLayerAutomaticResponseCommandInput, options?: __HttpHandlerOptions): Promise<DisableApplicationLayerAutomaticResponseCommandOutput>;
|
|
111
|
+
disableApplicationLayerAutomaticResponse(args: DisableApplicationLayerAutomaticResponseCommandInput, cb: (err: any, data?: DisableApplicationLayerAutomaticResponseCommandOutput) => void): void;
|
|
112
|
+
disableApplicationLayerAutomaticResponse(args: DisableApplicationLayerAutomaticResponseCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisableApplicationLayerAutomaticResponseCommandOutput) => void): void;
|
|
113
|
+
|
|
107
114
|
disableProactiveEngagement(args: DisableProactiveEngagementCommandInput, options?: __HttpHandlerOptions): Promise<DisableProactiveEngagementCommandOutput>;
|
|
108
115
|
disableProactiveEngagement(args: DisableProactiveEngagementCommandInput, cb: (err: any, data?: DisableProactiveEngagementCommandOutput) => void): void;
|
|
109
116
|
disableProactiveEngagement(args: DisableProactiveEngagementCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisableProactiveEngagementCommandOutput) => void): void;
|
|
@@ -120,6 +127,10 @@ export declare class Shield extends ShieldClient {
|
|
|
120
127
|
disassociateHealthCheck(args: DisassociateHealthCheckCommandInput, cb: (err: any, data?: DisassociateHealthCheckCommandOutput) => void): void;
|
|
121
128
|
disassociateHealthCheck(args: DisassociateHealthCheckCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisassociateHealthCheckCommandOutput) => void): void;
|
|
122
129
|
|
|
130
|
+
enableApplicationLayerAutomaticResponse(args: EnableApplicationLayerAutomaticResponseCommandInput, options?: __HttpHandlerOptions): Promise<EnableApplicationLayerAutomaticResponseCommandOutput>;
|
|
131
|
+
enableApplicationLayerAutomaticResponse(args: EnableApplicationLayerAutomaticResponseCommandInput, cb: (err: any, data?: EnableApplicationLayerAutomaticResponseCommandOutput) => void): void;
|
|
132
|
+
enableApplicationLayerAutomaticResponse(args: EnableApplicationLayerAutomaticResponseCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: EnableApplicationLayerAutomaticResponseCommandOutput) => void): void;
|
|
133
|
+
|
|
123
134
|
enableProactiveEngagement(args: EnableProactiveEngagementCommandInput, options?: __HttpHandlerOptions): Promise<EnableProactiveEngagementCommandOutput>;
|
|
124
135
|
enableProactiveEngagement(args: EnableProactiveEngagementCommandInput, cb: (err: any, data?: EnableProactiveEngagementCommandOutput) => void): void;
|
|
125
136
|
enableProactiveEngagement(args: EnableProactiveEngagementCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: EnableProactiveEngagementCommandOutput) => void): void;
|
|
@@ -156,6 +167,10 @@ export declare class Shield extends ShieldClient {
|
|
|
156
167
|
untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
157
168
|
untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
158
169
|
|
|
170
|
+
updateApplicationLayerAutomaticResponse(args: UpdateApplicationLayerAutomaticResponseCommandInput, options?: __HttpHandlerOptions): Promise<UpdateApplicationLayerAutomaticResponseCommandOutput>;
|
|
171
|
+
updateApplicationLayerAutomaticResponse(args: UpdateApplicationLayerAutomaticResponseCommandInput, cb: (err: any, data?: UpdateApplicationLayerAutomaticResponseCommandOutput) => void): void;
|
|
172
|
+
updateApplicationLayerAutomaticResponse(args: UpdateApplicationLayerAutomaticResponseCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateApplicationLayerAutomaticResponseCommandOutput) => void): void;
|
|
173
|
+
|
|
159
174
|
updateEmergencyContactSettings(args: UpdateEmergencyContactSettingsCommandInput, options?: __HttpHandlerOptions): Promise<UpdateEmergencyContactSettingsCommandOutput>;
|
|
160
175
|
updateEmergencyContactSettings(args: UpdateEmergencyContactSettingsCommandInput, cb: (err: any, data?: UpdateEmergencyContactSettingsCommandOutput) => void): void;
|
|
161
176
|
updateEmergencyContactSettings(args: UpdateEmergencyContactSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateEmergencyContactSettingsCommandOutput) => void): void;
|
|
@@ -4,7 +4,7 @@ import { RetryInputConfig, RetryResolvedConfig } from "@aws-sdk/middleware-retry
|
|
|
4
4
|
import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-signing";
|
|
5
5
|
import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
|
|
6
6
|
import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
|
|
7
|
-
import { Client as __Client, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
|
|
7
|
+
import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
|
|
8
8
|
import { Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
|
|
9
9
|
import { AssociateDRTLogBucketCommandInput, AssociateDRTLogBucketCommandOutput } from "./commands/AssociateDRTLogBucketCommand";
|
|
10
10
|
import { AssociateDRTRoleCommandInput, AssociateDRTRoleCommandOutput } from "./commands/AssociateDRTRoleCommand";
|
|
@@ -23,10 +23,12 @@ import { DescribeEmergencyContactSettingsCommandInput, DescribeEmergencyContactS
|
|
|
23
23
|
import { DescribeProtectionCommandInput, DescribeProtectionCommandOutput } from "./commands/DescribeProtectionCommand";
|
|
24
24
|
import { DescribeProtectionGroupCommandInput, DescribeProtectionGroupCommandOutput } from "./commands/DescribeProtectionGroupCommand";
|
|
25
25
|
import { DescribeSubscriptionCommandInput, DescribeSubscriptionCommandOutput } from "./commands/DescribeSubscriptionCommand";
|
|
26
|
+
import { DisableApplicationLayerAutomaticResponseCommandInput, DisableApplicationLayerAutomaticResponseCommandOutput } from "./commands/DisableApplicationLayerAutomaticResponseCommand";
|
|
26
27
|
import { DisableProactiveEngagementCommandInput, DisableProactiveEngagementCommandOutput } from "./commands/DisableProactiveEngagementCommand";
|
|
27
28
|
import { DisassociateDRTLogBucketCommandInput, DisassociateDRTLogBucketCommandOutput } from "./commands/DisassociateDRTLogBucketCommand";
|
|
28
29
|
import { DisassociateDRTRoleCommandInput, DisassociateDRTRoleCommandOutput } from "./commands/DisassociateDRTRoleCommand";
|
|
29
30
|
import { DisassociateHealthCheckCommandInput, DisassociateHealthCheckCommandOutput } from "./commands/DisassociateHealthCheckCommand";
|
|
31
|
+
import { EnableApplicationLayerAutomaticResponseCommandInput, EnableApplicationLayerAutomaticResponseCommandOutput } from "./commands/EnableApplicationLayerAutomaticResponseCommand";
|
|
30
32
|
import { EnableProactiveEngagementCommandInput, EnableProactiveEngagementCommandOutput } from "./commands/EnableProactiveEngagementCommand";
|
|
31
33
|
import { GetSubscriptionStateCommandInput, GetSubscriptionStateCommandOutput } from "./commands/GetSubscriptionStateCommand";
|
|
32
34
|
import { ListAttacksCommandInput, ListAttacksCommandOutput } from "./commands/ListAttacksCommand";
|
|
@@ -36,11 +38,12 @@ import { ListResourcesInProtectionGroupCommandInput, ListResourcesInProtectionGr
|
|
|
36
38
|
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
37
39
|
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
38
40
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
41
|
+
import { UpdateApplicationLayerAutomaticResponseCommandInput, UpdateApplicationLayerAutomaticResponseCommandOutput } from "./commands/UpdateApplicationLayerAutomaticResponseCommand";
|
|
39
42
|
import { UpdateEmergencyContactSettingsCommandInput, UpdateEmergencyContactSettingsCommandOutput } from "./commands/UpdateEmergencyContactSettingsCommand";
|
|
40
43
|
import { UpdateProtectionGroupCommandInput, UpdateProtectionGroupCommandOutput } from "./commands/UpdateProtectionGroupCommand";
|
|
41
44
|
import { UpdateSubscriptionCommandInput, UpdateSubscriptionCommandOutput } from "./commands/UpdateSubscriptionCommand";
|
|
42
|
-
export declare type ServiceInputTypes = AssociateDRTLogBucketCommandInput | AssociateDRTRoleCommandInput | AssociateHealthCheckCommandInput | AssociateProactiveEngagementDetailsCommandInput | CreateProtectionCommandInput | CreateProtectionGroupCommandInput | CreateSubscriptionCommandInput | DeleteProtectionCommandInput | DeleteProtectionGroupCommandInput | DeleteSubscriptionCommandInput | DescribeAttackCommandInput | DescribeAttackStatisticsCommandInput | DescribeDRTAccessCommandInput | DescribeEmergencyContactSettingsCommandInput | DescribeProtectionCommandInput | DescribeProtectionGroupCommandInput | DescribeSubscriptionCommandInput | DisableProactiveEngagementCommandInput | DisassociateDRTLogBucketCommandInput | DisassociateDRTRoleCommandInput | DisassociateHealthCheckCommandInput | EnableProactiveEngagementCommandInput | GetSubscriptionStateCommandInput | ListAttacksCommandInput | ListProtectionGroupsCommandInput | ListProtectionsCommandInput | ListResourcesInProtectionGroupCommandInput | ListTagsForResourceCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateEmergencyContactSettingsCommandInput | UpdateProtectionGroupCommandInput | UpdateSubscriptionCommandInput;
|
|
43
|
-
export declare type ServiceOutputTypes = AssociateDRTLogBucketCommandOutput | AssociateDRTRoleCommandOutput | AssociateHealthCheckCommandOutput | AssociateProactiveEngagementDetailsCommandOutput | CreateProtectionCommandOutput | CreateProtectionGroupCommandOutput | CreateSubscriptionCommandOutput | DeleteProtectionCommandOutput | DeleteProtectionGroupCommandOutput | DeleteSubscriptionCommandOutput | DescribeAttackCommandOutput | DescribeAttackStatisticsCommandOutput | DescribeDRTAccessCommandOutput | DescribeEmergencyContactSettingsCommandOutput | DescribeProtectionCommandOutput | DescribeProtectionGroupCommandOutput | DescribeSubscriptionCommandOutput | DisableProactiveEngagementCommandOutput | DisassociateDRTLogBucketCommandOutput | DisassociateDRTRoleCommandOutput | DisassociateHealthCheckCommandOutput | EnableProactiveEngagementCommandOutput | GetSubscriptionStateCommandOutput | ListAttacksCommandOutput | ListProtectionGroupsCommandOutput | ListProtectionsCommandOutput | ListResourcesInProtectionGroupCommandOutput | ListTagsForResourceCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateEmergencyContactSettingsCommandOutput | UpdateProtectionGroupCommandOutput | UpdateSubscriptionCommandOutput;
|
|
45
|
+
export declare type ServiceInputTypes = AssociateDRTLogBucketCommandInput | AssociateDRTRoleCommandInput | AssociateHealthCheckCommandInput | AssociateProactiveEngagementDetailsCommandInput | CreateProtectionCommandInput | CreateProtectionGroupCommandInput | CreateSubscriptionCommandInput | DeleteProtectionCommandInput | DeleteProtectionGroupCommandInput | DeleteSubscriptionCommandInput | DescribeAttackCommandInput | DescribeAttackStatisticsCommandInput | DescribeDRTAccessCommandInput | DescribeEmergencyContactSettingsCommandInput | DescribeProtectionCommandInput | DescribeProtectionGroupCommandInput | DescribeSubscriptionCommandInput | DisableApplicationLayerAutomaticResponseCommandInput | DisableProactiveEngagementCommandInput | DisassociateDRTLogBucketCommandInput | DisassociateDRTRoleCommandInput | DisassociateHealthCheckCommandInput | EnableApplicationLayerAutomaticResponseCommandInput | EnableProactiveEngagementCommandInput | GetSubscriptionStateCommandInput | ListAttacksCommandInput | ListProtectionGroupsCommandInput | ListProtectionsCommandInput | ListResourcesInProtectionGroupCommandInput | ListTagsForResourceCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateApplicationLayerAutomaticResponseCommandInput | UpdateEmergencyContactSettingsCommandInput | UpdateProtectionGroupCommandInput | UpdateSubscriptionCommandInput;
|
|
46
|
+
export declare type ServiceOutputTypes = AssociateDRTLogBucketCommandOutput | AssociateDRTRoleCommandOutput | AssociateHealthCheckCommandOutput | AssociateProactiveEngagementDetailsCommandOutput | CreateProtectionCommandOutput | CreateProtectionGroupCommandOutput | CreateSubscriptionCommandOutput | DeleteProtectionCommandOutput | DeleteProtectionGroupCommandOutput | DeleteSubscriptionCommandOutput | DescribeAttackCommandOutput | DescribeAttackStatisticsCommandOutput | DescribeDRTAccessCommandOutput | DescribeEmergencyContactSettingsCommandOutput | DescribeProtectionCommandOutput | DescribeProtectionGroupCommandOutput | DescribeSubscriptionCommandOutput | DisableApplicationLayerAutomaticResponseCommandOutput | DisableProactiveEngagementCommandOutput | DisassociateDRTLogBucketCommandOutput | DisassociateDRTRoleCommandOutput | DisassociateHealthCheckCommandOutput | EnableApplicationLayerAutomaticResponseCommandOutput | EnableProactiveEngagementCommandOutput | GetSubscriptionStateCommandOutput | ListAttacksCommandOutput | ListProtectionGroupsCommandOutput | ListProtectionsCommandOutput | ListResourcesInProtectionGroupCommandOutput | ListTagsForResourceCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateApplicationLayerAutomaticResponseCommandOutput | UpdateEmergencyContactSettingsCommandOutput | UpdateProtectionGroupCommandOutput | UpdateSubscriptionCommandOutput;
|
|
44
47
|
export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
45
48
|
|
|
46
49
|
requestHandler?: __HttpHandler;
|
|
@@ -84,6 +87,8 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
|
|
|
84
87
|
regionInfoProvider?: RegionInfoProvider;
|
|
85
88
|
|
|
86
89
|
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
90
|
+
|
|
91
|
+
defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
|
|
87
92
|
}
|
|
88
93
|
declare type ShieldClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointsInputConfig & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig;
|
|
89
94
|
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { DisableApplicationLayerAutomaticResponseRequest, DisableApplicationLayerAutomaticResponseResponse } from "../models/models_0";
|
|
4
|
+
import { ServiceInputTypes, ServiceOutputTypes, ShieldClientResolvedConfig } from "../ShieldClient";
|
|
5
|
+
export interface DisableApplicationLayerAutomaticResponseCommandInput extends DisableApplicationLayerAutomaticResponseRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface DisableApplicationLayerAutomaticResponseCommandOutput extends DisableApplicationLayerAutomaticResponseResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class DisableApplicationLayerAutomaticResponseCommand extends $Command<DisableApplicationLayerAutomaticResponseCommandInput, DisableApplicationLayerAutomaticResponseCommandOutput, ShieldClientResolvedConfig> {
|
|
11
|
+
readonly input: DisableApplicationLayerAutomaticResponseCommandInput;
|
|
12
|
+
constructor(input: DisableApplicationLayerAutomaticResponseCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ShieldClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DisableApplicationLayerAutomaticResponseCommandInput, DisableApplicationLayerAutomaticResponseCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { EnableApplicationLayerAutomaticResponseRequest, EnableApplicationLayerAutomaticResponseResponse } from "../models/models_0";
|
|
4
|
+
import { ServiceInputTypes, ServiceOutputTypes, ShieldClientResolvedConfig } from "../ShieldClient";
|
|
5
|
+
export interface EnableApplicationLayerAutomaticResponseCommandInput extends EnableApplicationLayerAutomaticResponseRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface EnableApplicationLayerAutomaticResponseCommandOutput extends EnableApplicationLayerAutomaticResponseResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class EnableApplicationLayerAutomaticResponseCommand extends $Command<EnableApplicationLayerAutomaticResponseCommandInput, EnableApplicationLayerAutomaticResponseCommandOutput, ShieldClientResolvedConfig> {
|
|
11
|
+
readonly input: EnableApplicationLayerAutomaticResponseCommandInput;
|
|
12
|
+
constructor(input: EnableApplicationLayerAutomaticResponseCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ShieldClientResolvedConfig, options?: __HttpHandlerOptions): Handler<EnableApplicationLayerAutomaticResponseCommandInput, EnableApplicationLayerAutomaticResponseCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { UpdateApplicationLayerAutomaticResponseRequest, UpdateApplicationLayerAutomaticResponseResponse } from "../models/models_0";
|
|
4
|
+
import { ServiceInputTypes, ServiceOutputTypes, ShieldClientResolvedConfig } from "../ShieldClient";
|
|
5
|
+
export interface UpdateApplicationLayerAutomaticResponseCommandInput extends UpdateApplicationLayerAutomaticResponseRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface UpdateApplicationLayerAutomaticResponseCommandOutput extends UpdateApplicationLayerAutomaticResponseResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class UpdateApplicationLayerAutomaticResponseCommand extends $Command<UpdateApplicationLayerAutomaticResponseCommandInput, UpdateApplicationLayerAutomaticResponseCommandOutput, ShieldClientResolvedConfig> {
|
|
11
|
+
readonly input: UpdateApplicationLayerAutomaticResponseCommandInput;
|
|
12
|
+
constructor(input: UpdateApplicationLayerAutomaticResponseCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ShieldClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateApplicationLayerAutomaticResponseCommandInput, UpdateApplicationLayerAutomaticResponseCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -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";
|
|
@@ -5,19 +5,51 @@ export interface AccessDeniedException extends __SmithyException, $MetadataBeare
|
|
|
5
5
|
$fault: "client";
|
|
6
6
|
message?: string;
|
|
7
7
|
}
|
|
8
|
-
export declare namespace AccessDeniedException {
|
|
9
|
-
|
|
10
|
-
const filterSensitiveLog: (obj: AccessDeniedException) => any;
|
|
11
|
-
}
|
|
12
8
|
|
|
13
9
|
export interface AccessDeniedForDependencyException extends __SmithyException, $MetadataBearer {
|
|
14
10
|
name: "AccessDeniedForDependencyException";
|
|
15
11
|
$fault: "client";
|
|
16
12
|
message?: string;
|
|
17
13
|
}
|
|
18
|
-
|
|
14
|
+
|
|
15
|
+
export interface BlockAction {
|
|
16
|
+
}
|
|
17
|
+
export declare namespace BlockAction {
|
|
18
|
+
|
|
19
|
+
const filterSensitiveLog: (obj: BlockAction) => any;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
export interface CountAction {
|
|
23
|
+
}
|
|
24
|
+
export declare namespace CountAction {
|
|
25
|
+
|
|
26
|
+
const filterSensitiveLog: (obj: CountAction) => any;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
export interface ResponseAction {
|
|
30
|
+
|
|
31
|
+
Block?: BlockAction;
|
|
32
|
+
|
|
33
|
+
Count?: CountAction;
|
|
34
|
+
}
|
|
35
|
+
export declare namespace ResponseAction {
|
|
36
|
+
|
|
37
|
+
const filterSensitiveLog: (obj: ResponseAction) => any;
|
|
38
|
+
}
|
|
39
|
+
export declare enum ApplicationLayerAutomaticResponseStatus {
|
|
40
|
+
DISABLED = "DISABLED",
|
|
41
|
+
ENABLED = "ENABLED"
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
export interface ApplicationLayerAutomaticResponseConfiguration {
|
|
45
|
+
|
|
46
|
+
Status: ApplicationLayerAutomaticResponseStatus | string | undefined;
|
|
47
|
+
|
|
48
|
+
Action: ResponseAction | undefined;
|
|
49
|
+
}
|
|
50
|
+
export declare namespace ApplicationLayerAutomaticResponseConfiguration {
|
|
19
51
|
|
|
20
|
-
const filterSensitiveLog: (obj:
|
|
52
|
+
const filterSensitiveLog: (obj: ApplicationLayerAutomaticResponseConfiguration) => any;
|
|
21
53
|
}
|
|
22
54
|
export interface AssociateDRTLogBucketRequest {
|
|
23
55
|
|
|
@@ -39,20 +71,12 @@ export interface InternalErrorException extends __SmithyException, $MetadataBear
|
|
|
39
71
|
$fault: "server";
|
|
40
72
|
message?: string;
|
|
41
73
|
}
|
|
42
|
-
export declare namespace InternalErrorException {
|
|
43
|
-
|
|
44
|
-
const filterSensitiveLog: (obj: InternalErrorException) => any;
|
|
45
|
-
}
|
|
46
74
|
|
|
47
75
|
export interface InvalidOperationException extends __SmithyException, $MetadataBearer {
|
|
48
76
|
name: "InvalidOperationException";
|
|
49
77
|
$fault: "client";
|
|
50
78
|
message?: string;
|
|
51
79
|
}
|
|
52
|
-
export declare namespace InvalidOperationException {
|
|
53
|
-
|
|
54
|
-
const filterSensitiveLog: (obj: InvalidOperationException) => any;
|
|
55
|
-
}
|
|
56
80
|
|
|
57
81
|
export interface ValidationExceptionField {
|
|
58
82
|
|
|
@@ -78,10 +102,6 @@ export interface InvalidParameterException extends __SmithyException, $MetadataB
|
|
|
78
102
|
|
|
79
103
|
fields?: ValidationExceptionField[];
|
|
80
104
|
}
|
|
81
|
-
export declare namespace InvalidParameterException {
|
|
82
|
-
|
|
83
|
-
const filterSensitiveLog: (obj: InvalidParameterException) => any;
|
|
84
|
-
}
|
|
85
105
|
|
|
86
106
|
export interface LimitsExceededException extends __SmithyException, $MetadataBearer {
|
|
87
107
|
name: "LimitsExceededException";
|
|
@@ -92,30 +112,18 @@ export interface LimitsExceededException extends __SmithyException, $MetadataBea
|
|
|
92
112
|
|
|
93
113
|
Limit?: number;
|
|
94
114
|
}
|
|
95
|
-
export declare namespace LimitsExceededException {
|
|
96
|
-
|
|
97
|
-
const filterSensitiveLog: (obj: LimitsExceededException) => any;
|
|
98
|
-
}
|
|
99
115
|
|
|
100
116
|
export interface NoAssociatedRoleException extends __SmithyException, $MetadataBearer {
|
|
101
117
|
name: "NoAssociatedRoleException";
|
|
102
118
|
$fault: "client";
|
|
103
119
|
message?: string;
|
|
104
120
|
}
|
|
105
|
-
export declare namespace NoAssociatedRoleException {
|
|
106
|
-
|
|
107
|
-
const filterSensitiveLog: (obj: NoAssociatedRoleException) => any;
|
|
108
|
-
}
|
|
109
121
|
|
|
110
122
|
export interface OptimisticLockException extends __SmithyException, $MetadataBearer {
|
|
111
123
|
name: "OptimisticLockException";
|
|
112
124
|
$fault: "client";
|
|
113
125
|
message?: string;
|
|
114
126
|
}
|
|
115
|
-
export declare namespace OptimisticLockException {
|
|
116
|
-
|
|
117
|
-
const filterSensitiveLog: (obj: OptimisticLockException) => any;
|
|
118
|
-
}
|
|
119
127
|
|
|
120
128
|
export interface ResourceNotFoundException extends __SmithyException, $MetadataBearer {
|
|
121
129
|
name: "ResourceNotFoundException";
|
|
@@ -124,10 +132,6 @@ export interface ResourceNotFoundException extends __SmithyException, $MetadataB
|
|
|
124
132
|
|
|
125
133
|
resourceType?: string;
|
|
126
134
|
}
|
|
127
|
-
export declare namespace ResourceNotFoundException {
|
|
128
|
-
|
|
129
|
-
const filterSensitiveLog: (obj: ResourceNotFoundException) => any;
|
|
130
|
-
}
|
|
131
135
|
export interface AssociateDRTRoleRequest {
|
|
132
136
|
|
|
133
137
|
RoleArn: string | undefined;
|
|
@@ -159,6 +163,12 @@ export declare namespace AssociateHealthCheckResponse {
|
|
|
159
163
|
const filterSensitiveLog: (obj: AssociateHealthCheckResponse) => any;
|
|
160
164
|
}
|
|
161
165
|
|
|
166
|
+
export interface InvalidResourceException extends __SmithyException, $MetadataBearer {
|
|
167
|
+
name: "InvalidResourceException";
|
|
168
|
+
$fault: "client";
|
|
169
|
+
message?: string;
|
|
170
|
+
}
|
|
171
|
+
|
|
162
172
|
export interface EmergencyContact {
|
|
163
173
|
|
|
164
174
|
EmailAddress: string | undefined;
|
|
@@ -409,16 +419,6 @@ export declare namespace CreateProtectionResponse {
|
|
|
409
419
|
const filterSensitiveLog: (obj: CreateProtectionResponse) => any;
|
|
410
420
|
}
|
|
411
421
|
|
|
412
|
-
export interface InvalidResourceException extends __SmithyException, $MetadataBearer {
|
|
413
|
-
name: "InvalidResourceException";
|
|
414
|
-
$fault: "client";
|
|
415
|
-
message?: string;
|
|
416
|
-
}
|
|
417
|
-
export declare namespace InvalidResourceException {
|
|
418
|
-
|
|
419
|
-
const filterSensitiveLog: (obj: InvalidResourceException) => any;
|
|
420
|
-
}
|
|
421
|
-
|
|
422
422
|
export interface ResourceAlreadyExistsException extends __SmithyException, $MetadataBearer {
|
|
423
423
|
name: "ResourceAlreadyExistsException";
|
|
424
424
|
$fault: "client";
|
|
@@ -426,10 +426,6 @@ export interface ResourceAlreadyExistsException extends __SmithyException, $Meta
|
|
|
426
426
|
|
|
427
427
|
resourceType?: string;
|
|
428
428
|
}
|
|
429
|
-
export declare namespace ResourceAlreadyExistsException {
|
|
430
|
-
|
|
431
|
-
const filterSensitiveLog: (obj: ResourceAlreadyExistsException) => any;
|
|
432
|
-
}
|
|
433
429
|
export declare enum ProtectionGroupAggregation {
|
|
434
430
|
MAX = "MAX",
|
|
435
431
|
MEAN = "MEAN",
|
|
@@ -530,10 +526,6 @@ export interface LockedSubscriptionException extends __SmithyException, $Metadat
|
|
|
530
526
|
$fault: "client";
|
|
531
527
|
message?: string;
|
|
532
528
|
}
|
|
533
|
-
export declare namespace LockedSubscriptionException {
|
|
534
|
-
|
|
535
|
-
const filterSensitiveLog: (obj: LockedSubscriptionException) => any;
|
|
536
|
-
}
|
|
537
529
|
export interface DescribeAttackRequest {
|
|
538
530
|
|
|
539
531
|
AttackId: string | undefined;
|
|
@@ -629,6 +621,8 @@ export interface Protection {
|
|
|
629
621
|
HealthCheckIds?: string[];
|
|
630
622
|
|
|
631
623
|
ProtectionArn?: string;
|
|
624
|
+
|
|
625
|
+
ApplicationLayerAutomaticResponseConfiguration?: ApplicationLayerAutomaticResponseConfiguration;
|
|
632
626
|
}
|
|
633
627
|
export declare namespace Protection {
|
|
634
628
|
|
|
@@ -779,6 +773,20 @@ export declare namespace DescribeSubscriptionResponse {
|
|
|
779
773
|
|
|
780
774
|
const filterSensitiveLog: (obj: DescribeSubscriptionResponse) => any;
|
|
781
775
|
}
|
|
776
|
+
export interface DisableApplicationLayerAutomaticResponseRequest {
|
|
777
|
+
|
|
778
|
+
ResourceArn: string | undefined;
|
|
779
|
+
}
|
|
780
|
+
export declare namespace DisableApplicationLayerAutomaticResponseRequest {
|
|
781
|
+
|
|
782
|
+
const filterSensitiveLog: (obj: DisableApplicationLayerAutomaticResponseRequest) => any;
|
|
783
|
+
}
|
|
784
|
+
export interface DisableApplicationLayerAutomaticResponseResponse {
|
|
785
|
+
}
|
|
786
|
+
export declare namespace DisableApplicationLayerAutomaticResponseResponse {
|
|
787
|
+
|
|
788
|
+
const filterSensitiveLog: (obj: DisableApplicationLayerAutomaticResponseResponse) => any;
|
|
789
|
+
}
|
|
782
790
|
export interface DisableProactiveEngagementRequest {
|
|
783
791
|
}
|
|
784
792
|
export declare namespace DisableProactiveEngagementRequest {
|
|
@@ -833,6 +841,22 @@ export declare namespace DisassociateHealthCheckResponse {
|
|
|
833
841
|
|
|
834
842
|
const filterSensitiveLog: (obj: DisassociateHealthCheckResponse) => any;
|
|
835
843
|
}
|
|
844
|
+
export interface EnableApplicationLayerAutomaticResponseRequest {
|
|
845
|
+
|
|
846
|
+
ResourceArn: string | undefined;
|
|
847
|
+
|
|
848
|
+
Action: ResponseAction | undefined;
|
|
849
|
+
}
|
|
850
|
+
export declare namespace EnableApplicationLayerAutomaticResponseRequest {
|
|
851
|
+
|
|
852
|
+
const filterSensitiveLog: (obj: EnableApplicationLayerAutomaticResponseRequest) => any;
|
|
853
|
+
}
|
|
854
|
+
export interface EnableApplicationLayerAutomaticResponseResponse {
|
|
855
|
+
}
|
|
856
|
+
export declare namespace EnableApplicationLayerAutomaticResponseResponse {
|
|
857
|
+
|
|
858
|
+
const filterSensitiveLog: (obj: EnableApplicationLayerAutomaticResponseResponse) => any;
|
|
859
|
+
}
|
|
836
860
|
export interface EnableProactiveEngagementRequest {
|
|
837
861
|
}
|
|
838
862
|
export declare namespace EnableProactiveEngagementRequest {
|
|
@@ -895,10 +919,6 @@ export interface InvalidPaginationTokenException extends __SmithyException, $Met
|
|
|
895
919
|
$fault: "client";
|
|
896
920
|
message?: string;
|
|
897
921
|
}
|
|
898
|
-
export declare namespace InvalidPaginationTokenException {
|
|
899
|
-
|
|
900
|
-
const filterSensitiveLog: (obj: InvalidPaginationTokenException) => any;
|
|
901
|
-
}
|
|
902
922
|
export interface ListProtectionGroupsRequest {
|
|
903
923
|
|
|
904
924
|
NextToken?: string;
|
|
@@ -1009,6 +1029,22 @@ export declare namespace UntagResourceResponse {
|
|
|
1009
1029
|
|
|
1010
1030
|
const filterSensitiveLog: (obj: UntagResourceResponse) => any;
|
|
1011
1031
|
}
|
|
1032
|
+
export interface UpdateApplicationLayerAutomaticResponseRequest {
|
|
1033
|
+
|
|
1034
|
+
ResourceArn: string | undefined;
|
|
1035
|
+
|
|
1036
|
+
Action: ResponseAction | undefined;
|
|
1037
|
+
}
|
|
1038
|
+
export declare namespace UpdateApplicationLayerAutomaticResponseRequest {
|
|
1039
|
+
|
|
1040
|
+
const filterSensitiveLog: (obj: UpdateApplicationLayerAutomaticResponseRequest) => any;
|
|
1041
|
+
}
|
|
1042
|
+
export interface UpdateApplicationLayerAutomaticResponseResponse {
|
|
1043
|
+
}
|
|
1044
|
+
export declare namespace UpdateApplicationLayerAutomaticResponseResponse {
|
|
1045
|
+
|
|
1046
|
+
const filterSensitiveLog: (obj: UpdateApplicationLayerAutomaticResponseResponse) => any;
|
|
1047
|
+
}
|
|
1012
1048
|
export interface UpdateEmergencyContactSettingsRequest {
|
|
1013
1049
|
|
|
1014
1050
|
EmergencyContactList?: EmergencyContact[];
|