@aws-sdk/client-efs 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 (51) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/dist-types/ts3.4/EFS.d.ts +556 -155
  3. package/dist-types/ts3.4/EFSClient.d.ts +308 -103
  4. package/dist-types/ts3.4/commands/CreateAccessPointCommand.d.ts +38 -17
  5. package/dist-types/ts3.4/commands/CreateFileSystemCommand.d.ts +37 -17
  6. package/dist-types/ts3.4/commands/CreateMountTargetCommand.d.ts +38 -17
  7. package/dist-types/ts3.4/commands/CreateReplicationConfigurationCommand.d.ts +41 -17
  8. package/dist-types/ts3.4/commands/CreateTagsCommand.d.ts +32 -17
  9. package/dist-types/ts3.4/commands/DeleteAccessPointCommand.d.ts +33 -17
  10. package/dist-types/ts3.4/commands/DeleteFileSystemCommand.d.ts +32 -17
  11. package/dist-types/ts3.4/commands/DeleteFileSystemPolicyCommand.d.ts +36 -17
  12. package/dist-types/ts3.4/commands/DeleteMountTargetCommand.d.ts +33 -17
  13. package/dist-types/ts3.4/commands/DeleteReplicationConfigurationCommand.d.ts +37 -17
  14. package/dist-types/ts3.4/commands/DeleteTagsCommand.d.ts +32 -17
  15. package/dist-types/ts3.4/commands/DescribeAccessPointsCommand.d.ts +41 -17
  16. package/dist-types/ts3.4/commands/DescribeAccountPreferencesCommand.d.ts +41 -17
  17. package/dist-types/ts3.4/commands/DescribeBackupPolicyCommand.d.ts +41 -17
  18. package/dist-types/ts3.4/commands/DescribeFileSystemPolicyCommand.d.ts +41 -17
  19. package/dist-types/ts3.4/commands/DescribeFileSystemsCommand.d.ts +38 -17
  20. package/dist-types/ts3.4/commands/DescribeLifecycleConfigurationCommand.d.ts +41 -17
  21. package/dist-types/ts3.4/commands/DescribeMountTargetSecurityGroupsCommand.d.ts +41 -17
  22. package/dist-types/ts3.4/commands/DescribeMountTargetsCommand.d.ts +41 -17
  23. package/dist-types/ts3.4/commands/DescribeReplicationConfigurationsCommand.d.ts +41 -17
  24. package/dist-types/ts3.4/commands/DescribeTagsCommand.d.ts +34 -17
  25. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -17
  26. package/dist-types/ts3.4/commands/ModifyMountTargetSecurityGroupsCommand.d.ts +37 -17
  27. package/dist-types/ts3.4/commands/PutAccountPreferencesCommand.d.ts +41 -17
  28. package/dist-types/ts3.4/commands/PutBackupPolicyCommand.d.ts +37 -17
  29. package/dist-types/ts3.4/commands/PutFileSystemPolicyCommand.d.ts +38 -17
  30. package/dist-types/ts3.4/commands/PutLifecycleConfigurationCommand.d.ts +41 -17
  31. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +32 -17
  32. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +32 -17
  33. package/dist-types/ts3.4/commands/UpdateFileSystemCommand.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/EFSServiceException.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 +1056 -961
  40. package/dist-types/ts3.4/pagination/DescribeAccessPointsPaginator.d.ts +11 -4
  41. package/dist-types/ts3.4/pagination/DescribeFileSystemsPaginator.d.ts +11 -4
  42. package/dist-types/ts3.4/pagination/DescribeTagsPaginator.d.ts +11 -4
  43. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -6
  44. package/dist-types/ts3.4/pagination/ListTagsForResourcePaginator.d.ts +11 -4
  45. package/dist-types/ts3.4/pagination/index.d.ts +5 -5
  46. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +365 -92
  47. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +66 -38
  48. package/dist-types/ts3.4/runtimeConfig.d.ts +66 -38
  49. package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
  50. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
  51. package/package.json +34 -34
