@aws-sdk/client-fms 3.168.0 → 3.170.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 +16 -0
- package/dist-types/ts3.4/FMS.d.ts +556 -155
- package/dist-types/ts3.4/FMSClient.d.ts +308 -103
- package/dist-types/ts3.4/commands/AssociateAdminAccountCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/AssociateThirdPartyFirewallCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DeleteAppsListCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/DeleteNotificationChannelCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DeletePolicyCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/DeleteProtocolsListCommand.d.ts +33 -17
- package/dist-types/ts3.4/commands/DisassociateAdminAccountCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DisassociateThirdPartyFirewallCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/GetAdminAccountCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/GetAppsListCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/GetComplianceDetailCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/GetNotificationChannelCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/GetPolicyCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/GetProtectionStatusCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/GetProtocolsListCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/GetThirdPartyFirewallAssociationStatusCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/GetViolationDetailsCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/ListAppsListsCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/ListComplianceStatusCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListMemberAccountsCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/ListPoliciesCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/ListProtocolsListsCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/ListThirdPartyFirewallFirewallPoliciesCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/PutAppsListCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/PutNotificationChannelCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/PutPolicyCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/PutProtocolsListCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/index.d.ts +30 -30
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +6 -6
- package/dist-types/ts3.4/models/FMSServiceException.d.ts +8 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +1605 -1492
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -6
- package/dist-types/ts3.4/pagination/ListAppsListsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListComplianceStatusPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListMemberAccountsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListPoliciesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListProtocolsListsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListThirdPartyFirewallFirewallPoliciesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/index.d.ts +7 -7
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +365 -92
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
- package/package.json +34 -34
|
@@ -1,17 +1,41 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
FMSClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../FMSClient";
|
|
13
|
+
import {
|
|
14
|
+
GetThirdPartyFirewallAssociationStatusRequest,
|
|
15
|
+
GetThirdPartyFirewallAssociationStatusResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface GetThirdPartyFirewallAssociationStatusCommandInput
|
|
18
|
+
extends GetThirdPartyFirewallAssociationStatusRequest {}
|
|
19
|
+
export interface GetThirdPartyFirewallAssociationStatusCommandOutput
|
|
20
|
+
extends GetThirdPartyFirewallAssociationStatusResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class GetThirdPartyFirewallAssociationStatusCommand extends $Command<
|
|
24
|
+
GetThirdPartyFirewallAssociationStatusCommandInput,
|
|
25
|
+
GetThirdPartyFirewallAssociationStatusCommandOutput,
|
|
26
|
+
FMSClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: GetThirdPartyFirewallAssociationStatusCommandInput;
|
|
29
|
+
constructor(input: GetThirdPartyFirewallAssociationStatusCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: FMSClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
GetThirdPartyFirewallAssociationStatusCommandInput,
|
|
37
|
+
GetThirdPartyFirewallAssociationStatusCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -1,17 +1,38 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
FMSClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../FMSClient";
|
|
13
|
+
import {
|
|
14
|
+
GetViolationDetailsRequest,
|
|
15
|
+
GetViolationDetailsResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface GetViolationDetailsCommandInput
|
|
18
|
+
extends GetViolationDetailsRequest {}
|
|
19
|
+
export interface GetViolationDetailsCommandOutput
|
|
20
|
+
extends GetViolationDetailsResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class GetViolationDetailsCommand extends $Command<
|
|
24
|
+
GetViolationDetailsCommandInput,
|
|
25
|
+
GetViolationDetailsCommandOutput,
|
|
26
|
+
FMSClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: GetViolationDetailsCommandInput;
|
|
29
|
+
constructor(input: GetViolationDetailsCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: FMSClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<GetViolationDetailsCommandInput, GetViolationDetailsCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -1,17 +1,37 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
FMSClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../FMSClient";
|
|
13
|
+
import {
|
|
14
|
+
ListAppsListsRequest,
|
|
15
|
+
ListAppsListsResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface ListAppsListsCommandInput extends ListAppsListsRequest {}
|
|
18
|
+
export interface ListAppsListsCommandOutput
|
|
19
|
+
extends ListAppsListsResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
|
|
22
|
+
export declare class ListAppsListsCommand extends $Command<
|
|
23
|
+
ListAppsListsCommandInput,
|
|
24
|
+
ListAppsListsCommandOutput,
|
|
25
|
+
FMSClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: ListAppsListsCommandInput;
|
|
28
|
+
constructor(input: ListAppsListsCommandInput);
|
|
29
|
+
|
|
30
|
+
resolveMiddleware(
|
|
31
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
32
|
+
configuration: FMSClientResolvedConfig,
|
|
33
|
+
options?: __HttpHandlerOptions
|
|
34
|
+
): Handler<ListAppsListsCommandInput, ListAppsListsCommandOutput>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|
|
@@ -1,17 +1,41 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
FMSClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../FMSClient";
|
|
13
|
+
import {
|
|
14
|
+
ListComplianceStatusRequest,
|
|
15
|
+
ListComplianceStatusResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface ListComplianceStatusCommandInput
|
|
18
|
+
extends ListComplianceStatusRequest {}
|
|
19
|
+
export interface ListComplianceStatusCommandOutput
|
|
20
|
+
extends ListComplianceStatusResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class ListComplianceStatusCommand extends $Command<
|
|
24
|
+
ListComplianceStatusCommandInput,
|
|
25
|
+
ListComplianceStatusCommandOutput,
|
|
26
|
+
FMSClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: ListComplianceStatusCommandInput;
|
|
29
|
+
constructor(input: ListComplianceStatusCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: FMSClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
ListComplianceStatusCommandInput,
|
|
37
|
+
ListComplianceStatusCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -1,17 +1,38 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
FMSClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../FMSClient";
|
|
13
|
+
import {
|
|
14
|
+
ListMemberAccountsRequest,
|
|
15
|
+
ListMemberAccountsResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface ListMemberAccountsCommandInput
|
|
18
|
+
extends ListMemberAccountsRequest {}
|
|
19
|
+
export interface ListMemberAccountsCommandOutput
|
|
20
|
+
extends ListMemberAccountsResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class ListMemberAccountsCommand extends $Command<
|
|
24
|
+
ListMemberAccountsCommandInput,
|
|
25
|
+
ListMemberAccountsCommandOutput,
|
|
26
|
+
FMSClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: ListMemberAccountsCommandInput;
|
|
29
|
+
constructor(input: ListMemberAccountsCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: FMSClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<ListMemberAccountsCommandInput, ListMemberAccountsCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -1,17 +1,34 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
FMSClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../FMSClient";
|
|
13
|
+
import { ListPoliciesRequest, ListPoliciesResponse } from "../models/models_0";
|
|
14
|
+
export interface ListPoliciesCommandInput extends ListPoliciesRequest {}
|
|
15
|
+
export interface ListPoliciesCommandOutput
|
|
16
|
+
extends ListPoliciesResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
|
|
19
|
+
export declare class ListPoliciesCommand extends $Command<
|
|
20
|
+
ListPoliciesCommandInput,
|
|
21
|
+
ListPoliciesCommandOutput,
|
|
22
|
+
FMSClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: ListPoliciesCommandInput;
|
|
25
|
+
constructor(input: ListPoliciesCommandInput);
|
|
26
|
+
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: FMSClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<ListPoliciesCommandInput, ListPoliciesCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -1,17 +1,38 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
FMSClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../FMSClient";
|
|
13
|
+
import {
|
|
14
|
+
ListProtocolsListsRequest,
|
|
15
|
+
ListProtocolsListsResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface ListProtocolsListsCommandInput
|
|
18
|
+
extends ListProtocolsListsRequest {}
|
|
19
|
+
export interface ListProtocolsListsCommandOutput
|
|
20
|
+
extends ListProtocolsListsResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class ListProtocolsListsCommand extends $Command<
|
|
24
|
+
ListProtocolsListsCommandInput,
|
|
25
|
+
ListProtocolsListsCommandOutput,
|
|
26
|
+
FMSClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: ListProtocolsListsCommandInput;
|
|
29
|
+
constructor(input: ListProtocolsListsCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: FMSClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<ListProtocolsListsCommandInput, ListProtocolsListsCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -1,17 +1,38 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
FMSClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../FMSClient";
|
|
13
|
+
import {
|
|
14
|
+
ListTagsForResourceRequest,
|
|
15
|
+
ListTagsForResourceResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface ListTagsForResourceCommandInput
|
|
18
|
+
extends ListTagsForResourceRequest {}
|
|
19
|
+
export interface ListTagsForResourceCommandOutput
|
|
20
|
+
extends ListTagsForResourceResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class ListTagsForResourceCommand extends $Command<
|
|
24
|
+
ListTagsForResourceCommandInput,
|
|
25
|
+
ListTagsForResourceCommandOutput,
|
|
26
|
+
FMSClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: ListTagsForResourceCommandInput;
|
|
29
|
+
constructor(input: ListTagsForResourceCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: FMSClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -1,17 +1,41 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
FMSClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../FMSClient";
|
|
13
|
+
import {
|
|
14
|
+
ListThirdPartyFirewallFirewallPoliciesRequest,
|
|
15
|
+
ListThirdPartyFirewallFirewallPoliciesResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface ListThirdPartyFirewallFirewallPoliciesCommandInput
|
|
18
|
+
extends ListThirdPartyFirewallFirewallPoliciesRequest {}
|
|
19
|
+
export interface ListThirdPartyFirewallFirewallPoliciesCommandOutput
|
|
20
|
+
extends ListThirdPartyFirewallFirewallPoliciesResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class ListThirdPartyFirewallFirewallPoliciesCommand extends $Command<
|
|
24
|
+
ListThirdPartyFirewallFirewallPoliciesCommandInput,
|
|
25
|
+
ListThirdPartyFirewallFirewallPoliciesCommandOutput,
|
|
26
|
+
FMSClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: ListThirdPartyFirewallFirewallPoliciesCommandInput;
|
|
29
|
+
constructor(input: ListThirdPartyFirewallFirewallPoliciesCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: FMSClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
ListThirdPartyFirewallFirewallPoliciesCommandInput,
|
|
37
|
+
ListThirdPartyFirewallFirewallPoliciesCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -1,17 +1,34 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
FMSClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../FMSClient";
|
|
13
|
+
import { PutAppsListRequest, PutAppsListResponse } from "../models/models_0";
|
|
14
|
+
export interface PutAppsListCommandInput extends PutAppsListRequest {}
|
|
15
|
+
export interface PutAppsListCommandOutput
|
|
16
|
+
extends PutAppsListResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
|
|
19
|
+
export declare class PutAppsListCommand extends $Command<
|
|
20
|
+
PutAppsListCommandInput,
|
|
21
|
+
PutAppsListCommandOutput,
|
|
22
|
+
FMSClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: PutAppsListCommandInput;
|
|
25
|
+
constructor(input: PutAppsListCommandInput);
|
|
26
|
+
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: FMSClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<PutAppsListCommandInput, PutAppsListCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -1,17 +1,36 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
FMSClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../FMSClient";
|
|
13
|
+
import { PutNotificationChannelRequest } from "../models/models_0";
|
|
14
|
+
export interface PutNotificationChannelCommandInput
|
|
15
|
+
extends PutNotificationChannelRequest {}
|
|
16
|
+
export interface PutNotificationChannelCommandOutput extends __MetadataBearer {}
|
|
17
|
+
|
|
18
|
+
export declare class PutNotificationChannelCommand extends $Command<
|
|
19
|
+
PutNotificationChannelCommandInput,
|
|
20
|
+
PutNotificationChannelCommandOutput,
|
|
21
|
+
FMSClientResolvedConfig
|
|
22
|
+
> {
|
|
23
|
+
readonly input: PutNotificationChannelCommandInput;
|
|
24
|
+
constructor(input: PutNotificationChannelCommandInput);
|
|
25
|
+
|
|
26
|
+
resolveMiddleware(
|
|
27
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
28
|
+
configuration: FMSClientResolvedConfig,
|
|
29
|
+
options?: __HttpHandlerOptions
|
|
30
|
+
): Handler<
|
|
31
|
+
PutNotificationChannelCommandInput,
|
|
32
|
+
PutNotificationChannelCommandOutput
|
|
33
|
+
>;
|
|
34
|
+
private serialize;
|
|
35
|
+
private deserialize;
|
|
36
|
+
}
|