@aws-sdk/client-fsx 3.348.0 → 3.351.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/dist-cjs/commands/CopyBackupCommand.js +2 -1
- package/dist-cjs/commands/CreateBackupCommand.js +2 -1
- package/dist-cjs/commands/CreateFileSystemCommand.js +1 -1
- package/dist-cjs/commands/CreateFileSystemFromBackupCommand.js +1 -1
- package/dist-cjs/commands/CreateSnapshotCommand.js +2 -1
- package/dist-cjs/commands/CreateVolumeCommand.js +2 -1
- package/dist-cjs/commands/CreateVolumeFromBackupCommand.js +2 -1
- package/dist-cjs/commands/DescribeBackupsCommand.js +2 -1
- package/dist-cjs/commands/DescribeFileSystemsCommand.js +2 -1
- package/dist-cjs/commands/DescribeSnapshotsCommand.js +2 -1
- package/dist-cjs/commands/DescribeVolumesCommand.js +2 -1
- package/dist-cjs/commands/ReleaseFileSystemNfsV3LocksCommand.js +2 -1
- package/dist-cjs/commands/RestoreVolumeFromSnapshotCommand.js +2 -1
- package/dist-cjs/commands/UpdateFileSystemCommand.js +1 -1
- package/dist-cjs/commands/UpdateSnapshotCommand.js +2 -1
- package/dist-cjs/commands/UpdateVolumeCommand.js +2 -1
- package/dist-cjs/models/models_0.js +118 -2
- package/dist-cjs/protocols/Aws_json1_1.js +3 -0
- package/dist-es/commands/CopyBackupCommand.js +2 -1
- package/dist-es/commands/CreateBackupCommand.js +2 -1
- package/dist-es/commands/CreateFileSystemCommand.js +2 -2
- package/dist-es/commands/CreateFileSystemFromBackupCommand.js +2 -2
- package/dist-es/commands/CreateSnapshotCommand.js +2 -1
- package/dist-es/commands/CreateVolumeCommand.js +2 -1
- package/dist-es/commands/CreateVolumeFromBackupCommand.js +2 -1
- package/dist-es/commands/DescribeBackupsCommand.js +2 -1
- package/dist-es/commands/DescribeFileSystemsCommand.js +2 -1
- package/dist-es/commands/DescribeSnapshotsCommand.js +2 -1
- package/dist-es/commands/DescribeVolumesCommand.js +2 -1
- package/dist-es/commands/ReleaseFileSystemNfsV3LocksCommand.js +2 -1
- package/dist-es/commands/RestoreVolumeFromSnapshotCommand.js +2 -1
- package/dist-es/commands/UpdateFileSystemCommand.js +2 -2
- package/dist-es/commands/UpdateSnapshotCommand.js +2 -1
- package/dist-es/commands/UpdateVolumeCommand.js +2 -1
- package/dist-es/models/models_0.js +94 -0
- package/dist-es/protocols/Aws_json1_1.js +3 -0
- package/dist-types/commands/CopyBackupCommand.d.ts +2 -0
- package/dist-types/commands/CreateBackupCommand.d.ts +2 -0
- package/dist-types/commands/CreateDataRepositoryAssociationCommand.d.ts +2 -1
- package/dist-types/commands/CreateFileSystemCommand.d.ts +2 -0
- package/dist-types/commands/CreateFileSystemFromBackupCommand.d.ts +2 -0
- package/dist-types/commands/CreateSnapshotCommand.d.ts +2 -0
- package/dist-types/commands/CreateVolumeCommand.d.ts +2 -0
- package/dist-types/commands/CreateVolumeFromBackupCommand.d.ts +2 -0
- package/dist-types/commands/DeleteDataRepositoryAssociationCommand.d.ts +2 -2
- package/dist-types/commands/DeleteVolumeCommand.d.ts +4 -0
- package/dist-types/commands/DescribeBackupsCommand.d.ts +2 -0
- package/dist-types/commands/DescribeDataRepositoryAssociationsCommand.d.ts +2 -2
- package/dist-types/commands/DescribeFileSystemsCommand.d.ts +2 -0
- package/dist-types/commands/DescribeSnapshotsCommand.d.ts +2 -0
- package/dist-types/commands/DescribeVolumesCommand.d.ts +2 -0
- package/dist-types/commands/ReleaseFileSystemNfsV3LocksCommand.d.ts +2 -0
- package/dist-types/commands/RestoreVolumeFromSnapshotCommand.d.ts +2 -0
- package/dist-types/commands/UpdateDataRepositoryAssociationCommand.d.ts +2 -2
- package/dist-types/commands/UpdateFileSystemCommand.d.ts +5 -0
- package/dist-types/commands/UpdateSnapshotCommand.d.ts +2 -0
- package/dist-types/commands/UpdateStorageVirtualMachineCommand.d.ts +5 -1
- package/dist-types/commands/UpdateVolumeCommand.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +176 -59
- package/dist-types/ts3.4/models/models_0.d.ts +63 -0
- package/package.json +4 -4
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
+
import { ReleaseFileSystemNfsV3LocksResponseFilterSensitiveLog, } from "../models/models_0";
|
|
4
5
|
import { de_ReleaseFileSystemNfsV3LocksCommand, se_ReleaseFileSystemNfsV3LocksCommand } from "../protocols/Aws_json1_1";
|
|
5
6
|
export { $Command };
|
|
6
7
|
export class ReleaseFileSystemNfsV3LocksCommand extends $Command {
|
|
@@ -28,7 +29,7 @@ export class ReleaseFileSystemNfsV3LocksCommand extends $Command {
|
|
|
28
29
|
clientName,
|
|
29
30
|
commandName,
|
|
30
31
|
inputFilterSensitiveLog: (_) => _,
|
|
31
|
-
outputFilterSensitiveLog:
|
|
32
|
+
outputFilterSensitiveLog: ReleaseFileSystemNfsV3LocksResponseFilterSensitiveLog,
|
|
32
33
|
};
|
|
33
34
|
const { requestHandler } = configuration;
|
|
34
35
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
+
import { RestoreVolumeFromSnapshotResponseFilterSensitiveLog, } from "../models/models_0";
|
|
4
5
|
import { de_RestoreVolumeFromSnapshotCommand, se_RestoreVolumeFromSnapshotCommand } from "../protocols/Aws_json1_1";
|
|
5
6
|
export { $Command };
|
|
6
7
|
export class RestoreVolumeFromSnapshotCommand extends $Command {
|
|
@@ -28,7 +29,7 @@ export class RestoreVolumeFromSnapshotCommand extends $Command {
|
|
|
28
29
|
clientName,
|
|
29
30
|
commandName,
|
|
30
31
|
inputFilterSensitiveLog: (_) => _,
|
|
31
|
-
outputFilterSensitiveLog:
|
|
32
|
+
outputFilterSensitiveLog: RestoreVolumeFromSnapshotResponseFilterSensitiveLog,
|
|
32
33
|
};
|
|
33
34
|
const { requestHandler } = configuration;
|
|
34
35
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import { UpdateFileSystemRequestFilterSensitiveLog, } from "../models/models_0";
|
|
4
|
+
import { UpdateFileSystemRequestFilterSensitiveLog, UpdateFileSystemResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { de_UpdateFileSystemCommand, se_UpdateFileSystemCommand } from "../protocols/Aws_json1_1";
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class UpdateFileSystemCommand extends $Command {
|
|
@@ -29,7 +29,7 @@ export class UpdateFileSystemCommand extends $Command {
|
|
|
29
29
|
clientName,
|
|
30
30
|
commandName,
|
|
31
31
|
inputFilterSensitiveLog: UpdateFileSystemRequestFilterSensitiveLog,
|
|
32
|
-
outputFilterSensitiveLog:
|
|
32
|
+
outputFilterSensitiveLog: UpdateFileSystemResponseFilterSensitiveLog,
|
|
33
33
|
};
|
|
34
34
|
const { requestHandler } = configuration;
|
|
35
35
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
+
import { UpdateSnapshotResponseFilterSensitiveLog, } from "../models/models_0";
|
|
4
5
|
import { de_UpdateSnapshotCommand, se_UpdateSnapshotCommand } from "../protocols/Aws_json1_1";
|
|
5
6
|
export { $Command };
|
|
6
7
|
export class UpdateSnapshotCommand extends $Command {
|
|
@@ -28,7 +29,7 @@ export class UpdateSnapshotCommand extends $Command {
|
|
|
28
29
|
clientName,
|
|
29
30
|
commandName,
|
|
30
31
|
inputFilterSensitiveLog: (_) => _,
|
|
31
|
-
outputFilterSensitiveLog:
|
|
32
|
+
outputFilterSensitiveLog: UpdateSnapshotResponseFilterSensitiveLog,
|
|
32
33
|
};
|
|
33
34
|
const { requestHandler } = configuration;
|
|
34
35
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
+
import { UpdateVolumeResponseFilterSensitiveLog } from "../models/models_0";
|
|
4
5
|
import { de_UpdateVolumeCommand, se_UpdateVolumeCommand } from "../protocols/Aws_json1_1";
|
|
5
6
|
export { $Command };
|
|
6
7
|
export class UpdateVolumeCommand extends $Command {
|
|
@@ -28,7 +29,7 @@ export class UpdateVolumeCommand extends $Command {
|
|
|
28
29
|
clientName,
|
|
29
30
|
commandName,
|
|
30
31
|
inputFilterSensitiveLog: (_) => _,
|
|
31
|
-
outputFilterSensitiveLog:
|
|
32
|
+
outputFilterSensitiveLog: UpdateVolumeResponseFilterSensitiveLog,
|
|
32
33
|
};
|
|
33
34
|
const { requestHandler } = configuration;
|
|
34
35
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -761,6 +761,10 @@ export const RestoreOpenZFSVolumeOption = {
|
|
|
761
761
|
DELETE_CLONED_VOLUMES: "DELETE_CLONED_VOLUMES",
|
|
762
762
|
DELETE_INTERMEDIATE_SNAPSHOTS: "DELETE_INTERMEDIATE_SNAPSHOTS",
|
|
763
763
|
};
|
|
764
|
+
export const OntapFileSystemConfigurationFilterSensitiveLog = (obj) => ({
|
|
765
|
+
...obj,
|
|
766
|
+
...(obj.FsxAdminPassword && { FsxAdminPassword: SENSITIVE_STRING }),
|
|
767
|
+
});
|
|
764
768
|
export const CreateFileSystemOntapConfigurationFilterSensitiveLog = (obj) => ({
|
|
765
769
|
...obj,
|
|
766
770
|
...(obj.FsxAdminPassword && { FsxAdminPassword: SENSITIVE_STRING }),
|
|
@@ -839,3 +843,93 @@ export const UpdateStorageVirtualMachineRequestFilterSensitiveLog = (obj) => ({
|
|
|
839
843
|
}),
|
|
840
844
|
...(obj.SvmAdminPassword && { SvmAdminPassword: SENSITIVE_STRING }),
|
|
841
845
|
});
|
|
846
|
+
export const AdministrativeActionFilterSensitiveLog = (obj) => ({
|
|
847
|
+
...obj,
|
|
848
|
+
...(obj.TargetFileSystemValues && {
|
|
849
|
+
TargetFileSystemValues: FileSystemFilterSensitiveLog(obj.TargetFileSystemValues),
|
|
850
|
+
}),
|
|
851
|
+
});
|
|
852
|
+
export const FileSystemFilterSensitiveLog = (obj) => ({
|
|
853
|
+
...obj,
|
|
854
|
+
...(obj.AdministrativeActions && {
|
|
855
|
+
AdministrativeActions: obj.AdministrativeActions.map((item) => AdministrativeActionFilterSensitiveLog(item)),
|
|
856
|
+
}),
|
|
857
|
+
...(obj.OntapConfiguration && {
|
|
858
|
+
OntapConfiguration: OntapFileSystemConfigurationFilterSensitiveLog(obj.OntapConfiguration),
|
|
859
|
+
}),
|
|
860
|
+
});
|
|
861
|
+
export const SnapshotFilterSensitiveLog = (obj) => ({
|
|
862
|
+
...obj,
|
|
863
|
+
...(obj.AdministrativeActions && {
|
|
864
|
+
AdministrativeActions: obj.AdministrativeActions.map((item) => AdministrativeActionFilterSensitiveLog(item)),
|
|
865
|
+
}),
|
|
866
|
+
});
|
|
867
|
+
export const VolumeFilterSensitiveLog = (obj) => ({
|
|
868
|
+
...obj,
|
|
869
|
+
...(obj.AdministrativeActions && {
|
|
870
|
+
AdministrativeActions: obj.AdministrativeActions.map((item) => AdministrativeActionFilterSensitiveLog(item)),
|
|
871
|
+
}),
|
|
872
|
+
});
|
|
873
|
+
export const RestoreVolumeFromSnapshotResponseFilterSensitiveLog = (obj) => ({
|
|
874
|
+
...obj,
|
|
875
|
+
...(obj.AdministrativeActions && {
|
|
876
|
+
AdministrativeActions: obj.AdministrativeActions.map((item) => AdministrativeActionFilterSensitiveLog(item)),
|
|
877
|
+
}),
|
|
878
|
+
});
|
|
879
|
+
export const CreateFileSystemFromBackupResponseFilterSensitiveLog = (obj) => ({
|
|
880
|
+
...obj,
|
|
881
|
+
...(obj.FileSystem && { FileSystem: FileSystemFilterSensitiveLog(obj.FileSystem) }),
|
|
882
|
+
});
|
|
883
|
+
export const CreateFileSystemResponseFilterSensitiveLog = (obj) => ({
|
|
884
|
+
...obj,
|
|
885
|
+
...(obj.FileSystem && { FileSystem: FileSystemFilterSensitiveLog(obj.FileSystem) }),
|
|
886
|
+
});
|
|
887
|
+
export const CreateSnapshotResponseFilterSensitiveLog = (obj) => ({
|
|
888
|
+
...obj,
|
|
889
|
+
});
|
|
890
|
+
export const CreateVolumeFromBackupResponseFilterSensitiveLog = (obj) => ({
|
|
891
|
+
...obj,
|
|
892
|
+
});
|
|
893
|
+
export const CreateVolumeResponseFilterSensitiveLog = (obj) => ({
|
|
894
|
+
...obj,
|
|
895
|
+
});
|
|
896
|
+
export const ReleaseFileSystemNfsV3LocksResponseFilterSensitiveLog = (obj) => ({
|
|
897
|
+
...obj,
|
|
898
|
+
...(obj.FileSystem && { FileSystem: FileSystemFilterSensitiveLog(obj.FileSystem) }),
|
|
899
|
+
});
|
|
900
|
+
export const UpdateFileSystemResponseFilterSensitiveLog = (obj) => ({
|
|
901
|
+
...obj,
|
|
902
|
+
...(obj.FileSystem && { FileSystem: FileSystemFilterSensitiveLog(obj.FileSystem) }),
|
|
903
|
+
});
|
|
904
|
+
export const UpdateSnapshotResponseFilterSensitiveLog = (obj) => ({
|
|
905
|
+
...obj,
|
|
906
|
+
});
|
|
907
|
+
export const UpdateVolumeResponseFilterSensitiveLog = (obj) => ({
|
|
908
|
+
...obj,
|
|
909
|
+
});
|
|
910
|
+
export const DescribeFileSystemsResponseFilterSensitiveLog = (obj) => ({
|
|
911
|
+
...obj,
|
|
912
|
+
...(obj.FileSystems && { FileSystems: obj.FileSystems.map((item) => FileSystemFilterSensitiveLog(item)) }),
|
|
913
|
+
});
|
|
914
|
+
export const DescribeSnapshotsResponseFilterSensitiveLog = (obj) => ({
|
|
915
|
+
...obj,
|
|
916
|
+
});
|
|
917
|
+
export const DescribeVolumesResponseFilterSensitiveLog = (obj) => ({
|
|
918
|
+
...obj,
|
|
919
|
+
});
|
|
920
|
+
export const BackupFilterSensitiveLog = (obj) => ({
|
|
921
|
+
...obj,
|
|
922
|
+
...(obj.FileSystem && { FileSystem: FileSystemFilterSensitiveLog(obj.FileSystem) }),
|
|
923
|
+
});
|
|
924
|
+
export const CopyBackupResponseFilterSensitiveLog = (obj) => ({
|
|
925
|
+
...obj,
|
|
926
|
+
...(obj.Backup && { Backup: BackupFilterSensitiveLog(obj.Backup) }),
|
|
927
|
+
});
|
|
928
|
+
export const CreateBackupResponseFilterSensitiveLog = (obj) => ({
|
|
929
|
+
...obj,
|
|
930
|
+
...(obj.Backup && { Backup: BackupFilterSensitiveLog(obj.Backup) }),
|
|
931
|
+
});
|
|
932
|
+
export const DescribeBackupsResponseFilterSensitiveLog = (obj) => ({
|
|
933
|
+
...obj,
|
|
934
|
+
...(obj.Backups && { Backups: obj.Backups.map((item) => BackupFilterSensitiveLog(item)) }),
|
|
935
|
+
});
|
|
@@ -1195,6 +1195,9 @@ const de_DeleteVolumeCommandError = async (output, context) => {
|
|
|
1195
1195
|
case "InternalServerError":
|
|
1196
1196
|
case "com.amazonaws.fsx#InternalServerError":
|
|
1197
1197
|
throw await de_InternalServerErrorRes(parsedOutput, context);
|
|
1198
|
+
case "ServiceLimitExceeded":
|
|
1199
|
+
case "com.amazonaws.fsx#ServiceLimitExceeded":
|
|
1200
|
+
throw await de_ServiceLimitExceededRes(parsedOutput, context);
|
|
1198
1201
|
case "VolumeNotFound":
|
|
1199
1202
|
case "com.amazonaws.fsx#VolumeNotFound":
|
|
1200
1203
|
throw await de_VolumeNotFoundRes(parsedOutput, context);
|
|
@@ -391,6 +391,7 @@ export interface CopyBackupCommandOutput extends CopyBackupResponse, __MetadataB
|
|
|
391
391
|
* // ],
|
|
392
392
|
* // ThroughputCapacity: Number("int"),
|
|
393
393
|
* // WeeklyMaintenanceStartTime: "STRING_VALUE",
|
|
394
|
+
* // FsxAdminPassword: "STRING_VALUE",
|
|
394
395
|
* // },
|
|
395
396
|
* // FileSystemTypeVersion: "STRING_VALUE",
|
|
396
397
|
* // OpenZFSConfiguration: { // OpenZFSFileSystemConfiguration
|
|
@@ -522,6 +523,7 @@ export interface CopyBackupCommandOutput extends CopyBackupResponse, __MetadataB
|
|
|
522
523
|
* // ],
|
|
523
524
|
* // ThroughputCapacity: Number("int"),
|
|
524
525
|
* // WeeklyMaintenanceStartTime: "STRING_VALUE",
|
|
526
|
+
* // FsxAdminPassword: "STRING_VALUE",
|
|
525
527
|
* // },
|
|
526
528
|
* // FileSystemTypeVersion: "STRING_VALUE",
|
|
527
529
|
* // OpenZFSConfiguration: {
|
|
@@ -424,6 +424,7 @@ export interface CreateBackupCommandOutput extends CreateBackupResponse, __Metad
|
|
|
424
424
|
* // ],
|
|
425
425
|
* // ThroughputCapacity: Number("int"),
|
|
426
426
|
* // WeeklyMaintenanceStartTime: "STRING_VALUE",
|
|
427
|
+
* // FsxAdminPassword: "STRING_VALUE",
|
|
427
428
|
* // },
|
|
428
429
|
* // FileSystemTypeVersion: "STRING_VALUE",
|
|
429
430
|
* // OpenZFSConfiguration: { // OpenZFSFileSystemConfiguration
|
|
@@ -555,6 +556,7 @@ export interface CreateBackupCommandOutput extends CreateBackupResponse, __Metad
|
|
|
555
556
|
* // ],
|
|
556
557
|
* // ThroughputCapacity: Number("int"),
|
|
557
558
|
* // WeeklyMaintenanceStartTime: "STRING_VALUE",
|
|
559
|
+
* // FsxAdminPassword: "STRING_VALUE",
|
|
558
560
|
* // },
|
|
559
561
|
* // FileSystemTypeVersion: "STRING_VALUE",
|
|
560
562
|
* // OpenZFSConfiguration: {
|
|
@@ -27,7 +27,8 @@ export interface CreateDataRepositoryAssociationCommandOutput extends CreateData
|
|
|
27
27
|
* repository association is a link between a directory on the file system and
|
|
28
28
|
* an Amazon S3 bucket or prefix. You can have a maximum of 8 data repository
|
|
29
29
|
* associations on a file system. Data repository associations are supported
|
|
30
|
-
*
|
|
30
|
+
* on all FSx for Lustre 2.12 and newer file systems, excluding
|
|
31
|
+
* <code>scratch_1</code> deployment type.</p>
|
|
31
32
|
* <p>Each data repository association must have a unique Amazon FSx file
|
|
32
33
|
* system directory and a unique S3 bucket or prefix associated with it. You
|
|
33
34
|
* can configure a data repository association for automatic import only,
|
|
@@ -518,6 +518,7 @@ export interface CreateFileSystemCommandOutput extends CreateFileSystemResponse,
|
|
|
518
518
|
* // ],
|
|
519
519
|
* // ThroughputCapacity: Number("int"),
|
|
520
520
|
* // WeeklyMaintenanceStartTime: "STRING_VALUE",
|
|
521
|
+
* // FsxAdminPassword: "STRING_VALUE",
|
|
521
522
|
* // },
|
|
522
523
|
* // FileSystemTypeVersion: "STRING_VALUE",
|
|
523
524
|
* // OpenZFSConfiguration: { // OpenZFSFileSystemConfiguration
|
|
@@ -649,6 +650,7 @@ export interface CreateFileSystemCommandOutput extends CreateFileSystemResponse,
|
|
|
649
650
|
* // ],
|
|
650
651
|
* // ThroughputCapacity: Number("int"),
|
|
651
652
|
* // WeeklyMaintenanceStartTime: "STRING_VALUE",
|
|
653
|
+
* // FsxAdminPassword: "STRING_VALUE",
|
|
652
654
|
* // },
|
|
653
655
|
* // FileSystemTypeVersion: "STRING_VALUE",
|
|
654
656
|
* // OpenZFSConfiguration: {
|
|
@@ -488,6 +488,7 @@ export interface CreateFileSystemFromBackupCommandOutput extends CreateFileSyste
|
|
|
488
488
|
* // ],
|
|
489
489
|
* // ThroughputCapacity: Number("int"),
|
|
490
490
|
* // WeeklyMaintenanceStartTime: "STRING_VALUE",
|
|
491
|
+
* // FsxAdminPassword: "STRING_VALUE",
|
|
491
492
|
* // },
|
|
492
493
|
* // FileSystemTypeVersion: "STRING_VALUE",
|
|
493
494
|
* // OpenZFSConfiguration: { // OpenZFSFileSystemConfiguration
|
|
@@ -619,6 +620,7 @@ export interface CreateFileSystemFromBackupCommandOutput extends CreateFileSyste
|
|
|
619
620
|
* // ],
|
|
620
621
|
* // ThroughputCapacity: Number("int"),
|
|
621
622
|
* // WeeklyMaintenanceStartTime: "STRING_VALUE",
|
|
623
|
+
* // FsxAdminPassword: "STRING_VALUE",
|
|
622
624
|
* // },
|
|
623
625
|
* // FileSystemTypeVersion: "STRING_VALUE",
|
|
624
626
|
* // OpenZFSConfiguration: {
|
|
@@ -310,6 +310,7 @@ export interface CreateSnapshotCommandOutput extends CreateSnapshotResponse, __M
|
|
|
310
310
|
* // ],
|
|
311
311
|
* // ThroughputCapacity: Number("int"),
|
|
312
312
|
* // WeeklyMaintenanceStartTime: "STRING_VALUE",
|
|
313
|
+
* // FsxAdminPassword: "STRING_VALUE",
|
|
313
314
|
* // },
|
|
314
315
|
* // FileSystemTypeVersion: "STRING_VALUE",
|
|
315
316
|
* // OpenZFSConfiguration: { // OpenZFSFileSystemConfiguration
|
|
@@ -441,6 +442,7 @@ export interface CreateSnapshotCommandOutput extends CreateSnapshotResponse, __M
|
|
|
441
442
|
* // ],
|
|
442
443
|
* // ThroughputCapacity: Number("int"),
|
|
443
444
|
* // WeeklyMaintenanceStartTime: "STRING_VALUE",
|
|
445
|
+
* // FsxAdminPassword: "STRING_VALUE",
|
|
444
446
|
* // },
|
|
445
447
|
* // FileSystemTypeVersion: "STRING_VALUE",
|
|
446
448
|
* // OpenZFSConfiguration: {
|
|
@@ -347,6 +347,7 @@ export interface CreateVolumeCommandOutput extends CreateVolumeResponse, __Metad
|
|
|
347
347
|
* // ],
|
|
348
348
|
* // ThroughputCapacity: Number("int"),
|
|
349
349
|
* // WeeklyMaintenanceStartTime: "STRING_VALUE",
|
|
350
|
+
* // FsxAdminPassword: "STRING_VALUE",
|
|
350
351
|
* // },
|
|
351
352
|
* // FileSystemTypeVersion: "STRING_VALUE",
|
|
352
353
|
* // OpenZFSConfiguration: { // OpenZFSFileSystemConfiguration
|
|
@@ -478,6 +479,7 @@ export interface CreateVolumeCommandOutput extends CreateVolumeResponse, __Metad
|
|
|
478
479
|
* // ],
|
|
479
480
|
* // ThroughputCapacity: Number("int"),
|
|
480
481
|
* // WeeklyMaintenanceStartTime: "STRING_VALUE",
|
|
482
|
+
* // FsxAdminPassword: "STRING_VALUE",
|
|
481
483
|
* // },
|
|
482
484
|
* // FileSystemTypeVersion: "STRING_VALUE",
|
|
483
485
|
* // OpenZFSConfiguration: {
|
|
@@ -316,6 +316,7 @@ export interface CreateVolumeFromBackupCommandOutput extends CreateVolumeFromBac
|
|
|
316
316
|
* // ],
|
|
317
317
|
* // ThroughputCapacity: Number("int"),
|
|
318
318
|
* // WeeklyMaintenanceStartTime: "STRING_VALUE",
|
|
319
|
+
* // FsxAdminPassword: "STRING_VALUE",
|
|
319
320
|
* // },
|
|
320
321
|
* // FileSystemTypeVersion: "STRING_VALUE",
|
|
321
322
|
* // OpenZFSConfiguration: { // OpenZFSFileSystemConfiguration
|
|
@@ -447,6 +448,7 @@ export interface CreateVolumeFromBackupCommandOutput extends CreateVolumeFromBac
|
|
|
447
448
|
* // ],
|
|
448
449
|
* // ThroughputCapacity: Number("int"),
|
|
449
450
|
* // WeeklyMaintenanceStartTime: "STRING_VALUE",
|
|
451
|
+
* // FsxAdminPassword: "STRING_VALUE",
|
|
450
452
|
* // },
|
|
451
453
|
* // FileSystemTypeVersion: "STRING_VALUE",
|
|
452
454
|
* // OpenZFSConfiguration: {
|
|
@@ -28,8 +28,8 @@ export interface DeleteDataRepositoryAssociationCommandOutput extends DeleteData
|
|
|
28
28
|
* file system from the Amazon S3 bucket. When deleting a data repository
|
|
29
29
|
* association, you have the option of deleting the data in the file system
|
|
30
30
|
* that corresponds to the data repository association. Data repository
|
|
31
|
-
* associations are supported
|
|
32
|
-
* deployment type.</p>
|
|
31
|
+
* associations are supported on all FSx for Lustre 2.12 and newer file
|
|
32
|
+
* systems, excluding <code>scratch_1</code> deployment type.</p>
|
|
33
33
|
* @example
|
|
34
34
|
* Use a bare-bones client and the command you need to make an API call.
|
|
35
35
|
* ```javascript
|
|
@@ -84,6 +84,10 @@ export interface DeleteVolumeCommandOutput extends DeleteVolumeResponse, __Metad
|
|
|
84
84
|
* @throws {@link InternalServerError} (server fault)
|
|
85
85
|
* <p>A generic error indicating a server-side failure.</p>
|
|
86
86
|
*
|
|
87
|
+
* @throws {@link ServiceLimitExceeded} (client fault)
|
|
88
|
+
* <p>An error indicating that a particular service limit was exceeded. You can increase
|
|
89
|
+
* some service limits by contacting Amazon Web Services Support.</p>
|
|
90
|
+
*
|
|
87
91
|
* @throws {@link VolumeNotFound} (client fault)
|
|
88
92
|
* <p>No Amazon FSx volumes were found based upon the supplied parameters.</p>
|
|
89
93
|
*
|
|
@@ -399,6 +399,7 @@ export interface DescribeBackupsCommandOutput extends DescribeBackupsResponse, _
|
|
|
399
399
|
* // ],
|
|
400
400
|
* // ThroughputCapacity: Number("int"),
|
|
401
401
|
* // WeeklyMaintenanceStartTime: "STRING_VALUE",
|
|
402
|
+
* // FsxAdminPassword: "STRING_VALUE",
|
|
402
403
|
* // },
|
|
403
404
|
* // FileSystemTypeVersion: "STRING_VALUE",
|
|
404
405
|
* // OpenZFSConfiguration: { // OpenZFSFileSystemConfiguration
|
|
@@ -530,6 +531,7 @@ export interface DescribeBackupsCommandOutput extends DescribeBackupsResponse, _
|
|
|
530
531
|
* // ],
|
|
531
532
|
* // ThroughputCapacity: Number("int"),
|
|
532
533
|
* // WeeklyMaintenanceStartTime: "STRING_VALUE",
|
|
534
|
+
* // FsxAdminPassword: "STRING_VALUE",
|
|
533
535
|
* // },
|
|
534
536
|
* // FileSystemTypeVersion: "STRING_VALUE",
|
|
535
537
|
* // OpenZFSConfiguration: {
|
|
@@ -26,8 +26,8 @@ export interface DescribeDataRepositoryAssociationsCommandOutput extends Describ
|
|
|
26
26
|
* <p>Returns the description of specific Amazon FSx for Lustre or Amazon File Cache
|
|
27
27
|
* data repository associations, if one or more <code>AssociationIds</code> values
|
|
28
28
|
* are provided in the request, or if filters are used in the request. Data repository
|
|
29
|
-
* associations are supported on Amazon File Cache resources and all
|
|
30
|
-
*
|
|
29
|
+
* associations are supported on Amazon File Cache resources and all FSx for Lustre
|
|
30
|
+
* 2.12 and newer file systems, excluding <code>scratch_1</code> deployment type.</p>
|
|
31
31
|
* <p>You can use filters to narrow the response to include just data repository
|
|
32
32
|
* associations for specific file systems (use the <code>file-system-id</code> filter with
|
|
33
33
|
* the ID of the file system) or caches (use the <code>file-cache-id</code> filter with
|
|
@@ -381,6 +381,7 @@ export interface DescribeFileSystemsCommandOutput extends DescribeFileSystemsRes
|
|
|
381
381
|
* // ],
|
|
382
382
|
* // ThroughputCapacity: Number("int"),
|
|
383
383
|
* // WeeklyMaintenanceStartTime: "STRING_VALUE",
|
|
384
|
+
* // FsxAdminPassword: "STRING_VALUE",
|
|
384
385
|
* // },
|
|
385
386
|
* // FileSystemTypeVersion: "STRING_VALUE",
|
|
386
387
|
* // OpenZFSConfiguration: { // OpenZFSFileSystemConfiguration
|
|
@@ -512,6 +513,7 @@ export interface DescribeFileSystemsCommandOutput extends DescribeFileSystemsRes
|
|
|
512
513
|
* // ],
|
|
513
514
|
* // ThroughputCapacity: Number("int"),
|
|
514
515
|
* // WeeklyMaintenanceStartTime: "STRING_VALUE",
|
|
516
|
+
* // FsxAdminPassword: "STRING_VALUE",
|
|
515
517
|
* // },
|
|
516
518
|
* // FileSystemTypeVersion: "STRING_VALUE",
|
|
517
519
|
* // OpenZFSConfiguration: {
|
|
@@ -314,6 +314,7 @@ export interface DescribeSnapshotsCommandOutput extends DescribeSnapshotsRespons
|
|
|
314
314
|
* // ],
|
|
315
315
|
* // ThroughputCapacity: Number("int"),
|
|
316
316
|
* // WeeklyMaintenanceStartTime: "STRING_VALUE",
|
|
317
|
+
* // FsxAdminPassword: "STRING_VALUE",
|
|
317
318
|
* // },
|
|
318
319
|
* // FileSystemTypeVersion: "STRING_VALUE",
|
|
319
320
|
* // OpenZFSConfiguration: { // OpenZFSFileSystemConfiguration
|
|
@@ -445,6 +446,7 @@ export interface DescribeSnapshotsCommandOutput extends DescribeSnapshotsRespons
|
|
|
445
446
|
* // ],
|
|
446
447
|
* // ThroughputCapacity: Number("int"),
|
|
447
448
|
* // WeeklyMaintenanceStartTime: "STRING_VALUE",
|
|
449
|
+
* // FsxAdminPassword: "STRING_VALUE",
|
|
448
450
|
* // },
|
|
449
451
|
* // FileSystemTypeVersion: "STRING_VALUE",
|
|
450
452
|
* // OpenZFSConfiguration: {
|
|
@@ -307,6 +307,7 @@ export interface DescribeVolumesCommandOutput extends DescribeVolumesResponse, _
|
|
|
307
307
|
* // ],
|
|
308
308
|
* // ThroughputCapacity: Number("int"),
|
|
309
309
|
* // WeeklyMaintenanceStartTime: "STRING_VALUE",
|
|
310
|
+
* // FsxAdminPassword: "STRING_VALUE",
|
|
310
311
|
* // },
|
|
311
312
|
* // FileSystemTypeVersion: "STRING_VALUE",
|
|
312
313
|
* // OpenZFSConfiguration: { // OpenZFSFileSystemConfiguration
|
|
@@ -438,6 +439,7 @@ export interface DescribeVolumesCommandOutput extends DescribeVolumesResponse, _
|
|
|
438
439
|
* // ],
|
|
439
440
|
* // ThroughputCapacity: Number("int"),
|
|
440
441
|
* // WeeklyMaintenanceStartTime: "STRING_VALUE",
|
|
442
|
+
* // FsxAdminPassword: "STRING_VALUE",
|
|
441
443
|
* // },
|
|
442
444
|
* // FileSystemTypeVersion: "STRING_VALUE",
|
|
443
445
|
* // OpenZFSConfiguration: {
|
|
@@ -351,6 +351,7 @@ export interface ReleaseFileSystemNfsV3LocksCommandOutput extends ReleaseFileSys
|
|
|
351
351
|
* // ],
|
|
352
352
|
* // ThroughputCapacity: Number("int"),
|
|
353
353
|
* // WeeklyMaintenanceStartTime: "STRING_VALUE",
|
|
354
|
+
* // FsxAdminPassword: "STRING_VALUE",
|
|
354
355
|
* // },
|
|
355
356
|
* // FileSystemTypeVersion: "STRING_VALUE",
|
|
356
357
|
* // OpenZFSConfiguration: { // OpenZFSFileSystemConfiguration
|
|
@@ -482,6 +483,7 @@ export interface ReleaseFileSystemNfsV3LocksCommandOutput extends ReleaseFileSys
|
|
|
482
483
|
* // ],
|
|
483
484
|
* // ThroughputCapacity: Number("int"),
|
|
484
485
|
* // WeeklyMaintenanceStartTime: "STRING_VALUE",
|
|
486
|
+
* // FsxAdminPassword: "STRING_VALUE",
|
|
485
487
|
* // },
|
|
486
488
|
* // FileSystemTypeVersion: "STRING_VALUE",
|
|
487
489
|
* // OpenZFSConfiguration: {
|
|
@@ -272,6 +272,7 @@ export interface RestoreVolumeFromSnapshotCommandOutput extends RestoreVolumeFro
|
|
|
272
272
|
* // ],
|
|
273
273
|
* // ThroughputCapacity: Number("int"),
|
|
274
274
|
* // WeeklyMaintenanceStartTime: "STRING_VALUE",
|
|
275
|
+
* // FsxAdminPassword: "STRING_VALUE",
|
|
275
276
|
* // },
|
|
276
277
|
* // FileSystemTypeVersion: "STRING_VALUE",
|
|
277
278
|
* // OpenZFSConfiguration: { // OpenZFSFileSystemConfiguration
|
|
@@ -413,6 +414,7 @@ export interface RestoreVolumeFromSnapshotCommandOutput extends RestoreVolumeFro
|
|
|
413
414
|
* // ],
|
|
414
415
|
* // ThroughputCapacity: Number("int"),
|
|
415
416
|
* // WeeklyMaintenanceStartTime: "STRING_VALUE",
|
|
417
|
+
* // FsxAdminPassword: "STRING_VALUE",
|
|
416
418
|
* // },
|
|
417
419
|
* // FileSystemTypeVersion: "STRING_VALUE",
|
|
418
420
|
* // OpenZFSConfiguration: {
|
|
@@ -25,8 +25,8 @@ export interface UpdateDataRepositoryAssociationCommandOutput extends UpdateData
|
|
|
25
25
|
* @public
|
|
26
26
|
* <p>Updates the configuration of an existing data repository association
|
|
27
27
|
* on an Amazon FSx for Lustre file system. Data repository associations
|
|
28
|
-
* are supported
|
|
29
|
-
* deployment type.</p>
|
|
28
|
+
* are supported on all FSx for Lustre 2.12 and newer file systems,
|
|
29
|
+
* excluding <code>scratch_1</code> deployment type.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
32
32
|
* ```javascript
|
|
@@ -217,6 +217,9 @@ export interface UpdateFileSystemCommandOutput extends UpdateFileSystemResponse,
|
|
|
217
217
|
* DnsIps: [ // DnsIps
|
|
218
218
|
* "STRING_VALUE",
|
|
219
219
|
* ],
|
|
220
|
+
* DomainName: "STRING_VALUE",
|
|
221
|
+
* OrganizationalUnitDistinguishedName: "STRING_VALUE",
|
|
222
|
+
* FileSystemAdministratorsGroup: "STRING_VALUE",
|
|
220
223
|
* },
|
|
221
224
|
* AuditLogConfiguration: { // WindowsAuditLogCreateConfiguration
|
|
222
225
|
* FileAccessAuditLogLevel: "DISABLED" || "SUCCESS_ONLY" || "FAILURE_ONLY" || "SUCCESS_AND_FAILURE", // required
|
|
@@ -587,6 +590,7 @@ export interface UpdateFileSystemCommandOutput extends UpdateFileSystemResponse,
|
|
|
587
590
|
* // ],
|
|
588
591
|
* // ThroughputCapacity: Number("int"),
|
|
589
592
|
* // WeeklyMaintenanceStartTime: "STRING_VALUE",
|
|
593
|
+
* // FsxAdminPassword: "STRING_VALUE",
|
|
590
594
|
* // },
|
|
591
595
|
* // FileSystemTypeVersion: "STRING_VALUE",
|
|
592
596
|
* // OpenZFSConfiguration: { // OpenZFSFileSystemConfiguration
|
|
@@ -718,6 +722,7 @@ export interface UpdateFileSystemCommandOutput extends UpdateFileSystemResponse,
|
|
|
718
722
|
* // ],
|
|
719
723
|
* // ThroughputCapacity: Number("int"),
|
|
720
724
|
* // WeeklyMaintenanceStartTime: "STRING_VALUE",
|
|
725
|
+
* // FsxAdminPassword: "STRING_VALUE",
|
|
721
726
|
* // },
|
|
722
727
|
* // FileSystemTypeVersion: "STRING_VALUE",
|
|
723
728
|
* // OpenZFSConfiguration: {
|
|
@@ -277,6 +277,7 @@ export interface UpdateSnapshotCommandOutput extends UpdateSnapshotResponse, __M
|
|
|
277
277
|
* // ],
|
|
278
278
|
* // ThroughputCapacity: Number("int"),
|
|
279
279
|
* // WeeklyMaintenanceStartTime: "STRING_VALUE",
|
|
280
|
+
* // FsxAdminPassword: "STRING_VALUE",
|
|
280
281
|
* // },
|
|
281
282
|
* // FileSystemTypeVersion: "STRING_VALUE",
|
|
282
283
|
* // OpenZFSConfiguration: { // OpenZFSFileSystemConfiguration
|
|
@@ -408,6 +409,7 @@ export interface UpdateSnapshotCommandOutput extends UpdateSnapshotResponse, __M
|
|
|
408
409
|
* // ],
|
|
409
410
|
* // ThroughputCapacity: Number("int"),
|
|
410
411
|
* // WeeklyMaintenanceStartTime: "STRING_VALUE",
|
|
412
|
+
* // FsxAdminPassword: "STRING_VALUE",
|
|
411
413
|
* // },
|
|
412
414
|
* // FileSystemTypeVersion: "STRING_VALUE",
|
|
413
415
|
* // OpenZFSConfiguration: {
|
|
@@ -23,7 +23,7 @@ export interface UpdateStorageVirtualMachineCommandOutput extends UpdateStorageV
|
|
|
23
23
|
}
|
|
24
24
|
/**
|
|
25
25
|
* @public
|
|
26
|
-
* <p>Updates an
|
|
26
|
+
* <p>Updates an FSx for ONTAP storage virtual machine (SVM).</p>
|
|
27
27
|
* @example
|
|
28
28
|
* Use a bare-bones client and the command you need to make an API call.
|
|
29
29
|
* ```javascript
|
|
@@ -38,7 +38,11 @@ export interface UpdateStorageVirtualMachineCommandOutput extends UpdateStorageV
|
|
|
38
38
|
* DnsIps: [ // DnsIps
|
|
39
39
|
* "STRING_VALUE",
|
|
40
40
|
* ],
|
|
41
|
+
* DomainName: "STRING_VALUE",
|
|
42
|
+
* OrganizationalUnitDistinguishedName: "STRING_VALUE",
|
|
43
|
+
* FileSystemAdministratorsGroup: "STRING_VALUE",
|
|
41
44
|
* },
|
|
45
|
+
* NetBiosName: "STRING_VALUE",
|
|
42
46
|
* },
|
|
43
47
|
* ClientRequestToken: "STRING_VALUE",
|
|
44
48
|
* StorageVirtualMachineId: "STRING_VALUE", // required
|
|
@@ -333,6 +333,7 @@ export interface UpdateVolumeCommandOutput extends UpdateVolumeResponse, __Metad
|
|
|
333
333
|
* // ],
|
|
334
334
|
* // ThroughputCapacity: Number("int"),
|
|
335
335
|
* // WeeklyMaintenanceStartTime: "STRING_VALUE",
|
|
336
|
+
* // FsxAdminPassword: "STRING_VALUE",
|
|
336
337
|
* // },
|
|
337
338
|
* // FileSystemTypeVersion: "STRING_VALUE",
|
|
338
339
|
* // OpenZFSConfiguration: { // OpenZFSFileSystemConfiguration
|
|
@@ -464,6 +465,7 @@ export interface UpdateVolumeCommandOutput extends UpdateVolumeResponse, __Metad
|
|
|
464
465
|
* // ],
|
|
465
466
|
* // ThroughputCapacity: Number("int"),
|
|
466
467
|
* // WeeklyMaintenanceStartTime: "STRING_VALUE",
|
|
468
|
+
* // FsxAdminPassword: "STRING_VALUE",
|
|
467
469
|
* // },
|
|
468
470
|
* // FileSystemTypeVersion: "STRING_VALUE",
|
|
469
471
|
* // OpenZFSConfiguration: {
|