@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 { 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
+ export declare class TagResourceCommand extends $Command<
17
+ TagResourceCommandInput,
18
+ TagResourceCommandOutput,
19
+ EFSClientResolvedConfig
20
+ > {
21
+ readonly input: TagResourceCommandInput;
22
+ constructor(input: TagResourceCommandInput);
23
+ resolveMiddleware(
24
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
25
+ configuration: EFSClientResolvedConfig,
26
+ options?: __HttpHandlerOptions
27
+ ): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
28
+ private serialize;
29
+ private deserialize;
30
+ }
@@ -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 { 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
+ export declare class UntagResourceCommand extends $Command<
17
+ UntagResourceCommandInput,
18
+ UntagResourceCommandOutput,
19
+ EFSClientResolvedConfig
20
+ > {
21
+ readonly input: UntagResourceCommandInput;
22
+ constructor(input: UntagResourceCommandInput);
23
+ resolveMiddleware(
24
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
25
+ configuration: EFSClientResolvedConfig,
26
+ options?: __HttpHandlerOptions
27
+ ): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
28
+ private serialize;
29
+ private deserialize;
30
+ }
@@ -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 { 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
+ export declare class UpdateFileSystemCommand extends $Command<
22
+ UpdateFileSystemCommandInput,
23
+ UpdateFileSystemCommandOutput,
24
+ EFSClientResolvedConfig
25
+ > {
26
+ readonly input: UpdateFileSystemCommandInput;
27
+ constructor(input: UpdateFileSystemCommandInput);
28
+ resolveMiddleware(
29
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
+ configuration: EFSClientResolvedConfig,
31
+ options?: __HttpHandlerOptions
32
+ ): Handler<UpdateFileSystemCommandInput, UpdateFileSystemCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -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,7 @@
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
+ export declare class EFSServiceException extends __ServiceException {
6
+ constructor(options: __ServiceExceptionOptions);
7
+ }
@@ -1 +1 @@
1
- export * from "./models_0";
1
+ export * from "./models_0";