@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,38 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { 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
+
23
+ export declare class DescribeFileSystemsCommand extends $Command<
24
+ DescribeFileSystemsCommandInput,
25
+ DescribeFileSystemsCommandOutput,
26
+ EFSClientResolvedConfig
27
+ > {
28
+ readonly input: DescribeFileSystemsCommandInput;
29
+ constructor(input: DescribeFileSystemsCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: EFSClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<DescribeFileSystemsCommandInput, DescribeFileSystemsCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }
@@ -1,17 +1,41 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { EFSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EFSClient";
4
- import { DescribeLifecycleConfigurationRequest, LifecycleConfigurationDescription } from "../models/models_0";
5
- export interface DescribeLifecycleConfigurationCommandInput extends DescribeLifecycleConfigurationRequest {
6
- }
7
- export interface DescribeLifecycleConfigurationCommandOutput extends LifecycleConfigurationDescription, __MetadataBearer {
8
- }
9
-
10
- export declare class DescribeLifecycleConfigurationCommand extends $Command<DescribeLifecycleConfigurationCommandInput, DescribeLifecycleConfigurationCommandOutput, EFSClientResolvedConfig> {
11
- readonly input: DescribeLifecycleConfigurationCommandInput;
12
- constructor(input: DescribeLifecycleConfigurationCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: EFSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeLifecycleConfigurationCommandInput, DescribeLifecycleConfigurationCommandOutput>;
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
+ DescribeLifecycleConfigurationRequest,
15
+ LifecycleConfigurationDescription,
16
+ } from "../models/models_0";
17
+ export interface DescribeLifecycleConfigurationCommandInput
18
+ extends DescribeLifecycleConfigurationRequest {}
19
+ export interface DescribeLifecycleConfigurationCommandOutput
20
+ extends LifecycleConfigurationDescription,
21
+ __MetadataBearer {}
22
+
23
+ export declare class DescribeLifecycleConfigurationCommand extends $Command<
24
+ DescribeLifecycleConfigurationCommandInput,
25
+ DescribeLifecycleConfigurationCommandOutput,
26
+ EFSClientResolvedConfig
27
+ > {
28
+ readonly input: DescribeLifecycleConfigurationCommandInput;
29
+ constructor(input: DescribeLifecycleConfigurationCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: EFSClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ DescribeLifecycleConfigurationCommandInput,
37
+ DescribeLifecycleConfigurationCommandOutput
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 { DescribeMountTargetSecurityGroupsRequest, DescribeMountTargetSecurityGroupsResponse } from "../models/models_0";
5
- export interface DescribeMountTargetSecurityGroupsCommandInput extends DescribeMountTargetSecurityGroupsRequest {
6
- }
7
- export interface DescribeMountTargetSecurityGroupsCommandOutput extends DescribeMountTargetSecurityGroupsResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class DescribeMountTargetSecurityGroupsCommand extends $Command<DescribeMountTargetSecurityGroupsCommandInput, DescribeMountTargetSecurityGroupsCommandOutput, EFSClientResolvedConfig> {
11
- readonly input: DescribeMountTargetSecurityGroupsCommandInput;
12
- constructor(input: DescribeMountTargetSecurityGroupsCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: EFSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeMountTargetSecurityGroupsCommandInput, DescribeMountTargetSecurityGroupsCommandOutput>;
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
+ DescribeMountTargetSecurityGroupsRequest,
15
+ DescribeMountTargetSecurityGroupsResponse,
16
+ } from "../models/models_0";
17
+ export interface DescribeMountTargetSecurityGroupsCommandInput
18
+ extends DescribeMountTargetSecurityGroupsRequest {}
19
+ export interface DescribeMountTargetSecurityGroupsCommandOutput
20
+ extends DescribeMountTargetSecurityGroupsResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class DescribeMountTargetSecurityGroupsCommand extends $Command<
24
+ DescribeMountTargetSecurityGroupsCommandInput,
25
+ DescribeMountTargetSecurityGroupsCommandOutput,
26
+ EFSClientResolvedConfig
27
+ > {
28
+ readonly input: DescribeMountTargetSecurityGroupsCommandInput;
29
+ constructor(input: DescribeMountTargetSecurityGroupsCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: EFSClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ DescribeMountTargetSecurityGroupsCommandInput,
37
+ DescribeMountTargetSecurityGroupsCommandOutput
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 { DescribeMountTargetsRequest, DescribeMountTargetsResponse } from "../models/models_0";
5
- export interface DescribeMountTargetsCommandInput extends DescribeMountTargetsRequest {
6
- }
7
- export interface DescribeMountTargetsCommandOutput extends DescribeMountTargetsResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class DescribeMountTargetsCommand extends $Command<DescribeMountTargetsCommandInput, DescribeMountTargetsCommandOutput, EFSClientResolvedConfig> {
11
- readonly input: DescribeMountTargetsCommandInput;
12
- constructor(input: DescribeMountTargetsCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: EFSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeMountTargetsCommandInput, DescribeMountTargetsCommandOutput>;
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
+ DescribeMountTargetsRequest,
15
+ DescribeMountTargetsResponse,
16
+ } from "../models/models_0";
17
+ export interface DescribeMountTargetsCommandInput
18
+ extends DescribeMountTargetsRequest {}
19
+ export interface DescribeMountTargetsCommandOutput
20
+ extends DescribeMountTargetsResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class DescribeMountTargetsCommand extends $Command<
24
+ DescribeMountTargetsCommandInput,
25
+ DescribeMountTargetsCommandOutput,
26
+ EFSClientResolvedConfig
27
+ > {
28
+ readonly input: DescribeMountTargetsCommandInput;
29
+ constructor(input: DescribeMountTargetsCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: EFSClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ DescribeMountTargetsCommandInput,
37
+ DescribeMountTargetsCommandOutput
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 { DescribeReplicationConfigurationsRequest, DescribeReplicationConfigurationsResponse } from "../models/models_0";
5
- export interface DescribeReplicationConfigurationsCommandInput extends DescribeReplicationConfigurationsRequest {
6
- }
7
- export interface DescribeReplicationConfigurationsCommandOutput extends DescribeReplicationConfigurationsResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class DescribeReplicationConfigurationsCommand extends $Command<DescribeReplicationConfigurationsCommandInput, DescribeReplicationConfigurationsCommandOutput, EFSClientResolvedConfig> {
11
- readonly input: DescribeReplicationConfigurationsCommandInput;
12
- constructor(input: DescribeReplicationConfigurationsCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: EFSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeReplicationConfigurationsCommandInput, DescribeReplicationConfigurationsCommandOutput>;
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
+ DescribeReplicationConfigurationsRequest,
15
+ DescribeReplicationConfigurationsResponse,
16
+ } from "../models/models_0";
17
+ export interface DescribeReplicationConfigurationsCommandInput
18
+ extends DescribeReplicationConfigurationsRequest {}
19
+ export interface DescribeReplicationConfigurationsCommandOutput
20
+ extends DescribeReplicationConfigurationsResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class DescribeReplicationConfigurationsCommand extends $Command<
24
+ DescribeReplicationConfigurationsCommandInput,
25
+ DescribeReplicationConfigurationsCommandOutput,
26
+ EFSClientResolvedConfig
27
+ > {
28
+ readonly input: DescribeReplicationConfigurationsCommandInput;
29
+ constructor(input: DescribeReplicationConfigurationsCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: EFSClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ DescribeReplicationConfigurationsCommandInput,
37
+ DescribeReplicationConfigurationsCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }
@@ -1,17 +1,34 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { EFSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EFSClient";
4
- import { DescribeTagsRequest, DescribeTagsResponse } from "../models/models_0";
5
- export interface DescribeTagsCommandInput extends DescribeTagsRequest {
6
- }
7
- export interface DescribeTagsCommandOutput extends DescribeTagsResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class DescribeTagsCommand extends $Command<DescribeTagsCommandInput, DescribeTagsCommandOutput, EFSClientResolvedConfig> {
11
- readonly input: DescribeTagsCommandInput;
12
- constructor(input: DescribeTagsCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: EFSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeTagsCommandInput, DescribeTagsCommandOutput>;
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 { DescribeTagsRequest, DescribeTagsResponse } from "../models/models_0";
14
+ export interface DescribeTagsCommandInput extends DescribeTagsRequest {}
15
+ export interface DescribeTagsCommandOutput
16
+ extends DescribeTagsResponse,
17
+ __MetadataBearer {}
18
+
19
+ export declare class DescribeTagsCommand extends $Command<
20
+ DescribeTagsCommandInput,
21
+ DescribeTagsCommandOutput,
22
+ EFSClientResolvedConfig
23
+ > {
24
+ readonly input: DescribeTagsCommandInput;
25
+ constructor(input: DescribeTagsCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: EFSClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<DescribeTagsCommandInput, DescribeTagsCommandOutput>;
32
+ private serialize;
33
+ private deserialize;
34
+ }
@@ -1,17 +1,38 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { EFSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EFSClient";
4
- import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
5
- export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequest {
6
- }
7
- export interface ListTagsForResourceCommandOutput extends ListTagsForResourceResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, EFSClientResolvedConfig> {
11
- readonly input: ListTagsForResourceCommandInput;
12
- constructor(input: ListTagsForResourceCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: EFSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
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
+ ListTagsForResourceRequest,
15
+ ListTagsForResourceResponse,
16
+ } from "../models/models_0";
17
+ export interface ListTagsForResourceCommandInput
18
+ extends ListTagsForResourceRequest {}
19
+ export interface ListTagsForResourceCommandOutput
20
+ extends ListTagsForResourceResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class ListTagsForResourceCommand extends $Command<
24
+ ListTagsForResourceCommandInput,
25
+ ListTagsForResourceCommandOutput,
26
+ EFSClientResolvedConfig
27
+ > {
28
+ readonly input: ListTagsForResourceCommandInput;
29
+ constructor(input: ListTagsForResourceCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: EFSClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }
@@ -1,17 +1,37 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { EFSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EFSClient";
4
- import { ModifyMountTargetSecurityGroupsRequest } from "../models/models_0";
5
- export interface ModifyMountTargetSecurityGroupsCommandInput extends ModifyMountTargetSecurityGroupsRequest {
6
- }
7
- export interface ModifyMountTargetSecurityGroupsCommandOutput extends __MetadataBearer {
8
- }
9
-
10
- export declare class ModifyMountTargetSecurityGroupsCommand extends $Command<ModifyMountTargetSecurityGroupsCommandInput, ModifyMountTargetSecurityGroupsCommandOutput, EFSClientResolvedConfig> {
11
- readonly input: ModifyMountTargetSecurityGroupsCommandInput;
12
- constructor(input: ModifyMountTargetSecurityGroupsCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: EFSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ModifyMountTargetSecurityGroupsCommandInput, ModifyMountTargetSecurityGroupsCommandOutput>;
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 { ModifyMountTargetSecurityGroupsRequest } from "../models/models_0";
14
+ export interface ModifyMountTargetSecurityGroupsCommandInput
15
+ extends ModifyMountTargetSecurityGroupsRequest {}
16
+ export interface ModifyMountTargetSecurityGroupsCommandOutput
17
+ extends __MetadataBearer {}
18
+
19
+ export declare class ModifyMountTargetSecurityGroupsCommand extends $Command<
20
+ ModifyMountTargetSecurityGroupsCommandInput,
21
+ ModifyMountTargetSecurityGroupsCommandOutput,
22
+ EFSClientResolvedConfig
23
+ > {
24
+ readonly input: ModifyMountTargetSecurityGroupsCommandInput;
25
+ constructor(input: ModifyMountTargetSecurityGroupsCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: EFSClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<
32
+ ModifyMountTargetSecurityGroupsCommandInput,
33
+ ModifyMountTargetSecurityGroupsCommandOutput
34
+ >;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -1,17 +1,41 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { EFSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EFSClient";
4
- import { PutAccountPreferencesRequest, PutAccountPreferencesResponse } from "../models/models_0";
5
- export interface PutAccountPreferencesCommandInput extends PutAccountPreferencesRequest {
6
- }
7
- export interface PutAccountPreferencesCommandOutput extends PutAccountPreferencesResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class PutAccountPreferencesCommand extends $Command<PutAccountPreferencesCommandInput, PutAccountPreferencesCommandOutput, EFSClientResolvedConfig> {
11
- readonly input: PutAccountPreferencesCommandInput;
12
- constructor(input: PutAccountPreferencesCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: EFSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<PutAccountPreferencesCommandInput, PutAccountPreferencesCommandOutput>;
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
+ PutAccountPreferencesRequest,
15
+ PutAccountPreferencesResponse,
16
+ } from "../models/models_0";
17
+ export interface PutAccountPreferencesCommandInput
18
+ extends PutAccountPreferencesRequest {}
19
+ export interface PutAccountPreferencesCommandOutput
20
+ extends PutAccountPreferencesResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class PutAccountPreferencesCommand extends $Command<
24
+ PutAccountPreferencesCommandInput,
25
+ PutAccountPreferencesCommandOutput,
26
+ EFSClientResolvedConfig
27
+ > {
28
+ readonly input: PutAccountPreferencesCommandInput;
29
+ constructor(input: PutAccountPreferencesCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: EFSClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ PutAccountPreferencesCommandInput,
37
+ PutAccountPreferencesCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }
@@ -1,17 +1,37 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { EFSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EFSClient";
4
- import { BackupPolicyDescription, PutBackupPolicyRequest } from "../models/models_0";
5
- export interface PutBackupPolicyCommandInput extends PutBackupPolicyRequest {
6
- }
7
- export interface PutBackupPolicyCommandOutput extends BackupPolicyDescription, __MetadataBearer {
8
- }
9
-
10
- export declare class PutBackupPolicyCommand extends $Command<PutBackupPolicyCommandInput, PutBackupPolicyCommandOutput, EFSClientResolvedConfig> {
11
- readonly input: PutBackupPolicyCommandInput;
12
- constructor(input: PutBackupPolicyCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: EFSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<PutBackupPolicyCommandInput, PutBackupPolicyCommandOutput>;
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
+ PutBackupPolicyRequest,
16
+ } from "../models/models_0";
17
+ export interface PutBackupPolicyCommandInput extends PutBackupPolicyRequest {}
18
+ export interface PutBackupPolicyCommandOutput
19
+ extends BackupPolicyDescription,
20
+ __MetadataBearer {}
21
+
22
+ export declare class PutBackupPolicyCommand extends $Command<
23
+ PutBackupPolicyCommandInput,
24
+ PutBackupPolicyCommandOutput,
25
+ EFSClientResolvedConfig
26
+ > {
27
+ readonly input: PutBackupPolicyCommandInput;
28
+ constructor(input: PutBackupPolicyCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: EFSClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<PutBackupPolicyCommandInput, PutBackupPolicyCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -1,17 +1,38 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { EFSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EFSClient";
4
- import { FileSystemPolicyDescription, PutFileSystemPolicyRequest } from "../models/models_0";
5
- export interface PutFileSystemPolicyCommandInput extends PutFileSystemPolicyRequest {
6
- }
7
- export interface PutFileSystemPolicyCommandOutput extends FileSystemPolicyDescription, __MetadataBearer {
8
- }
9
-
10
- export declare class PutFileSystemPolicyCommand extends $Command<PutFileSystemPolicyCommandInput, PutFileSystemPolicyCommandOutput, EFSClientResolvedConfig> {
11
- readonly input: PutFileSystemPolicyCommandInput;
12
- constructor(input: PutFileSystemPolicyCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: EFSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<PutFileSystemPolicyCommandInput, PutFileSystemPolicyCommandOutput>;
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
+ FileSystemPolicyDescription,
15
+ PutFileSystemPolicyRequest,
16
+ } from "../models/models_0";
17
+ export interface PutFileSystemPolicyCommandInput
18
+ extends PutFileSystemPolicyRequest {}
19
+ export interface PutFileSystemPolicyCommandOutput
20
+ extends FileSystemPolicyDescription,
21
+ __MetadataBearer {}
22
+
23
+ export declare class PutFileSystemPolicyCommand extends $Command<
24
+ PutFileSystemPolicyCommandInput,
25
+ PutFileSystemPolicyCommandOutput,
26
+ EFSClientResolvedConfig
27
+ > {
28
+ readonly input: PutFileSystemPolicyCommandInput;
29
+ constructor(input: PutFileSystemPolicyCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: EFSClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<PutFileSystemPolicyCommandInput, PutFileSystemPolicyCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }