@aws-sdk/client-fsx 3.830.0 → 3.837.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 +24 -0
- package/dist-cjs/index.js +470 -66
- package/dist-es/FSx.js +6 -0
- package/dist-es/commands/CopyBackupCommand.js +1 -1
- package/dist-es/commands/CreateAndAttachS3AccessPointCommand.js +22 -0
- package/dist-es/commands/CreateBackupCommand.js +1 -1
- package/dist-es/commands/CreateFileSystemCommand.js +2 -1
- package/dist-es/commands/CreateSnapshotCommand.js +1 -1
- package/dist-es/commands/CreateVolumeCommand.js +1 -1
- package/dist-es/commands/CreateVolumeFromBackupCommand.js +1 -1
- package/dist-es/commands/DescribeBackupsCommand.js +1 -1
- package/dist-es/commands/DescribeFileSystemsCommand.js +1 -1
- package/dist-es/commands/DescribeS3AccessPointAttachmentsCommand.js +22 -0
- package/dist-es/commands/DescribeSnapshotsCommand.js +1 -1
- package/dist-es/commands/DescribeVolumesCommand.js +1 -1
- package/dist-es/commands/DetachAndDeleteS3AccessPointCommand.js +22 -0
- package/dist-es/commands/ReleaseFileSystemNfsV3LocksCommand.js +1 -1
- package/dist-es/commands/StartMisconfiguredStateRecoveryCommand.js +1 -1
- package/dist-es/commands/UpdateFileSystemCommand.js +2 -1
- package/dist-es/commands/UpdateSnapshotCommand.js +1 -1
- package/dist-es/commands/UpdateVolumeCommand.js +1 -1
- package/dist-es/commands/index.js +3 -0
- package/dist-es/models/index.js +1 -0
- package/dist-es/models/models_0.js +100 -61
- package/dist-es/models/models_1.js +58 -0
- package/dist-es/pagination/DescribeS3AccessPointAttachmentsPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_json1_1.js +166 -4
- package/dist-types/FSx.d.ts +22 -0
- package/dist-types/FSxClient.d.ts +5 -2
- package/dist-types/commands/CopyBackupCommand.d.ts +2 -1
- package/dist-types/commands/CreateAndAttachS3AccessPointCommand.d.ts +196 -0
- package/dist-types/commands/CreateBackupCommand.d.ts +2 -1
- package/dist-types/commands/CreateFileSystemCommand.d.ts +2 -1
- package/dist-types/commands/CreateSnapshotCommand.d.ts +2 -1
- package/dist-types/commands/CreateVolumeCommand.d.ts +2 -1
- package/dist-types/commands/CreateVolumeFromBackupCommand.d.ts +2 -1
- package/dist-types/commands/DeleteFileSystemCommand.d.ts +6 -0
- package/dist-types/commands/DescribeBackupsCommand.d.ts +2 -1
- package/dist-types/commands/DescribeFileSystemsCommand.d.ts +2 -1
- package/dist-types/commands/DescribeS3AccessPointAttachmentsCommand.d.ts +135 -0
- package/dist-types/commands/DescribeSnapshotsCommand.d.ts +2 -1
- package/dist-types/commands/DescribeVolumesCommand.d.ts +2 -1
- package/dist-types/commands/DetachAndDeleteS3AccessPointCommand.d.ts +104 -0
- package/dist-types/commands/ReleaseFileSystemNfsV3LocksCommand.d.ts +2 -1
- package/dist-types/commands/StartMisconfiguredStateRecoveryCommand.d.ts +2 -1
- package/dist-types/commands/UpdateFileSystemCommand.d.ts +2 -1
- package/dist-types/commands/UpdateSnapshotCommand.d.ts +2 -1
- package/dist-types/commands/UpdateVolumeCommand.d.ts +2 -1
- package/dist-types/commands/index.d.ts +3 -0
- package/dist-types/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/models/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +2132 -2044
- package/dist-types/models/models_1.d.ts +384 -0
- package/dist-types/pagination/DescribeS3AccessPointAttachmentsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_json1_1.d.ts +27 -0
- package/dist-types/ts3.4/FSx.d.ts +52 -0
- package/dist-types/ts3.4/FSxClient.d.ts +18 -0
- package/dist-types/ts3.4/commands/CopyBackupCommand.d.ts +2 -1
- package/dist-types/ts3.4/commands/CreateAndAttachS3AccessPointCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/CreateBackupCommand.d.ts +2 -1
- package/dist-types/ts3.4/commands/CreateFileSystemCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/CreateSnapshotCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/CreateVolumeCommand.d.ts +2 -1
- package/dist-types/ts3.4/commands/CreateVolumeFromBackupCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/DescribeBackupsCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/DescribeFileSystemsCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/DescribeS3AccessPointAttachmentsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DescribeSnapshotsCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/DescribeVolumesCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/DetachAndDeleteS3AccessPointCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ReleaseFileSystemNfsV3LocksCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/StartMisconfiguredStateRecoveryCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/UpdateFileSystemCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/UpdateSnapshotCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/UpdateVolumeCommand.d.ts +2 -1
- package/dist-types/ts3.4/commands/index.d.ts +3 -0
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +4 -1
- package/dist-types/ts3.4/models/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +147 -120
- package/dist-types/ts3.4/models/models_1.d.ts +125 -0
- package/dist-types/ts3.4/pagination/DescribeS3AccessPointAttachmentsPaginator.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 +36 -0
- package/package.json +11 -11
package/README.md
CHANGED
|
@@ -235,6 +235,14 @@ CopySnapshotAndUpdateVolume
|
|
|
235
235
|
|
|
236
236
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/fsx/command/CopySnapshotAndUpdateVolumeCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-fsx/Interface/CopySnapshotAndUpdateVolumeCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-fsx/Interface/CopySnapshotAndUpdateVolumeCommandOutput/)
|
|
237
237
|
|
|
238
|
+
</details>
|
|
239
|
+
<details>
|
|
240
|
+
<summary>
|
|
241
|
+
CreateAndAttachS3AccessPoint
|
|
242
|
+
</summary>
|
|
243
|
+
|
|
244
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/fsx/command/CreateAndAttachS3AccessPointCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-fsx/Interface/CreateAndAttachS3AccessPointCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-fsx/Interface/CreateAndAttachS3AccessPointCommandOutput/)
|
|
245
|
+
|
|
238
246
|
</details>
|
|
239
247
|
<details>
|
|
240
248
|
<summary>
|
|
@@ -419,6 +427,14 @@ DescribeFileSystems
|
|
|
419
427
|
|
|
420
428
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/fsx/command/DescribeFileSystemsCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-fsx/Interface/DescribeFileSystemsCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-fsx/Interface/DescribeFileSystemsCommandOutput/)
|
|
421
429
|
|
|
430
|
+
</details>
|
|
431
|
+
<details>
|
|
432
|
+
<summary>
|
|
433
|
+
DescribeS3AccessPointAttachments
|
|
434
|
+
</summary>
|
|
435
|
+
|
|
436
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/fsx/command/DescribeS3AccessPointAttachmentsCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-fsx/Interface/DescribeS3AccessPointAttachmentsCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-fsx/Interface/DescribeS3AccessPointAttachmentsCommandOutput/)
|
|
437
|
+
|
|
422
438
|
</details>
|
|
423
439
|
<details>
|
|
424
440
|
<summary>
|
|
@@ -451,6 +467,14 @@ DescribeVolumes
|
|
|
451
467
|
|
|
452
468
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/fsx/command/DescribeVolumesCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-fsx/Interface/DescribeVolumesCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-fsx/Interface/DescribeVolumesCommandOutput/)
|
|
453
469
|
|
|
470
|
+
</details>
|
|
471
|
+
<details>
|
|
472
|
+
<summary>
|
|
473
|
+
DetachAndDeleteS3AccessPoint
|
|
474
|
+
</summary>
|
|
475
|
+
|
|
476
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/fsx/command/DetachAndDeleteS3AccessPointCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-fsx/Interface/DetachAndDeleteS3AccessPointCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-fsx/Interface/DetachAndDeleteS3AccessPointCommandOutput/)
|
|
477
|
+
|
|
454
478
|
</details>
|
|
455
479
|
<details>
|
|
456
480
|
<summary>
|