@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.
Files changed (47) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/dist-types/ts3.4/FMS.d.ts +135 -0
  3. package/dist-types/ts3.4/FMSClient.d.ts +99 -0
  4. package/dist-types/ts3.4/commands/AssociateAdminAccountCommand.d.ts +17 -0
  5. package/dist-types/ts3.4/commands/DeleteAppsListCommand.d.ts +17 -0
  6. package/dist-types/ts3.4/commands/DeleteNotificationChannelCommand.d.ts +17 -0
  7. package/dist-types/ts3.4/commands/DeletePolicyCommand.d.ts +17 -0
  8. package/dist-types/ts3.4/commands/DeleteProtocolsListCommand.d.ts +17 -0
  9. package/dist-types/ts3.4/commands/DisassociateAdminAccountCommand.d.ts +17 -0
  10. package/dist-types/ts3.4/commands/GetAdminAccountCommand.d.ts +17 -0
  11. package/dist-types/ts3.4/commands/GetAppsListCommand.d.ts +17 -0
  12. package/dist-types/ts3.4/commands/GetComplianceDetailCommand.d.ts +17 -0
  13. package/dist-types/ts3.4/commands/GetNotificationChannelCommand.d.ts +17 -0
  14. package/dist-types/ts3.4/commands/GetPolicyCommand.d.ts +17 -0
  15. package/dist-types/ts3.4/commands/GetProtectionStatusCommand.d.ts +17 -0
  16. package/dist-types/ts3.4/commands/GetProtocolsListCommand.d.ts +17 -0
  17. package/dist-types/ts3.4/commands/GetViolationDetailsCommand.d.ts +17 -0
  18. package/dist-types/ts3.4/commands/ListAppsListsCommand.d.ts +17 -0
  19. package/dist-types/ts3.4/commands/ListComplianceStatusCommand.d.ts +17 -0
  20. package/dist-types/ts3.4/commands/ListMemberAccountsCommand.d.ts +17 -0
  21. package/dist-types/ts3.4/commands/ListPoliciesCommand.d.ts +17 -0
  22. package/dist-types/ts3.4/commands/ListProtocolsListsCommand.d.ts +17 -0
  23. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +17 -0
  24. package/dist-types/ts3.4/commands/PutAppsListCommand.d.ts +17 -0
  25. package/dist-types/ts3.4/commands/PutNotificationChannelCommand.d.ts +17 -0
  26. package/dist-types/ts3.4/commands/PutPolicyCommand.d.ts +17 -0
  27. package/dist-types/ts3.4/commands/PutProtocolsListCommand.d.ts +17 -0
  28. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +17 -0
  29. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +17 -0
  30. package/dist-types/ts3.4/commands/index.d.ts +26 -0
  31. package/dist-types/ts3.4/endpoints.d.ts +2 -0
  32. package/dist-types/ts3.4/index.d.ts +5 -0
  33. package/dist-types/ts3.4/models/index.d.ts +1 -0
  34. package/dist-types/ts3.4/models/models_0.d.ts +1432 -0
  35. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
  36. package/dist-types/ts3.4/pagination/ListAppsListsPaginator.d.ts +4 -0
  37. package/dist-types/ts3.4/pagination/ListComplianceStatusPaginator.d.ts +4 -0
  38. package/dist-types/ts3.4/pagination/ListMemberAccountsPaginator.d.ts +4 -0
  39. package/dist-types/ts3.4/pagination/ListPoliciesPaginator.d.ts +4 -0
  40. package/dist-types/ts3.4/pagination/ListProtocolsListsPaginator.d.ts +4 -0
  41. package/dist-types/ts3.4/pagination/index.d.ts +6 -0
  42. package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +80 -0
  43. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +38 -0
  44. package/dist-types/ts3.4/runtimeConfig.d.ts +38 -0
  45. package/dist-types/ts3.4/runtimeConfig.native.d.ts +37 -0
  46. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -0
  47. package/package.json +8 -8
