@aws-sdk/client-fsx 3.40.0 → 3.44.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 (101) hide show
  1. package/CHANGELOG.md +38 -0
  2. package/dist-cjs/FSx.js +150 -0
  3. package/dist-cjs/commands/CreateDataRepositoryAssociationCommand.js +36 -0
  4. package/dist-cjs/commands/CreateSnapshotCommand.js +36 -0
  5. package/dist-cjs/commands/DeleteDataRepositoryAssociationCommand.js +36 -0
  6. package/dist-cjs/commands/DeleteSnapshotCommand.js +36 -0
  7. package/dist-cjs/commands/DescribeDataRepositoryAssociationsCommand.js +36 -0
  8. package/dist-cjs/commands/DescribeSnapshotsCommand.js +36 -0
  9. package/dist-cjs/commands/ReleaseFileSystemNfsV3LocksCommand.js +36 -0
  10. package/dist-cjs/commands/RestoreVolumeFromSnapshotCommand.js +36 -0
  11. package/dist-cjs/commands/UpdateDataRepositoryAssociationCommand.js +36 -0
  12. package/dist-cjs/commands/UpdateSnapshotCommand.js +36 -0
  13. package/dist-cjs/commands/index.js +10 -0
  14. package/dist-cjs/endpoints.js +8 -0
  15. package/dist-cjs/models/models_0.js +386 -44
  16. package/dist-cjs/pagination/DescribeDataRepositoryAssociationsPaginator.js +35 -0
  17. package/dist-cjs/pagination/DescribeSnapshotsPaginator.js +35 -0
  18. package/dist-cjs/pagination/index.js +2 -0
  19. package/dist-cjs/protocols/Aws_json1_1.js +1745 -131
  20. package/dist-es/FSx.js +150 -0
  21. package/dist-es/commands/CreateDataRepositoryAssociationCommand.js +39 -0
  22. package/dist-es/commands/CreateSnapshotCommand.js +39 -0
  23. package/dist-es/commands/DeleteDataRepositoryAssociationCommand.js +39 -0
  24. package/dist-es/commands/DeleteSnapshotCommand.js +39 -0
  25. package/dist-es/commands/DescribeDataRepositoryAssociationsCommand.js +39 -0
  26. package/dist-es/commands/DescribeSnapshotsCommand.js +39 -0
  27. package/dist-es/commands/ReleaseFileSystemNfsV3LocksCommand.js +39 -0
  28. package/dist-es/commands/RestoreVolumeFromSnapshotCommand.js +39 -0
  29. package/dist-es/commands/UpdateDataRepositoryAssociationCommand.js +39 -0
  30. package/dist-es/commands/UpdateSnapshotCommand.js +39 -0
  31. package/dist-es/commands/index.js +10 -0
  32. package/dist-es/endpoints.js +8 -0
  33. package/dist-es/models/models_0.js +277 -28
  34. package/dist-es/pagination/DescribeDataRepositoryAssociationsPaginator.js +74 -0
  35. package/dist-es/pagination/DescribeSnapshotsPaginator.js +74 -0
  36. package/dist-es/pagination/index.js +2 -0
  37. package/dist-es/protocols/Aws_json1_1.js +1653 -74
  38. package/dist-types/FSx.d.ts +406 -146
  39. package/dist-types/FSxClient.d.ts +12 -2
  40. package/dist-types/commands/AssociateFileSystemAliasesCommand.d.ts +1 -1
  41. package/dist-types/commands/CancelDataRepositoryTaskCommand.d.ts +1 -1
  42. package/dist-types/commands/CopyBackupCommand.d.ts +13 -13
  43. package/dist-types/commands/CreateBackupCommand.d.ts +28 -26
  44. package/dist-types/commands/CreateDataRepositoryAssociationCommand.d.ts +45 -0
  45. package/dist-types/commands/CreateDataRepositoryTaskCommand.d.ts +7 -6
  46. package/dist-types/commands/CreateFileSystemCommand.d.ts +37 -17
  47. package/dist-types/commands/CreateFileSystemFromBackupCommand.d.ts +15 -15
  48. package/dist-types/commands/CreateSnapshotCommand.d.ts +62 -0
  49. package/dist-types/commands/CreateStorageVirtualMachineCommand.d.ts +1 -1
  50. package/dist-types/commands/CreateVolumeCommand.d.ts +3 -2
  51. package/dist-types/commands/CreateVolumeFromBackupCommand.d.ts +1 -1
  52. package/dist-types/commands/DeleteBackupCommand.d.ts +5 -4
  53. package/dist-types/commands/DeleteDataRepositoryAssociationCommand.d.ts +41 -0
  54. package/dist-types/commands/DeleteFileSystemCommand.d.ts +15 -16
  55. package/dist-types/commands/DeleteSnapshotCommand.d.ts +39 -0
  56. package/dist-types/commands/DeleteStorageVirtualMachineCommand.d.ts +1 -1
  57. package/dist-types/commands/DeleteVolumeCommand.d.ts +3 -5
  58. package/dist-types/commands/DescribeBackupsCommand.d.ts +18 -19
  59. package/dist-types/commands/DescribeDataRepositoryAssociationsCommand.d.ts +53 -0
  60. package/dist-types/commands/DescribeDataRepositoryTasksCommand.d.ts +1 -1
  61. package/dist-types/commands/DescribeFileSystemAliasesCommand.d.ts +1 -1
  62. package/dist-types/commands/DescribeFileSystemsCommand.d.ts +10 -10
  63. package/dist-types/commands/DescribeSnapshotsCommand.d.ts +61 -0
  64. package/dist-types/commands/DescribeStorageVirtualMachinesCommand.d.ts +1 -1
  65. package/dist-types/commands/DescribeVolumesCommand.d.ts +3 -2
  66. package/dist-types/commands/DisassociateFileSystemAliasesCommand.d.ts +1 -1
  67. package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
  68. package/dist-types/commands/ReleaseFileSystemNfsV3LocksCommand.d.ts +36 -0
  69. package/dist-types/commands/RestoreVolumeFromSnapshotCommand.d.ts +36 -0
  70. package/dist-types/commands/TagResourceCommand.d.ts +1 -1
  71. package/dist-types/commands/UntagResourceCommand.d.ts +1 -1
  72. package/dist-types/commands/UpdateDataRepositoryAssociationCommand.d.ts +37 -0
  73. package/dist-types/commands/UpdateFileSystemCommand.d.ts +96 -23
  74. package/dist-types/commands/UpdateSnapshotCommand.d.ts +35 -0
  75. package/dist-types/commands/UpdateStorageVirtualMachineCommand.d.ts +1 -1
  76. package/dist-types/commands/UpdateVolumeCommand.d.ts +2 -2
  77. package/dist-types/commands/index.d.ts +10 -0
  78. package/dist-types/models/models_0.d.ts +2705 -649
  79. package/dist-types/pagination/DescribeDataRepositoryAssociationsPaginator.d.ts +4 -0
  80. package/dist-types/pagination/DescribeSnapshotsPaginator.d.ts +4 -0
  81. package/dist-types/pagination/index.d.ts +2 -0
  82. package/dist-types/protocols/Aws_json1_1.d.ts +30 -0
  83. package/dist-types/ts3.4/FSx.d.ts +50 -0
  84. package/dist-types/ts3.4/FSxClient.d.ts +12 -2
  85. package/dist-types/ts3.4/commands/CreateDataRepositoryAssociationCommand.d.ts +17 -0
  86. package/dist-types/ts3.4/commands/CreateSnapshotCommand.d.ts +17 -0
  87. package/dist-types/ts3.4/commands/DeleteDataRepositoryAssociationCommand.d.ts +17 -0
  88. package/dist-types/ts3.4/commands/DeleteSnapshotCommand.d.ts +17 -0
  89. package/dist-types/ts3.4/commands/DescribeDataRepositoryAssociationsCommand.d.ts +17 -0
  90. package/dist-types/ts3.4/commands/DescribeSnapshotsCommand.d.ts +17 -0
  91. package/dist-types/ts3.4/commands/ReleaseFileSystemNfsV3LocksCommand.d.ts +17 -0
  92. package/dist-types/ts3.4/commands/RestoreVolumeFromSnapshotCommand.d.ts +17 -0
  93. package/dist-types/ts3.4/commands/UpdateDataRepositoryAssociationCommand.d.ts +17 -0
  94. package/dist-types/ts3.4/commands/UpdateSnapshotCommand.d.ts +17 -0
  95. package/dist-types/ts3.4/commands/index.d.ts +10 -0
  96. package/dist-types/ts3.4/models/models_0.d.ts +790 -81
  97. package/dist-types/ts3.4/pagination/DescribeDataRepositoryAssociationsPaginator.d.ts +4 -0
  98. package/dist-types/ts3.4/pagination/DescribeSnapshotsPaginator.d.ts +4 -0
  99. package/dist-types/ts3.4/pagination/index.d.ts +2 -0
  100. package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +30 -0
  101. package/package.json +4 -4
