@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,17 +1,32 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { 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
+
17
+ export declare class CreateTagsCommand extends $Command<
18
+ CreateTagsCommandInput,
19
+ CreateTagsCommandOutput,
20
+ EFSClientResolvedConfig
21
+ > {
22
+ readonly input: CreateTagsCommandInput;
23
+ constructor(input: CreateTagsCommandInput);
24
+
25
+ resolveMiddleware(
26
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
27
+ configuration: EFSClientResolvedConfig,
28
+ options?: __HttpHandlerOptions
29
+ ): Handler<CreateTagsCommandInput, CreateTagsCommandOutput>;
30
+ private serialize;
31
+ private deserialize;
32
+ }
@@ -1,17 +1,33 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { 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
+
18
+ export declare class DeleteAccessPointCommand extends $Command<
19
+ DeleteAccessPointCommandInput,
20
+ DeleteAccessPointCommandOutput,
21
+ EFSClientResolvedConfig
22
+ > {
23
+ readonly input: DeleteAccessPointCommandInput;
24
+ constructor(input: DeleteAccessPointCommandInput);
25
+
26
+ resolveMiddleware(
27
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
28
+ configuration: EFSClientResolvedConfig,
29
+ options?: __HttpHandlerOptions
30
+ ): Handler<DeleteAccessPointCommandInput, DeleteAccessPointCommandOutput>;
31
+ private serialize;
32
+ private deserialize;
33
+ }
@@ -1,17 +1,32 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { 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
+
17
+ export declare class DeleteFileSystemCommand extends $Command<
18
+ DeleteFileSystemCommandInput,
19
+ DeleteFileSystemCommandOutput,
20
+ EFSClientResolvedConfig
21
+ > {
22
+ readonly input: DeleteFileSystemCommandInput;
23
+ constructor(input: DeleteFileSystemCommandInput);
24
+
25
+ resolveMiddleware(
26
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
27
+ configuration: EFSClientResolvedConfig,
28
+ options?: __HttpHandlerOptions
29
+ ): Handler<DeleteFileSystemCommandInput, DeleteFileSystemCommandOutput>;
30
+ private serialize;
31
+ private deserialize;
32
+ }
@@ -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 { 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
+
18
+ export declare class DeleteFileSystemPolicyCommand extends $Command<
19
+ DeleteFileSystemPolicyCommandInput,
20
+ DeleteFileSystemPolicyCommandOutput,
21
+ EFSClientResolvedConfig
22
+ > {
23
+ readonly input: DeleteFileSystemPolicyCommandInput;
24
+ constructor(input: DeleteFileSystemPolicyCommandInput);
25
+
26
+ resolveMiddleware(
27
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
28
+ configuration: EFSClientResolvedConfig,
29
+ options?: __HttpHandlerOptions
30
+ ): Handler<
31
+ DeleteFileSystemPolicyCommandInput,
32
+ DeleteFileSystemPolicyCommandOutput
33
+ >;
34
+ private serialize;
35
+ private deserialize;
36
+ }
@@ -1,17 +1,33 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { 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
+
18
+ export declare class DeleteMountTargetCommand extends $Command<
19
+ DeleteMountTargetCommandInput,
20
+ DeleteMountTargetCommandOutput,
21
+ EFSClientResolvedConfig
22
+ > {
23
+ readonly input: DeleteMountTargetCommandInput;
24
+ constructor(input: DeleteMountTargetCommandInput);
25
+
26
+ resolveMiddleware(
27
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
28
+ configuration: EFSClientResolvedConfig,
29
+ options?: __HttpHandlerOptions
30
+ ): Handler<DeleteMountTargetCommandInput, DeleteMountTargetCommandOutput>;
31
+ private serialize;
32
+ private deserialize;
33
+ }
@@ -1,17 +1,37 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { 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
+
19
+ export declare class DeleteReplicationConfigurationCommand extends $Command<
20
+ DeleteReplicationConfigurationCommandInput,
21
+ DeleteReplicationConfigurationCommandOutput,
22
+ EFSClientResolvedConfig
23
+ > {
24
+ readonly input: DeleteReplicationConfigurationCommandInput;
25
+ constructor(input: DeleteReplicationConfigurationCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: EFSClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<
32
+ DeleteReplicationConfigurationCommandInput,
33
+ DeleteReplicationConfigurationCommandOutput
34
+ >;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -1,17 +1,32 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { 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
+
17
+ export declare class DeleteTagsCommand extends $Command<
18
+ DeleteTagsCommandInput,
19
+ DeleteTagsCommandOutput,
20
+ EFSClientResolvedConfig
21
+ > {
22
+ readonly input: DeleteTagsCommandInput;
23
+ constructor(input: DeleteTagsCommandInput);
24
+
25
+ resolveMiddleware(
26
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
27
+ configuration: EFSClientResolvedConfig,
28
+ options?: __HttpHandlerOptions
29
+ ): Handler<DeleteTagsCommandInput, DeleteTagsCommandOutput>;
30
+ private serialize;
31
+ private deserialize;
32
+ }
@@ -1,17 +1,41 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { 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
+
23
+ export declare class DescribeAccessPointsCommand extends $Command<
24
+ DescribeAccessPointsCommandInput,
25
+ DescribeAccessPointsCommandOutput,
26
+ EFSClientResolvedConfig
27
+ > {
28
+ readonly input: DescribeAccessPointsCommandInput;
29
+ constructor(input: DescribeAccessPointsCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: EFSClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ DescribeAccessPointsCommandInput,
37
+ DescribeAccessPointsCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }
@@ -1,17 +1,41 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { 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
+
23
+ export declare class DescribeAccountPreferencesCommand extends $Command<
24
+ DescribeAccountPreferencesCommandInput,
25
+ DescribeAccountPreferencesCommandOutput,
26
+ EFSClientResolvedConfig
27
+ > {
28
+ readonly input: DescribeAccountPreferencesCommandInput;
29
+ constructor(input: DescribeAccountPreferencesCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: EFSClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ DescribeAccountPreferencesCommandInput,
37
+ DescribeAccountPreferencesCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }
@@ -1,17 +1,41 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { 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
+
23
+ export declare class DescribeBackupPolicyCommand extends $Command<
24
+ DescribeBackupPolicyCommandInput,
25
+ DescribeBackupPolicyCommandOutput,
26
+ EFSClientResolvedConfig
27
+ > {
28
+ readonly input: DescribeBackupPolicyCommandInput;
29
+ constructor(input: DescribeBackupPolicyCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: EFSClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ DescribeBackupPolicyCommandInput,
37
+ DescribeBackupPolicyCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }
@@ -1,17 +1,41 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { 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
+
23
+ export declare class DescribeFileSystemPolicyCommand extends $Command<
24
+ DescribeFileSystemPolicyCommandInput,
25
+ DescribeFileSystemPolicyCommandOutput,
26
+ EFSClientResolvedConfig
27
+ > {
28
+ readonly input: DescribeFileSystemPolicyCommandInput;
29
+ constructor(input: DescribeFileSystemPolicyCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: EFSClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ DescribeFileSystemPolicyCommandInput,
37
+ DescribeFileSystemPolicyCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }