@aws-sdk/client-efs 3.451.0 → 3.458.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.
- package/README.md +30 -30
- package/dist-cjs/models/models_0.js +15 -1
- package/dist-cjs/pagination/DescribeMountTargetsPaginator.js +29 -0
- package/dist-cjs/pagination/DescribeReplicationConfigurationsPaginator.js +29 -0
- package/dist-cjs/pagination/index.js +2 -0
- package/dist-cjs/protocols/Aws_restJson1.js +1 -0
- package/dist-es/models/models_0.js +14 -0
- package/dist-es/pagination/DescribeMountTargetsPaginator.js +25 -0
- package/dist-es/pagination/DescribeReplicationConfigurationsPaginator.js +25 -0
- package/dist-es/pagination/index.js +2 -0
- package/dist-es/protocols/Aws_restJson1.js +1 -0
- package/dist-types/commands/CreateAccessPointCommand.d.ts +8 -7
- package/dist-types/commands/CreateFileSystemCommand.d.ts +11 -6
- package/dist-types/commands/CreateMountTargetCommand.d.ts +6 -6
- package/dist-types/commands/CreateReplicationConfigurationCommand.d.ts +8 -10
- package/dist-types/commands/DescribeAccessPointsCommand.d.ts +5 -3
- package/dist-types/commands/DescribeFileSystemPolicyCommand.d.ts +2 -1
- package/dist-types/commands/DescribeFileSystemsCommand.d.ts +1 -0
- package/dist-types/commands/DescribeLifecycleConfigurationCommand.d.ts +5 -6
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +2 -1
- package/dist-types/commands/PutAccountPreferencesCommand.d.ts +4 -5
- package/dist-types/commands/PutFileSystemPolicyCommand.d.ts +8 -8
- package/dist-types/commands/PutLifecycleConfigurationCommand.d.ts +35 -17
- package/dist-types/commands/TagResourceCommand.d.ts +2 -1
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -1
- package/dist-types/commands/UpdateFileSystemCommand.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +168 -97
- package/dist-types/pagination/DescribeMountTargetsPaginator.d.ts +7 -0
- package/dist-types/pagination/DescribeReplicationConfigurationsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +2 -0
- package/dist-types/ts3.4/models/models_0.d.ts +18 -0
- package/dist-types/ts3.4/pagination/DescribeMountTargetsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/DescribeReplicationConfigurationsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +2 -0
- package/package.json +3 -3
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
DescribeReplicationConfigurationsCommandInput,
|
|
4
|
+
DescribeReplicationConfigurationsCommandOutput,
|
|
5
|
+
} from "../commands/DescribeReplicationConfigurationsCommand";
|
|
6
|
+
import { EFSPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateDescribeReplicationConfigurations(
|
|
8
|
+
config: EFSPaginationConfiguration,
|
|
9
|
+
input: DescribeReplicationConfigurationsCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<DescribeReplicationConfigurationsCommandOutput>;
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
export * from "./DescribeAccessPointsPaginator";
|
|
2
2
|
export * from "./DescribeFileSystemsPaginator";
|
|
3
|
+
export * from "./DescribeMountTargetsPaginator";
|
|
4
|
+
export * from "./DescribeReplicationConfigurationsPaginator";
|
|
3
5
|
export * from "./DescribeTagsPaginator";
|
|
4
6
|
export * from "./Interfaces";
|
|
5
7
|
export * from "./ListTagsForResourcePaginator";
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-efs",
|
|
3
3
|
"description": "AWS SDK for JavaScript Efs Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.458.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.458.0",
|
|
25
25
|
"@aws-sdk/core": "3.451.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.458.0",
|
|
27
27
|
"@aws-sdk/middleware-host-header": "3.451.0",
|
|
28
28
|
"@aws-sdk/middleware-logger": "3.451.0",
|
|
29
29
|
"@aws-sdk/middleware-recursion-detection": "3.451.0",
|