@@ -5,26 +5,36 @@ tslib_1.__exportStar(require("./AssociateFileSystemAliasesCommand"), exports);
5
5
  tslib_1.__exportStar(require("./CancelDataRepositoryTaskCommand"), exports);
6
6
  tslib_1.__exportStar(require("./CopyBackupCommand"), exports);
7
7
  tslib_1.__exportStar(require("./CreateBackupCommand"), exports);
8
+ tslib_1.__exportStar(require("./CreateDataRepositoryAssociationCommand"), exports);
8
9
  tslib_1.__exportStar(require("./CreateDataRepositoryTaskCommand"), exports);
9
10
  tslib_1.__exportStar(require("./CreateFileSystemCommand"), exports);
10
11
  tslib_1.__exportStar(require("./CreateFileSystemFromBackupCommand"), exports);
12
+ tslib_1.__exportStar(require("./CreateSnapshotCommand"), exports);
11
13
  tslib_1.__exportStar(require("./CreateStorageVirtualMachineCommand"), exports);
12
14
  tslib_1.__exportStar(require("./CreateVolumeCommand"), exports);
13
15
  tslib_1.__exportStar(require("./CreateVolumeFromBackupCommand"), exports);
14
16
  tslib_1.__exportStar(require("./DeleteBackupCommand"), exports);