@@ -0,0 +1,6 @@
1
+ import { PaginationConfiguration } from "@aws-sdk/types";
2
+ import { FMS } from "../FMS";
3
+ import { FMSClient } from "../FMSClient";
4
+ export interface FMSPaginationConfiguration extends PaginationConfiguration {
5
+ client: FMS | FMSClient;
6
+ }
@@ -0,0 +1,4 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import { ListAppsListsCommandInput, ListAppsListsCommandOutput } from "../commands/ListAppsListsCommand";
3
+ import { FMSPaginationConfiguration } from "./Interfaces";
4
+ export declare function paginateListAppsLists(config: FMSPaginationConfiguration, input: ListAppsListsCommandInput, ...additionalArguments: any): Paginator<ListAppsListsCommandOutput>;
@@ -0,0 +1,4 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import { ListComplianceStatusCommandInput, ListComplianceStatusCommandOutput } from "../commands/ListComplianceStatusCommand";
3
+ import { FMSPaginationConfiguration } from "./Interfaces";
4
+ export declare function paginateListComplianceStatus(config: FMSPaginationConfiguration, input: ListComplianceStatusCommandInput, ...additionalArguments: any): Paginator<ListComplianceStatusCommandOutput>;
@@ -0,0 +1,4 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import { ListMemberAccountsCommandInput, ListMemberAccountsCommandOutput } from "../commands/ListMemberAccountsCommand";
3
+ import { FMSPaginationConfiguration } from "./Interfaces";
4
+ export declare function paginateListMemberAccounts(config: FMSPaginationConfiguration, input: ListMemberAccountsCommandInput, ...additionalArguments: any): Paginator<ListMemberAccountsCommandOutput>;
@@ -0,0 +1,4 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import { ListPoliciesCommandInput, ListPoliciesCommandOutput } from "../commands/ListPoliciesCommand";
3
+ import { FMSPaginationConfiguration } from "./Interfaces";
4
+ export declare function paginateListPolicies(config: FMSPaginationConfiguration, input: ListPoliciesCommandInput, ...additionalArguments: any): Paginator<ListPoliciesCommandOutput>;
@@ -0,0 +1,4 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import { ListProtocolsListsCommandInput, ListProtocolsListsCommandOutput } from "../commands/ListProtocolsListsCommand";
3
+ import { FMSPaginationConfiguration } from "./Interfaces";
4
+ export declare function paginateListProtocolsLists(config: FMSPaginationConfiguration, input: ListProtocolsListsCommandInput, ...additionalArguments: any): Paginator<ListProtocolsListsCommandOutput>;
@@ -0,0 +1,6 @@
1
+ export * from "./Interfaces";
2
+ export * from "./ListAppsListsPaginator";
3
+ export * from "./ListComplianceStatusPaginator";
4
+ export * from "./ListMemberAccountsPaginator";
5
+ export * from "./ListPoliciesPaginator";
6
+ export * from "./ListProtocolsListsPaginator";
@@ -0,0 +1,80 @@
1
+ import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@aws-sdk/protocol-http";
2
+ import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
3
+ import { AssociateAdminAccountCommandInput, AssociateAdminAccountCommandOutput } from "../commands/AssociateAdminAccountCommand";
4
+ import { DeleteAppsListCommandInput, DeleteAppsListCommandOutput } from "../commands/DeleteAppsListCommand";
5
+ import { DeleteNotificationChannelCommandInput, DeleteNotificationChannelCommandOutput } from "../commands/DeleteNotificationChannelCommand";
6
+ import { DeletePolicyCommandInput, DeletePolicyCommandOutput } from "../commands/DeletePolicyCommand";
7
+ import { DeleteProtocolsListCommandInput, DeleteProtocolsListCommandOutput } from "../commands/DeleteProtocolsListCommand";
8
+ import { DisassociateAdminAccountCommandInput, DisassociateAdminAccountCommandOutput } from "../commands/DisassociateAdminAccountCommand";
9
+ import { GetAdminAccountCommandInput, GetAdminAccountCommandOutput } from "../commands/GetAdminAccountCommand";
10
+ import { GetAppsListCommandInput, GetAppsListCommandOutput } from "../commands/GetAppsListCommand";
11
+ import { GetComplianceDetailCommandInput, GetComplianceDetailCommandOutput } from "../commands/GetComplianceDetailCommand";
12
+ import { GetNotificationChannelCommandInput, GetNotificationChannelCommandOutput } from "../commands/GetNotificationChannelCommand";
13
+ import { GetPolicyCommandInput, GetPolicyCommandOutput } from "../commands/GetPolicyCommand";
14
+ import { GetProtectionStatusCommandInput, GetProtectionStatusCommandOutput } from "../commands/GetProtectionStatusCommand";
15
+ import { GetProtocolsListCommandInput, GetProtocolsListCommandOutput } from "../commands/GetProtocolsListCommand";
16
+ import { GetViolationDetailsCommandInput, GetViolationDetailsCommandOutput } from "../commands/GetViolationDetailsCommand";
17
+ import { ListAppsListsCommandInput, ListAppsListsCommandOutput } from "../commands/ListAppsListsCommand";
18
+ import { ListComplianceStatusCommandInput, ListComplianceStatusCommandOutput } from "../commands/ListComplianceStatusCommand";
19
+ import { ListMemberAccountsCommandInput, ListMemberAccountsCommandOutput } from "../commands/ListMemberAccountsCommand";
20
+ import { ListPoliciesCommandInput, ListPoliciesCommandOutput } from "../commands/ListPoliciesCommand";
21
+ import { ListProtocolsListsCommandInput, ListProtocolsListsCommandOutput } from "../commands/ListProtocolsListsCommand";
22
+ import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
23
+ import { PutAppsListCommandInput, PutAppsListCommandOutput } from "../commands/PutAppsListCommand";
24
+ import { PutNotificationChannelCommandInput, PutNotificationChannelCommandOutput } from "../commands/PutNotificationChannelCommand";
25
+ import { PutPolicyCommandInput, PutPolicyCommandOutput } from "../commands/PutPolicyCommand";
26
+ import { PutProtocolsListCommandInput, PutProtocolsListCommandOutput } from "../commands/PutProtocolsListCommand";
27
+ import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
28
+ import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
29
+ export declare const serializeAws_json1_1AssociateAdminAccountCommand: (input: AssociateAdminAccountCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
30
+ export declare const serializeAws_json1_1DeleteAppsListCommand: (input: DeleteAppsListCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
31
+ export declare const serializeAws_json1_1DeleteNotificationChannelCommand: (input: DeleteNotificationChannelCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
32
+ export declare const serializeAws_json1_1DeletePolicyCommand: (input: DeletePolicyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
33
+ export declare const serializeAws_json1_1DeleteProtocolsListCommand: (input: DeleteProtocolsListCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
34
+ export declare const serializeAws_json1_1DisassociateAdminAccountCommand: (input: DisassociateAdminAccountCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
35
+ export declare const serializeAws_json1_1GetAdminAccountCommand: (input: GetAdminAccountCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
36
+ export declare const serializeAws_json1_1GetAppsListCommand: (input: GetAppsListCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
37
+ export declare const serializeAws_json1_1GetComplianceDetailCommand: (input: GetComplianceDetailCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
38
+ export declare const serializeAws_json1_1GetNotificationChannelCommand: (input: GetNotificationChannelCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
39
+ export declare const serializeAws_json1_1GetPolicyCommand: (input: GetPolicyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
40
+ export declare const serializeAws_json1_1GetProtectionStatusCommand: (input: GetProtectionStatusCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
41
+ export declare const serializeAws_json1_1GetProtocolsListCommand: (input: GetProtocolsListCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
42
+ export declare const serializeAws_json1_1GetViolationDetailsCommand: (input: GetViolationDetailsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
43
+ export declare const serializeAws_json1_1ListAppsListsCommand: (input: ListAppsListsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
44
+ export declare const serializeAws_json1_1ListComplianceStatusCommand: (input: ListComplianceStatusCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
45
+ export declare const serializeAws_json1_1ListMemberAccountsCommand: (input: ListMemberAccountsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
46
+ export declare const serializeAws_json1_1ListPoliciesCommand: (input: ListPoliciesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
47
+ export declare const serializeAws_json1_1ListProtocolsListsCommand: (input: ListProtocolsListsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
48
+ export declare const serializeAws_json1_1ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
49
+ export declare const serializeAws_json1_1PutAppsListCommand: (input: PutAppsListCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
50
+ export declare const serializeAws_json1_1PutNotificationChannelCommand: (input: PutNotificationChannelCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
51
+ export declare const serializeAws_json1_1PutPolicyCommand: (input: PutPolicyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
52
+ export declare const serializeAws_json1_1PutProtocolsListCommand: (input: PutProtocolsListCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
53
+ export declare const serializeAws_json1_1TagResourceCommand: (input: TagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
54
+ export declare const serializeAws_json1_1UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
55
+ export declare const deserializeAws_json1_1AssociateAdminAccountCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<AssociateAdminAccountCommandOutput>;
56
+ export declare const deserializeAws_json1_1DeleteAppsListCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteAppsListCommandOutput>;
57
+ export declare const deserializeAws_json1_1DeleteNotificationChannelCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteNotificationChannelCommandOutput>;
58
+ export declare const deserializeAws_json1_1DeletePolicyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeletePolicyCommandOutput>;
59
+ export declare const deserializeAws_json1_1DeleteProtocolsListCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteProtocolsListCommandOutput>;
60
+ export declare const deserializeAws_json1_1DisassociateAdminAccountCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DisassociateAdminAccountCommandOutput>;
61
+ export declare const deserializeAws_json1_1GetAdminAccountCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetAdminAccountCommandOutput>;
62
+ export declare const deserializeAws_json1_1GetAppsListCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetAppsListCommandOutput>;
63
+ export declare const deserializeAws_json1_1GetComplianceDetailCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetComplianceDetailCommandOutput>;
64
+ export declare const deserializeAws_json1_1GetNotificationChannelCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetNotificationChannelCommandOutput>;
65
+ export declare const deserializeAws_json1_1GetPolicyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetPolicyCommandOutput>;
66
+ export declare const deserializeAws_json1_1GetProtectionStatusCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetProtectionStatusCommandOutput>;
67
+ export declare const deserializeAws_json1_1GetProtocolsListCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetProtocolsListCommandOutput>;
68
+ export declare const deserializeAws_json1_1GetViolationDetailsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetViolationDetailsCommandOutput>;
69
+ export declare const deserializeAws_json1_1ListAppsListsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListAppsListsCommandOutput>;
70
+ export declare const deserializeAws_json1_1ListComplianceStatusCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListComplianceStatusCommandOutput>;
71
+ export declare const deserializeAws_json1_1ListMemberAccountsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListMemberAccountsCommandOutput>;
72
+ export declare const deserializeAws_json1_1ListPoliciesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListPoliciesCommandOutput>;
73
+ export declare const deserializeAws_json1_1ListProtocolsListsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListProtocolsListsCommandOutput>;
74
+ export declare const deserializeAws_json1_1ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
75
+ export declare const deserializeAws_json1_1PutAppsListCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PutAppsListCommandOutput>;
76
+ export declare const deserializeAws_json1_1PutNotificationChannelCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PutNotificationChannelCommandOutput>;
77
+ export declare const deserializeAws_json1_1PutPolicyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PutPolicyCommandOutput>;
78
+ export declare const deserializeAws_json1_1PutProtocolsListCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PutProtocolsListCommandOutput>;
79
+ export declare const deserializeAws_json1_1TagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagResourceCommandOutput>;
80
+ export declare const deserializeAws_json1_1UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
@@ -0,0 +1,38 @@
1
+ import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
2
+ import { FMSClientConfig } from "./FMSClient";
3
+
4
+ export declare const getRuntimeConfig: (config: FMSClientConfig) => {
5
+ runtime: string;
6
+ defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
7
+ base64Decoder: import("@aws-sdk/types").Decoder;
8
+ base64Encoder: import("@aws-sdk/types").Encoder;
9
+ bodyLengthChecker: (body: any) => number | undefined;
10
+ credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
11
+ defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
12
+ maxAttempts: number | import("@aws-sdk/types").Provider<number>;
13
+ region: string | import("@aws-sdk/types").Provider<any>;
14
+ requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
15
+ retryMode: string | import("@aws-sdk/types").Provider<string>;
16
+ sha256: import("@aws-sdk/types").HashConstructor;
17
+ streamCollector: import("@aws-sdk/types").StreamCollector;
18
+ useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
19
+ useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
20
+ utf8Decoder: import("@aws-sdk/types").Decoder;
21
+ utf8Encoder: import("@aws-sdk/types").Encoder;
22
+ apiVersion: string;
23
+ urlParser: import("@aws-sdk/types").UrlParser;
24
+ disableHostPrefix: boolean;
25
+ logger: import("@aws-sdk/types").Logger;
26
+ serviceId: string;
27
+ regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
28
+ endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
29
+ tls?: boolean | undefined;
30
+ retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
31
+ credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
32
+ signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
33
+ signingEscapePath?: boolean | undefined;
34
+ systemClockOffset?: number | undefined;
35
+ signingRegion?: string | undefined;
36
+ signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
37
+ customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
38
+ };
@@ -0,0 +1,38 @@
1
+ import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
2
+ import { FMSClientConfig } from "./FMSClient";
3
+
4
+ export declare const getRuntimeConfig: (config: FMSClientConfig) => {
5
+ runtime: string;
6
+ defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
7
+ base64Decoder: import("@aws-sdk/types").Decoder;
8
+ base64Encoder: import("@aws-sdk/types").Encoder;
9
+ bodyLengthChecker: (body: any) => number | undefined;
10
+ credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
11
+ defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
12
+ maxAttempts: number | import("@aws-sdk/types").Provider<number>;
13
+ region: string | import("@aws-sdk/types").Provider<string>;
14
+ requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
15
+ retryMode: string | import("@aws-sdk/types").Provider<string>;
16
+ sha256: import("@aws-sdk/types").HashConstructor;
17
+ streamCollector: import("@aws-sdk/types").StreamCollector;
18
+ useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
19
+ useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
20
+ utf8Decoder: import("@aws-sdk/types").Decoder;
21
+ utf8Encoder: import("@aws-sdk/types").Encoder;
22
+ apiVersion: string;
23
+ urlParser: import("@aws-sdk/types").UrlParser;
24
+ disableHostPrefix: boolean;
25
+ logger: import("@aws-sdk/types").Logger;
26
+ serviceId: string;
27
+ regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
28
+ endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
29
+ tls?: boolean | undefined;
30
+ retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
31
+ credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
32
+ signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
33
+ signingEscapePath?: boolean | undefined;
34
+ systemClockOffset?: number | undefined;
35
+ signingRegion?: string | undefined;
36
+ signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
37
+ customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
38
+ };
@@ -0,0 +1,37 @@
1
+ import { FMSClientConfig } from "./FMSClient";
2
+
3
+ export declare const getRuntimeConfig: (config: FMSClientConfig) => {
4
+ runtime: string;
5
+ sha256: import("@aws-sdk/types").HashConstructor;
6
+ requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | import("@aws-sdk/fetch-http-handler").FetchHttpHandler;
7
+ apiVersion: string;
8
+ urlParser: import("@aws-sdk/types").UrlParser;
9
+ bodyLengthChecker: (body: any) => number | undefined;
10
+ streamCollector: import("@aws-sdk/types").StreamCollector;
11
+ base64Decoder: import("@aws-sdk/types").Decoder;
12
+ base64Encoder: import("@aws-sdk/types").Encoder;
13
+ utf8Decoder: import("@aws-sdk/types").Decoder;
14
+ utf8Encoder: import("@aws-sdk/types").Encoder;
15
+ disableHostPrefix: boolean;
16
+ maxAttempts: number | import("@aws-sdk/types").Provider<number>;
17
+ retryMode: string | import("@aws-sdk/types").Provider<string>;
18
+ logger: import("@aws-sdk/types").Logger;
19
+ useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
20
+ useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
21
+ serviceId: string;
22
+ region: string | import("@aws-sdk/types").Provider<string> | import("@aws-sdk/types").Provider<any>;
23
+ credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
24
+ regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
25
+ defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
26
+ defaultsMode: import("@aws-sdk/smithy-client").DefaultsMode | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").DefaultsMode> | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
27
+ endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
28
+ tls?: boolean | undefined;
29
+ retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
30
+ credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
31
+ signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
32
+ signingEscapePath?: boolean | undefined;
33
+ systemClockOffset?: number | undefined;
34
+ signingRegion?: string | undefined;
35
+ signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
36
+ customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
37
+ };
@@ -0,0 +1,11 @@
1
+ import { Logger as __Logger } from "@aws-sdk/types";
2
+ import { FMSClientConfig } from "./FMSClient";
3
+
4
+ export declare const getRuntimeConfig: (config: FMSClientConfig) => {
5
+ apiVersion: string;
6
+ disableHostPrefix: boolean;
7
+ logger: __Logger;
8
+ regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
9
+ serviceId: string;
10
+ urlParser: import("@aws-sdk/types").UrlParser;
11
+ };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-fms",
3
3
  "description": "AWS SDK for JavaScript Fms Client for Node.js, Browser and React Native",
4
- "version": "3.50.0",
4
+ "version": "3.51.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -18,21 +18,21 @@
18
18
  "dependencies": {
19
19
  "@aws-crypto/sha256-browser": "2.0.0",
20
20
  "@aws-crypto/sha256-js": "2.0.0",
21
- "@aws-sdk/client-sts": "3.50.0",
22
- "@aws-sdk/config-resolver": "3.50.0",
23
- "@aws-sdk/credential-provider-node": "3.50.0",
21
+ "@aws-sdk/client-sts": "3.51.0",
22
+ "@aws-sdk/config-resolver": "3.51.0",
23
+ "@aws-sdk/credential-provider-node": "3.51.0",
24
24
  "@aws-sdk/fetch-http-handler": "3.50.0",
25
25
  "@aws-sdk/hash-node": "3.50.0",
26
26
  "@aws-sdk/invalid-dependency": "3.50.0",
27
27
  "@aws-sdk/middleware-content-length": "3.50.0",
28
28
  "@aws-sdk/middleware-host-header": "3.50.0",
29
29
  "@aws-sdk/middleware-logger": "3.50.0",
30
- "@aws-sdk/middleware-retry": "3.50.0",
30
+ "@aws-sdk/middleware-retry": "3.51.0",
31
31
  "@aws-sdk/middleware-serde": "3.50.0",
32
32
  "@aws-sdk/middleware-signing": "3.50.0",
33
33
  "@aws-sdk/middleware-stack": "3.50.0",
34
34
  "@aws-sdk/middleware-user-agent": "3.50.0",
35
- "@aws-sdk/node-config-provider": "3.50.0",
35
+ "@aws-sdk/node-config-provider": "3.51.0",
36
36
  "@aws-sdk/node-http-handler": "3.50.0",
37
37
  "@aws-sdk/protocol-http": "3.50.0",
38
38
  "@aws-sdk/smithy-client": "3.50.0",
@@ -43,9 +43,9 @@
43
43
  "@aws-sdk/util-body-length-browser": "3.49.0",
44
44
  "@aws-sdk/util-body-length-node": "3.49.0",
45
45
  "@aws-sdk/util-defaults-mode-browser": "3.50.0",
46
- "@aws-sdk/util-defaults-mode-node": "3.50.0",
46
+ "@aws-sdk/util-defaults-mode-node": "3.51.0",
47
47
  "@aws-sdk/util-user-agent-browser": "3.50.0",
48
- "@aws-sdk/util-user-agent-node": "3.50.0",
48
+ "@aws-sdk/util-user-agent-node": "3.51.0",
49
49
  "@aws-sdk/util-utf8-browser": "3.49.0",
50
50
  "@aws-sdk/util-utf8-node": "3.49.0",
51
51
  "tslib": "^2.3.0"