@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,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 { LifecycleConfigurationDescription, PutLifecycleConfigurationRequest } from "../models/models_0";
5
- export interface PutLifecycleConfigurationCommandInput extends PutLifecycleConfigurationRequest {
6
- }
7
- export interface PutLifecycleConfigurationCommandOutput extends LifecycleConfigurationDescription, __MetadataBearer {
8
- }
9
-
10
- export declare class PutLifecycleConfigurationCommand extends $Command<PutLifecycleConfigurationCommandInput, PutLifecycleConfigurationCommandOutput, EFSClientResolvedConfig> {
11
- readonly input: PutLifecycleConfigurationCommandInput;
12
- constructor(input: PutLifecycleConfigurationCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: EFSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<PutLifecycleConfigurationCommandInput, PutLifecycleConfigurationCommandOutput>;
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
+ LifecycleConfigurationDescription,
15
+ PutLifecycleConfigurationRequest,
16
+ } from "../models/models_0";
17
+ export interface PutLifecycleConfigurationCommandInput
18
+ extends PutLifecycleConfigurationRequest {}
19
+ export interface PutLifecycleConfigurationCommandOutput
20
+ extends LifecycleConfigurationDescription,
21
+ __MetadataBearer {}
22
+
23
+ export declare class PutLifecycleConfigurationCommand extends $Command<
24
+ PutLifecycleConfigurationCommandInput,
25
+ PutLifecycleConfigurationCommandOutput,
26
+ EFSClientResolvedConfig
27
+ > {
28
+ readonly input: PutLifecycleConfigurationCommandInput;
29
+ constructor(input: PutLifecycleConfigurationCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: EFSClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ PutLifecycleConfigurationCommandInput,
37
+ PutLifecycleConfigurationCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }
@@ -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 { TagResourceRequest } from "../models/models_0";
5
- export interface TagResourceCommandInput extends TagResourceRequest {
6
- }
7
- export interface TagResourceCommandOutput extends __MetadataBearer {
8
- }
9
-
10
- export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, EFSClientResolvedConfig> {
11
- readonly input: TagResourceCommandInput;
12
- constructor(input: TagResourceCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: EFSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
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 { TagResourceRequest } from "../models/models_0";
14
+ export interface TagResourceCommandInput extends TagResourceRequest {}
15
+ export interface TagResourceCommandOutput extends __MetadataBearer {}
16
+
17
+ export declare class TagResourceCommand extends $Command<
18
+ TagResourceCommandInput,
19
+ TagResourceCommandOutput,
20
+ EFSClientResolvedConfig
21
+ > {
22
+ readonly input: TagResourceCommandInput;
23
+ constructor(input: TagResourceCommandInput);
24
+
25
+ resolveMiddleware(
26
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
27
+ configuration: EFSClientResolvedConfig,
28
+ options?: __HttpHandlerOptions
29
+ ): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
30
+ private serialize;
31
+ private deserialize;
32
+ }
@@ -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 { UntagResourceRequest } from "../models/models_0";
5
- export interface UntagResourceCommandInput extends UntagResourceRequest {
6
- }
7
- export interface UntagResourceCommandOutput extends __MetadataBearer {
8
- }
9
-
10
- export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, EFSClientResolvedConfig> {
11
- readonly input: UntagResourceCommandInput;
12
- constructor(input: UntagResourceCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: EFSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
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 { UntagResourceRequest } from "../models/models_0";
14
+ export interface UntagResourceCommandInput extends UntagResourceRequest {}
15
+ export interface UntagResourceCommandOutput extends __MetadataBearer {}
16
+
17
+ export declare class UntagResourceCommand extends $Command<
18
+ UntagResourceCommandInput,
19
+ UntagResourceCommandOutput,
20
+ EFSClientResolvedConfig
21
+ > {
22
+ readonly input: UntagResourceCommandInput;
23
+ constructor(input: UntagResourceCommandInput);
24
+
25
+ resolveMiddleware(
26
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
27
+ configuration: EFSClientResolvedConfig,
28
+ options?: __HttpHandlerOptions
29
+ ): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
30
+ private serialize;
31
+ private deserialize;
32
+ }
@@ -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 { FileSystemDescription, UpdateFileSystemRequest } from "../models/models_0";
5
- export interface UpdateFileSystemCommandInput extends UpdateFileSystemRequest {
6
- }
7
- export interface UpdateFileSystemCommandOutput extends FileSystemDescription, __MetadataBearer {
8
- }
9
-
10
- export declare class UpdateFileSystemCommand extends $Command<UpdateFileSystemCommandInput, UpdateFileSystemCommandOutput, EFSClientResolvedConfig> {
11
- readonly input: UpdateFileSystemCommandInput;
12
- constructor(input: UpdateFileSystemCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: EFSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateFileSystemCommandInput, UpdateFileSystemCommandOutput>;
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
+ FileSystemDescription,
15
+ UpdateFileSystemRequest,
16
+ } from "../models/models_0";
17
+ export interface UpdateFileSystemCommandInput extends UpdateFileSystemRequest {}
18
+ export interface UpdateFileSystemCommandOutput
19
+ extends FileSystemDescription,
20
+ __MetadataBearer {}
21
+
22
+ export declare class UpdateFileSystemCommand extends $Command<
23
+ UpdateFileSystemCommandInput,
24
+ UpdateFileSystemCommandOutput,
25
+ EFSClientResolvedConfig
26
+ > {
27
+ readonly input: UpdateFileSystemCommandInput;
28
+ constructor(input: UpdateFileSystemCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: EFSClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<UpdateFileSystemCommandInput, UpdateFileSystemCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -1,30 +1,30 @@
1
- export * from "./CreateAccessPointCommand";
2
- export * from "./CreateFileSystemCommand";
3
- export * from "./CreateMountTargetCommand";
4
- export * from "./CreateReplicationConfigurationCommand";
5
- export * from "./CreateTagsCommand";
6
- export * from "./DeleteAccessPointCommand";
7
- export * from "./DeleteFileSystemCommand";
8
- export * from "./DeleteFileSystemPolicyCommand";
9
- export * from "./DeleteMountTargetCommand";
10
- export * from "./DeleteReplicationConfigurationCommand";
11
- export * from "./DeleteTagsCommand";
12
- export * from "./DescribeAccessPointsCommand";
13
- export * from "./DescribeAccountPreferencesCommand";
14
- export * from "./DescribeBackupPolicyCommand";
15
- export * from "./DescribeFileSystemPolicyCommand";
16
- export * from "./DescribeFileSystemsCommand";
17
- export * from "./DescribeLifecycleConfigurationCommand";
18
- export * from "./DescribeMountTargetSecurityGroupsCommand";
19
- export * from "./DescribeMountTargetsCommand";
20
- export * from "./DescribeReplicationConfigurationsCommand";
21
- export * from "./DescribeTagsCommand";
22
- export * from "./ListTagsForResourceCommand";
23
- export * from "./ModifyMountTargetSecurityGroupsCommand";
24
- export * from "./PutAccountPreferencesCommand";
25
- export * from "./PutBackupPolicyCommand";
26
- export * from "./PutFileSystemPolicyCommand";
27
- export * from "./PutLifecycleConfigurationCommand";
28
- export * from "./TagResourceCommand";
29
- export * from "./UntagResourceCommand";
30
- export * from "./UpdateFileSystemCommand";
1
+ export * from "./CreateAccessPointCommand";
2
+ export * from "./CreateFileSystemCommand";
3
+ export * from "./CreateMountTargetCommand";
4
+ export * from "./CreateReplicationConfigurationCommand";
5
+ export * from "./CreateTagsCommand";
6
+ export * from "./DeleteAccessPointCommand";
7
+ export * from "./DeleteFileSystemCommand";
8
+ export * from "./DeleteFileSystemPolicyCommand";
9
+ export * from "./DeleteMountTargetCommand";
10
+ export * from "./DeleteReplicationConfigurationCommand";
11
+ export * from "./DeleteTagsCommand";
12
+ export * from "./DescribeAccessPointsCommand";
13
+ export * from "./DescribeAccountPreferencesCommand";
14
+ export * from "./DescribeBackupPolicyCommand";
15
+ export * from "./DescribeFileSystemPolicyCommand";
16
+ export * from "./DescribeFileSystemsCommand";
17
+ export * from "./DescribeLifecycleConfigurationCommand";
18
+ export * from "./DescribeMountTargetSecurityGroupsCommand";
19
+ export * from "./DescribeMountTargetsCommand";
20
+ export * from "./DescribeReplicationConfigurationsCommand";
21
+ export * from "./DescribeTagsCommand";
22
+ export * from "./ListTagsForResourceCommand";
23
+ export * from "./ModifyMountTargetSecurityGroupsCommand";
24
+ export * from "./PutAccountPreferencesCommand";
25
+ export * from "./PutBackupPolicyCommand";
26
+ export * from "./PutFileSystemPolicyCommand";
27
+ export * from "./PutLifecycleConfigurationCommand";
28
+ export * from "./TagResourceCommand";
29
+ export * from "./UntagResourceCommand";
30
+ export * from "./UpdateFileSystemCommand";
@@ -1,2 +1,2 @@
1
- import { RegionInfoProvider } from "@aws-sdk/types";
2
- export declare const defaultRegionInfoProvider: RegionInfoProvider;
1
+ import { RegionInfoProvider } from "@aws-sdk/types";
2
+ export declare const defaultRegionInfoProvider: RegionInfoProvider;
@@ -1,6 +1,6 @@
1
- export * from "./EFS";
2
- export * from "./EFSClient";
3
- export * from "./commands";
4
- export * from "./models";
5
- export * from "./pagination";
6
- export { EFSServiceException } from "./models/EFSServiceException";
1
+ export * from "./EFS";
2
+ export * from "./EFSClient";
3
+ export * from "./commands";
4
+ export * from "./models";
5
+ export * from "./pagination";
6
+ export { EFSServiceException } from "./models/EFSServiceException";
@@ -1,6 +1,8 @@
1
- import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
-
3
- export declare class EFSServiceException extends __ServiceException {
4
-
5
- constructor(options: __ServiceExceptionOptions);
6
- }
1
+ import {
2
+ ServiceException as __ServiceException,
3
+ ServiceExceptionOptions as __ServiceExceptionOptions,
4
+ } from "@aws-sdk/smithy-client";
5
+
6
+ export declare class EFSServiceException extends __ServiceException {
7
+ constructor(options: __ServiceExceptionOptions);
8
+ }
@@ -1 +1 @@
1
- export * from "./models_0";
1
+ export * from "./models_0";