17
+ tslib_1.__exportStar(require("./DeleteDataRepositoryAssociationCommand"), exports);
15
18
  tslib_1.__exportStar(require("./DeleteFileSystemCommand"), exports);
19
+ tslib_1.__exportStar(require("./DeleteSnapshotCommand"), exports);
16
20
  tslib_1.__exportStar(require("./DeleteStorageVirtualMachineCommand"), exports);
17
21
  tslib_1.__exportStar(require("./DeleteVolumeCommand"), exports);
18
22
  tslib_1.__exportStar(require("./DescribeBackupsCommand"), exports);
23
+ tslib_1.__exportStar(require("./DescribeDataRepositoryAssociationsCommand"), exports);
19
24
  tslib_1.__exportStar(require("./DescribeDataRepositoryTasksCommand"), exports);
20
25
  tslib_1.__exportStar(require("./DescribeFileSystemAliasesCommand"), exports);
21
26
  tslib_1.__exportStar(require("./DescribeFileSystemsCommand"), exports);
27
+ tslib_1.__exportStar(require("./DescribeSnapshotsCommand"), exports);
22
28
  tslib_1.__exportStar(require("./DescribeStorageVirtualMachinesCommand"), exports);
23
29
  tslib_1.__exportStar(require("./DescribeVolumesCommand"), exports);
24
30
  tslib_1.__exportStar(require("./DisassociateFileSystemAliasesCommand"), exports);
25
31
  tslib_1.__exportStar(require("./ListTagsForResourceCommand"), exports);
32
+ tslib_1.__exportStar(require("./ReleaseFileSystemNfsV3LocksCommand"), exports);
33
+ tslib_1.__exportStar(require("./RestoreVolumeFromSnapshotCommand"), exports);
26
34
  tslib_1.__exportStar(require("./TagResourceCommand"), exports);
27
35
  tslib_1.__exportStar(require("./UntagResourceCommand"), exports);
36
+ tslib_1.__exportStar(require("./UpdateDataRepositoryAssociationCommand"), exports);
28
37
  tslib_1.__exportStar(require("./UpdateFileSystemCommand"), exports);
38
+ tslib_1.__exportStar(require("./UpdateSnapshotCommand"), exports);
29
39
  tslib_1.__exportStar(require("./UpdateStorageVirtualMachineCommand"), exports);
30
40
  tslib_1.__exportStar(require("./UpdateVolumeCommand"), exports);
@@ -178,6 +178,10 @@ const partitionHash = {
178
178
  hostname: "fsx.{region}.c2s.ic.gov",
179
179
  tags: [],
180
180
  },
181
+ {
182
+ hostname: "fsx-fips.{region}.c2s.ic.gov",
183
+ tags: ["fips"],
184
+ },
181
185
  ],
182
186
  },
183
187
  "aws-iso-b": {
@@ -188,6 +192,10 @@ const partitionHash = {
188
192
  hostname: "fsx.{region}.sc2s.sgov.gov",
189
193
  tags: [],
190
194
  },
195
+ {
196
+ hostname: "fsx-fips.{region}.sc2s.sgov.gov",
197
+ tags: ["fips"],
198
+ },
191
199
  ],
192
200
  },
193
201
  "aws-us-gov": {