@aws-sdk/client-efs 3.169.0 → 3.171.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 +16 -0
  2. package/dist-types/ts3.4/EFS.d.ts +526 -155
  3. package/dist-types/ts3.4/EFSClient.d.ts +283 -103
  4. package/dist-types/ts3.4/commands/CreateAccessPointCommand.d.ts +36 -17
  5. package/dist-types/ts3.4/commands/CreateFileSystemCommand.d.ts +35 -17
  6. package/dist-types/ts3.4/commands/CreateMountTargetCommand.d.ts +36 -17
  7. package/dist-types/ts3.4/commands/CreateReplicationConfigurationCommand.d.ts +39 -17
  8. package/dist-types/ts3.4/commands/CreateTagsCommand.d.ts +30 -17
  9. package/dist-types/ts3.4/commands/DeleteAccessPointCommand.d.ts +31 -17
  10. package/dist-types/ts3.4/commands/DeleteFileSystemCommand.d.ts +30 -17
  11. package/dist-types/ts3.4/commands/DeleteFileSystemPolicyCommand.d.ts +34 -17
  12. package/dist-types/ts3.4/commands/DeleteMountTargetCommand.d.ts +31 -17
  13. package/dist-types/ts3.4/commands/DeleteReplicationConfigurationCommand.d.ts +35 -17
  14. package/dist-types/ts3.4/commands/DeleteTagsCommand.d.ts +30 -17
  15. package/dist-types/ts3.4/commands/DescribeAccessPointsCommand.d.ts +39 -17
  16. package/dist-types/ts3.4/commands/DescribeAccountPreferencesCommand.d.ts +39 -17
  17. package/dist-types/ts3.4/commands/DescribeBackupPolicyCommand.d.ts +39 -17
  18. package/dist-types/ts3.4/commands/DescribeFileSystemPolicyCommand.d.ts +39 -17
  19. package/dist-types/ts3.4/commands/DescribeFileSystemsCommand.d.ts +36 -17
  20. package/dist-types/ts3.4/commands/DescribeLifecycleConfigurationCommand.d.ts +39 -17
  21. package/dist-types/ts3.4/commands/DescribeMountTargetSecurityGroupsCommand.d.ts +39 -17
  22. package/dist-types/ts3.4/commands/DescribeMountTargetsCommand.d.ts +39 -17
  23. package/dist-types/ts3.4/commands/DescribeReplicationConfigurationsCommand.d.ts +39 -17
  24. package/dist-types/ts3.4/commands/DescribeTagsCommand.d.ts +32 -17
  25. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +36 -17
  26. package/dist-types/ts3.4/commands/ModifyMountTargetSecurityGroupsCommand.d.ts +35 -17
  27. package/dist-types/ts3.4/commands/PutAccountPreferencesCommand.d.ts +39 -17
  28. package/dist-types/ts3.4/commands/PutBackupPolicyCommand.d.ts +35 -17
  29. package/dist-types/ts3.4/commands/PutFileSystemPolicyCommand.d.ts +36 -17
  30. package/dist-types/ts3.4/commands/PutLifecycleConfigurationCommand.d.ts +39 -17
  31. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +30 -17
  32. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +30 -17
  33. package/dist-types/ts3.4/commands/UpdateFileSystemCommand.d.ts +35 -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 +7 -6
  38. package/dist-types/ts3.4/models/index.d.ts +1 -1
  39. package/dist-types/ts3.4/models/models_0.d.ts +745 -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 +65 -38
  48. package/dist-types/ts3.4/runtimeConfig.d.ts +65 -38
  49. package/dist-types/ts3.4/runtimeConfig.native.d.ts +66 -37
  50. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +10 -11
  51. package/package.json +34 -34
@@ -1,17 +1,30 @@
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 { EFSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EFSClient";
4
- import { CreateTagsRequest } from "../models/models_0";
5
- export interface CreateTagsCommandInput extends CreateTagsRequest {
6
- }
7
- export interface CreateTagsCommandOutput extends __MetadataBearer {
8
- }
9
-
10
- export declare class CreateTagsCommand extends $Command<CreateTagsCommandInput, CreateTagsCommandOutput, EFSClientResolvedConfig> {
11
- readonly input: CreateTagsCommandInput;
12
- constructor(input: CreateTagsCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: EFSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateTagsCommandInput, CreateTagsCommandOutput>;
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
+ EFSClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../EFSClient";
13
+ import { CreateTagsRequest } from "../models/models_0";
14
+ export interface CreateTagsCommandInput extends CreateTagsRequest {}
15
+ export interface CreateTagsCommandOutput extends __MetadataBearer {}
16
+ export declare class CreateTagsCommand extends $Command<
17
+ CreateTagsCommandInput,
18
+ CreateTagsCommandOutput,
19
+ EFSClientResolvedConfig
20
+ > {
21
+ readonly input: CreateTagsCommandInput;
22
+ constructor(input: CreateTagsCommandInput);
23
+ resolveMiddleware(
24
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
25
+ configuration: EFSClientResolvedConfig,
26
+ options?: __HttpHandlerOptions
27
+ ): Handler<CreateTagsCommandInput, CreateTagsCommandOutput>;
28
+ private serialize;
29
+ private deserialize;
30
+ }
@@ -1,17 +1,31 @@
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 { EFSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EFSClient";
4
- import { DeleteAccessPointRequest } from "../models/models_0";
5
- export interface DeleteAccessPointCommandInput extends DeleteAccessPointRequest {
6
- }
7
- export interface DeleteAccessPointCommandOutput extends __MetadataBearer {
8
- }
9
-
10
- export declare class DeleteAccessPointCommand extends $Command<DeleteAccessPointCommandInput, DeleteAccessPointCommandOutput, EFSClientResolvedConfig> {
11
- readonly input: DeleteAccessPointCommandInput;
12
- constructor(input: DeleteAccessPointCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: EFSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteAccessPointCommandInput, DeleteAccessPointCommandOutput>;
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
+ EFSClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../EFSClient";
13
+ import { DeleteAccessPointRequest } from "../models/models_0";
14
+ export interface DeleteAccessPointCommandInput
15
+ extends DeleteAccessPointRequest {}
16
+ export interface DeleteAccessPointCommandOutput extends __MetadataBearer {}
17
+ export declare class DeleteAccessPointCommand extends $Command<
18
+ DeleteAccessPointCommandInput,
19
+ DeleteAccessPointCommandOutput,
20
+ EFSClientResolvedConfig
21
+ > {
22
+ readonly input: DeleteAccessPointCommandInput;
23
+ constructor(input: DeleteAccessPointCommandInput);
24
+ resolveMiddleware(
25
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
26
+ configuration: EFSClientResolvedConfig,
27
+ options?: __HttpHandlerOptions
28
+ ): Handler<DeleteAccessPointCommandInput, DeleteAccessPointCommandOutput>;
29
+ private serialize;
30
+ private deserialize;
31
+ }
@@ -1,17 +1,30 @@
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 { EFSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EFSClient";
4
- import { DeleteFileSystemRequest } from "../models/models_0";
5
- export interface DeleteFileSystemCommandInput extends DeleteFileSystemRequest {
6
- }
7
- export interface DeleteFileSystemCommandOutput extends __MetadataBearer {
8
- }
9
-
10
- export declare class DeleteFileSystemCommand extends $Command<DeleteFileSystemCommandInput, DeleteFileSystemCommandOutput, EFSClientResolvedConfig> {
11
- readonly input: DeleteFileSystemCommandInput;
12
- constructor(input: DeleteFileSystemCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: EFSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteFileSystemCommandInput, DeleteFileSystemCommandOutput>;
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
+ EFSClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../EFSClient";
13
+ import { DeleteFileSystemRequest } from "../models/models_0";
14
+ export interface DeleteFileSystemCommandInput extends DeleteFileSystemRequest {}
15
+ export interface DeleteFileSystemCommandOutput extends __MetadataBearer {}
16
+ export declare class DeleteFileSystemCommand extends $Command<
17
+ DeleteFileSystemCommandInput,
18
+ DeleteFileSystemCommandOutput,
19
+ EFSClientResolvedConfig
20
+ > {
21
+ readonly input: DeleteFileSystemCommandInput;
22
+ constructor(input: DeleteFileSystemCommandInput);
23
+ resolveMiddleware(
24
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
25
+ configuration: EFSClientResolvedConfig,
26
+ options?: __HttpHandlerOptions
27
+ ): Handler<DeleteFileSystemCommandInput, DeleteFileSystemCommandOutput>;
28
+ private serialize;
29
+ private deserialize;
30
+ }
@@ -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 { EFSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EFSClient";
4
- import { DeleteFileSystemPolicyRequest } from "../models/models_0";
5
- export interface DeleteFileSystemPolicyCommandInput extends DeleteFileSystemPolicyRequest {
6
- }
7
- export interface DeleteFileSystemPolicyCommandOutput extends __MetadataBearer {
8
- }
9
-
10
- export declare class DeleteFileSystemPolicyCommand extends $Command<DeleteFileSystemPolicyCommandInput, DeleteFileSystemPolicyCommandOutput, EFSClientResolvedConfig> {
11
- readonly input: DeleteFileSystemPolicyCommandInput;
12
- constructor(input: DeleteFileSystemPolicyCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: EFSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteFileSystemPolicyCommandInput, DeleteFileSystemPolicyCommandOutput>;
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
+ EFSClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../EFSClient";
13
+ import { DeleteFileSystemPolicyRequest } from "../models/models_0";
14
+ export interface DeleteFileSystemPolicyCommandInput
15
+ extends DeleteFileSystemPolicyRequest {}
16
+ export interface DeleteFileSystemPolicyCommandOutput extends __MetadataBearer {}
17
+ export declare class DeleteFileSystemPolicyCommand extends $Command<
18
+ DeleteFileSystemPolicyCommandInput,
19
+ DeleteFileSystemPolicyCommandOutput,
20
+ EFSClientResolvedConfig
21
+ > {
22
+ readonly input: DeleteFileSystemPolicyCommandInput;
23
+ constructor(input: DeleteFileSystemPolicyCommandInput);
24
+ resolveMiddleware(
25
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
26
+ configuration: EFSClientResolvedConfig,
27
+ options?: __HttpHandlerOptions
28
+ ): Handler<
29
+ DeleteFileSystemPolicyCommandInput,
30
+ DeleteFileSystemPolicyCommandOutput
31
+ >;
32
+ private serialize;
33
+ private deserialize;
34
+ }
@@ -1,17 +1,31 @@
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 { EFSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EFSClient";
4
- import { DeleteMountTargetRequest } from "../models/models_0";
5
- export interface DeleteMountTargetCommandInput extends DeleteMountTargetRequest {
6
- }
7
- export interface DeleteMountTargetCommandOutput extends __MetadataBearer {
8
- }
9
-
10
- export declare class DeleteMountTargetCommand extends $Command<DeleteMountTargetCommandInput, DeleteMountTargetCommandOutput, EFSClientResolvedConfig> {
11
- readonly input: DeleteMountTargetCommandInput;
12
- constructor(input: DeleteMountTargetCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: EFSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteMountTargetCommandInput, DeleteMountTargetCommandOutput>;
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
+ EFSClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../EFSClient";
13
+ import { DeleteMountTargetRequest } from "../models/models_0";
14
+ export interface DeleteMountTargetCommandInput
15
+ extends DeleteMountTargetRequest {}
16
+ export interface DeleteMountTargetCommandOutput extends __MetadataBearer {}
17
+ export declare class DeleteMountTargetCommand extends $Command<
18
+ DeleteMountTargetCommandInput,
19
+ DeleteMountTargetCommandOutput,
20
+ EFSClientResolvedConfig
21
+ > {
22
+ readonly input: DeleteMountTargetCommandInput;
23
+ constructor(input: DeleteMountTargetCommandInput);
24
+ resolveMiddleware(
25
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
26
+ configuration: EFSClientResolvedConfig,
27
+ options?: __HttpHandlerOptions
28
+ ): Handler<DeleteMountTargetCommandInput, DeleteMountTargetCommandOutput>;
29
+ private serialize;
30
+ private deserialize;
31
+ }
@@ -1,17 +1,35 @@
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 { EFSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EFSClient";
4
- import { DeleteReplicationConfigurationRequest } from "../models/models_0";
5
- export interface DeleteReplicationConfigurationCommandInput extends DeleteReplicationConfigurationRequest {
6
- }
7
- export interface DeleteReplicationConfigurationCommandOutput extends __MetadataBearer {
8
- }
9
-
10
- export declare class DeleteReplicationConfigurationCommand extends $Command<DeleteReplicationConfigurationCommandInput, DeleteReplicationConfigurationCommandOutput, EFSClientResolvedConfig> {
11
- readonly input: DeleteReplicationConfigurationCommandInput;
12
- constructor(input: DeleteReplicationConfigurationCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: EFSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteReplicationConfigurationCommandInput, DeleteReplicationConfigurationCommandOutput>;
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
+ EFSClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../EFSClient";
13
+ import { DeleteReplicationConfigurationRequest } from "../models/models_0";
14
+ export interface DeleteReplicationConfigurationCommandInput
15
+ extends DeleteReplicationConfigurationRequest {}
16
+ export interface DeleteReplicationConfigurationCommandOutput
17
+ extends __MetadataBearer {}
18
+ export declare class DeleteReplicationConfigurationCommand extends $Command<
19
+ DeleteReplicationConfigurationCommandInput,
20
+ DeleteReplicationConfigurationCommandOutput,
21
+ EFSClientResolvedConfig
22
+ > {
23
+ readonly input: DeleteReplicationConfigurationCommandInput;
24
+ constructor(input: DeleteReplicationConfigurationCommandInput);
25
+ resolveMiddleware(
26
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
27
+ configuration: EFSClientResolvedConfig,
28
+ options?: __HttpHandlerOptions
29
+ ): Handler<
30
+ DeleteReplicationConfigurationCommandInput,
31
+ DeleteReplicationConfigurationCommandOutput
32
+ >;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -1,17 +1,30 @@
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 { EFSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EFSClient";
4
- import { DeleteTagsRequest } from "../models/models_0";
5
- export interface DeleteTagsCommandInput extends DeleteTagsRequest {
6
- }
7
- export interface DeleteTagsCommandOutput extends __MetadataBearer {
8
- }
9
-
10
- export declare class DeleteTagsCommand extends $Command<DeleteTagsCommandInput, DeleteTagsCommandOutput, EFSClientResolvedConfig> {
11
- readonly input: DeleteTagsCommandInput;
12
- constructor(input: DeleteTagsCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: EFSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteTagsCommandInput, DeleteTagsCommandOutput>;
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
+ EFSClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../EFSClient";
13
+ import { DeleteTagsRequest } from "../models/models_0";
14
+ export interface DeleteTagsCommandInput extends DeleteTagsRequest {}
15
+ export interface DeleteTagsCommandOutput extends __MetadataBearer {}
16
+ export declare class DeleteTagsCommand extends $Command<
17
+ DeleteTagsCommandInput,
18
+ DeleteTagsCommandOutput,
19
+ EFSClientResolvedConfig
20
+ > {
21
+ readonly input: DeleteTagsCommandInput;
22
+ constructor(input: DeleteTagsCommandInput);
23
+ resolveMiddleware(
24
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
25
+ configuration: EFSClientResolvedConfig,
26
+ options?: __HttpHandlerOptions
27
+ ): Handler<DeleteTagsCommandInput, DeleteTagsCommandOutput>;
28
+ private serialize;
29
+ private deserialize;
30
+ }
@@ -1,17 +1,39 @@
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 { EFSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EFSClient";
4
- import { DescribeAccessPointsRequest, DescribeAccessPointsResponse } from "../models/models_0";
5
- export interface DescribeAccessPointsCommandInput extends DescribeAccessPointsRequest {
6
- }
7
- export interface DescribeAccessPointsCommandOutput extends DescribeAccessPointsResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class DescribeAccessPointsCommand extends $Command<DescribeAccessPointsCommandInput, DescribeAccessPointsCommandOutput, EFSClientResolvedConfig> {
11
- readonly input: DescribeAccessPointsCommandInput;
12
- constructor(input: DescribeAccessPointsCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: EFSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeAccessPointsCommandInput, DescribeAccessPointsCommandOutput>;
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
+ EFSClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../EFSClient";
13
+ import {
14
+ DescribeAccessPointsRequest,
15
+ DescribeAccessPointsResponse,
16
+ } from "../models/models_0";
17
+ export interface DescribeAccessPointsCommandInput
18
+ extends DescribeAccessPointsRequest {}
19
+ export interface DescribeAccessPointsCommandOutput
20
+ extends DescribeAccessPointsResponse,
21
+ __MetadataBearer {}
22
+ export declare class DescribeAccessPointsCommand extends $Command<
23
+ DescribeAccessPointsCommandInput,
24
+ DescribeAccessPointsCommandOutput,
25
+ EFSClientResolvedConfig
26
+ > {
27
+ readonly input: DescribeAccessPointsCommandInput;
28
+ constructor(input: DescribeAccessPointsCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: EFSClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<
34
+ DescribeAccessPointsCommandInput,
35
+ DescribeAccessPointsCommandOutput
36
+ >;
37
+ private serialize;
38
+ private deserialize;
39
+ }
@@ -1,17 +1,39 @@
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 { EFSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EFSClient";
4
- import { DescribeAccountPreferencesRequest, DescribeAccountPreferencesResponse } from "../models/models_0";
5
- export interface DescribeAccountPreferencesCommandInput extends DescribeAccountPreferencesRequest {
6
- }
7
- export interface DescribeAccountPreferencesCommandOutput extends DescribeAccountPreferencesResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class DescribeAccountPreferencesCommand extends $Command<DescribeAccountPreferencesCommandInput, DescribeAccountPreferencesCommandOutput, EFSClientResolvedConfig> {
11
- readonly input: DescribeAccountPreferencesCommandInput;
12
- constructor(input: DescribeAccountPreferencesCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: EFSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeAccountPreferencesCommandInput, DescribeAccountPreferencesCommandOutput>;
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
+ EFSClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../EFSClient";
13
+ import {
14
+ DescribeAccountPreferencesRequest,
15
+ DescribeAccountPreferencesResponse,
16
+ } from "../models/models_0";
17
+ export interface DescribeAccountPreferencesCommandInput
18
+ extends DescribeAccountPreferencesRequest {}
19
+ export interface DescribeAccountPreferencesCommandOutput
20
+ extends DescribeAccountPreferencesResponse,
21
+ __MetadataBearer {}
22
+ export declare class DescribeAccountPreferencesCommand extends $Command<
23
+ DescribeAccountPreferencesCommandInput,
24
+ DescribeAccountPreferencesCommandOutput,
25
+ EFSClientResolvedConfig
26
+ > {
27
+ readonly input: DescribeAccountPreferencesCommandInput;
28
+ constructor(input: DescribeAccountPreferencesCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: EFSClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<
34
+ DescribeAccountPreferencesCommandInput,
35
+ DescribeAccountPreferencesCommandOutput
36
+ >;
37
+ private serialize;
38
+ private deserialize;
39
+ }
@@ -1,17 +1,39 @@
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 { EFSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EFSClient";
4
- import { BackupPolicyDescription, DescribeBackupPolicyRequest } from "../models/models_0";
5
- export interface DescribeBackupPolicyCommandInput extends DescribeBackupPolicyRequest {
6
- }
7
- export interface DescribeBackupPolicyCommandOutput extends BackupPolicyDescription, __MetadataBearer {
8
- }
9
-
10
- export declare class DescribeBackupPolicyCommand extends $Command<DescribeBackupPolicyCommandInput, DescribeBackupPolicyCommandOutput, EFSClientResolvedConfig> {
11
- readonly input: DescribeBackupPolicyCommandInput;
12
- constructor(input: DescribeBackupPolicyCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: EFSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeBackupPolicyCommandInput, DescribeBackupPolicyCommandOutput>;
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
+ EFSClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../EFSClient";
13
+ import {
14
+ BackupPolicyDescription,
15
+ DescribeBackupPolicyRequest,
16
+ } from "../models/models_0";
17
+ export interface DescribeBackupPolicyCommandInput
18
+ extends DescribeBackupPolicyRequest {}
19
+ export interface DescribeBackupPolicyCommandOutput
20
+ extends BackupPolicyDescription,
21
+ __MetadataBearer {}
22
+ export declare class DescribeBackupPolicyCommand extends $Command<
23
+ DescribeBackupPolicyCommandInput,
24
+ DescribeBackupPolicyCommandOutput,
25
+ EFSClientResolvedConfig
26
+ > {
27
+ readonly input: DescribeBackupPolicyCommandInput;
28
+ constructor(input: DescribeBackupPolicyCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: EFSClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<
34
+ DescribeBackupPolicyCommandInput,
35
+ DescribeBackupPolicyCommandOutput
36
+ >;
37
+ private serialize;
38
+ private deserialize;
39
+ }
@@ -1,17 +1,39 @@
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 { EFSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EFSClient";
4
- import { DescribeFileSystemPolicyRequest, FileSystemPolicyDescription } from "../models/models_0";
5
- export interface DescribeFileSystemPolicyCommandInput extends DescribeFileSystemPolicyRequest {
6
- }
7
- export interface DescribeFileSystemPolicyCommandOutput extends FileSystemPolicyDescription, __MetadataBearer {
8
- }
9
-
10
- export declare class DescribeFileSystemPolicyCommand extends $Command<DescribeFileSystemPolicyCommandInput, DescribeFileSystemPolicyCommandOutput, EFSClientResolvedConfig> {
11
- readonly input: DescribeFileSystemPolicyCommandInput;
12
- constructor(input: DescribeFileSystemPolicyCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: EFSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeFileSystemPolicyCommandInput, DescribeFileSystemPolicyCommandOutput>;
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
+ EFSClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../EFSClient";
13
+ import {
14
+ DescribeFileSystemPolicyRequest,
15
+ FileSystemPolicyDescription,
16
+ } from "../models/models_0";
17
+ export interface DescribeFileSystemPolicyCommandInput
18
+ extends DescribeFileSystemPolicyRequest {}
19
+ export interface DescribeFileSystemPolicyCommandOutput
20
+ extends FileSystemPolicyDescription,
21
+ __MetadataBearer {}
22
+ export declare class DescribeFileSystemPolicyCommand extends $Command<
23
+ DescribeFileSystemPolicyCommandInput,
24
+ DescribeFileSystemPolicyCommandOutput,
25
+ EFSClientResolvedConfig
26
+ > {
27
+ readonly input: DescribeFileSystemPolicyCommandInput;
28
+ constructor(input: DescribeFileSystemPolicyCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: EFSClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<
34
+ DescribeFileSystemPolicyCommandInput,
35
+ DescribeFileSystemPolicyCommandOutput
36
+ >;
37
+ private serialize;
38
+ private deserialize;
39
+ }
@@ -1,17 +1,36 @@
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 { EFSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EFSClient";
4
- import { DescribeFileSystemsRequest, DescribeFileSystemsResponse } from "../models/models_0";
5
- export interface DescribeFileSystemsCommandInput extends DescribeFileSystemsRequest {
6
- }
7
- export interface DescribeFileSystemsCommandOutput extends DescribeFileSystemsResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class DescribeFileSystemsCommand extends $Command<DescribeFileSystemsCommandInput, DescribeFileSystemsCommandOutput, EFSClientResolvedConfig> {
11
- readonly input: DescribeFileSystemsCommandInput;
12
- constructor(input: DescribeFileSystemsCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: EFSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeFileSystemsCommandInput, DescribeFileSystemsCommandOutput>;
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
+ EFSClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../EFSClient";
13
+ import {
14
+ DescribeFileSystemsRequest,
15
+ DescribeFileSystemsResponse,
16
+ } from "../models/models_0";
17
+ export interface DescribeFileSystemsCommandInput
18
+ extends DescribeFileSystemsRequest {}
19
+ export interface DescribeFileSystemsCommandOutput
20
+ extends DescribeFileSystemsResponse,
21
+ __MetadataBearer {}
22
+ export declare class DescribeFileSystemsCommand extends $Command<
23
+ DescribeFileSystemsCommandInput,
24
+ DescribeFileSystemsCommandOutput,
25
+ EFSClientResolvedConfig
26
+ > {
27
+ readonly input: DescribeFileSystemsCommandInput;
28
+ constructor(input: DescribeFileSystemsCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: EFSClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<DescribeFileSystemsCommandInput, DescribeFileSystemsCommandOutput>;
34
+ private serialize;
35
+ private deserialize;
36
+ }