@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.
Files changed (53) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/dist-types/ts3.4/FMS.d.ts +556 -155
  3. package/dist-types/ts3.4/FMSClient.d.ts +308 -103
  4. package/dist-types/ts3.4/commands/AssociateAdminAccountCommand.d.ts +36 -17
  5. package/dist-types/ts3.4/commands/AssociateThirdPartyFirewallCommand.d.ts +41 -17
  6. package/dist-types/ts3.4/commands/DeleteAppsListCommand.d.ts +32 -17
  7. package/dist-types/ts3.4/commands/DeleteNotificationChannelCommand.d.ts +37 -17
  8. package/dist-types/ts3.4/commands/DeletePolicyCommand.d.ts +32 -17
  9. package/dist-types/ts3.4/commands/DeleteProtocolsListCommand.d.ts +33 -17
  10. package/dist-types/ts3.4/commands/DisassociateAdminAccountCommand.d.ts +37 -17
  11. package/dist-types/ts3.4/commands/DisassociateThirdPartyFirewallCommand.d.ts +41 -17
  12. package/dist-types/ts3.4/commands/GetAdminAccountCommand.d.ts +37 -17
  13. package/dist-types/ts3.4/commands/GetAppsListCommand.d.ts +34 -17
  14. package/dist-types/ts3.4/commands/GetComplianceDetailCommand.d.ts +38 -17
  15. package/dist-types/ts3.4/commands/GetNotificationChannelCommand.d.ts +41 -17
  16. package/dist-types/ts3.4/commands/GetPolicyCommand.d.ts +34 -17
  17. package/dist-types/ts3.4/commands/GetProtectionStatusCommand.d.ts +38 -17
  18. package/dist-types/ts3.4/commands/GetProtocolsListCommand.d.ts +37 -17
  19. package/dist-types/ts3.4/commands/GetThirdPartyFirewallAssociationStatusCommand.d.ts +41 -17
  20. package/dist-types/ts3.4/commands/GetViolationDetailsCommand.d.ts +38 -17
  21. package/dist-types/ts3.4/commands/ListAppsListsCommand.d.ts +37 -17
  22. package/dist-types/ts3.4/commands/ListComplianceStatusCommand.d.ts +41 -17
  23. package/dist-types/ts3.4/commands/ListMemberAccountsCommand.d.ts +38 -17
  24. package/dist-types/ts3.4/commands/ListPoliciesCommand.d.ts +34 -17
  25. package/dist-types/ts3.4/commands/ListProtocolsListsCommand.d.ts +38 -17
  26. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -17
  27. package/dist-types/ts3.4/commands/ListThirdPartyFirewallFirewallPoliciesCommand.d.ts +41 -17
  28. package/dist-types/ts3.4/commands/PutAppsListCommand.d.ts +34 -17
  29. package/dist-types/ts3.4/commands/PutNotificationChannelCommand.d.ts +36 -17
  30. package/dist-types/ts3.4/commands/PutPolicyCommand.d.ts +34 -17
  31. package/dist-types/ts3.4/commands/PutProtocolsListCommand.d.ts +37 -17
  32. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -17
  33. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +37 -17
  34. package/dist-types/ts3.4/commands/index.d.ts +30 -30
  35. package/dist-types/ts3.4/endpoints.d.ts +2 -2
  36. package/dist-types/ts3.4/index.d.ts +6 -6
  37. package/dist-types/ts3.4/models/FMSServiceException.d.ts +8 -6
  38. package/dist-types/ts3.4/models/index.d.ts +1 -1
  39. package/dist-types/ts3.4/models/models_0.d.ts +1605 -1492
  40. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -6
  41. package/dist-types/ts3.4/pagination/ListAppsListsPaginator.d.ts +11 -4
  42. package/dist-types/ts3.4/pagination/ListComplianceStatusPaginator.d.ts +11 -4
  43. package/dist-types/ts3.4/pagination/ListMemberAccountsPaginator.d.ts +11 -4
  44. package/dist-types/ts3.4/pagination/ListPoliciesPaginator.d.ts +11 -4
  45. package/dist-types/ts3.4/pagination/ListProtocolsListsPaginator.d.ts +11 -4
  46. package/dist-types/ts3.4/pagination/ListThirdPartyFirewallFirewallPoliciesPaginator.d.ts +11 -4
  47. package/dist-types/ts3.4/pagination/index.d.ts +7 -7
  48. package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +365 -92
  49. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +66 -38
  50. package/dist-types/ts3.4/runtimeConfig.d.ts +66 -38
  51. package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
  52. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
  53. package/package.json +34 -34
@@ -1,17 +1,32 @@
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
- }
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 { 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
- }
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 { 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
- }
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 { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { FMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FMSClient";
4
- import { DisassociateThirdPartyFirewallRequest, DisassociateThirdPartyFirewallResponse } from "../models/models_0";
5
- export interface DisassociateThirdPartyFirewallCommandInput extends DisassociateThirdPartyFirewallRequest {
6
- }
7
- export interface DisassociateThirdPartyFirewallCommandOutput extends DisassociateThirdPartyFirewallResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class DisassociateThirdPartyFirewallCommand extends $Command<DisassociateThirdPartyFirewallCommandInput, DisassociateThirdPartyFirewallCommandOutput, FMSClientResolvedConfig> {
11
- readonly input: DisassociateThirdPartyFirewallCommandInput;
12
- constructor(input: DisassociateThirdPartyFirewallCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: FMSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DisassociateThirdPartyFirewallCommandInput, DisassociateThirdPartyFirewallCommandOutput>;
15
- private serialize;
16
- private deserialize;
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 { 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
- }
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 { 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
- }
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 { 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
- }
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 { 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
- }
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 { 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
- }
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 { 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
- }
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 { 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
- }
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
+ }