@@ -1,4 +1,11 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { DescribeAccessPointsCommandInput, DescribeAccessPointsCommandOutput } from "../commands/DescribeAccessPointsCommand";
3
- import { EFSPaginationConfiguration } from "./Interfaces";
4
- export declare function paginateDescribeAccessPoints(config: EFSPaginationConfiguration, input: DescribeAccessPointsCommandInput, ...additionalArguments: any): Paginator<DescribeAccessPointsCommandOutput>;
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ DescribeAccessPointsCommandInput,
4
+ DescribeAccessPointsCommandOutput,
5
+ } from "../commands/DescribeAccessPointsCommand";
6
+ import { EFSPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateDescribeAccessPoints(
8
+ config: EFSPaginationConfiguration,
9
+ input: DescribeAccessPointsCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<DescribeAccessPointsCommandOutput>;
@@ -1,4 +1,11 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { DescribeFileSystemsCommandInput, DescribeFileSystemsCommandOutput } from "../commands/DescribeFileSystemsCommand";
3
- import { EFSPaginationConfiguration } from "./Interfaces";
4
- export declare function paginateDescribeFileSystems(config: EFSPaginationConfiguration, input: DescribeFileSystemsCommandInput, ...additionalArguments: any): Paginator<DescribeFileSystemsCommandOutput>;
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ DescribeFileSystemsCommandInput,
4
+ DescribeFileSystemsCommandOutput,
5
+ } from "../commands/DescribeFileSystemsCommand";
6
+ import { EFSPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateDescribeFileSystems(
8
+ config: EFSPaginationConfiguration,
9
+ input: DescribeFileSystemsCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<DescribeFileSystemsCommandOutput>;
@@ -1,4 +1,11 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { DescribeTagsCommandInput, DescribeTagsCommandOutput } from "../commands/DescribeTagsCommand";
3
- import { EFSPaginationConfiguration } from "./Interfaces";
4
- export declare function paginateDescribeTags(config: EFSPaginationConfiguration, input: DescribeTagsCommandInput, ...additionalArguments: any): Paginator<DescribeTagsCommandOutput>;
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ DescribeTagsCommandInput,
4
+ DescribeTagsCommandOutput,
5
+ } from "../commands/DescribeTagsCommand";
6
+ import { EFSPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateDescribeTags(
8
+ config: EFSPaginationConfiguration,
9
+ input: DescribeTagsCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<DescribeTagsCommandOutput>;
@@ -1,6 +1,6 @@
1
- import { PaginationConfiguration } from "@aws-sdk/types";
2
- import { EFS } from "../EFS";
3
- import { EFSClient } from "../EFSClient";
4
- export interface EFSPaginationConfiguration extends PaginationConfiguration {
5
- client: EFS | EFSClient;
6
- }
1
+ import { PaginationConfiguration } from "@aws-sdk/types";
2
+ import { EFS } from "../EFS";
3
+ import { EFSClient } from "../EFSClient";
4
+ export interface EFSPaginationConfiguration extends PaginationConfiguration {
5
+ client: EFS | EFSClient;
6
+ }
@@ -1,4 +1,11 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
3
- import { EFSPaginationConfiguration } from "./Interfaces";
4
- export declare function paginateListTagsForResource(config: EFSPaginationConfiguration, input: ListTagsForResourceCommandInput, ...additionalArguments: any): Paginator<ListTagsForResourceCommandOutput>;
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ ListTagsForResourceCommandInput,
4
+ ListTagsForResourceCommandOutput,
5
+ } from "../commands/ListTagsForResourceCommand";
6
+ import { EFSPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListTagsForResource(
8
+ config: EFSPaginationConfiguration,
9
+ input: ListTagsForResourceCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListTagsForResourceCommandOutput>;
@@ -1,5 +1,5 @@
1
- export * from "./DescribeAccessPointsPaginator";
2
- export * from "./DescribeFileSystemsPaginator";
3
- export * from "./DescribeTagsPaginator";
4
- export * from "./Interfaces";
5
- export * from "./ListTagsForResourcePaginator";
1
+ export * from "./DescribeAccessPointsPaginator";
2
+ export * from "./DescribeFileSystemsPaginator";
3
+ export * from "./DescribeTagsPaginator";
4
+ export * from "./Interfaces";
5
+ export * from "./ListTagsForResourcePaginator";
@@ -1,92 +1,365 @@
1
- import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@aws-sdk/protocol-http";
2
- import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
3
- import { CreateAccessPointCommandInput, CreateAccessPointCommandOutput } from "../commands/CreateAccessPointCommand";
4
- import { CreateFileSystemCommandInput, CreateFileSystemCommandOutput } from "../commands/CreateFileSystemCommand";
5
- import { CreateMountTargetCommandInput, CreateMountTargetCommandOutput } from "../commands/CreateMountTargetCommand";
6
- import { CreateReplicationConfigurationCommandInput, CreateReplicationConfigurationCommandOutput } from "../commands/CreateReplicationConfigurationCommand";
7
- import { CreateTagsCommandInput, CreateTagsCommandOutput } from "../commands/CreateTagsCommand";
8
- import { DeleteAccessPointCommandInput, DeleteAccessPointCommandOutput } from "../commands/DeleteAccessPointCommand";
9
- import { DeleteFileSystemCommandInput, DeleteFileSystemCommandOutput } from "../commands/DeleteFileSystemCommand";
10
- import { DeleteFileSystemPolicyCommandInput, DeleteFileSystemPolicyCommandOutput } from "../commands/DeleteFileSystemPolicyCommand";
11
- import { DeleteMountTargetCommandInput, DeleteMountTargetCommandOutput } from "../commands/DeleteMountTargetCommand";
12
- import { DeleteReplicationConfigurationCommandInput, DeleteReplicationConfigurationCommandOutput } from "../commands/DeleteReplicationConfigurationCommand";
13
- import { DeleteTagsCommandInput, DeleteTagsCommandOutput } from "../commands/DeleteTagsCommand";
14
- import { DescribeAccessPointsCommandInput, DescribeAccessPointsCommandOutput } from "../commands/DescribeAccessPointsCommand";
15
- import { DescribeAccountPreferencesCommandInput, DescribeAccountPreferencesCommandOutput } from "../commands/DescribeAccountPreferencesCommand";
16
- import { DescribeBackupPolicyCommandInput, DescribeBackupPolicyCommandOutput } from "../commands/DescribeBackupPolicyCommand";
17
- import { DescribeFileSystemPolicyCommandInput, DescribeFileSystemPolicyCommandOutput } from "../commands/DescribeFileSystemPolicyCommand";
18
- import { DescribeFileSystemsCommandInput, DescribeFileSystemsCommandOutput } from "../commands/DescribeFileSystemsCommand";
19
- import { DescribeLifecycleConfigurationCommandInput, DescribeLifecycleConfigurationCommandOutput } from "../commands/DescribeLifecycleConfigurationCommand";
20
- import { DescribeMountTargetsCommandInput, DescribeMountTargetsCommandOutput } from "../commands/DescribeMountTargetsCommand";
21
- import { DescribeMountTargetSecurityGroupsCommandInput, DescribeMountTargetSecurityGroupsCommandOutput } from "../commands/DescribeMountTargetSecurityGroupsCommand";
22
- import { DescribeReplicationConfigurationsCommandInput, DescribeReplicationConfigurationsCommandOutput } from "../commands/DescribeReplicationConfigurationsCommand";
23
- import { DescribeTagsCommandInput, DescribeTagsCommandOutput } from "../commands/DescribeTagsCommand";
24
- import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
25
- import { ModifyMountTargetSecurityGroupsCommandInput, ModifyMountTargetSecurityGroupsCommandOutput } from "../commands/ModifyMountTargetSecurityGroupsCommand";
26
- import { PutAccountPreferencesCommandInput, PutAccountPreferencesCommandOutput } from "../commands/PutAccountPreferencesCommand";
27
- import { PutBackupPolicyCommandInput, PutBackupPolicyCommandOutput } from "../commands/PutBackupPolicyCommand";
28
- import { PutFileSystemPolicyCommandInput, PutFileSystemPolicyCommandOutput } from "../commands/PutFileSystemPolicyCommand";
29
- import { PutLifecycleConfigurationCommandInput, PutLifecycleConfigurationCommandOutput } from "../commands/PutLifecycleConfigurationCommand";
30
- import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
31
- import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
32
- import { UpdateFileSystemCommandInput, UpdateFileSystemCommandOutput } from "../commands/UpdateFileSystemCommand";
33
- export declare const serializeAws_restJson1CreateAccessPointCommand: (input: CreateAccessPointCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
34
- export declare const serializeAws_restJson1CreateFileSystemCommand: (input: CreateFileSystemCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
35
- export declare const serializeAws_restJson1CreateMountTargetCommand: (input: CreateMountTargetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
36
- export declare const serializeAws_restJson1CreateReplicationConfigurationCommand: (input: CreateReplicationConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
37
- export declare const serializeAws_restJson1CreateTagsCommand: (input: CreateTagsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
38
- export declare const serializeAws_restJson1DeleteAccessPointCommand: (input: DeleteAccessPointCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
39
- export declare const serializeAws_restJson1DeleteFileSystemCommand: (input: DeleteFileSystemCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
40
- export declare const serializeAws_restJson1DeleteFileSystemPolicyCommand: (input: DeleteFileSystemPolicyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
41
- export declare const serializeAws_restJson1DeleteMountTargetCommand: (input: DeleteMountTargetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
42
- export declare const serializeAws_restJson1DeleteReplicationConfigurationCommand: (input: DeleteReplicationConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
43
- export declare const serializeAws_restJson1DeleteTagsCommand: (input: DeleteTagsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
44
- export declare const serializeAws_restJson1DescribeAccessPointsCommand: (input: DescribeAccessPointsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
45
- export declare const serializeAws_restJson1DescribeAccountPreferencesCommand: (input: DescribeAccountPreferencesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
46
- export declare const serializeAws_restJson1DescribeBackupPolicyCommand: (input: DescribeBackupPolicyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
47
- export declare const serializeAws_restJson1DescribeFileSystemPolicyCommand: (input: DescribeFileSystemPolicyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
48
- export declare const serializeAws_restJson1DescribeFileSystemsCommand: (input: DescribeFileSystemsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
49
- export declare const serializeAws_restJson1DescribeLifecycleConfigurationCommand: (input: DescribeLifecycleConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
50
- export declare const serializeAws_restJson1DescribeMountTargetsCommand: (input: DescribeMountTargetsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
51
- export declare const serializeAws_restJson1DescribeMountTargetSecurityGroupsCommand: (input: DescribeMountTargetSecurityGroupsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
52
- export declare const serializeAws_restJson1DescribeReplicationConfigurationsCommand: (input: DescribeReplicationConfigurationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
53
- export declare const serializeAws_restJson1DescribeTagsCommand: (input: DescribeTagsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
54
- export declare const serializeAws_restJson1ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
55
- export declare const serializeAws_restJson1ModifyMountTargetSecurityGroupsCommand: (input: ModifyMountTargetSecurityGroupsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
56
- export declare const serializeAws_restJson1PutAccountPreferencesCommand: (input: PutAccountPreferencesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
57
- export declare const serializeAws_restJson1PutBackupPolicyCommand: (input: PutBackupPolicyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
58
- export declare const serializeAws_restJson1PutFileSystemPolicyCommand: (input: PutFileSystemPolicyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
59
- export declare const serializeAws_restJson1PutLifecycleConfigurationCommand: (input: PutLifecycleConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
60
- export declare const serializeAws_restJson1TagResourceCommand: (input: TagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
61
- export declare const serializeAws_restJson1UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
62
- export declare const serializeAws_restJson1UpdateFileSystemCommand: (input: UpdateFileSystemCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
63
- export declare const deserializeAws_restJson1CreateAccessPointCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateAccessPointCommandOutput>;
64
- export declare const deserializeAws_restJson1CreateFileSystemCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateFileSystemCommandOutput>;
65
- export declare const deserializeAws_restJson1CreateMountTargetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateMountTargetCommandOutput>;
66
- export declare const deserializeAws_restJson1CreateReplicationConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateReplicationConfigurationCommandOutput>;
67
- export declare const deserializeAws_restJson1CreateTagsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateTagsCommandOutput>;
68
- export declare const deserializeAws_restJson1DeleteAccessPointCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteAccessPointCommandOutput>;
69
- export declare const deserializeAws_restJson1DeleteFileSystemCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteFileSystemCommandOutput>;
70
- export declare const deserializeAws_restJson1DeleteFileSystemPolicyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteFileSystemPolicyCommandOutput>;
71
- export declare const deserializeAws_restJson1DeleteMountTargetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteMountTargetCommandOutput>;
72
- export declare const deserializeAws_restJson1DeleteReplicationConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteReplicationConfigurationCommandOutput>;
73
- export declare const deserializeAws_restJson1DeleteTagsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteTagsCommandOutput>;
74
- export declare const deserializeAws_restJson1DescribeAccessPointsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeAccessPointsCommandOutput>;
75
- export declare const deserializeAws_restJson1DescribeAccountPreferencesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeAccountPreferencesCommandOutput>;
76
- export declare const deserializeAws_restJson1DescribeBackupPolicyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeBackupPolicyCommandOutput>;
77
- export declare const deserializeAws_restJson1DescribeFileSystemPolicyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeFileSystemPolicyCommandOutput>;
78
- export declare const deserializeAws_restJson1DescribeFileSystemsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeFileSystemsCommandOutput>;
79
- export declare const deserializeAws_restJson1DescribeLifecycleConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeLifecycleConfigurationCommandOutput>;
80
- export declare const deserializeAws_restJson1DescribeMountTargetsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeMountTargetsCommandOutput>;
81
- export declare const deserializeAws_restJson1DescribeMountTargetSecurityGroupsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeMountTargetSecurityGroupsCommandOutput>;
82
- export declare const deserializeAws_restJson1DescribeReplicationConfigurationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeReplicationConfigurationsCommandOutput>;
83
- export declare const deserializeAws_restJson1DescribeTagsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeTagsCommandOutput>;
84
- export declare const deserializeAws_restJson1ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
85
- export declare const deserializeAws_restJson1ModifyMountTargetSecurityGroupsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ModifyMountTargetSecurityGroupsCommandOutput>;
86
- export declare const deserializeAws_restJson1PutAccountPreferencesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PutAccountPreferencesCommandOutput>;
87
- export declare const deserializeAws_restJson1PutBackupPolicyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PutBackupPolicyCommandOutput>;
88
- export declare const deserializeAws_restJson1PutFileSystemPolicyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PutFileSystemPolicyCommandOutput>;
89
- export declare const deserializeAws_restJson1PutLifecycleConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PutLifecycleConfigurationCommandOutput>;
90
- export declare const deserializeAws_restJson1TagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagResourceCommandOutput>;
91
- export declare const deserializeAws_restJson1UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
92
- export declare const deserializeAws_restJson1UpdateFileSystemCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateFileSystemCommandOutput>;
1
+ import {
2
+ HttpRequest as __HttpRequest,
3
+ HttpResponse as __HttpResponse,
4
+ } from "@aws-sdk/protocol-http";
5
+ import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
6
+ import {
7
+ CreateAccessPointCommandInput,
8
+ CreateAccessPointCommandOutput,
9
+ } from "../commands/CreateAccessPointCommand";
10
+ import {
11
+ CreateFileSystemCommandInput,
12
+ CreateFileSystemCommandOutput,
13
+ } from "../commands/CreateFileSystemCommand";
14
+ import {
15
+ CreateMountTargetCommandInput,
16
+ CreateMountTargetCommandOutput,
17
+ } from "../commands/CreateMountTargetCommand";
18
+ import {
19
+ CreateReplicationConfigurationCommandInput,
20
+ CreateReplicationConfigurationCommandOutput,
21
+ } from "../commands/CreateReplicationConfigurationCommand";
22
+ import {
23
+ CreateTagsCommandInput,
24
+ CreateTagsCommandOutput,
25
+ } from "../commands/CreateTagsCommand";
26
+ import {
27
+ DeleteAccessPointCommandInput,
28
+ DeleteAccessPointCommandOutput,
29
+ } from "../commands/DeleteAccessPointCommand";
30
+ import {
31
+ DeleteFileSystemCommandInput,
32
+ DeleteFileSystemCommandOutput,
33
+ } from "../commands/DeleteFileSystemCommand";
34
+ import {
35
+ DeleteFileSystemPolicyCommandInput,
36
+ DeleteFileSystemPolicyCommandOutput,
37
+ } from "../commands/DeleteFileSystemPolicyCommand";
38
+ import {
39
+ DeleteMountTargetCommandInput,
40
+ DeleteMountTargetCommandOutput,
41
+ } from "../commands/DeleteMountTargetCommand";
42
+ import {
43
+ DeleteReplicationConfigurationCommandInput,
44
+ DeleteReplicationConfigurationCommandOutput,
45
+ } from "../commands/DeleteReplicationConfigurationCommand";
46
+ import {
47
+ DeleteTagsCommandInput,
48
+ DeleteTagsCommandOutput,
49
+ } from "../commands/DeleteTagsCommand";
50
+ import {
51
+ DescribeAccessPointsCommandInput,
52
+ DescribeAccessPointsCommandOutput,
53
+ } from "../commands/DescribeAccessPointsCommand";
54
+ import {
55
+ DescribeAccountPreferencesCommandInput,
56
+ DescribeAccountPreferencesCommandOutput,
57
+ } from "../commands/DescribeAccountPreferencesCommand";
58
+ import {
59
+ DescribeBackupPolicyCommandInput,
60
+ DescribeBackupPolicyCommandOutput,
61
+ } from "../commands/DescribeBackupPolicyCommand";
62
+ import {
63
+ DescribeFileSystemPolicyCommandInput,
64
+ DescribeFileSystemPolicyCommandOutput,
65
+ } from "../commands/DescribeFileSystemPolicyCommand";
66
+ import {
67
+ DescribeFileSystemsCommandInput,
68
+ DescribeFileSystemsCommandOutput,
69
+ } from "../commands/DescribeFileSystemsCommand";
70
+ import {
71
+ DescribeLifecycleConfigurationCommandInput,
72
+ DescribeLifecycleConfigurationCommandOutput,
73
+ } from "../commands/DescribeLifecycleConfigurationCommand";
74
+ import {
75
+ DescribeMountTargetsCommandInput,
76
+ DescribeMountTargetsCommandOutput,
77
+ } from "../commands/DescribeMountTargetsCommand";
78
+ import {
79
+ DescribeMountTargetSecurityGroupsCommandInput,
80
+ DescribeMountTargetSecurityGroupsCommandOutput,
81
+ } from "../commands/DescribeMountTargetSecurityGroupsCommand";
82
+ import {
83
+ DescribeReplicationConfigurationsCommandInput,
84
+ DescribeReplicationConfigurationsCommandOutput,
85
+ } from "../commands/DescribeReplicationConfigurationsCommand";
86
+ import {
87
+ DescribeTagsCommandInput,
88
+ DescribeTagsCommandOutput,
89
+ } from "../commands/DescribeTagsCommand";
90
+ import {
91
+ ListTagsForResourceCommandInput,
92
+ ListTagsForResourceCommandOutput,
93
+ } from "../commands/ListTagsForResourceCommand";
94
+ import {
95
+ ModifyMountTargetSecurityGroupsCommandInput,
96
+ ModifyMountTargetSecurityGroupsCommandOutput,
97
+ } from "../commands/ModifyMountTargetSecurityGroupsCommand";
98
+ import {
99
+ PutAccountPreferencesCommandInput,
100
+ PutAccountPreferencesCommandOutput,
101
+ } from "../commands/PutAccountPreferencesCommand";
102
+ import {
103
+ PutBackupPolicyCommandInput,
104
+ PutBackupPolicyCommandOutput,
105
+ } from "../commands/PutBackupPolicyCommand";
106
+ import {
107
+ PutFileSystemPolicyCommandInput,
108
+ PutFileSystemPolicyCommandOutput,
109
+ } from "../commands/PutFileSystemPolicyCommand";
110
+ import {
111
+ PutLifecycleConfigurationCommandInput,
112
+ PutLifecycleConfigurationCommandOutput,
113
+ } from "../commands/PutLifecycleConfigurationCommand";
114
+ import {
115
+ TagResourceCommandInput,
116
+ TagResourceCommandOutput,
117
+ } from "../commands/TagResourceCommand";
118
+ import {
119
+ UntagResourceCommandInput,
120
+ UntagResourceCommandOutput,
121
+ } from "../commands/UntagResourceCommand";
122
+ import {
123
+ UpdateFileSystemCommandInput,
124
+ UpdateFileSystemCommandOutput,
125
+ } from "../commands/UpdateFileSystemCommand";
126
+ export declare const serializeAws_restJson1CreateAccessPointCommand: (
127
+ input: CreateAccessPointCommandInput,
128
+ context: __SerdeContext
129
+ ) => Promise<__HttpRequest>;
130
+ export declare const serializeAws_restJson1CreateFileSystemCommand: (
131
+ input: CreateFileSystemCommandInput,
132
+ context: __SerdeContext
133
+ ) => Promise<__HttpRequest>;
134
+ export declare const serializeAws_restJson1CreateMountTargetCommand: (
135
+ input: CreateMountTargetCommandInput,
136
+ context: __SerdeContext
137
+ ) => Promise<__HttpRequest>;
138
+ export declare const serializeAws_restJson1CreateReplicationConfigurationCommand: (
139
+ input: CreateReplicationConfigurationCommandInput,
140
+ context: __SerdeContext
141
+ ) => Promise<__HttpRequest>;
142
+ export declare const serializeAws_restJson1CreateTagsCommand: (
143
+ input: CreateTagsCommandInput,
144
+ context: __SerdeContext
145
+ ) => Promise<__HttpRequest>;
146
+ export declare const serializeAws_restJson1DeleteAccessPointCommand: (
147
+ input: DeleteAccessPointCommandInput,
148
+ context: __SerdeContext
149
+ ) => Promise<__HttpRequest>;
150
+ export declare const serializeAws_restJson1DeleteFileSystemCommand: (
151
+ input: DeleteFileSystemCommandInput,
152
+ context: __SerdeContext
153
+ ) => Promise<__HttpRequest>;
154
+ export declare const serializeAws_restJson1DeleteFileSystemPolicyCommand: (
155
+ input: DeleteFileSystemPolicyCommandInput,
156
+ context: __SerdeContext
157
+ ) => Promise<__HttpRequest>;
158
+ export declare const serializeAws_restJson1DeleteMountTargetCommand: (
159
+ input: DeleteMountTargetCommandInput,
160
+ context: __SerdeContext
161
+ ) => Promise<__HttpRequest>;
162
+ export declare const serializeAws_restJson1DeleteReplicationConfigurationCommand: (
163
+ input: DeleteReplicationConfigurationCommandInput,
164
+ context: __SerdeContext
165
+ ) => Promise<__HttpRequest>;
166
+ export declare const serializeAws_restJson1DeleteTagsCommand: (
167
+ input: DeleteTagsCommandInput,
168
+ context: __SerdeContext
169
+ ) => Promise<__HttpRequest>;
170
+ export declare const serializeAws_restJson1DescribeAccessPointsCommand: (
171
+ input: DescribeAccessPointsCommandInput,
172
+ context: __SerdeContext
173
+ ) => Promise<__HttpRequest>;
174
+ export declare const serializeAws_restJson1DescribeAccountPreferencesCommand: (
175
+ input: DescribeAccountPreferencesCommandInput,
176
+ context: __SerdeContext
177
+ ) => Promise<__HttpRequest>;
178
+ export declare const serializeAws_restJson1DescribeBackupPolicyCommand: (
179
+ input: DescribeBackupPolicyCommandInput,
180
+ context: __SerdeContext
181
+ ) => Promise<__HttpRequest>;
182
+ export declare const serializeAws_restJson1DescribeFileSystemPolicyCommand: (
183
+ input: DescribeFileSystemPolicyCommandInput,
184
+ context: __SerdeContext
185
+ ) => Promise<__HttpRequest>;
186
+ export declare const serializeAws_restJson1DescribeFileSystemsCommand: (
187
+ input: DescribeFileSystemsCommandInput,
188
+ context: __SerdeContext
189
+ ) => Promise<__HttpRequest>;
190
+ export declare const serializeAws_restJson1DescribeLifecycleConfigurationCommand: (
191
+ input: DescribeLifecycleConfigurationCommandInput,
192
+ context: __SerdeContext
193
+ ) => Promise<__HttpRequest>;
194
+ export declare const serializeAws_restJson1DescribeMountTargetsCommand: (
195
+ input: DescribeMountTargetsCommandInput,
196
+ context: __SerdeContext
197
+ ) => Promise<__HttpRequest>;
198
+ export declare const serializeAws_restJson1DescribeMountTargetSecurityGroupsCommand: (
199
+ input: DescribeMountTargetSecurityGroupsCommandInput,
200
+ context: __SerdeContext
201
+ ) => Promise<__HttpRequest>;
202
+ export declare const serializeAws_restJson1DescribeReplicationConfigurationsCommand: (
203
+ input: DescribeReplicationConfigurationsCommandInput,
204
+ context: __SerdeContext
205
+ ) => Promise<__HttpRequest>;
206
+ export declare const serializeAws_restJson1DescribeTagsCommand: (
207
+ input: DescribeTagsCommandInput,
208
+ context: __SerdeContext
209
+ ) => Promise<__HttpRequest>;
210
+ export declare const serializeAws_restJson1ListTagsForResourceCommand: (
211
+ input: ListTagsForResourceCommandInput,
212
+ context: __SerdeContext
213
+ ) => Promise<__HttpRequest>;
214
+ export declare const serializeAws_restJson1ModifyMountTargetSecurityGroupsCommand: (
215
+ input: ModifyMountTargetSecurityGroupsCommandInput,
216
+ context: __SerdeContext
217
+ ) => Promise<__HttpRequest>;
218
+ export declare const serializeAws_restJson1PutAccountPreferencesCommand: (
219
+ input: PutAccountPreferencesCommandInput,
220
+ context: __SerdeContext
221
+ ) => Promise<__HttpRequest>;
222
+ export declare const serializeAws_restJson1PutBackupPolicyCommand: (
223
+ input: PutBackupPolicyCommandInput,
224
+ context: __SerdeContext
225
+ ) => Promise<__HttpRequest>;
226
+ export declare const serializeAws_restJson1PutFileSystemPolicyCommand: (
227
+ input: PutFileSystemPolicyCommandInput,
228
+ context: __SerdeContext
229
+ ) => Promise<__HttpRequest>;
230
+ export declare const serializeAws_restJson1PutLifecycleConfigurationCommand: (
231
+ input: PutLifecycleConfigurationCommandInput,
232
+ context: __SerdeContext
233
+ ) => Promise<__HttpRequest>;
234
+ export declare const serializeAws_restJson1TagResourceCommand: (
235
+ input: TagResourceCommandInput,
236
+ context: __SerdeContext
237
+ ) => Promise<__HttpRequest>;
238
+ export declare const serializeAws_restJson1UntagResourceCommand: (
239
+ input: UntagResourceCommandInput,
240
+ context: __SerdeContext
241
+ ) => Promise<__HttpRequest>;
242
+ export declare const serializeAws_restJson1UpdateFileSystemCommand: (
243
+ input: UpdateFileSystemCommandInput,
244
+ context: __SerdeContext
245
+ ) => Promise<__HttpRequest>;
246
+ export declare const deserializeAws_restJson1CreateAccessPointCommand: (
247
+ output: __HttpResponse,
248
+ context: __SerdeContext
249
+ ) => Promise<CreateAccessPointCommandOutput>;
250
+ export declare const deserializeAws_restJson1CreateFileSystemCommand: (
251
+ output: __HttpResponse,
252
+ context: __SerdeContext
253
+ ) => Promise<CreateFileSystemCommandOutput>;
254
+ export declare const deserializeAws_restJson1CreateMountTargetCommand: (
255
+ output: __HttpResponse,
256
+ context: __SerdeContext
257
+ ) => Promise<CreateMountTargetCommandOutput>;
258
+ export declare const deserializeAws_restJson1CreateReplicationConfigurationCommand: (
259
+ output: __HttpResponse,
260
+ context: __SerdeContext
261
+ ) => Promise<CreateReplicationConfigurationCommandOutput>;
262
+ export declare const deserializeAws_restJson1CreateTagsCommand: (
263
+ output: __HttpResponse,
264
+ context: __SerdeContext
265
+ ) => Promise<CreateTagsCommandOutput>;
266
+ export declare const deserializeAws_restJson1DeleteAccessPointCommand: (
267
+ output: __HttpResponse,
268
+ context: __SerdeContext
269
+ ) => Promise<DeleteAccessPointCommandOutput>;
270
+ export declare const deserializeAws_restJson1DeleteFileSystemCommand: (
271
+ output: __HttpResponse,
272
+ context: __SerdeContext
273
+ ) => Promise<DeleteFileSystemCommandOutput>;
274
+ export declare const deserializeAws_restJson1DeleteFileSystemPolicyCommand: (
275
+ output: __HttpResponse,
276
+ context: __SerdeContext
277
+ ) => Promise<DeleteFileSystemPolicyCommandOutput>;
278
+ export declare const deserializeAws_restJson1DeleteMountTargetCommand: (
279
+ output: __HttpResponse,
280
+ context: __SerdeContext
281
+ ) => Promise<DeleteMountTargetCommandOutput>;
282
+ export declare const deserializeAws_restJson1DeleteReplicationConfigurationCommand: (
283
+ output: __HttpResponse,
284
+ context: __SerdeContext
285
+ ) => Promise<DeleteReplicationConfigurationCommandOutput>;
286
+ export declare const deserializeAws_restJson1DeleteTagsCommand: (
287
+ output: __HttpResponse,
288
+ context: __SerdeContext
289
+ ) => Promise<DeleteTagsCommandOutput>;
290
+ export declare const deserializeAws_restJson1DescribeAccessPointsCommand: (
291
+ output: __HttpResponse,
292
+ context: __SerdeContext
293
+ ) => Promise<DescribeAccessPointsCommandOutput>;
294
+ export declare const deserializeAws_restJson1DescribeAccountPreferencesCommand: (
295
+ output: __HttpResponse,
296
+ context: __SerdeContext
297
+ ) => Promise<DescribeAccountPreferencesCommandOutput>;
298
+ export declare const deserializeAws_restJson1DescribeBackupPolicyCommand: (
299
+ output: __HttpResponse,
300
+ context: __SerdeContext
301
+ ) => Promise<DescribeBackupPolicyCommandOutput>;
302
+ export declare const deserializeAws_restJson1DescribeFileSystemPolicyCommand: (
303
+ output: __HttpResponse,
304
+ context: __SerdeContext
305
+ ) => Promise<DescribeFileSystemPolicyCommandOutput>;
306
+ export declare const deserializeAws_restJson1DescribeFileSystemsCommand: (
307
+ output: __HttpResponse,
308
+ context: __SerdeContext
309
+ ) => Promise<DescribeFileSystemsCommandOutput>;
310
+ export declare const deserializeAws_restJson1DescribeLifecycleConfigurationCommand: (
311
+ output: __HttpResponse,
312
+ context: __SerdeContext
313
+ ) => Promise<DescribeLifecycleConfigurationCommandOutput>;
314
+ export declare const deserializeAws_restJson1DescribeMountTargetsCommand: (
315
+ output: __HttpResponse,
316
+ context: __SerdeContext
317
+ ) => Promise<DescribeMountTargetsCommandOutput>;
318
+ export declare const deserializeAws_restJson1DescribeMountTargetSecurityGroupsCommand: (
319
+ output: __HttpResponse,
320
+ context: __SerdeContext
321
+ ) => Promise<DescribeMountTargetSecurityGroupsCommandOutput>;
322
+ export declare const deserializeAws_restJson1DescribeReplicationConfigurationsCommand: (
323
+ output: __HttpResponse,
324
+ context: __SerdeContext
325
+ ) => Promise<DescribeReplicationConfigurationsCommandOutput>;
326
+ export declare const deserializeAws_restJson1DescribeTagsCommand: (
327
+ output: __HttpResponse,
328
+ context: __SerdeContext
329
+ ) => Promise<DescribeTagsCommandOutput>;
330
+ export declare const deserializeAws_restJson1ListTagsForResourceCommand: (
331
+ output: __HttpResponse,
332
+ context: __SerdeContext
333
+ ) => Promise<ListTagsForResourceCommandOutput>;
334
+ export declare const deserializeAws_restJson1ModifyMountTargetSecurityGroupsCommand: (
335
+ output: __HttpResponse,
336
+ context: __SerdeContext
337
+ ) => Promise<ModifyMountTargetSecurityGroupsCommandOutput>;
338
+ export declare const deserializeAws_restJson1PutAccountPreferencesCommand: (
339
+ output: __HttpResponse,
340
+ context: __SerdeContext
341
+ ) => Promise<PutAccountPreferencesCommandOutput>;
342
+ export declare const deserializeAws_restJson1PutBackupPolicyCommand: (
343
+ output: __HttpResponse,
344
+ context: __SerdeContext
345
+ ) => Promise<PutBackupPolicyCommandOutput>;
346
+ export declare const deserializeAws_restJson1PutFileSystemPolicyCommand: (
347
+ output: __HttpResponse,
348
+ context: __SerdeContext
349
+ ) => Promise<PutFileSystemPolicyCommandOutput>;
350
+ export declare const deserializeAws_restJson1PutLifecycleConfigurationCommand: (
351
+ output: __HttpResponse,
352
+ context: __SerdeContext
353
+ ) => Promise<PutLifecycleConfigurationCommandOutput>;
354
+ export declare const deserializeAws_restJson1TagResourceCommand: (
355
+ output: __HttpResponse,
356
+ context: __SerdeContext
357
+ ) => Promise<TagResourceCommandOutput>;
358
+ export declare const deserializeAws_restJson1UntagResourceCommand: (
359
+ output: __HttpResponse,
360
+ context: __SerdeContext
361
+ ) => Promise<UntagResourceCommandOutput>;
362
+ export declare const deserializeAws_restJson1UpdateFileSystemCommand: (
363
+ output: __HttpResponse,
364
+ context: __SerdeContext
365
+ ) => Promise<UpdateFileSystemCommandOutput>;