@aws-sdk/client-fms 3.50.0 → 3.51.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 +8 -0
- package/dist-types/ts3.4/FMS.d.ts +135 -0
- package/dist-types/ts3.4/FMSClient.d.ts +99 -0
- package/dist-types/ts3.4/commands/AssociateAdminAccountCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteAppsListCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteNotificationChannelCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeletePolicyCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteProtocolsListCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DisassociateAdminAccountCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetAdminAccountCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetAppsListCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetComplianceDetailCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetNotificationChannelCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetPolicyCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetProtectionStatusCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetProtocolsListCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetViolationDetailsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListAppsListsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListComplianceStatusCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListMemberAccountsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListPoliciesCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListProtocolsListsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/PutAppsListCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/PutNotificationChannelCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/PutPolicyCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/PutProtocolsListCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/index.d.ts +26 -0
- package/dist-types/ts3.4/endpoints.d.ts +2 -0
- package/dist-types/ts3.4/index.d.ts +5 -0
- package/dist-types/ts3.4/models/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +1432 -0
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
- package/dist-types/ts3.4/pagination/ListAppsListsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListComplianceStatusPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListMemberAccountsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListPoliciesPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListProtocolsListsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/index.d.ts +6 -0
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +80 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +38 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +38 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +37 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -0
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,14 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [3.51.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.50.0...v3.51.0) (2022-02-12)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @aws-sdk/client-fms
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
# [3.50.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.49.0...v3.50.0) (2022-02-08)
|
|
7
15
|
|
|
8
16
|
**Note:** Version bump only for package @aws-sdk/client-fms
|
|
@@ -0,0 +1,135 @@
|
|
|
1
|
+
import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
|
|
2
|
+
import { AssociateAdminAccountCommandInput, AssociateAdminAccountCommandOutput } from "./commands/AssociateAdminAccountCommand";
|
|
3
|
+
import { DeleteAppsListCommandInput, DeleteAppsListCommandOutput } from "./commands/DeleteAppsListCommand";
|
|
4
|
+
import { DeleteNotificationChannelCommandInput, DeleteNotificationChannelCommandOutput } from "./commands/DeleteNotificationChannelCommand";
|
|
5
|
+
import { DeletePolicyCommandInput, DeletePolicyCommandOutput } from "./commands/DeletePolicyCommand";
|
|
6
|
+
import { DeleteProtocolsListCommandInput, DeleteProtocolsListCommandOutput } from "./commands/DeleteProtocolsListCommand";
|
|
7
|
+
import { DisassociateAdminAccountCommandInput, DisassociateAdminAccountCommandOutput } from "./commands/DisassociateAdminAccountCommand";
|
|
8
|
+
import { GetAdminAccountCommandInput, GetAdminAccountCommandOutput } from "./commands/GetAdminAccountCommand";
|
|
9
|
+
import { GetAppsListCommandInput, GetAppsListCommandOutput } from "./commands/GetAppsListCommand";
|
|
10
|
+
import { GetComplianceDetailCommandInput, GetComplianceDetailCommandOutput } from "./commands/GetComplianceDetailCommand";
|
|
11
|
+
import { GetNotificationChannelCommandInput, GetNotificationChannelCommandOutput } from "./commands/GetNotificationChannelCommand";
|
|
12
|
+
import { GetPolicyCommandInput, GetPolicyCommandOutput } from "./commands/GetPolicyCommand";
|
|
13
|
+
import { GetProtectionStatusCommandInput, GetProtectionStatusCommandOutput } from "./commands/GetProtectionStatusCommand";
|
|
14
|
+
import { GetProtocolsListCommandInput, GetProtocolsListCommandOutput } from "./commands/GetProtocolsListCommand";
|
|
15
|
+
import { GetViolationDetailsCommandInput, GetViolationDetailsCommandOutput } from "./commands/GetViolationDetailsCommand";
|
|
16
|
+
import { ListAppsListsCommandInput, ListAppsListsCommandOutput } from "./commands/ListAppsListsCommand";
|
|
17
|
+
import { ListComplianceStatusCommandInput, ListComplianceStatusCommandOutput } from "./commands/ListComplianceStatusCommand";
|
|
18
|
+
import { ListMemberAccountsCommandInput, ListMemberAccountsCommandOutput } from "./commands/ListMemberAccountsCommand";
|
|
19
|
+
import { ListPoliciesCommandInput, ListPoliciesCommandOutput } from "./commands/ListPoliciesCommand";
|
|
20
|
+
import { ListProtocolsListsCommandInput, ListProtocolsListsCommandOutput } from "./commands/ListProtocolsListsCommand";
|
|
21
|
+
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
22
|
+
import { PutAppsListCommandInput, PutAppsListCommandOutput } from "./commands/PutAppsListCommand";
|
|
23
|
+
import { PutNotificationChannelCommandInput, PutNotificationChannelCommandOutput } from "./commands/PutNotificationChannelCommand";
|
|
24
|
+
import { PutPolicyCommandInput, PutPolicyCommandOutput } from "./commands/PutPolicyCommand";
|
|
25
|
+
import { PutProtocolsListCommandInput, PutProtocolsListCommandOutput } from "./commands/PutProtocolsListCommand";
|
|
26
|
+
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
27
|
+
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
28
|
+
import { FMSClient } from "./FMSClient";
|
|
29
|
+
|
|
30
|
+
export declare class FMS extends FMSClient {
|
|
31
|
+
|
|
32
|
+
associateAdminAccount(args: AssociateAdminAccountCommandInput, options?: __HttpHandlerOptions): Promise<AssociateAdminAccountCommandOutput>;
|
|
33
|
+
associateAdminAccount(args: AssociateAdminAccountCommandInput, cb: (err: any, data?: AssociateAdminAccountCommandOutput) => void): void;
|
|
34
|
+
associateAdminAccount(args: AssociateAdminAccountCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssociateAdminAccountCommandOutput) => void): void;
|
|
35
|
+
|
|
36
|
+
deleteAppsList(args: DeleteAppsListCommandInput, options?: __HttpHandlerOptions): Promise<DeleteAppsListCommandOutput>;
|
|
37
|
+
deleteAppsList(args: DeleteAppsListCommandInput, cb: (err: any, data?: DeleteAppsListCommandOutput) => void): void;
|
|
38
|
+
deleteAppsList(args: DeleteAppsListCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteAppsListCommandOutput) => void): void;
|
|
39
|
+
|
|
40
|
+
deleteNotificationChannel(args: DeleteNotificationChannelCommandInput, options?: __HttpHandlerOptions): Promise<DeleteNotificationChannelCommandOutput>;
|
|
41
|
+
deleteNotificationChannel(args: DeleteNotificationChannelCommandInput, cb: (err: any, data?: DeleteNotificationChannelCommandOutput) => void): void;
|
|
42
|
+
deleteNotificationChannel(args: DeleteNotificationChannelCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteNotificationChannelCommandOutput) => void): void;
|
|
43
|
+
|
|
44
|
+
deletePolicy(args: DeletePolicyCommandInput, options?: __HttpHandlerOptions): Promise<DeletePolicyCommandOutput>;
|
|
45
|
+
deletePolicy(args: DeletePolicyCommandInput, cb: (err: any, data?: DeletePolicyCommandOutput) => void): void;
|
|
46
|
+
deletePolicy(args: DeletePolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeletePolicyCommandOutput) => void): void;
|
|
47
|
+
|
|
48
|
+
deleteProtocolsList(args: DeleteProtocolsListCommandInput, options?: __HttpHandlerOptions): Promise<DeleteProtocolsListCommandOutput>;
|
|
49
|
+
deleteProtocolsList(args: DeleteProtocolsListCommandInput, cb: (err: any, data?: DeleteProtocolsListCommandOutput) => void): void;
|
|
50
|
+
deleteProtocolsList(args: DeleteProtocolsListCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteProtocolsListCommandOutput) => void): void;
|
|
51
|
+
|
|
52
|
+
disassociateAdminAccount(args: DisassociateAdminAccountCommandInput, options?: __HttpHandlerOptions): Promise<DisassociateAdminAccountCommandOutput>;
|
|
53
|
+
disassociateAdminAccount(args: DisassociateAdminAccountCommandInput, cb: (err: any, data?: DisassociateAdminAccountCommandOutput) => void): void;
|
|
54
|
+
disassociateAdminAccount(args: DisassociateAdminAccountCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisassociateAdminAccountCommandOutput) => void): void;
|
|
55
|
+
|
|
56
|
+
getAdminAccount(args: GetAdminAccountCommandInput, options?: __HttpHandlerOptions): Promise<GetAdminAccountCommandOutput>;
|
|
57
|
+
getAdminAccount(args: GetAdminAccountCommandInput, cb: (err: any, data?: GetAdminAccountCommandOutput) => void): void;
|
|
58
|
+
getAdminAccount(args: GetAdminAccountCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetAdminAccountCommandOutput) => void): void;
|
|
59
|
+
|
|
60
|
+
getAppsList(args: GetAppsListCommandInput, options?: __HttpHandlerOptions): Promise<GetAppsListCommandOutput>;
|
|
61
|
+
getAppsList(args: GetAppsListCommandInput, cb: (err: any, data?: GetAppsListCommandOutput) => void): void;
|
|
62
|
+
getAppsList(args: GetAppsListCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetAppsListCommandOutput) => void): void;
|
|
63
|
+
|
|
64
|
+
getComplianceDetail(args: GetComplianceDetailCommandInput, options?: __HttpHandlerOptions): Promise<GetComplianceDetailCommandOutput>;
|
|
65
|
+
getComplianceDetail(args: GetComplianceDetailCommandInput, cb: (err: any, data?: GetComplianceDetailCommandOutput) => void): void;
|
|
66
|
+
getComplianceDetail(args: GetComplianceDetailCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetComplianceDetailCommandOutput) => void): void;
|
|
67
|
+
|
|
68
|
+
getNotificationChannel(args: GetNotificationChannelCommandInput, options?: __HttpHandlerOptions): Promise<GetNotificationChannelCommandOutput>;
|
|
69
|
+
getNotificationChannel(args: GetNotificationChannelCommandInput, cb: (err: any, data?: GetNotificationChannelCommandOutput) => void): void;
|
|
70
|
+
getNotificationChannel(args: GetNotificationChannelCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetNotificationChannelCommandOutput) => void): void;
|
|
71
|
+
|
|
72
|
+
getPolicy(args: GetPolicyCommandInput, options?: __HttpHandlerOptions): Promise<GetPolicyCommandOutput>;
|
|
73
|
+
getPolicy(args: GetPolicyCommandInput, cb: (err: any, data?: GetPolicyCommandOutput) => void): void;
|
|
74
|
+
getPolicy(args: GetPolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetPolicyCommandOutput) => void): void;
|
|
75
|
+
|
|
76
|
+
getProtectionStatus(args: GetProtectionStatusCommandInput, options?: __HttpHandlerOptions): Promise<GetProtectionStatusCommandOutput>;
|
|
77
|
+
getProtectionStatus(args: GetProtectionStatusCommandInput, cb: (err: any, data?: GetProtectionStatusCommandOutput) => void): void;
|
|
78
|
+
getProtectionStatus(args: GetProtectionStatusCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetProtectionStatusCommandOutput) => void): void;
|
|
79
|
+
|
|
80
|
+
getProtocolsList(args: GetProtocolsListCommandInput, options?: __HttpHandlerOptions): Promise<GetProtocolsListCommandOutput>;
|
|
81
|
+
getProtocolsList(args: GetProtocolsListCommandInput, cb: (err: any, data?: GetProtocolsListCommandOutput) => void): void;
|
|
82
|
+
getProtocolsList(args: GetProtocolsListCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetProtocolsListCommandOutput) => void): void;
|
|
83
|
+
|
|
84
|
+
getViolationDetails(args: GetViolationDetailsCommandInput, options?: __HttpHandlerOptions): Promise<GetViolationDetailsCommandOutput>;
|
|
85
|
+
getViolationDetails(args: GetViolationDetailsCommandInput, cb: (err: any, data?: GetViolationDetailsCommandOutput) => void): void;
|
|
86
|
+
getViolationDetails(args: GetViolationDetailsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetViolationDetailsCommandOutput) => void): void;
|
|
87
|
+
|
|
88
|
+
listAppsLists(args: ListAppsListsCommandInput, options?: __HttpHandlerOptions): Promise<ListAppsListsCommandOutput>;
|
|
89
|
+
listAppsLists(args: ListAppsListsCommandInput, cb: (err: any, data?: ListAppsListsCommandOutput) => void): void;
|
|
90
|
+
listAppsLists(args: ListAppsListsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListAppsListsCommandOutput) => void): void;
|
|
91
|
+
|
|
92
|
+
listComplianceStatus(args: ListComplianceStatusCommandInput, options?: __HttpHandlerOptions): Promise<ListComplianceStatusCommandOutput>;
|
|
93
|
+
listComplianceStatus(args: ListComplianceStatusCommandInput, cb: (err: any, data?: ListComplianceStatusCommandOutput) => void): void;
|
|
94
|
+
listComplianceStatus(args: ListComplianceStatusCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListComplianceStatusCommandOutput) => void): void;
|
|
95
|
+
|
|
96
|
+
listMemberAccounts(args: ListMemberAccountsCommandInput, options?: __HttpHandlerOptions): Promise<ListMemberAccountsCommandOutput>;
|
|
97
|
+
listMemberAccounts(args: ListMemberAccountsCommandInput, cb: (err: any, data?: ListMemberAccountsCommandOutput) => void): void;
|
|
98
|
+
listMemberAccounts(args: ListMemberAccountsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListMemberAccountsCommandOutput) => void): void;
|
|
99
|
+
|
|
100
|
+
listPolicies(args: ListPoliciesCommandInput, options?: __HttpHandlerOptions): Promise<ListPoliciesCommandOutput>;
|
|
101
|
+
listPolicies(args: ListPoliciesCommandInput, cb: (err: any, data?: ListPoliciesCommandOutput) => void): void;
|
|
102
|
+
listPolicies(args: ListPoliciesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListPoliciesCommandOutput) => void): void;
|
|
103
|
+
|
|
104
|
+
listProtocolsLists(args: ListProtocolsListsCommandInput, options?: __HttpHandlerOptions): Promise<ListProtocolsListsCommandOutput>;
|
|
105
|
+
listProtocolsLists(args: ListProtocolsListsCommandInput, cb: (err: any, data?: ListProtocolsListsCommandOutput) => void): void;
|
|
106
|
+
listProtocolsLists(args: ListProtocolsListsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListProtocolsListsCommandOutput) => void): void;
|
|
107
|
+
|
|
108
|
+
listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
|
|
109
|
+
listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
110
|
+
listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
111
|
+
|
|
112
|
+
putAppsList(args: PutAppsListCommandInput, options?: __HttpHandlerOptions): Promise<PutAppsListCommandOutput>;
|
|
113
|
+
putAppsList(args: PutAppsListCommandInput, cb: (err: any, data?: PutAppsListCommandOutput) => void): void;
|
|
114
|
+
putAppsList(args: PutAppsListCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutAppsListCommandOutput) => void): void;
|
|
115
|
+
|
|
116
|
+
putNotificationChannel(args: PutNotificationChannelCommandInput, options?: __HttpHandlerOptions): Promise<PutNotificationChannelCommandOutput>;
|
|
117
|
+
putNotificationChannel(args: PutNotificationChannelCommandInput, cb: (err: any, data?: PutNotificationChannelCommandOutput) => void): void;
|
|
118
|
+
putNotificationChannel(args: PutNotificationChannelCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutNotificationChannelCommandOutput) => void): void;
|
|
119
|
+
|
|
120
|
+
putPolicy(args: PutPolicyCommandInput, options?: __HttpHandlerOptions): Promise<PutPolicyCommandOutput>;
|
|
121
|
+
putPolicy(args: PutPolicyCommandInput, cb: (err: any, data?: PutPolicyCommandOutput) => void): void;
|
|
122
|
+
putPolicy(args: PutPolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutPolicyCommandOutput) => void): void;
|
|
123
|
+
|
|
124
|
+
putProtocolsList(args: PutProtocolsListCommandInput, options?: __HttpHandlerOptions): Promise<PutProtocolsListCommandOutput>;
|
|
125
|
+
putProtocolsList(args: PutProtocolsListCommandInput, cb: (err: any, data?: PutProtocolsListCommandOutput) => void): void;
|
|
126
|
+
putProtocolsList(args: PutProtocolsListCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutProtocolsListCommandOutput) => void): void;
|
|
127
|
+
|
|
128
|
+
tagResource(args: TagResourceCommandInput, options?: __HttpHandlerOptions): Promise<TagResourceCommandOutput>;
|
|
129
|
+
tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
130
|
+
tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
131
|
+
|
|
132
|
+
untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
|
|
133
|
+
untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
134
|
+
untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
135
|
+
}
|
|
@@ -0,0 +1,99 @@
|
|
|
1
|
+
import { EndpointsInputConfig, EndpointsResolvedConfig, RegionInputConfig, RegionResolvedConfig } from "@aws-sdk/config-resolver";
|
|
2
|
+
import { HostHeaderInputConfig, HostHeaderResolvedConfig } from "@aws-sdk/middleware-host-header";
|
|
3
|
+
import { RetryInputConfig, RetryResolvedConfig } from "@aws-sdk/middleware-retry";
|
|
4
|
+
import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-signing";
|
|
5
|
+
import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
|
|
6
|
+
import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
|
|
7
|
+
import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
|
|
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
|
+
import { AssociateAdminAccountCommandInput, AssociateAdminAccountCommandOutput } from "./commands/AssociateAdminAccountCommand";
|
|
10
|
+
import { DeleteAppsListCommandInput, DeleteAppsListCommandOutput } from "./commands/DeleteAppsListCommand";
|
|
11
|
+
import { DeleteNotificationChannelCommandInput, DeleteNotificationChannelCommandOutput } from "./commands/DeleteNotificationChannelCommand";
|
|
12
|
+
import { DeletePolicyCommandInput, DeletePolicyCommandOutput } from "./commands/DeletePolicyCommand";
|
|
13
|
+
import { DeleteProtocolsListCommandInput, DeleteProtocolsListCommandOutput } from "./commands/DeleteProtocolsListCommand";
|
|
14
|
+
import { DisassociateAdminAccountCommandInput, DisassociateAdminAccountCommandOutput } from "./commands/DisassociateAdminAccountCommand";
|
|
15
|
+
import { GetAdminAccountCommandInput, GetAdminAccountCommandOutput } from "./commands/GetAdminAccountCommand";
|
|
16
|
+
import { GetAppsListCommandInput, GetAppsListCommandOutput } from "./commands/GetAppsListCommand";
|
|
17
|
+
import { GetComplianceDetailCommandInput, GetComplianceDetailCommandOutput } from "./commands/GetComplianceDetailCommand";
|
|
18
|
+
import { GetNotificationChannelCommandInput, GetNotificationChannelCommandOutput } from "./commands/GetNotificationChannelCommand";
|
|
19
|
+
import { GetPolicyCommandInput, GetPolicyCommandOutput } from "./commands/GetPolicyCommand";
|
|
20
|
+
import { GetProtectionStatusCommandInput, GetProtectionStatusCommandOutput } from "./commands/GetProtectionStatusCommand";
|
|
21
|
+
import { GetProtocolsListCommandInput, GetProtocolsListCommandOutput } from "./commands/GetProtocolsListCommand";
|
|
22
|
+
import { GetViolationDetailsCommandInput, GetViolationDetailsCommandOutput } from "./commands/GetViolationDetailsCommand";
|
|
23
|
+
import { ListAppsListsCommandInput, ListAppsListsCommandOutput } from "./commands/ListAppsListsCommand";
|
|
24
|
+
import { ListComplianceStatusCommandInput, ListComplianceStatusCommandOutput } from "./commands/ListComplianceStatusCommand";
|
|
25
|
+
import { ListMemberAccountsCommandInput, ListMemberAccountsCommandOutput } from "./commands/ListMemberAccountsCommand";
|
|
26
|
+
import { ListPoliciesCommandInput, ListPoliciesCommandOutput } from "./commands/ListPoliciesCommand";
|
|
27
|
+
import { ListProtocolsListsCommandInput, ListProtocolsListsCommandOutput } from "./commands/ListProtocolsListsCommand";
|
|
28
|
+
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
29
|
+
import { PutAppsListCommandInput, PutAppsListCommandOutput } from "./commands/PutAppsListCommand";
|
|
30
|
+
import { PutNotificationChannelCommandInput, PutNotificationChannelCommandOutput } from "./commands/PutNotificationChannelCommand";
|
|
31
|
+
import { PutPolicyCommandInput, PutPolicyCommandOutput } from "./commands/PutPolicyCommand";
|
|
32
|
+
import { PutProtocolsListCommandInput, PutProtocolsListCommandOutput } from "./commands/PutProtocolsListCommand";
|
|
33
|
+
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
34
|
+
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
35
|
+
export declare type ServiceInputTypes = AssociateAdminAccountCommandInput | DeleteAppsListCommandInput | DeleteNotificationChannelCommandInput | DeletePolicyCommandInput | DeleteProtocolsListCommandInput | DisassociateAdminAccountCommandInput | GetAdminAccountCommandInput | GetAppsListCommandInput | GetComplianceDetailCommandInput | GetNotificationChannelCommandInput | GetPolicyCommandInput | GetProtectionStatusCommandInput | GetProtocolsListCommandInput | GetViolationDetailsCommandInput | ListAppsListsCommandInput | ListComplianceStatusCommandInput | ListMemberAccountsCommandInput | ListPoliciesCommandInput | ListProtocolsListsCommandInput | ListTagsForResourceCommandInput | PutAppsListCommandInput | PutNotificationChannelCommandInput | PutPolicyCommandInput | PutProtocolsListCommandInput | TagResourceCommandInput | UntagResourceCommandInput;
|
|
36
|
+
export declare type ServiceOutputTypes = AssociateAdminAccountCommandOutput | DeleteAppsListCommandOutput | DeleteNotificationChannelCommandOutput | DeletePolicyCommandOutput | DeleteProtocolsListCommandOutput | DisassociateAdminAccountCommandOutput | GetAdminAccountCommandOutput | GetAppsListCommandOutput | GetComplianceDetailCommandOutput | GetNotificationChannelCommandOutput | GetPolicyCommandOutput | GetProtectionStatusCommandOutput | GetProtocolsListCommandOutput | GetViolationDetailsCommandOutput | ListAppsListsCommandOutput | ListComplianceStatusCommandOutput | ListMemberAccountsCommandOutput | ListPoliciesCommandOutput | ListProtocolsListsCommandOutput | ListTagsForResourceCommandOutput | PutAppsListCommandOutput | PutNotificationChannelCommandOutput | PutPolicyCommandOutput | PutProtocolsListCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput;
|
|
37
|
+
export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
38
|
+
|
|
39
|
+
requestHandler?: __HttpHandler;
|
|
40
|
+
|
|
41
|
+
sha256?: __HashConstructor;
|
|
42
|
+
|
|
43
|
+
urlParser?: __UrlParser;
|
|
44
|
+
|
|
45
|
+
bodyLengthChecker?: (body: any) => number | undefined;
|
|
46
|
+
|
|
47
|
+
streamCollector?: __StreamCollector;
|
|
48
|
+
|
|
49
|
+
base64Decoder?: __Decoder;
|
|
50
|
+
|
|
51
|
+
base64Encoder?: __Encoder;
|
|
52
|
+
|
|
53
|
+
utf8Decoder?: __Decoder;
|
|
54
|
+
|
|
55
|
+
utf8Encoder?: __Encoder;
|
|
56
|
+
|
|
57
|
+
runtime?: string;
|
|
58
|
+
|
|
59
|
+
disableHostPrefix?: boolean;
|
|
60
|
+
|
|
61
|
+
maxAttempts?: number | __Provider<number>;
|
|
62
|
+
|
|
63
|
+
retryMode?: string | __Provider<string>;
|
|
64
|
+
|
|
65
|
+
logger?: __Logger;
|
|
66
|
+
|
|
67
|
+
useDualstackEndpoint?: boolean | __Provider<boolean>;
|
|
68
|
+
|
|
69
|
+
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
70
|
+
|
|
71
|
+
serviceId?: string;
|
|
72
|
+
|
|
73
|
+
region?: string | __Provider<string>;
|
|
74
|
+
|
|
75
|
+
credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
|
|
76
|
+
|
|
77
|
+
regionInfoProvider?: RegionInfoProvider;
|
|
78
|
+
|
|
79
|
+
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
80
|
+
|
|
81
|
+
defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
|
|
82
|
+
}
|
|
83
|
+
declare type FMSClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointsInputConfig & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig;
|
|
84
|
+
|
|
85
|
+
export interface FMSClientConfig extends FMSClientConfigType {
|
|
86
|
+
}
|
|
87
|
+
declare type FMSClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointsResolvedConfig & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig;
|
|
88
|
+
|
|
89
|
+
export interface FMSClientResolvedConfig extends FMSClientResolvedConfigType {
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
export declare class FMSClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, FMSClientResolvedConfig> {
|
|
93
|
+
|
|
94
|
+
readonly config: FMSClientResolvedConfig;
|
|
95
|
+
constructor(configuration: FMSClientConfig);
|
|
96
|
+
|
|
97
|
+
destroy(): void;
|
|
98
|
+
}
|
|
99
|
+
export {};
|
|
@@ -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 { FMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FMSClient";
|
|
4
|
+
import { AssociateAdminAccountRequest } from "../models/models_0";
|
|
5
|
+
export interface AssociateAdminAccountCommandInput extends AssociateAdminAccountRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface AssociateAdminAccountCommandOutput extends __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class AssociateAdminAccountCommand extends $Command<AssociateAdminAccountCommandInput, AssociateAdminAccountCommandOutput, FMSClientResolvedConfig> {
|
|
11
|
+
readonly input: AssociateAdminAccountCommandInput;
|
|
12
|
+
constructor(input: AssociateAdminAccountCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: FMSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<AssociateAdminAccountCommandInput, AssociateAdminAccountCommandOutput>;
|
|
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 { FMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FMSClient";
|
|
4
|
+
import { DeleteAppsListRequest } from "../models/models_0";
|
|
5
|
+
export interface DeleteAppsListCommandInput extends DeleteAppsListRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface DeleteAppsListCommandOutput extends __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class DeleteAppsListCommand extends $Command<DeleteAppsListCommandInput, DeleteAppsListCommandOutput, FMSClientResolvedConfig> {
|
|
11
|
+
readonly input: DeleteAppsListCommandInput;
|
|
12
|
+
constructor(input: DeleteAppsListCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: FMSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteAppsListCommandInput, DeleteAppsListCommandOutput>;
|
|
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 { FMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FMSClient";
|
|
4
|
+
import { DeleteNotificationChannelRequest } from "../models/models_0";
|
|
5
|
+
export interface DeleteNotificationChannelCommandInput extends DeleteNotificationChannelRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface DeleteNotificationChannelCommandOutput extends __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class DeleteNotificationChannelCommand extends $Command<DeleteNotificationChannelCommandInput, DeleteNotificationChannelCommandOutput, FMSClientResolvedConfig> {
|
|
11
|
+
readonly input: DeleteNotificationChannelCommandInput;
|
|
12
|
+
constructor(input: DeleteNotificationChannelCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: FMSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteNotificationChannelCommandInput, DeleteNotificationChannelCommandOutput>;
|
|
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 { FMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FMSClient";
|
|
4
|
+
import { DeletePolicyRequest } from "../models/models_0";
|
|
5
|
+
export interface DeletePolicyCommandInput extends DeletePolicyRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface DeletePolicyCommandOutput extends __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class DeletePolicyCommand extends $Command<DeletePolicyCommandInput, DeletePolicyCommandOutput, FMSClientResolvedConfig> {
|
|
11
|
+
readonly input: DeletePolicyCommandInput;
|
|
12
|
+
constructor(input: DeletePolicyCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: FMSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeletePolicyCommandInput, DeletePolicyCommandOutput>;
|
|
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 { FMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FMSClient";
|
|
4
|
+
import { DeleteProtocolsListRequest } from "../models/models_0";
|
|
5
|
+
export interface DeleteProtocolsListCommandInput extends DeleteProtocolsListRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface DeleteProtocolsListCommandOutput extends __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class DeleteProtocolsListCommand extends $Command<DeleteProtocolsListCommandInput, DeleteProtocolsListCommandOutput, FMSClientResolvedConfig> {
|
|
11
|
+
readonly input: DeleteProtocolsListCommandInput;
|
|
12
|
+
constructor(input: DeleteProtocolsListCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: FMSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteProtocolsListCommandInput, DeleteProtocolsListCommandOutput>;
|
|
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 { FMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FMSClient";
|
|
4
|
+
import { DisassociateAdminAccountRequest } from "../models/models_0";
|
|
5
|
+
export interface DisassociateAdminAccountCommandInput extends DisassociateAdminAccountRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface DisassociateAdminAccountCommandOutput extends __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class DisassociateAdminAccountCommand extends $Command<DisassociateAdminAccountCommandInput, DisassociateAdminAccountCommandOutput, FMSClientResolvedConfig> {
|
|
11
|
+
readonly input: DisassociateAdminAccountCommandInput;
|
|
12
|
+
constructor(input: DisassociateAdminAccountCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: FMSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DisassociateAdminAccountCommandInput, DisassociateAdminAccountCommandOutput>;
|
|
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 { FMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FMSClient";
|
|
4
|
+
import { GetAdminAccountRequest, GetAdminAccountResponse } from "../models/models_0";
|
|
5
|
+
export interface GetAdminAccountCommandInput extends GetAdminAccountRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface GetAdminAccountCommandOutput extends GetAdminAccountResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class GetAdminAccountCommand extends $Command<GetAdminAccountCommandInput, GetAdminAccountCommandOutput, FMSClientResolvedConfig> {
|
|
11
|
+
readonly input: GetAdminAccountCommandInput;
|
|
12
|
+
constructor(input: GetAdminAccountCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: FMSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetAdminAccountCommandInput, GetAdminAccountCommandOutput>;
|
|
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 { FMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FMSClient";
|
|
4
|
+
import { GetAppsListRequest, GetAppsListResponse } from "../models/models_0";
|
|
5
|
+
export interface GetAppsListCommandInput extends GetAppsListRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface GetAppsListCommandOutput extends GetAppsListResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class GetAppsListCommand extends $Command<GetAppsListCommandInput, GetAppsListCommandOutput, FMSClientResolvedConfig> {
|
|
11
|
+
readonly input: GetAppsListCommandInput;
|
|
12
|
+
constructor(input: GetAppsListCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: FMSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetAppsListCommandInput, GetAppsListCommandOutput>;
|
|
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 { FMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FMSClient";
|
|
4
|
+
import { GetComplianceDetailRequest, GetComplianceDetailResponse } from "../models/models_0";
|
|
5
|
+
export interface GetComplianceDetailCommandInput extends GetComplianceDetailRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface GetComplianceDetailCommandOutput extends GetComplianceDetailResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class GetComplianceDetailCommand extends $Command<GetComplianceDetailCommandInput, GetComplianceDetailCommandOutput, FMSClientResolvedConfig> {
|
|
11
|
+
readonly input: GetComplianceDetailCommandInput;
|
|
12
|
+
constructor(input: GetComplianceDetailCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: FMSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetComplianceDetailCommandInput, GetComplianceDetailCommandOutput>;
|
|
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 { FMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FMSClient";
|
|
4
|
+
import { GetNotificationChannelRequest, GetNotificationChannelResponse } from "../models/models_0";
|
|
5
|
+
export interface GetNotificationChannelCommandInput extends GetNotificationChannelRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface GetNotificationChannelCommandOutput extends GetNotificationChannelResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class GetNotificationChannelCommand extends $Command<GetNotificationChannelCommandInput, GetNotificationChannelCommandOutput, FMSClientResolvedConfig> {
|
|
11
|
+
readonly input: GetNotificationChannelCommandInput;
|
|
12
|
+
constructor(input: GetNotificationChannelCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: FMSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetNotificationChannelCommandInput, GetNotificationChannelCommandOutput>;
|
|
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 { FMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FMSClient";
|
|
4
|
+
import { GetPolicyRequest, GetPolicyResponse } from "../models/models_0";
|
|
5
|
+
export interface GetPolicyCommandInput extends GetPolicyRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface GetPolicyCommandOutput extends GetPolicyResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class GetPolicyCommand extends $Command<GetPolicyCommandInput, GetPolicyCommandOutput, FMSClientResolvedConfig> {
|
|
11
|
+
readonly input: GetPolicyCommandInput;
|
|
12
|
+
constructor(input: GetPolicyCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: FMSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetPolicyCommandInput, GetPolicyCommandOutput>;
|
|
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 { FMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FMSClient";
|
|
4
|
+
import { GetProtectionStatusRequest, GetProtectionStatusResponse } from "../models/models_0";
|
|
5
|
+
export interface GetProtectionStatusCommandInput extends GetProtectionStatusRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface GetProtectionStatusCommandOutput extends GetProtectionStatusResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class GetProtectionStatusCommand extends $Command<GetProtectionStatusCommandInput, GetProtectionStatusCommandOutput, FMSClientResolvedConfig> {
|
|
11
|
+
readonly input: GetProtectionStatusCommandInput;
|
|
12
|
+
constructor(input: GetProtectionStatusCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: FMSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetProtectionStatusCommandInput, GetProtectionStatusCommandOutput>;
|
|
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 { FMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FMSClient";
|
|
4
|
+
import { GetProtocolsListRequest, GetProtocolsListResponse } from "../models/models_0";
|
|
5
|
+
export interface GetProtocolsListCommandInput extends GetProtocolsListRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface GetProtocolsListCommandOutput extends GetProtocolsListResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class GetProtocolsListCommand extends $Command<GetProtocolsListCommandInput, GetProtocolsListCommandOutput, FMSClientResolvedConfig> {
|
|
11
|
+
readonly input: GetProtocolsListCommandInput;
|
|
12
|
+
constructor(input: GetProtocolsListCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: FMSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetProtocolsListCommandInput, GetProtocolsListCommandOutput>;
|
|
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 { FMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FMSClient";
|
|
4
|
+
import { GetViolationDetailsRequest, GetViolationDetailsResponse } from "../models/models_0";
|
|
5
|
+
export interface GetViolationDetailsCommandInput extends GetViolationDetailsRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface GetViolationDetailsCommandOutput extends GetViolationDetailsResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class GetViolationDetailsCommand extends $Command<GetViolationDetailsCommandInput, GetViolationDetailsCommandOutput, FMSClientResolvedConfig> {
|
|
11
|
+
readonly input: GetViolationDetailsCommandInput;
|
|
12
|
+
constructor(input: GetViolationDetailsCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: FMSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetViolationDetailsCommandInput, GetViolationDetailsCommandOutput>;
|
|
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 { FMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FMSClient";
|
|
4
|
+
import { ListAppsListsRequest, ListAppsListsResponse } from "../models/models_0";
|
|
5
|
+
export interface ListAppsListsCommandInput extends ListAppsListsRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface ListAppsListsCommandOutput extends ListAppsListsResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class ListAppsListsCommand extends $Command<ListAppsListsCommandInput, ListAppsListsCommandOutput, FMSClientResolvedConfig> {
|
|
11
|
+
readonly input: ListAppsListsCommandInput;
|
|
12
|
+
constructor(input: ListAppsListsCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: FMSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListAppsListsCommandInput, ListAppsListsCommandOutput>;
|
|
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 { FMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FMSClient";
|
|
4
|
+
import { ListComplianceStatusRequest, ListComplianceStatusResponse } from "../models/models_0";
|
|
5
|
+
export interface ListComplianceStatusCommandInput extends ListComplianceStatusRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface ListComplianceStatusCommandOutput extends ListComplianceStatusResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class ListComplianceStatusCommand extends $Command<ListComplianceStatusCommandInput, ListComplianceStatusCommandOutput, FMSClientResolvedConfig> {
|
|
11
|
+
readonly input: ListComplianceStatusCommandInput;
|
|
12
|
+
constructor(input: ListComplianceStatusCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: FMSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListComplianceStatusCommandInput, ListComplianceStatusCommandOutput>;
|
|
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 { FMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FMSClient";
|
|
4
|
+
import { ListMemberAccountsRequest, ListMemberAccountsResponse } from "../models/models_0";
|
|
5
|
+
export interface ListMemberAccountsCommandInput extends ListMemberAccountsRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface ListMemberAccountsCommandOutput extends ListMemberAccountsResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class ListMemberAccountsCommand extends $Command<ListMemberAccountsCommandInput, ListMemberAccountsCommandOutput, FMSClientResolvedConfig> {
|
|
11
|
+
readonly input: ListMemberAccountsCommandInput;
|
|
12
|
+
constructor(input: ListMemberAccountsCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: FMSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListMemberAccountsCommandInput, ListMemberAccountsCommandOutput>;
|
|
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 { FMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FMSClient";
|
|
4
|
+
import { ListPoliciesRequest, ListPoliciesResponse } from "../models/models_0";
|
|
5
|
+
export interface ListPoliciesCommandInput extends ListPoliciesRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface ListPoliciesCommandOutput extends ListPoliciesResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class ListPoliciesCommand extends $Command<ListPoliciesCommandInput, ListPoliciesCommandOutput, FMSClientResolvedConfig> {
|
|
11
|
+
readonly input: ListPoliciesCommandInput;
|
|
12
|
+
constructor(input: ListPoliciesCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: FMSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListPoliciesCommandInput, ListPoliciesCommandOutput>;
|
|
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 { FMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FMSClient";
|
|
4
|
+
import { ListProtocolsListsRequest, ListProtocolsListsResponse } from "../models/models_0";
|
|
5
|
+
export interface ListProtocolsListsCommandInput extends ListProtocolsListsRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface ListProtocolsListsCommandOutput extends ListProtocolsListsResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class ListProtocolsListsCommand extends $Command<ListProtocolsListsCommandInput, ListProtocolsListsCommandOutput, FMSClientResolvedConfig> {
|
|
11
|
+
readonly input: ListProtocolsListsCommandInput;
|
|
12
|
+
constructor(input: ListProtocolsListsCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: FMSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListProtocolsListsCommandInput, ListProtocolsListsCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|