@aws-sdk/client-fms 3.296.0 → 3.297.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-types/FMS.d.ts +39 -0
- package/dist-types/FMSClient.d.ts +24 -4
- package/dist-types/commands/AssociateAdminAccountCommand.d.ts +16 -0
- package/dist-types/commands/AssociateThirdPartyFirewallCommand.d.ts +16 -0
- package/dist-types/commands/BatchAssociateResourceCommand.d.ts +16 -0
- package/dist-types/commands/BatchDisassociateResourceCommand.d.ts +16 -0
- package/dist-types/commands/DeleteAppsListCommand.d.ts +16 -0
- package/dist-types/commands/DeleteNotificationChannelCommand.d.ts +16 -0
- package/dist-types/commands/DeletePolicyCommand.d.ts +16 -0
- package/dist-types/commands/DeleteProtocolsListCommand.d.ts +16 -0
- package/dist-types/commands/DeleteResourceSetCommand.d.ts +16 -0
- package/dist-types/commands/DisassociateAdminAccountCommand.d.ts +16 -0
- package/dist-types/commands/DisassociateThirdPartyFirewallCommand.d.ts +16 -0
- package/dist-types/commands/GetAdminAccountCommand.d.ts +16 -0
- package/dist-types/commands/GetAppsListCommand.d.ts +16 -0
- package/dist-types/commands/GetComplianceDetailCommand.d.ts +16 -0
- package/dist-types/commands/GetNotificationChannelCommand.d.ts +16 -0
- package/dist-types/commands/GetPolicyCommand.d.ts +16 -0
- package/dist-types/commands/GetProtectionStatusCommand.d.ts +16 -0
- package/dist-types/commands/GetProtocolsListCommand.d.ts +16 -0
- package/dist-types/commands/GetResourceSetCommand.d.ts +16 -0
- package/dist-types/commands/GetThirdPartyFirewallAssociationStatusCommand.d.ts +16 -0
- package/dist-types/commands/GetViolationDetailsCommand.d.ts +16 -0
- package/dist-types/commands/ListAppsListsCommand.d.ts +16 -0
- package/dist-types/commands/ListComplianceStatusCommand.d.ts +16 -0
- package/dist-types/commands/ListDiscoveredResourcesCommand.d.ts +16 -0
- package/dist-types/commands/ListMemberAccountsCommand.d.ts +16 -0
- package/dist-types/commands/ListPoliciesCommand.d.ts +16 -0
- package/dist-types/commands/ListProtocolsListsCommand.d.ts +16 -0
- package/dist-types/commands/ListResourceSetResourcesCommand.d.ts +16 -0
- package/dist-types/commands/ListResourceSetsCommand.d.ts +16 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
- package/dist-types/commands/ListThirdPartyFirewallFirewallPoliciesCommand.d.ts +16 -0
- package/dist-types/commands/PutAppsListCommand.d.ts +16 -0
- package/dist-types/commands/PutNotificationChannelCommand.d.ts +16 -0
- package/dist-types/commands/PutPolicyCommand.d.ts +16 -0
- package/dist-types/commands/PutProtocolsListCommand.d.ts +16 -0
- package/dist-types/commands/PutResourceSetCommand.d.ts +16 -0
- package/dist-types/commands/TagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
- package/dist-types/models/FMSServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +378 -50
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListAppsListsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListComplianceStatusPaginator.d.ts +3 -0
- package/dist-types/pagination/ListMemberAccountsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListPoliciesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListProtocolsListsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListThirdPartyFirewallFirewallPoliciesPaginator.d.ts +3 -0
- package/package.json +3 -3
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { FMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FMSClient";
|
|
5
5
|
import { DeleteNotificationChannelRequest } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteNotificationChannelCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteNotificationChannelCommandInput extends DeleteNotificationChannelRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteNotificationChannelCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteNotificationChannelCommandOutput extends __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Deletes an Firewall Manager association with the IAM role and the Amazon Simple
|
|
18
23
|
* Notification Service (SNS) topic that is used to record Firewall Manager SNS logs.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface DeleteNotificationChannelCommandOutput extends __MetadataBearer
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param DeleteNotificationChannelCommandInput - {@link DeleteNotificationChannelCommandInput}
|
|
35
|
+
* @returns {@link DeleteNotificationChannelCommandOutput}
|
|
29
36
|
* @see {@link DeleteNotificationChannelCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link DeleteNotificationChannelCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link FMSClientResolvedConfig | config} for FMSClient's `config` shape.
|
|
@@ -49,11 +56,20 @@ export interface DeleteNotificationChannelCommandOutput extends __MetadataBearer
|
|
|
49
56
|
export declare class DeleteNotificationChannelCommand extends $Command<DeleteNotificationChannelCommandInput, DeleteNotificationChannelCommandOutput, FMSClientResolvedConfig> {
|
|
50
57
|
readonly input: DeleteNotificationChannelCommandInput;
|
|
51
58
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
59
|
+
/**
|
|
60
|
+
* @public
|
|
61
|
+
*/
|
|
52
62
|
constructor(input: DeleteNotificationChannelCommandInput);
|
|
53
63
|
/**
|
|
54
64
|
* @internal
|
|
55
65
|
*/
|
|
56
66
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: FMSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteNotificationChannelCommandInput, DeleteNotificationChannelCommandOutput>;
|
|
67
|
+
/**
|
|
68
|
+
* @internal
|
|
69
|
+
*/
|
|
57
70
|
private serialize;
|
|
71
|
+
/**
|
|
72
|
+
* @internal
|
|
73
|
+
*/
|
|
58
74
|
private deserialize;
|
|
59
75
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { FMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FMSClient";
|
|
5
5
|
import { DeletePolicyRequest } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeletePolicyCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeletePolicyCommandInput extends DeletePolicyRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeletePolicyCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeletePolicyCommandOutput extends __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Permanently deletes an Firewall Manager policy. </p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface DeletePolicyCommandOutput extends __MetadataBearer {
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DeletePolicyCommandInput - {@link DeletePolicyCommandInput}
|
|
34
|
+
* @returns {@link DeletePolicyCommandOutput}
|
|
28
35
|
* @see {@link DeletePolicyCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DeletePolicyCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link FMSClientResolvedConfig | config} for FMSClient's `config` shape.
|
|
@@ -57,11 +64,20 @@ export interface DeletePolicyCommandOutput extends __MetadataBearer {
|
|
|
57
64
|
export declare class DeletePolicyCommand extends $Command<DeletePolicyCommandInput, DeletePolicyCommandOutput, FMSClientResolvedConfig> {
|
|
58
65
|
readonly input: DeletePolicyCommandInput;
|
|
59
66
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
67
|
+
/**
|
|
68
|
+
* @public
|
|
69
|
+
*/
|
|
60
70
|
constructor(input: DeletePolicyCommandInput);
|
|
61
71
|
/**
|
|
62
72
|
* @internal
|
|
63
73
|
*/
|
|
64
74
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: FMSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeletePolicyCommandInput, DeletePolicyCommandOutput>;
|
|
75
|
+
/**
|
|
76
|
+
* @internal
|
|
77
|
+
*/
|
|
65
78
|
private serialize;
|
|
79
|
+
/**
|
|
80
|
+
* @internal
|
|
81
|
+
*/
|
|
66
82
|
private deserialize;
|
|
67
83
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { FMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FMSClient";
|
|
5
5
|
import { DeleteProtocolsListRequest } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteProtocolsListCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteProtocolsListCommandInput extends DeleteProtocolsListRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteProtocolsListCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteProtocolsListCommandOutput extends __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Permanently deletes an Firewall Manager protocols list.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface DeleteProtocolsListCommandOutput extends __MetadataBearer {
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DeleteProtocolsListCommandInput - {@link DeleteProtocolsListCommandInput}
|
|
34
|
+
* @returns {@link DeleteProtocolsListCommandOutput}
|
|
28
35
|
* @see {@link DeleteProtocolsListCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DeleteProtocolsListCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link FMSClientResolvedConfig | config} for FMSClient's `config` shape.
|
|
@@ -48,11 +55,20 @@ export interface DeleteProtocolsListCommandOutput extends __MetadataBearer {
|
|
|
48
55
|
export declare class DeleteProtocolsListCommand extends $Command<DeleteProtocolsListCommandInput, DeleteProtocolsListCommandOutput, FMSClientResolvedConfig> {
|
|
49
56
|
readonly input: DeleteProtocolsListCommandInput;
|
|
50
57
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
58
|
+
/**
|
|
59
|
+
* @public
|
|
60
|
+
*/
|
|
51
61
|
constructor(input: DeleteProtocolsListCommandInput);
|
|
52
62
|
/**
|
|
53
63
|
* @internal
|
|
54
64
|
*/
|
|
55
65
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: FMSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteProtocolsListCommandInput, DeleteProtocolsListCommandOutput>;
|
|
66
|
+
/**
|
|
67
|
+
* @internal
|
|
68
|
+
*/
|
|
56
69
|
private serialize;
|
|
70
|
+
/**
|
|
71
|
+
* @internal
|
|
72
|
+
*/
|
|
57
73
|
private deserialize;
|
|
58
74
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { FMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FMSClient";
|
|
5
5
|
import { DeleteResourceSetRequest } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteResourceSetCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteResourceSetCommandInput extends DeleteResourceSetRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteResourceSetCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteResourceSetCommandOutput extends __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Deletes the specified <a>ResourceSet</a>.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface DeleteResourceSetCommandOutput extends __MetadataBearer {
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DeleteResourceSetCommandInput - {@link DeleteResourceSetCommandInput}
|
|
34
|
+
* @returns {@link DeleteResourceSetCommandOutput}
|
|
28
35
|
* @see {@link DeleteResourceSetCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DeleteResourceSetCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link FMSClientResolvedConfig | config} for FMSClient's `config` shape.
|
|
@@ -51,11 +58,20 @@ export interface DeleteResourceSetCommandOutput extends __MetadataBearer {
|
|
|
51
58
|
export declare class DeleteResourceSetCommand extends $Command<DeleteResourceSetCommandInput, DeleteResourceSetCommandOutput, FMSClientResolvedConfig> {
|
|
52
59
|
readonly input: DeleteResourceSetCommandInput;
|
|
53
60
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
61
|
+
/**
|
|
62
|
+
* @public
|
|
63
|
+
*/
|
|
54
64
|
constructor(input: DeleteResourceSetCommandInput);
|
|
55
65
|
/**
|
|
56
66
|
* @internal
|
|
57
67
|
*/
|
|
58
68
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: FMSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteResourceSetCommandInput, DeleteResourceSetCommandOutput>;
|
|
69
|
+
/**
|
|
70
|
+
* @internal
|
|
71
|
+
*/
|
|
59
72
|
private serialize;
|
|
73
|
+
/**
|
|
74
|
+
* @internal
|
|
75
|
+
*/
|
|
60
76
|
private deserialize;
|
|
61
77
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { FMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FMSClient";
|
|
5
5
|
import { DisassociateAdminAccountRequest } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DisassociateAdminAccountCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DisassociateAdminAccountCommandInput extends DisassociateAdminAccountRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DisassociateAdminAccountCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DisassociateAdminAccountCommandOutput extends __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Disassociates the account that has been set as the Firewall Manager administrator
|
|
18
23
|
* account. To set a different account as the administrator account, you must submit an
|
|
19
24
|
* <code>AssociateAdminAccount</code> request.</p>
|
|
@@ -27,6 +32,8 @@ export interface DisassociateAdminAccountCommandOutput extends __MetadataBearer
|
|
|
27
32
|
* const response = await client.send(command);
|
|
28
33
|
* ```
|
|
29
34
|
*
|
|
35
|
+
* @param DisassociateAdminAccountCommandInput - {@link DisassociateAdminAccountCommandInput}
|
|
36
|
+
* @returns {@link DisassociateAdminAccountCommandOutput}
|
|
30
37
|
* @see {@link DisassociateAdminAccountCommandInput} for command's `input` shape.
|
|
31
38
|
* @see {@link DisassociateAdminAccountCommandOutput} for command's `response` shape.
|
|
32
39
|
* @see {@link FMSClientResolvedConfig | config} for FMSClient's `config` shape.
|
|
@@ -50,11 +57,20 @@ export interface DisassociateAdminAccountCommandOutput extends __MetadataBearer
|
|
|
50
57
|
export declare class DisassociateAdminAccountCommand extends $Command<DisassociateAdminAccountCommandInput, DisassociateAdminAccountCommandOutput, FMSClientResolvedConfig> {
|
|
51
58
|
readonly input: DisassociateAdminAccountCommandInput;
|
|
52
59
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
60
|
+
/**
|
|
61
|
+
* @public
|
|
62
|
+
*/
|
|
53
63
|
constructor(input: DisassociateAdminAccountCommandInput);
|
|
54
64
|
/**
|
|
55
65
|
* @internal
|
|
56
66
|
*/
|
|
57
67
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: FMSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DisassociateAdminAccountCommandInput, DisassociateAdminAccountCommandOutput>;
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
58
71
|
private serialize;
|
|
72
|
+
/**
|
|
73
|
+
* @internal
|
|
74
|
+
*/
|
|
59
75
|
private deserialize;
|
|
60
76
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { FMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FMSClient";
|
|
5
5
|
import { DisassociateThirdPartyFirewallRequest, DisassociateThirdPartyFirewallResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DisassociateThirdPartyFirewallCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DisassociateThirdPartyFirewallCommandInput extends DisassociateThirdPartyFirewallRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DisassociateThirdPartyFirewallCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DisassociateThirdPartyFirewallCommandOutput extends DisassociateThirdPartyFirewallResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Disassociates a Firewall Manager policy administrator from a third-party firewall tenant. When you call <code>DisassociateThirdPartyFirewall</code>, the third-party firewall vendor deletes all of the firewalls that are associated with the account.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface DisassociateThirdPartyFirewallCommandOutput extends Disassociat
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DisassociateThirdPartyFirewallCommandInput - {@link DisassociateThirdPartyFirewallCommandInput}
|
|
34
|
+
* @returns {@link DisassociateThirdPartyFirewallCommandOutput}
|
|
28
35
|
* @see {@link DisassociateThirdPartyFirewallCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DisassociateThirdPartyFirewallCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link FMSClientResolvedConfig | config} for FMSClient's `config` shape.
|
|
@@ -51,11 +58,20 @@ export interface DisassociateThirdPartyFirewallCommandOutput extends Disassociat
|
|
|
51
58
|
export declare class DisassociateThirdPartyFirewallCommand extends $Command<DisassociateThirdPartyFirewallCommandInput, DisassociateThirdPartyFirewallCommandOutput, FMSClientResolvedConfig> {
|
|
52
59
|
readonly input: DisassociateThirdPartyFirewallCommandInput;
|
|
53
60
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
61
|
+
/**
|
|
62
|
+
* @public
|
|
63
|
+
*/
|
|
54
64
|
constructor(input: DisassociateThirdPartyFirewallCommandInput);
|
|
55
65
|
/**
|
|
56
66
|
* @internal
|
|
57
67
|
*/
|
|
58
68
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: FMSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DisassociateThirdPartyFirewallCommandInput, DisassociateThirdPartyFirewallCommandOutput>;
|
|
69
|
+
/**
|
|
70
|
+
* @internal
|
|
71
|
+
*/
|
|
59
72
|
private serialize;
|
|
73
|
+
/**
|
|
74
|
+
* @internal
|
|
75
|
+
*/
|
|
60
76
|
private deserialize;
|
|
61
77
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { FMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FMSClient";
|
|
5
5
|
import { GetAdminAccountRequest, GetAdminAccountResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetAdminAccountCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetAdminAccountCommandInput extends GetAdminAccountRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetAdminAccountCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetAdminAccountCommandOutput extends GetAdminAccountResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Returns the Organizations account that is associated with Firewall Manager
|
|
18
23
|
* as the Firewall Manager administrator.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface GetAdminAccountCommandOutput extends GetAdminAccountResponse, _
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param GetAdminAccountCommandInput - {@link GetAdminAccountCommandInput}
|
|
35
|
+
* @returns {@link GetAdminAccountCommandOutput}
|
|
29
36
|
* @see {@link GetAdminAccountCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link GetAdminAccountCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link FMSClientResolvedConfig | config} for FMSClient's `config` shape.
|
|
@@ -49,11 +56,20 @@ export interface GetAdminAccountCommandOutput extends GetAdminAccountResponse, _
|
|
|
49
56
|
export declare class GetAdminAccountCommand extends $Command<GetAdminAccountCommandInput, GetAdminAccountCommandOutput, FMSClientResolvedConfig> {
|
|
50
57
|
readonly input: GetAdminAccountCommandInput;
|
|
51
58
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
59
|
+
/**
|
|
60
|
+
* @public
|
|
61
|
+
*/
|
|
52
62
|
constructor(input: GetAdminAccountCommandInput);
|
|
53
63
|
/**
|
|
54
64
|
* @internal
|
|
55
65
|
*/
|
|
56
66
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: FMSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetAdminAccountCommandInput, GetAdminAccountCommandOutput>;
|
|
67
|
+
/**
|
|
68
|
+
* @internal
|
|
69
|
+
*/
|
|
57
70
|
private serialize;
|
|
71
|
+
/**
|
|
72
|
+
* @internal
|
|
73
|
+
*/
|
|
58
74
|
private deserialize;
|
|
59
75
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { FMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FMSClient";
|
|
5
5
|
import { GetAppsListRequest, GetAppsListResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetAppsListCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetAppsListCommandInput extends GetAppsListRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetAppsListCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetAppsListCommandOutput extends GetAppsListResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Returns information about the specified Firewall Manager applications list.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface GetAppsListCommandOutput extends GetAppsListResponse, __Metadat
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param GetAppsListCommandInput - {@link GetAppsListCommandInput}
|
|
34
|
+
* @returns {@link GetAppsListCommandOutput}
|
|
28
35
|
* @see {@link GetAppsListCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link GetAppsListCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link FMSClientResolvedConfig | config} for FMSClient's `config` shape.
|
|
@@ -48,11 +55,20 @@ export interface GetAppsListCommandOutput extends GetAppsListResponse, __Metadat
|
|
|
48
55
|
export declare class GetAppsListCommand extends $Command<GetAppsListCommandInput, GetAppsListCommandOutput, FMSClientResolvedConfig> {
|
|
49
56
|
readonly input: GetAppsListCommandInput;
|
|
50
57
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
58
|
+
/**
|
|
59
|
+
* @public
|
|
60
|
+
*/
|
|
51
61
|
constructor(input: GetAppsListCommandInput);
|
|
52
62
|
/**
|
|
53
63
|
* @internal
|
|
54
64
|
*/
|
|
55
65
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: FMSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetAppsListCommandInput, GetAppsListCommandOutput>;
|
|
66
|
+
/**
|
|
67
|
+
* @internal
|
|
68
|
+
*/
|
|
56
69
|
private serialize;
|
|
70
|
+
/**
|
|
71
|
+
* @internal
|
|
72
|
+
*/
|
|
57
73
|
private deserialize;
|
|
58
74
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { FMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FMSClient";
|
|
5
5
|
import { GetComplianceDetailRequest, GetComplianceDetailResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetComplianceDetailCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetComplianceDetailCommandInput extends GetComplianceDetailRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetComplianceDetailCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetComplianceDetailCommandOutput extends GetComplianceDetailResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Returns detailed compliance information about the specified member account. Details
|
|
18
23
|
* include resources that are in and out of compliance with the specified policy. </p>
|
|
19
24
|
* <ul>
|
|
@@ -48,6 +53,8 @@ export interface GetComplianceDetailCommandOutput extends GetComplianceDetailRes
|
|
|
48
53
|
* const response = await client.send(command);
|
|
49
54
|
* ```
|
|
50
55
|
*
|
|
56
|
+
* @param GetComplianceDetailCommandInput - {@link GetComplianceDetailCommandInput}
|
|
57
|
+
* @returns {@link GetComplianceDetailCommandOutput}
|
|
51
58
|
* @see {@link GetComplianceDetailCommandInput} for command's `input` shape.
|
|
52
59
|
* @see {@link GetComplianceDetailCommandOutput} for command's `response` shape.
|
|
53
60
|
* @see {@link FMSClientResolvedConfig | config} for FMSClient's `config` shape.
|
|
@@ -74,11 +81,20 @@ export interface GetComplianceDetailCommandOutput extends GetComplianceDetailRes
|
|
|
74
81
|
export declare class GetComplianceDetailCommand extends $Command<GetComplianceDetailCommandInput, GetComplianceDetailCommandOutput, FMSClientResolvedConfig> {
|
|
75
82
|
readonly input: GetComplianceDetailCommandInput;
|
|
76
83
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
84
|
+
/**
|
|
85
|
+
* @public
|
|
86
|
+
*/
|
|
77
87
|
constructor(input: GetComplianceDetailCommandInput);
|
|
78
88
|
/**
|
|
79
89
|
* @internal
|
|
80
90
|
*/
|
|
81
91
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: FMSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetComplianceDetailCommandInput, GetComplianceDetailCommandOutput>;
|
|
92
|
+
/**
|
|
93
|
+
* @internal
|
|
94
|
+
*/
|
|
82
95
|
private serialize;
|
|
96
|
+
/**
|
|
97
|
+
* @internal
|
|
98
|
+
*/
|
|
83
99
|
private deserialize;
|
|
84
100
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { FMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FMSClient";
|
|
5
5
|
import { GetNotificationChannelRequest, GetNotificationChannelResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetNotificationChannelCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetNotificationChannelCommandInput extends GetNotificationChannelRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetNotificationChannelCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetNotificationChannelCommandOutput extends GetNotificationChannelResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Information
|
|
18
23
|
* about the Amazon Simple Notification Service (SNS) topic that is used to
|
|
19
24
|
* record Firewall Manager SNS logs.</p>
|
|
@@ -27,6 +32,8 @@ export interface GetNotificationChannelCommandOutput extends GetNotificationChan
|
|
|
27
32
|
* const response = await client.send(command);
|
|
28
33
|
* ```
|
|
29
34
|
*
|
|
35
|
+
* @param GetNotificationChannelCommandInput - {@link GetNotificationChannelCommandInput}
|
|
36
|
+
* @returns {@link GetNotificationChannelCommandOutput}
|
|
30
37
|
* @see {@link GetNotificationChannelCommandInput} for command's `input` shape.
|
|
31
38
|
* @see {@link GetNotificationChannelCommandOutput} for command's `response` shape.
|
|
32
39
|
* @see {@link FMSClientResolvedConfig | config} for FMSClient's `config` shape.
|
|
@@ -50,11 +57,20 @@ export interface GetNotificationChannelCommandOutput extends GetNotificationChan
|
|
|
50
57
|
export declare class GetNotificationChannelCommand extends $Command<GetNotificationChannelCommandInput, GetNotificationChannelCommandOutput, FMSClientResolvedConfig> {
|
|
51
58
|
readonly input: GetNotificationChannelCommandInput;
|
|
52
59
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
60
|
+
/**
|
|
61
|
+
* @public
|
|
62
|
+
*/
|
|
53
63
|
constructor(input: GetNotificationChannelCommandInput);
|
|
54
64
|
/**
|
|
55
65
|
* @internal
|
|
56
66
|
*/
|
|
57
67
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: FMSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetNotificationChannelCommandInput, GetNotificationChannelCommandOutput>;
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
58
71
|
private serialize;
|
|
72
|
+
/**
|
|
73
|
+
* @internal
|
|
74
|
+
*/
|
|
59
75
|
private deserialize;
|
|
60
76
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { FMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FMSClient";
|
|
5
5
|
import { GetPolicyRequest, GetPolicyResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetPolicyCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetPolicyCommandInput extends GetPolicyRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetPolicyCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetPolicyCommandOutput extends GetPolicyResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Returns information about the specified Firewall Manager policy.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface GetPolicyCommandOutput extends GetPolicyResponse, __MetadataBea
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param GetPolicyCommandInput - {@link GetPolicyCommandInput}
|
|
34
|
+
* @returns {@link GetPolicyCommandOutput}
|
|
28
35
|
* @see {@link GetPolicyCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link GetPolicyCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link FMSClientResolvedConfig | config} for FMSClient's `config` shape.
|
|
@@ -51,11 +58,20 @@ export interface GetPolicyCommandOutput extends GetPolicyResponse, __MetadataBea
|
|
|
51
58
|
export declare class GetPolicyCommand extends $Command<GetPolicyCommandInput, GetPolicyCommandOutput, FMSClientResolvedConfig> {
|
|
52
59
|
readonly input: GetPolicyCommandInput;
|
|
53
60
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
61
|
+
/**
|
|
62
|
+
* @public
|
|
63
|
+
*/
|
|
54
64
|
constructor(input: GetPolicyCommandInput);
|
|
55
65
|
/**
|
|
56
66
|
* @internal
|
|
57
67
|
*/
|
|
58
68
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: FMSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetPolicyCommandInput, GetPolicyCommandOutput>;
|
|
69
|
+
/**
|
|
70
|
+
* @internal
|
|
71
|
+
*/
|
|
59
72
|
private serialize;
|
|
73
|
+
/**
|
|
74
|
+
* @internal
|
|
75
|
+
*/
|
|
60
76
|
private deserialize;
|
|
61
77
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { FMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FMSClient";
|
|
5
5
|
import { GetProtectionStatusRequest, GetProtectionStatusResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetProtectionStatusCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetProtectionStatusCommandInput extends GetProtectionStatusRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetProtectionStatusCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetProtectionStatusCommandOutput extends GetProtectionStatusResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>If you created a Shield Advanced policy, returns policy-level attack summary information
|
|
18
23
|
* in the event of a potential DDoS attack. Other policy types are currently unsupported.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface GetProtectionStatusCommandOutput extends GetProtectionStatusRes
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param GetProtectionStatusCommandInput - {@link GetProtectionStatusCommandInput}
|
|
35
|
+
* @returns {@link GetProtectionStatusCommandOutput}
|
|
29
36
|
* @see {@link GetProtectionStatusCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link GetProtectionStatusCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link FMSClientResolvedConfig | config} for FMSClient's `config` shape.
|
|
@@ -45,11 +52,20 @@ export interface GetProtectionStatusCommandOutput extends GetProtectionStatusRes
|
|
|
45
52
|
export declare class GetProtectionStatusCommand extends $Command<GetProtectionStatusCommandInput, GetProtectionStatusCommandOutput, FMSClientResolvedConfig> {
|
|
46
53
|
readonly input: GetProtectionStatusCommandInput;
|
|
47
54
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
55
|
+
/**
|
|
56
|
+
* @public
|
|
57
|
+
*/
|
|
48
58
|
constructor(input: GetProtectionStatusCommandInput);
|
|
49
59
|
/**
|
|
50
60
|
* @internal
|
|
51
61
|
*/
|
|
52
62
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: FMSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetProtectionStatusCommandInput, GetProtectionStatusCommandOutput>;
|
|
63
|
+
/**
|
|
64
|
+
* @internal
|
|
65
|
+
*/
|
|
53
66
|
private serialize;
|
|
67
|
+
/**
|
|
68
|
+
* @internal
|
|
69
|
+
*/
|
|
54
70
|
private deserialize;
|
|
55
71
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { FMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FMSClient";
|
|
5
5
|
import { GetProtocolsListRequest, GetProtocolsListResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetProtocolsListCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetProtocolsListCommandInput extends GetProtocolsListRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetProtocolsListCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetProtocolsListCommandOutput extends GetProtocolsListResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Returns information about the specified Firewall Manager protocols list.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface GetProtocolsListCommandOutput extends GetProtocolsListResponse,
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param GetProtocolsListCommandInput - {@link GetProtocolsListCommandInput}
|
|
34
|
+
* @returns {@link GetProtocolsListCommandOutput}
|
|
28
35
|
* @see {@link GetProtocolsListCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link GetProtocolsListCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link FMSClientResolvedConfig | config} for FMSClient's `config` shape.
|
|
@@ -48,11 +55,20 @@ export interface GetProtocolsListCommandOutput extends GetProtocolsListResponse,
|
|
|
48
55
|
export declare class GetProtocolsListCommand extends $Command<GetProtocolsListCommandInput, GetProtocolsListCommandOutput, FMSClientResolvedConfig> {
|
|
49
56
|
readonly input: GetProtocolsListCommandInput;
|
|
50
57
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
58
|
+
/**
|
|
59
|
+
* @public
|
|
60
|
+
*/
|
|
51
61
|
constructor(input: GetProtocolsListCommandInput);
|
|
52
62
|
/**
|
|
53
63
|
* @internal
|
|
54
64
|
*/
|
|
55
65
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: FMSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetProtocolsListCommandInput, GetProtocolsListCommandOutput>;
|
|
66
|
+
/**
|
|
67
|
+
* @internal
|
|
68
|
+
*/
|
|
56
69
|
private serialize;
|
|
70
|
+
/**
|
|
71
|
+
* @internal
|
|
72
|
+
*/
|
|
57
73
|
private deserialize;
|
|
58
74
|
}
|