@aws-sdk/client-fsx 3.180.0 → 3.181.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/CHANGELOG.md +17 -0
- package/dist-cjs/FSx.js +60 -0
- package/dist-cjs/commands/CreateFileCacheCommand.js +36 -0
- package/dist-cjs/commands/DeleteFileCacheCommand.js +36 -0
- package/dist-cjs/commands/DescribeFileCachesCommand.js +36 -0
- package/dist-cjs/commands/UpdateFileCacheCommand.js +36 -0
- package/dist-cjs/commands/index.js +4 -0
- package/dist-cjs/models/models_0.js +154 -27
- package/dist-cjs/pagination/DescribeFileCachesPaginator.js +36 -0
- package/dist-cjs/pagination/index.js +1 -0
- package/dist-cjs/protocols/Aws_json1_1.js +587 -39
- package/dist-es/FSx.js +60 -0
- package/dist-es/commands/CreateFileCacheCommand.js +39 -0
- package/dist-es/commands/DeleteFileCacheCommand.js +39 -0
- package/dist-es/commands/DescribeFileCachesCommand.js +39 -0
- package/dist-es/commands/UpdateFileCacheCommand.js +39 -0
- package/dist-es/commands/index.js +4 -0
- package/dist-es/models/models_0.js +96 -26
- package/dist-es/pagination/DescribeFileCachesPaginator.js +75 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_json1_1.js +644 -41
- package/dist-types/FSx.d.ts +118 -26
- package/dist-types/FSxClient.d.ts +6 -2
- package/dist-types/commands/CreateDataRepositoryAssociationCommand.d.ts +6 -0
- package/dist-types/commands/CreateFileCacheCommand.d.ts +58 -0
- package/dist-types/commands/CreateFileSystemCommand.d.ts +0 -10
- package/dist-types/commands/DeleteFileCacheCommand.d.ts +48 -0
- package/dist-types/commands/DescribeDataRepositoryAssociationsCommand.d.ts +13 -11
- package/dist-types/commands/DescribeDataRepositoryTasksCommand.d.ts +4 -4
- package/dist-types/commands/DescribeFileCachesCommand.d.ts +65 -0
- package/dist-types/commands/DescribeFileSystemsCommand.d.ts +0 -1
- package/dist-types/commands/UpdateFileCacheCommand.d.ts +36 -0
- package/dist-types/commands/index.d.ts +4 -0
- package/dist-types/models/models_0.d.ts +964 -125
- package/dist-types/pagination/DescribeFileCachesPaginator.d.ts +4 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_json1_1.d.ts +12 -0
- package/dist-types/ts3.4/FSx.d.ts +68 -0
- package/dist-types/ts3.4/FSxClient.d.ts +24 -0
- package/dist-types/ts3.4/commands/CreateFileCacheCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/DeleteFileCacheCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/DescribeFileCachesCommand.d.ts +36 -0
- package/dist-types/ts3.4/commands/UpdateFileCacheCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/index.d.ts +4 -0
- package/dist-types/ts3.4/models/models_0.d.ts +239 -25
- package/dist-types/ts3.4/pagination/DescribeFileCachesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +48 -0
- package/package.json +3 -3
|
@@ -4,6 +4,7 @@ export * from "./CopyBackupCommand";
|
|
|
4
4
|
export * from "./CreateBackupCommand";
|
|
5
5
|
export * from "./CreateDataRepositoryAssociationCommand";
|
|
6
6
|
export * from "./CreateDataRepositoryTaskCommand";
|
|
7
|
+
export * from "./CreateFileCacheCommand";
|
|
7
8
|
export * from "./CreateFileSystemCommand";
|
|
8
9
|
export * from "./CreateFileSystemFromBackupCommand";
|
|
9
10
|
export * from "./CreateSnapshotCommand";
|
|
@@ -12,6 +13,7 @@ export * from "./CreateVolumeCommand";
|
|
|
12
13
|
export * from "./CreateVolumeFromBackupCommand";
|
|
13
14
|
export * from "./DeleteBackupCommand";
|
|
14
15
|
export * from "./DeleteDataRepositoryAssociationCommand";
|
|
16
|
+
export * from "./DeleteFileCacheCommand";
|
|
15
17
|
export * from "./DeleteFileSystemCommand";
|
|
16
18
|
export * from "./DeleteSnapshotCommand";
|
|
17
19
|
export * from "./DeleteStorageVirtualMachineCommand";
|
|
@@ -19,6 +21,7 @@ export * from "./DeleteVolumeCommand";
|
|
|
19
21
|
export * from "./DescribeBackupsCommand";
|
|
20
22
|
export * from "./DescribeDataRepositoryAssociationsCommand";
|
|
21
23
|
export * from "./DescribeDataRepositoryTasksCommand";
|
|
24
|
+
export * from "./DescribeFileCachesCommand";
|
|
22
25
|
export * from "./DescribeFileSystemAliasesCommand";
|
|
23
26
|
export * from "./DescribeFileSystemsCommand";
|
|
24
27
|
export * from "./DescribeSnapshotsCommand";
|
|
@@ -31,6 +34,7 @@ export * from "./RestoreVolumeFromSnapshotCommand";
|
|
|
31
34
|
export * from "./TagResourceCommand";
|
|
32
35
|
export * from "./UntagResourceCommand";
|
|
33
36
|
export * from "./UpdateDataRepositoryAssociationCommand";
|
|
37
|
+
export * from "./UpdateFileCacheCommand";
|
|
34
38
|
export * from "./UpdateFileSystemCommand";
|
|
35
39
|
export * from "./UpdateSnapshotCommand";
|
|
36
40
|
export * from "./UpdateStorageVirtualMachineCommand";
|