@aws-sdk/client-fms 3.169.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 +8 -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,32 @@
|
|
|
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 { DeletePolicyRequest } from "../models/models_0";
|
|
14
|
+
export interface DeletePolicyCommandInput extends DeletePolicyRequest {}
|
|
15
|
+
export interface DeletePolicyCommandOutput extends __MetadataBearer {}
|
|
16
|
+
|
|
17
|
+
export declare class DeletePolicyCommand extends $Command<
|
|
18
|
+
DeletePolicyCommandInput,
|
|
19
|
+
DeletePolicyCommandOutput,
|
|
20
|
+
FMSClientResolvedConfig
|
|
21
|
+
> {
|
|
22
|
+
readonly input: DeletePolicyCommandInput;
|
|
23
|
+
constructor(input: DeletePolicyCommandInput);
|
|
24
|
+
|
|
25
|
+
resolveMiddleware(
|
|
26
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
27
|
+
configuration: FMSClientResolvedConfig,
|
|
28
|
+
options?: __HttpHandlerOptions
|
|
29
|
+
): Handler<DeletePolicyCommandInput, DeletePolicyCommandOutput>;
|
|
30
|
+
private serialize;
|
|
31
|
+
private deserialize;
|
|
32
|
+
}
|
|
@@ -1,17 +1,33 @@
|
|
|
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 { DeleteProtocolsListRequest } from "../models/models_0";
|
|
14
|
+
export interface DeleteProtocolsListCommandInput
|
|
15
|
+
extends DeleteProtocolsListRequest {}
|
|
16
|
+
export interface DeleteProtocolsListCommandOutput extends __MetadataBearer {}
|
|
17
|
+
|
|
18
|
+
export declare class DeleteProtocolsListCommand extends $Command<
|
|
19
|
+
DeleteProtocolsListCommandInput,
|
|
20
|
+
DeleteProtocolsListCommandOutput,
|
|
21
|
+
FMSClientResolvedConfig
|
|
22
|
+
> {
|
|
23
|
+
readonly input: DeleteProtocolsListCommandInput;
|
|
24
|
+
constructor(input: DeleteProtocolsListCommandInput);
|
|
25
|
+
|
|
26
|
+
resolveMiddleware(
|
|
27
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
28
|
+
configuration: FMSClientResolvedConfig,
|
|
29
|
+
options?: __HttpHandlerOptions
|
|
30
|
+
): Handler<DeleteProtocolsListCommandInput, DeleteProtocolsListCommandOutput>;
|
|
31
|
+
private serialize;
|
|
32
|
+
private deserialize;
|
|
33
|
+
}
|
|
@@ -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 { DisassociateAdminAccountRequest } from "../models/models_0";
|
|
14
|
+
export interface DisassociateAdminAccountCommandInput
|
|
15
|
+
extends DisassociateAdminAccountRequest {}
|
|
16
|
+
export interface DisassociateAdminAccountCommandOutput
|
|
17
|
+
extends __MetadataBearer {}
|
|
18
|
+
|
|
19
|
+
export declare class DisassociateAdminAccountCommand extends $Command<
|
|
20
|
+
DisassociateAdminAccountCommandInput,
|
|
21
|
+
DisassociateAdminAccountCommandOutput,
|
|
22
|
+
FMSClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: DisassociateAdminAccountCommandInput;
|
|
25
|
+
constructor(input: DisassociateAdminAccountCommandInput);
|
|
26
|
+
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: FMSClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<
|
|
32
|
+
DisassociateAdminAccountCommandInput,
|
|
33
|
+
DisassociateAdminAccountCommandOutput
|
|
34
|
+
>;
|
|
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
|
+
DisassociateThirdPartyFirewallRequest,
|
|
15
|
+
DisassociateThirdPartyFirewallResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DisassociateThirdPartyFirewallCommandInput
|
|
18
|
+
extends DisassociateThirdPartyFirewallRequest {}
|
|
19
|
+
export interface DisassociateThirdPartyFirewallCommandOutput
|
|
20
|
+
extends DisassociateThirdPartyFirewallResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class DisassociateThirdPartyFirewallCommand extends $Command<
|
|
24
|
+
DisassociateThirdPartyFirewallCommandInput,
|
|
25
|
+
DisassociateThirdPartyFirewallCommandOutput,
|
|
26
|
+
FMSClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: DisassociateThirdPartyFirewallCommandInput;
|
|
29
|
+
constructor(input: DisassociateThirdPartyFirewallCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: FMSClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
DisassociateThirdPartyFirewallCommandInput,
|
|
37
|
+
DisassociateThirdPartyFirewallCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -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
|
+
GetAdminAccountRequest,
|
|
15
|
+
GetAdminAccountResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface GetAdminAccountCommandInput extends GetAdminAccountRequest {}
|
|
18
|
+
export interface GetAdminAccountCommandOutput
|
|
19
|
+
extends GetAdminAccountResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
|
|
22
|
+
export declare class GetAdminAccountCommand extends $Command<
|
|
23
|
+
GetAdminAccountCommandInput,
|
|
24
|
+
GetAdminAccountCommandOutput,
|
|
25
|
+
FMSClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: GetAdminAccountCommandInput;
|
|
28
|
+
constructor(input: GetAdminAccountCommandInput);
|
|
29
|
+
|
|
30
|
+
resolveMiddleware(
|
|
31
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
32
|
+
configuration: FMSClientResolvedConfig,
|
|
33
|
+
options?: __HttpHandlerOptions
|
|
34
|
+
): Handler<GetAdminAccountCommandInput, GetAdminAccountCommandOutput>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|
|
@@ -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 { GetAppsListRequest, GetAppsListResponse } from "../models/models_0";
|
|
14
|
+
export interface GetAppsListCommandInput extends GetAppsListRequest {}
|
|
15
|
+
export interface GetAppsListCommandOutput
|
|
16
|
+
extends GetAppsListResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
|
|
19
|
+
export declare class GetAppsListCommand extends $Command<
|
|
20
|
+
GetAppsListCommandInput,
|
|
21
|
+
GetAppsListCommandOutput,
|
|
22
|
+
FMSClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: GetAppsListCommandInput;
|
|
25
|
+
constructor(input: GetAppsListCommandInput);
|
|
26
|
+
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: FMSClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<GetAppsListCommandInput, GetAppsListCommandOutput>;
|
|
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
|
+
GetComplianceDetailRequest,
|
|
15
|
+
GetComplianceDetailResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface GetComplianceDetailCommandInput
|
|
18
|
+
extends GetComplianceDetailRequest {}
|
|
19
|
+
export interface GetComplianceDetailCommandOutput
|
|
20
|
+
extends GetComplianceDetailResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class GetComplianceDetailCommand extends $Command<
|
|
24
|
+
GetComplianceDetailCommandInput,
|
|
25
|
+
GetComplianceDetailCommandOutput,
|
|
26
|
+
FMSClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: GetComplianceDetailCommandInput;
|
|
29
|
+
constructor(input: GetComplianceDetailCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: FMSClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<GetComplianceDetailCommandInput, GetComplianceDetailCommandOutput>;
|
|
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
|
+
GetNotificationChannelRequest,
|
|
15
|
+
GetNotificationChannelResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface GetNotificationChannelCommandInput
|
|
18
|
+
extends GetNotificationChannelRequest {}
|
|
19
|
+
export interface GetNotificationChannelCommandOutput
|
|
20
|
+
extends GetNotificationChannelResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class GetNotificationChannelCommand extends $Command<
|
|
24
|
+
GetNotificationChannelCommandInput,
|
|
25
|
+
GetNotificationChannelCommandOutput,
|
|
26
|
+
FMSClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: GetNotificationChannelCommandInput;
|
|
29
|
+
constructor(input: GetNotificationChannelCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: FMSClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
GetNotificationChannelCommandInput,
|
|
37
|
+
GetNotificationChannelCommandOutput
|
|
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 { GetPolicyRequest, GetPolicyResponse } from "../models/models_0";
|
|
14
|
+
export interface GetPolicyCommandInput extends GetPolicyRequest {}
|
|
15
|
+
export interface GetPolicyCommandOutput
|
|
16
|
+
extends GetPolicyResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
|
|
19
|
+
export declare class GetPolicyCommand extends $Command<
|
|
20
|
+
GetPolicyCommandInput,
|
|
21
|
+
GetPolicyCommandOutput,
|
|
22
|
+
FMSClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: GetPolicyCommandInput;
|
|
25
|
+
constructor(input: GetPolicyCommandInput);
|
|
26
|
+
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: FMSClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<GetPolicyCommandInput, GetPolicyCommandOutput>;
|
|
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
|
+
GetProtectionStatusRequest,
|
|
15
|
+
GetProtectionStatusResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface GetProtectionStatusCommandInput
|
|
18
|
+
extends GetProtectionStatusRequest {}
|
|
19
|
+
export interface GetProtectionStatusCommandOutput
|
|
20
|
+
extends GetProtectionStatusResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class GetProtectionStatusCommand extends $Command<
|
|
24
|
+
GetProtectionStatusCommandInput,
|
|
25
|
+
GetProtectionStatusCommandOutput,
|
|
26
|
+
FMSClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: GetProtectionStatusCommandInput;
|
|
29
|
+
constructor(input: GetProtectionStatusCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: FMSClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<GetProtectionStatusCommandInput, GetProtectionStatusCommandOutput>;
|
|
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
|
+
GetProtocolsListRequest,
|
|
15
|
+
GetProtocolsListResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface GetProtocolsListCommandInput extends GetProtocolsListRequest {}
|
|
18
|
+
export interface GetProtocolsListCommandOutput
|
|
19
|
+
extends GetProtocolsListResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
|
|
22
|
+
export declare class GetProtocolsListCommand extends $Command<
|
|
23
|
+
GetProtocolsListCommandInput,
|
|
24
|
+
GetProtocolsListCommandOutput,
|
|
25
|
+
FMSClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: GetProtocolsListCommandInput;
|
|
28
|
+
constructor(input: GetProtocolsListCommandInput);
|
|
29
|
+
|
|
30
|
+
resolveMiddleware(
|
|
31
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
32
|
+
configuration: FMSClientResolvedConfig,
|
|
33
|
+
options?: __HttpHandlerOptions
|
|
34
|
+
): Handler<GetProtocolsListCommandInput, GetProtocolsListCommandOutput>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|