@aws-sdk/client-fsx 3.298.0 → 3.300.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 (42) hide show
  1. package/dist-types/commands/AssociateFileSystemAliasesCommand.d.ts +7 -0
  2. package/dist-types/commands/CancelDataRepositoryTaskCommand.d.ts +3 -0
  3. package/dist-types/commands/CopyBackupCommand.d.ts +13 -0
  4. package/dist-types/commands/CreateBackupCommand.d.ts +11 -0
  5. package/dist-types/commands/CreateDataRepositoryAssociationCommand.d.ts +26 -0
  6. package/dist-types/commands/CreateDataRepositoryTaskCommand.d.ts +21 -0
  7. package/dist-types/commands/CreateFileCacheCommand.d.ts +43 -0
  8. package/dist-types/commands/CreateFileSystemCommand.d.ts +127 -0
  9. package/dist-types/commands/CreateFileSystemFromBackupCommand.d.ts +110 -0
  10. package/dist-types/commands/CreateSnapshotCommand.d.ts +11 -0
  11. package/dist-types/commands/CreateStorageVirtualMachineCommand.d.ts +26 -0
  12. package/dist-types/commands/CreateVolumeCommand.d.ts +57 -0
  13. package/dist-types/commands/CreateVolumeFromBackupCommand.d.ts +25 -0
  14. package/dist-types/commands/DeleteBackupCommand.d.ts +4 -0
  15. package/dist-types/commands/DeleteDataRepositoryAssociationCommand.d.ts +5 -0
  16. package/dist-types/commands/DeleteFileCacheCommand.d.ts +4 -0
  17. package/dist-types/commands/DeleteFileSystemCommand.d.ts +34 -0
  18. package/dist-types/commands/DeleteSnapshotCommand.d.ts +4 -0
  19. package/dist-types/commands/DeleteStorageVirtualMachineCommand.d.ts +4 -0
  20. package/dist-types/commands/DeleteVolumeCommand.d.ts +18 -0
  21. package/dist-types/commands/DescribeBackupsCommand.d.ts +15 -0
  22. package/dist-types/commands/DescribeDataRepositoryAssociationsCommand.d.ts +15 -0
  23. package/dist-types/commands/DescribeDataRepositoryTasksCommand.d.ts +15 -0
  24. package/dist-types/commands/DescribeFileCachesCommand.d.ts +7 -0
  25. package/dist-types/commands/DescribeFileSystemAliasesCommand.d.ts +6 -0
  26. package/dist-types/commands/DescribeFileSystemsCommand.d.ts +7 -0
  27. package/dist-types/commands/DescribeSnapshotsCommand.d.ts +15 -0
  28. package/dist-types/commands/DescribeStorageVirtualMachinesCommand.d.ts +15 -0
  29. package/dist-types/commands/DescribeVolumesCommand.d.ts +15 -0
  30. package/dist-types/commands/DisassociateFileSystemAliasesCommand.d.ts +7 -0
  31. package/dist-types/commands/ListTagsForResourceCommand.d.ts +5 -0
  32. package/dist-types/commands/ReleaseFileSystemNfsV3LocksCommand.d.ts +4 -0
  33. package/dist-types/commands/RestoreVolumeFromSnapshotCommand.d.ts +8 -0
  34. package/dist-types/commands/TagResourceCommand.d.ts +9 -0
  35. package/dist-types/commands/UntagResourceCommand.d.ts +6 -0
  36. package/dist-types/commands/UpdateDataRepositoryAssociationCommand.d.ts +17 -0
  37. package/dist-types/commands/UpdateFileCacheCommand.d.ts +7 -0
  38. package/dist-types/commands/UpdateFileSystemCommand.d.ts +69 -0
  39. package/dist-types/commands/UpdateSnapshotCommand.d.ts +5 -0
  40. package/dist-types/commands/UpdateStorageVirtualMachineCommand.d.ts +14 -0
  41. package/dist-types/commands/UpdateVolumeCommand.d.ts +43 -0
  42. package/package.json +12 -12
@@ -36,6 +36,13 @@ export interface AssociateFileSystemAliasesCommandOutput extends AssociateFileSy
36
36
  * import { FSxClient, AssociateFileSystemAliasesCommand } from "@aws-sdk/client-fsx"; // ES Modules import
37
37
  * // const { FSxClient, AssociateFileSystemAliasesCommand } = require("@aws-sdk/client-fsx"); // CommonJS import
38
38
  * const client = new FSxClient(config);
39
+ * const input = {
40
+ * ClientRequestToken: "STRING_VALUE",
41
+ * FileSystemId: "STRING_VALUE", // required
42
+ * Aliases: [ // required
43
+ * "STRING_VALUE",
44
+ * ],
45
+ * };
39
46
  * const command = new AssociateFileSystemAliasesCommand(input);
40
47
  * const response = await client.send(command);
41
48
  * ```
@@ -38,6 +38,9 @@ export interface CancelDataRepositoryTaskCommandOutput extends CancelDataReposit
38
38
  * import { FSxClient, CancelDataRepositoryTaskCommand } from "@aws-sdk/client-fsx"; // ES Modules import
39
39
  * // const { FSxClient, CancelDataRepositoryTaskCommand } = require("@aws-sdk/client-fsx"); // CommonJS import
40
40
  * const client = new FSxClient(config);
41
+ * const input = {
42
+ * TaskId: "STRING_VALUE", // required
43
+ * };
41
44
  * const command = new CancelDataRepositoryTaskCommand(input);
42
45
  * const response = await client.send(command);
43
46
  * ```
@@ -46,6 +46,19 @@ export interface CopyBackupCommandOutput extends CopyBackupResponse, __MetadataB
46
46
  * import { FSxClient, CopyBackupCommand } from "@aws-sdk/client-fsx"; // ES Modules import
47
47
  * // const { FSxClient, CopyBackupCommand } = require("@aws-sdk/client-fsx"); // CommonJS import
48
48
  * const client = new FSxClient(config);
49
+ * const input = {
50
+ * ClientRequestToken: "STRING_VALUE",
51
+ * SourceBackupId: "STRING_VALUE", // required
52
+ * SourceRegion: "STRING_VALUE",
53
+ * KmsKeyId: "STRING_VALUE",
54
+ * CopyTags: true || false,
55
+ * Tags: [
56
+ * {
57
+ * Key: "STRING_VALUE", // required
58
+ * Value: "STRING_VALUE", // required
59
+ * },
60
+ * ],
61
+ * };
49
62
  * const command = new CopyBackupCommand(input);
50
63
  * const response = await client.send(command);
51
64
  * ```
@@ -81,6 +81,17 @@ export interface CreateBackupCommandOutput extends CreateBackupResponse, __Metad
81
81
  * import { FSxClient, CreateBackupCommand } from "@aws-sdk/client-fsx"; // ES Modules import
82
82
  * // const { FSxClient, CreateBackupCommand } = require("@aws-sdk/client-fsx"); // CommonJS import
83
83
  * const client = new FSxClient(config);
84
+ * const input = {
85
+ * FileSystemId: "STRING_VALUE",
86
+ * ClientRequestToken: "STRING_VALUE",
87
+ * Tags: [
88
+ * {
89
+ * Key: "STRING_VALUE", // required
90
+ * Value: "STRING_VALUE", // required
91
+ * },
92
+ * ],
93
+ * VolumeId: "STRING_VALUE",
94
+ * };
84
95
  * const command = new CreateBackupCommand(input);
85
96
  * const response = await client.send(command);
86
97
  * ```
@@ -42,6 +42,32 @@ export interface CreateDataRepositoryAssociationCommandOutput extends CreateData
42
42
  * import { FSxClient, CreateDataRepositoryAssociationCommand } from "@aws-sdk/client-fsx"; // ES Modules import
43
43
  * // const { FSxClient, CreateDataRepositoryAssociationCommand } = require("@aws-sdk/client-fsx"); // CommonJS import
44
44
  * const client = new FSxClient(config);
45
+ * const input = {
46
+ * FileSystemId: "STRING_VALUE", // required
47
+ * FileSystemPath: "STRING_VALUE",
48
+ * DataRepositoryPath: "STRING_VALUE", // required
49
+ * BatchImportMetaDataOnCreate: true || false,
50
+ * ImportedFileChunkSize: Number("int"),
51
+ * S3: {
52
+ * AutoImportPolicy: {
53
+ * Events: [
54
+ * "NEW" || "CHANGED" || "DELETED",
55
+ * ],
56
+ * },
57
+ * AutoExportPolicy: {
58
+ * Events: [
59
+ * "NEW" || "CHANGED" || "DELETED",
60
+ * ],
61
+ * },
62
+ * },
63
+ * ClientRequestToken: "STRING_VALUE",
64
+ * Tags: [
65
+ * {
66
+ * Key: "STRING_VALUE", // required
67
+ * Value: "STRING_VALUE", // required
68
+ * },
69
+ * ],
70
+ * };
45
71
  * const command = new CreateDataRepositoryAssociationCommand(input);
46
72
  * const response = await client.send(command);
47
73
  * ```
@@ -35,6 +35,27 @@ export interface CreateDataRepositoryTaskCommandOutput extends CreateDataReposit
35
35
  * import { FSxClient, CreateDataRepositoryTaskCommand } from "@aws-sdk/client-fsx"; // ES Modules import
36
36
  * // const { FSxClient, CreateDataRepositoryTaskCommand } = require("@aws-sdk/client-fsx"); // CommonJS import
37
37
  * const client = new FSxClient(config);
38
+ * const input = {
39
+ * Type: "EXPORT_TO_REPOSITORY" || "IMPORT_METADATA_FROM_REPOSITORY" || "RELEASE_DATA_FROM_FILESYSTEM" || "AUTO_RELEASE_DATA", // required
40
+ * Paths: [
41
+ * "STRING_VALUE",
42
+ * ],
43
+ * FileSystemId: "STRING_VALUE", // required
44
+ * Report: {
45
+ * Enabled: true || false, // required
46
+ * Path: "STRING_VALUE",
47
+ * Format: "REPORT_CSV_20191124",
48
+ * Scope: "FAILED_FILES_ONLY",
49
+ * },
50
+ * ClientRequestToken: "STRING_VALUE",
51
+ * Tags: [
52
+ * {
53
+ * Key: "STRING_VALUE", // required
54
+ * Value: "STRING_VALUE", // required
55
+ * },
56
+ * ],
57
+ * CapacityToRelease: Number("long"),
58
+ * };
38
59
  * const command = new CreateDataRepositoryTaskCommand(input);
39
60
  * const response = await client.send(command);
40
61
  * ```
@@ -49,6 +49,49 @@ export interface CreateFileCacheCommandOutput extends CreateFileCacheResponse, _
49
49
  * import { FSxClient, CreateFileCacheCommand } from "@aws-sdk/client-fsx"; // ES Modules import
50
50
  * // const { FSxClient, CreateFileCacheCommand } = require("@aws-sdk/client-fsx"); // CommonJS import
51
51
  * const client = new FSxClient(config);
52
+ * const input = {
53
+ * ClientRequestToken: "STRING_VALUE",
54
+ * FileCacheType: "LUSTRE", // required
55
+ * FileCacheTypeVersion: "STRING_VALUE", // required
56
+ * StorageCapacity: Number("int"), // required
57
+ * SubnetIds: [ // required
58
+ * "STRING_VALUE",
59
+ * ],
60
+ * SecurityGroupIds: [
61
+ * "STRING_VALUE",
62
+ * ],
63
+ * Tags: [
64
+ * {
65
+ * Key: "STRING_VALUE", // required
66
+ * Value: "STRING_VALUE", // required
67
+ * },
68
+ * ],
69
+ * CopyTagsToDataRepositoryAssociations: true || false,
70
+ * KmsKeyId: "STRING_VALUE",
71
+ * LustreConfiguration: {
72
+ * PerUnitStorageThroughput: Number("int"), // required
73
+ * DeploymentType: "CACHE_1", // required
74
+ * WeeklyMaintenanceStartTime: "STRING_VALUE",
75
+ * MetadataConfiguration: {
76
+ * StorageCapacity: Number("int"), // required
77
+ * },
78
+ * },
79
+ * DataRepositoryAssociations: [
80
+ * {
81
+ * FileCachePath: "STRING_VALUE", // required
82
+ * DataRepositoryPath: "STRING_VALUE", // required
83
+ * DataRepositorySubdirectories: [
84
+ * "STRING_VALUE",
85
+ * ],
86
+ * NFS: {
87
+ * Version: "NFS3", // required
88
+ * DnsIps: [
89
+ * "STRING_VALUE",
90
+ * ],
91
+ * },
92
+ * },
93
+ * ],
94
+ * };
52
95
  * const command = new CreateFileCacheCommand(input);
53
96
  * const response = await client.send(command);
54
97
  * ```
@@ -71,6 +71,133 @@ export interface CreateFileSystemCommandOutput extends CreateFileSystemResponse,
71
71
  * import { FSxClient, CreateFileSystemCommand } from "@aws-sdk/client-fsx"; // ES Modules import
72
72
  * // const { FSxClient, CreateFileSystemCommand } = require("@aws-sdk/client-fsx"); // CommonJS import
73
73
  * const client = new FSxClient(config);
74
+ * const input = {
75
+ * ClientRequestToken: "STRING_VALUE",
76
+ * FileSystemType: "WINDOWS" || "LUSTRE" || "ONTAP" || "OPENZFS", // required
77
+ * StorageCapacity: Number("int"), // required
78
+ * StorageType: "SSD" || "HDD",
79
+ * SubnetIds: [ // required
80
+ * "STRING_VALUE",
81
+ * ],
82
+ * SecurityGroupIds: [
83
+ * "STRING_VALUE",
84
+ * ],
85
+ * Tags: [
86
+ * {
87
+ * Key: "STRING_VALUE", // required
88
+ * Value: "STRING_VALUE", // required
89
+ * },
90
+ * ],
91
+ * KmsKeyId: "STRING_VALUE",
92
+ * WindowsConfiguration: {
93
+ * ActiveDirectoryId: "STRING_VALUE",
94
+ * SelfManagedActiveDirectoryConfiguration: {
95
+ * DomainName: "STRING_VALUE", // required
96
+ * OrganizationalUnitDistinguishedName: "STRING_VALUE",
97
+ * FileSystemAdministratorsGroup: "STRING_VALUE",
98
+ * UserName: "STRING_VALUE", // required
99
+ * Password: "STRING_VALUE", // required
100
+ * DnsIps: [ // required
101
+ * "STRING_VALUE",
102
+ * ],
103
+ * },
104
+ * DeploymentType: "MULTI_AZ_1" || "SINGLE_AZ_1" || "SINGLE_AZ_2",
105
+ * PreferredSubnetId: "STRING_VALUE",
106
+ * ThroughputCapacity: Number("int"), // required
107
+ * WeeklyMaintenanceStartTime: "STRING_VALUE",
108
+ * DailyAutomaticBackupStartTime: "STRING_VALUE",
109
+ * AutomaticBackupRetentionDays: Number("int"),
110
+ * CopyTagsToBackups: true || false,
111
+ * Aliases: [
112
+ * "STRING_VALUE",
113
+ * ],
114
+ * AuditLogConfiguration: {
115
+ * FileAccessAuditLogLevel: "DISABLED" || "SUCCESS_ONLY" || "FAILURE_ONLY" || "SUCCESS_AND_FAILURE", // required
116
+ * FileShareAccessAuditLogLevel: "DISABLED" || "SUCCESS_ONLY" || "FAILURE_ONLY" || "SUCCESS_AND_FAILURE", // required
117
+ * AuditLogDestination: "STRING_VALUE",
118
+ * },
119
+ * },
120
+ * LustreConfiguration: {
121
+ * WeeklyMaintenanceStartTime: "STRING_VALUE",
122
+ * ImportPath: "STRING_VALUE",
123
+ * ExportPath: "STRING_VALUE",
124
+ * ImportedFileChunkSize: Number("int"),
125
+ * DeploymentType: "SCRATCH_1" || "SCRATCH_2" || "PERSISTENT_1" || "PERSISTENT_2",
126
+ * AutoImportPolicy: "NONE" || "NEW" || "NEW_CHANGED" || "NEW_CHANGED_DELETED",
127
+ * PerUnitStorageThroughput: Number("int"),
128
+ * DailyAutomaticBackupStartTime: "STRING_VALUE",
129
+ * AutomaticBackupRetentionDays: Number("int"),
130
+ * CopyTagsToBackups: true || false,
131
+ * DriveCacheType: "NONE" || "READ",
132
+ * DataCompressionType: "NONE" || "LZ4",
133
+ * LogConfiguration: {
134
+ * Level: "DISABLED" || "WARN_ONLY" || "ERROR_ONLY" || "WARN_ERROR", // required
135
+ * Destination: "STRING_VALUE",
136
+ * },
137
+ * RootSquashConfiguration: {
138
+ * RootSquash: "STRING_VALUE",
139
+ * NoSquashNids: [
140
+ * "STRING_VALUE",
141
+ * ],
142
+ * },
143
+ * },
144
+ * OntapConfiguration: {
145
+ * AutomaticBackupRetentionDays: Number("int"),
146
+ * DailyAutomaticBackupStartTime: "STRING_VALUE",
147
+ * DeploymentType: "MULTI_AZ_1" || "SINGLE_AZ_1", // required
148
+ * EndpointIpAddressRange: "STRING_VALUE",
149
+ * FsxAdminPassword: "STRING_VALUE",
150
+ * DiskIopsConfiguration: {
151
+ * Mode: "AUTOMATIC" || "USER_PROVISIONED",
152
+ * Iops: Number("long"),
153
+ * },
154
+ * PreferredSubnetId: "STRING_VALUE",
155
+ * RouteTableIds: [
156
+ * "STRING_VALUE",
157
+ * ],
158
+ * ThroughputCapacity: Number("int"), // required
159
+ * WeeklyMaintenanceStartTime: "STRING_VALUE",
160
+ * },
161
+ * FileSystemTypeVersion: "STRING_VALUE",
162
+ * OpenZFSConfiguration: {
163
+ * AutomaticBackupRetentionDays: Number("int"),
164
+ * CopyTagsToBackups: true || false,
165
+ * CopyTagsToVolumes: true || false,
166
+ * DailyAutomaticBackupStartTime: "STRING_VALUE",
167
+ * DeploymentType: "SINGLE_AZ_1" || "SINGLE_AZ_2", // required
168
+ * ThroughputCapacity: Number("int"), // required
169
+ * WeeklyMaintenanceStartTime: "STRING_VALUE",
170
+ * DiskIopsConfiguration: {
171
+ * Mode: "AUTOMATIC" || "USER_PROVISIONED",
172
+ * Iops: Number("long"),
173
+ * },
174
+ * RootVolumeConfiguration: {
175
+ * RecordSizeKiB: Number("int"),
176
+ * DataCompressionType: "NONE" || "ZSTD" || "LZ4",
177
+ * NfsExports: [
178
+ * {
179
+ * ClientConfigurations: [ // required
180
+ * {
181
+ * Clients: "STRING_VALUE", // required
182
+ * Options: [ // required
183
+ * "STRING_VALUE",
184
+ * ],
185
+ * },
186
+ * ],
187
+ * },
188
+ * ],
189
+ * UserAndGroupQuotas: [
190
+ * {
191
+ * Type: "USER" || "GROUP", // required
192
+ * Id: Number("int"), // required
193
+ * StorageCapacityQuotaGiB: Number("int"), // required
194
+ * },
195
+ * ],
196
+ * CopyTagsToSnapshots: true || false,
197
+ * ReadOnly: true || false,
198
+ * },
199
+ * },
200
+ * };
74
201
  * const command = new CreateFileSystemCommand(input);
75
202
  * const response = await client.send(command);
76
203
  * ```
@@ -58,6 +58,116 @@ export interface CreateFileSystemFromBackupCommandOutput extends CreateFileSyste
58
58
  * import { FSxClient, CreateFileSystemFromBackupCommand } from "@aws-sdk/client-fsx"; // ES Modules import
59
59
  * // const { FSxClient, CreateFileSystemFromBackupCommand } = require("@aws-sdk/client-fsx"); // CommonJS import
60
60
  * const client = new FSxClient(config);
61
+ * const input = {
62
+ * BackupId: "STRING_VALUE", // required
63
+ * ClientRequestToken: "STRING_VALUE",
64
+ * SubnetIds: [ // required
65
+ * "STRING_VALUE",
66
+ * ],
67
+ * SecurityGroupIds: [
68
+ * "STRING_VALUE",
69
+ * ],
70
+ * Tags: [
71
+ * {
72
+ * Key: "STRING_VALUE", // required
73
+ * Value: "STRING_VALUE", // required
74
+ * },
75
+ * ],
76
+ * WindowsConfiguration: {
77
+ * ActiveDirectoryId: "STRING_VALUE",
78
+ * SelfManagedActiveDirectoryConfiguration: {
79
+ * DomainName: "STRING_VALUE", // required
80
+ * OrganizationalUnitDistinguishedName: "STRING_VALUE",
81
+ * FileSystemAdministratorsGroup: "STRING_VALUE",
82
+ * UserName: "STRING_VALUE", // required
83
+ * Password: "STRING_VALUE", // required
84
+ * DnsIps: [ // required
85
+ * "STRING_VALUE",
86
+ * ],
87
+ * },
88
+ * DeploymentType: "MULTI_AZ_1" || "SINGLE_AZ_1" || "SINGLE_AZ_2",
89
+ * PreferredSubnetId: "STRING_VALUE",
90
+ * ThroughputCapacity: Number("int"), // required
91
+ * WeeklyMaintenanceStartTime: "STRING_VALUE",
92
+ * DailyAutomaticBackupStartTime: "STRING_VALUE",
93
+ * AutomaticBackupRetentionDays: Number("int"),
94
+ * CopyTagsToBackups: true || false,
95
+ * Aliases: [
96
+ * "STRING_VALUE",
97
+ * ],
98
+ * AuditLogConfiguration: {
99
+ * FileAccessAuditLogLevel: "DISABLED" || "SUCCESS_ONLY" || "FAILURE_ONLY" || "SUCCESS_AND_FAILURE", // required
100
+ * FileShareAccessAuditLogLevel: "DISABLED" || "SUCCESS_ONLY" || "FAILURE_ONLY" || "SUCCESS_AND_FAILURE", // required
101
+ * AuditLogDestination: "STRING_VALUE",
102
+ * },
103
+ * },
104
+ * LustreConfiguration: {
105
+ * WeeklyMaintenanceStartTime: "STRING_VALUE",
106
+ * ImportPath: "STRING_VALUE",
107
+ * ExportPath: "STRING_VALUE",
108
+ * ImportedFileChunkSize: Number("int"),
109
+ * DeploymentType: "SCRATCH_1" || "SCRATCH_2" || "PERSISTENT_1" || "PERSISTENT_2",
110
+ * AutoImportPolicy: "NONE" || "NEW" || "NEW_CHANGED" || "NEW_CHANGED_DELETED",
111
+ * PerUnitStorageThroughput: Number("int"),
112
+ * DailyAutomaticBackupStartTime: "STRING_VALUE",
113
+ * AutomaticBackupRetentionDays: Number("int"),
114
+ * CopyTagsToBackups: true || false,
115
+ * DriveCacheType: "NONE" || "READ",
116
+ * DataCompressionType: "NONE" || "LZ4",
117
+ * LogConfiguration: {
118
+ * Level: "DISABLED" || "WARN_ONLY" || "ERROR_ONLY" || "WARN_ERROR", // required
119
+ * Destination: "STRING_VALUE",
120
+ * },
121
+ * RootSquashConfiguration: {
122
+ * RootSquash: "STRING_VALUE",
123
+ * NoSquashNids: [
124
+ * "STRING_VALUE",
125
+ * ],
126
+ * },
127
+ * },
128
+ * StorageType: "SSD" || "HDD",
129
+ * KmsKeyId: "STRING_VALUE",
130
+ * FileSystemTypeVersion: "STRING_VALUE",
131
+ * OpenZFSConfiguration: {
132
+ * AutomaticBackupRetentionDays: Number("int"),
133
+ * CopyTagsToBackups: true || false,
134
+ * CopyTagsToVolumes: true || false,
135
+ * DailyAutomaticBackupStartTime: "STRING_VALUE",
136
+ * DeploymentType: "SINGLE_AZ_1" || "SINGLE_AZ_2", // required
137
+ * ThroughputCapacity: Number("int"), // required
138
+ * WeeklyMaintenanceStartTime: "STRING_VALUE",
139
+ * DiskIopsConfiguration: {
140
+ * Mode: "AUTOMATIC" || "USER_PROVISIONED",
141
+ * Iops: Number("long"),
142
+ * },
143
+ * RootVolumeConfiguration: {
144
+ * RecordSizeKiB: Number("int"),
145
+ * DataCompressionType: "NONE" || "ZSTD" || "LZ4",
146
+ * NfsExports: [
147
+ * {
148
+ * ClientConfigurations: [ // required
149
+ * {
150
+ * Clients: "STRING_VALUE", // required
151
+ * Options: [ // required
152
+ * "STRING_VALUE",
153
+ * ],
154
+ * },
155
+ * ],
156
+ * },
157
+ * ],
158
+ * UserAndGroupQuotas: [
159
+ * {
160
+ * Type: "USER" || "GROUP", // required
161
+ * Id: Number("int"), // required
162
+ * StorageCapacityQuotaGiB: Number("int"), // required
163
+ * },
164
+ * ],
165
+ * CopyTagsToSnapshots: true || false,
166
+ * ReadOnly: true || false,
167
+ * },
168
+ * },
169
+ * StorageCapacity: Number("int"),
170
+ * };
61
171
  * const command = new CreateFileSystemFromBackupCommand(input);
62
172
  * const response = await client.send(command);
63
173
  * ```
@@ -53,6 +53,17 @@ export interface CreateSnapshotCommandOutput extends CreateSnapshotResponse, __M
53
53
  * import { FSxClient, CreateSnapshotCommand } from "@aws-sdk/client-fsx"; // ES Modules import
54
54
  * // const { FSxClient, CreateSnapshotCommand } = require("@aws-sdk/client-fsx"); // CommonJS import
55
55
  * const client = new FSxClient(config);
56
+ * const input = {
57
+ * ClientRequestToken: "STRING_VALUE",
58
+ * Name: "STRING_VALUE", // required
59
+ * VolumeId: "STRING_VALUE", // required
60
+ * Tags: [
61
+ * {
62
+ * Key: "STRING_VALUE", // required
63
+ * Value: "STRING_VALUE", // required
64
+ * },
65
+ * ],
66
+ * };
56
67
  * const command = new CreateSnapshotCommand(input);
57
68
  * const response = await client.send(command);
58
69
  * ```
@@ -26,6 +26,32 @@ export interface CreateStorageVirtualMachineCommandOutput extends CreateStorageV
26
26
  * import { FSxClient, CreateStorageVirtualMachineCommand } from "@aws-sdk/client-fsx"; // ES Modules import
27
27
  * // const { FSxClient, CreateStorageVirtualMachineCommand } = require("@aws-sdk/client-fsx"); // CommonJS import
28
28
  * const client = new FSxClient(config);
29
+ * const input = {
30
+ * ActiveDirectoryConfiguration: {
31
+ * NetBiosName: "STRING_VALUE", // required
32
+ * SelfManagedActiveDirectoryConfiguration: {
33
+ * DomainName: "STRING_VALUE", // required
34
+ * OrganizationalUnitDistinguishedName: "STRING_VALUE",
35
+ * FileSystemAdministratorsGroup: "STRING_VALUE",
36
+ * UserName: "STRING_VALUE", // required
37
+ * Password: "STRING_VALUE", // required
38
+ * DnsIps: [ // required
39
+ * "STRING_VALUE",
40
+ * ],
41
+ * },
42
+ * },
43
+ * ClientRequestToken: "STRING_VALUE",
44
+ * FileSystemId: "STRING_VALUE", // required
45
+ * Name: "STRING_VALUE", // required
46
+ * SvmAdminPassword: "STRING_VALUE",
47
+ * Tags: [
48
+ * {
49
+ * Key: "STRING_VALUE", // required
50
+ * Value: "STRING_VALUE", // required
51
+ * },
52
+ * ],
53
+ * RootVolumeSecurityStyle: "UNIX" || "NTFS" || "MIXED",
54
+ * };
29
55
  * const command = new CreateStorageVirtualMachineCommand(input);
30
56
  * const response = await client.send(command);
31
57
  * ```
@@ -26,6 +26,63 @@ export interface CreateVolumeCommandOutput extends CreateVolumeResponse, __Metad
26
26
  * import { FSxClient, CreateVolumeCommand } from "@aws-sdk/client-fsx"; // ES Modules import
27
27
  * // const { FSxClient, CreateVolumeCommand } = require("@aws-sdk/client-fsx"); // CommonJS import
28
28
  * const client = new FSxClient(config);
29
+ * const input = {
30
+ * ClientRequestToken: "STRING_VALUE",
31
+ * VolumeType: "ONTAP" || "OPENZFS", // required
32
+ * Name: "STRING_VALUE", // required
33
+ * OntapConfiguration: {
34
+ * JunctionPath: "STRING_VALUE",
35
+ * SecurityStyle: "UNIX" || "NTFS" || "MIXED",
36
+ * SizeInMegabytes: Number("int"), // required
37
+ * StorageEfficiencyEnabled: true || false,
38
+ * StorageVirtualMachineId: "STRING_VALUE", // required
39
+ * TieringPolicy: {
40
+ * CoolingPeriod: Number("int"),
41
+ * Name: "SNAPSHOT_ONLY" || "AUTO" || "ALL" || "NONE",
42
+ * },
43
+ * OntapVolumeType: "RW" || "DP",
44
+ * SnapshotPolicy: "STRING_VALUE",
45
+ * CopyTagsToBackups: true || false,
46
+ * },
47
+ * Tags: [
48
+ * {
49
+ * Key: "STRING_VALUE", // required
50
+ * Value: "STRING_VALUE", // required
51
+ * },
52
+ * ],
53
+ * OpenZFSConfiguration: {
54
+ * ParentVolumeId: "STRING_VALUE", // required
55
+ * StorageCapacityReservationGiB: Number("int"),
56
+ * StorageCapacityQuotaGiB: Number("int"),
57
+ * RecordSizeKiB: Number("int"),
58
+ * DataCompressionType: "NONE" || "ZSTD" || "LZ4",
59
+ * CopyTagsToSnapshots: true || false,
60
+ * OriginSnapshot: {
61
+ * SnapshotARN: "STRING_VALUE", // required
62
+ * CopyStrategy: "CLONE" || "FULL_COPY", // required
63
+ * },
64
+ * ReadOnly: true || false,
65
+ * NfsExports: [
66
+ * {
67
+ * ClientConfigurations: [ // required
68
+ * {
69
+ * Clients: "STRING_VALUE", // required
70
+ * Options: [ // required
71
+ * "STRING_VALUE",
72
+ * ],
73
+ * },
74
+ * ],
75
+ * },
76
+ * ],
77
+ * UserAndGroupQuotas: [
78
+ * {
79
+ * Type: "USER" || "GROUP", // required
80
+ * Id: Number("int"), // required
81
+ * StorageCapacityQuotaGiB: Number("int"), // required
82
+ * },
83
+ * ],
84
+ * },
85
+ * };
29
86
  * const command = new CreateVolumeCommand(input);
30
87
  * const response = await client.send(command);
31
88
  * ```
@@ -27,6 +27,31 @@ export interface CreateVolumeFromBackupCommandOutput extends CreateVolumeFromBac
27
27
  * import { FSxClient, CreateVolumeFromBackupCommand } from "@aws-sdk/client-fsx"; // ES Modules import
28
28
  * // const { FSxClient, CreateVolumeFromBackupCommand } = require("@aws-sdk/client-fsx"); // CommonJS import
29
29
  * const client = new FSxClient(config);
30
+ * const input = {
31
+ * BackupId: "STRING_VALUE", // required
32
+ * ClientRequestToken: "STRING_VALUE",
33
+ * Name: "STRING_VALUE", // required
34
+ * OntapConfiguration: {
35
+ * JunctionPath: "STRING_VALUE",
36
+ * SecurityStyle: "UNIX" || "NTFS" || "MIXED",
37
+ * SizeInMegabytes: Number("int"), // required
38
+ * StorageEfficiencyEnabled: true || false,
39
+ * StorageVirtualMachineId: "STRING_VALUE", // required
40
+ * TieringPolicy: {
41
+ * CoolingPeriod: Number("int"),
42
+ * Name: "SNAPSHOT_ONLY" || "AUTO" || "ALL" || "NONE",
43
+ * },
44
+ * OntapVolumeType: "RW" || "DP",
45
+ * SnapshotPolicy: "STRING_VALUE",
46
+ * CopyTagsToBackups: true || false,
47
+ * },
48
+ * Tags: [
49
+ * {
50
+ * Key: "STRING_VALUE", // required
51
+ * Value: "STRING_VALUE", // required
52
+ * },
53
+ * ],
54
+ * };
30
55
  * const command = new CreateVolumeFromBackupCommand(input);
31
56
  * const response = await client.send(command);
32
57
  * ```
@@ -33,6 +33,10 @@ export interface DeleteBackupCommandOutput extends DeleteBackupResponse, __Metad
33
33
  * import { FSxClient, DeleteBackupCommand } from "@aws-sdk/client-fsx"; // ES Modules import
34
34
  * // const { FSxClient, DeleteBackupCommand } = require("@aws-sdk/client-fsx"); // CommonJS import
35
35
  * const client = new FSxClient(config);
36
+ * const input = {
37
+ * BackupId: "STRING_VALUE", // required
38
+ * ClientRequestToken: "STRING_VALUE",
39
+ * };
36
40
  * const command = new DeleteBackupCommand(input);
37
41
  * const response = await client.send(command);
38
42
  * ```
@@ -32,6 +32,11 @@ export interface DeleteDataRepositoryAssociationCommandOutput extends DeleteData
32
32
  * import { FSxClient, DeleteDataRepositoryAssociationCommand } from "@aws-sdk/client-fsx"; // ES Modules import
33
33
  * // const { FSxClient, DeleteDataRepositoryAssociationCommand } = require("@aws-sdk/client-fsx"); // CommonJS import
34
34
  * const client = new FSxClient(config);
35
+ * const input = {
36
+ * AssociationId: "STRING_VALUE", // required
37
+ * ClientRequestToken: "STRING_VALUE",
38
+ * DeleteDataInFileSystem: true || false,
39
+ * };
35
40
  * const command = new DeleteDataRepositoryAssociationCommand(input);
36
41
  * const response = await client.send(command);
37
42
  * ```
@@ -37,6 +37,10 @@ export interface DeleteFileCacheCommandOutput extends DeleteFileCacheResponse, _
37
37
  * import { FSxClient, DeleteFileCacheCommand } from "@aws-sdk/client-fsx"; // ES Modules import
38
38
  * // const { FSxClient, DeleteFileCacheCommand } = require("@aws-sdk/client-fsx"); // CommonJS import
39
39
  * const client = new FSxClient(config);
40
+ * const input = {
41
+ * FileCacheId: "STRING_VALUE", // required
42
+ * ClientRequestToken: "STRING_VALUE",
43
+ * };
40
44
  * const command = new DeleteFileCacheCommand(input);
41
45
  * const response = await client.send(command);
42
46
  * ```
@@ -48,6 +48,40 @@ export interface DeleteFileSystemCommandOutput extends DeleteFileSystemResponse,
48
48
  * import { FSxClient, DeleteFileSystemCommand } from "@aws-sdk/client-fsx"; // ES Modules import
49
49
  * // const { FSxClient, DeleteFileSystemCommand } = require("@aws-sdk/client-fsx"); // CommonJS import
50
50
  * const client = new FSxClient(config);
51
+ * const input = {
52
+ * FileSystemId: "STRING_VALUE", // required
53
+ * ClientRequestToken: "STRING_VALUE",
54
+ * WindowsConfiguration: {
55
+ * SkipFinalBackup: true || false,
56
+ * FinalBackupTags: [
57
+ * {
58
+ * Key: "STRING_VALUE", // required
59
+ * Value: "STRING_VALUE", // required
60
+ * },
61
+ * ],
62
+ * },
63
+ * LustreConfiguration: {
64
+ * SkipFinalBackup: true || false,
65
+ * FinalBackupTags: [
66
+ * {
67
+ * Key: "STRING_VALUE", // required
68
+ * Value: "STRING_VALUE", // required
69
+ * },
70
+ * ],
71
+ * },
72
+ * OpenZFSConfiguration: {
73
+ * SkipFinalBackup: true || false,
74
+ * FinalBackupTags: [
75
+ * {
76
+ * Key: "STRING_VALUE", // required
77
+ * Value: "STRING_VALUE", // required
78
+ * },
79
+ * ],
80
+ * Options: [
81
+ * "DELETE_CHILD_VOLUMES_AND_SNAPSHOTS",
82
+ * ],
83
+ * },
84
+ * };
51
85
  * const command = new DeleteFileSystemCommand(input);
52
86
  * const response = await client.send(command);
53
87
  * ```
@@ -30,6 +30,10 @@ export interface DeleteSnapshotCommandOutput extends DeleteSnapshotResponse, __M
30
30
  * import { FSxClient, DeleteSnapshotCommand } from "@aws-sdk/client-fsx"; // ES Modules import
31
31
  * // const { FSxClient, DeleteSnapshotCommand } = require("@aws-sdk/client-fsx"); // CommonJS import
32
32
  * const client = new FSxClient(config);
33
+ * const input = {
34
+ * ClientRequestToken: "STRING_VALUE",
35
+ * SnapshotId: "STRING_VALUE", // required
36
+ * };
33
37
  * const command = new DeleteSnapshotCommand(input);
34
38
  * const response = await client.send(command);
35
39
  * ```
@@ -27,6 +27,10 @@ export interface DeleteStorageVirtualMachineCommandOutput extends DeleteStorageV
27
27
  * import { FSxClient, DeleteStorageVirtualMachineCommand } from "@aws-sdk/client-fsx"; // ES Modules import
28
28
  * // const { FSxClient, DeleteStorageVirtualMachineCommand } = require("@aws-sdk/client-fsx"); // CommonJS import
29
29
  * const client = new FSxClient(config);
30
+ * const input = {
31
+ * ClientRequestToken: "STRING_VALUE",
32
+ * StorageVirtualMachineId: "STRING_VALUE", // required
33
+ * };
30
34
  * const command = new DeleteStorageVirtualMachineCommand(input);
31
35
  * const response = await client.send(command);
32
36
  * ```
@@ -27,6 +27,24 @@ export interface DeleteVolumeCommandOutput extends DeleteVolumeResponse, __Metad
27
27
  * import { FSxClient, DeleteVolumeCommand } from "@aws-sdk/client-fsx"; // ES Modules import
28
28
  * // const { FSxClient, DeleteVolumeCommand } = require("@aws-sdk/client-fsx"); // CommonJS import
29
29
  * const client = new FSxClient(config);
30
+ * const input = {
31
+ * ClientRequestToken: "STRING_VALUE",
32
+ * VolumeId: "STRING_VALUE", // required
33
+ * OntapConfiguration: {
34
+ * SkipFinalBackup: true || false,
35
+ * FinalBackupTags: [
36
+ * {
37
+ * Key: "STRING_VALUE", // required
38
+ * Value: "STRING_VALUE", // required
39
+ * },
40
+ * ],
41
+ * },
42
+ * OpenZFSConfiguration: {
43
+ * Options: [
44
+ * "DELETE_CHILD_VOLUMES_AND_SNAPSHOTS",
45
+ * ],
46
+ * },
47
+ * };
30
48
  * const command = new DeleteVolumeCommand(input);
31
49
  * const response = await client.send(command);
32
50
  * ```
@@ -51,6 +51,21 @@ export interface DescribeBackupsCommandOutput extends DescribeBackupsResponse, _
51
51
  * import { FSxClient, DescribeBackupsCommand } from "@aws-sdk/client-fsx"; // ES Modules import
52
52
  * // const { FSxClient, DescribeBackupsCommand } = require("@aws-sdk/client-fsx"); // CommonJS import
53
53
  * const client = new FSxClient(config);
54
+ * const input = {
55
+ * BackupIds: [
56
+ * "STRING_VALUE",
57
+ * ],
58
+ * Filters: [
59
+ * {
60
+ * Name: "file-system-id" || "backup-type" || "file-system-type" || "volume-id" || "data-repository-type" || "file-cache-id" || "file-cache-type",
61
+ * Values: [
62
+ * "STRING_VALUE",
63
+ * ],
64
+ * },
65
+ * ],
66
+ * MaxResults: Number("int"),
67
+ * NextToken: "STRING_VALUE",
68
+ * };
54
69
  * const command = new DescribeBackupsCommand(input);
55
70
  * const response = await client.send(command);
56
71
  * ```
@@ -44,6 +44,21 @@ export interface DescribeDataRepositoryAssociationsCommandOutput extends Describ
44
44
  * import { FSxClient, DescribeDataRepositoryAssociationsCommand } from "@aws-sdk/client-fsx"; // ES Modules import
45
45
  * // const { FSxClient, DescribeDataRepositoryAssociationsCommand } = require("@aws-sdk/client-fsx"); // CommonJS import
46
46
  * const client = new FSxClient(config);
47
+ * const input = {
48
+ * AssociationIds: [
49
+ * "STRING_VALUE",
50
+ * ],
51
+ * Filters: [
52
+ * {
53
+ * Name: "file-system-id" || "backup-type" || "file-system-type" || "volume-id" || "data-repository-type" || "file-cache-id" || "file-cache-type",
54
+ * Values: [
55
+ * "STRING_VALUE",
56
+ * ],
57
+ * },
58
+ * ],
59
+ * MaxResults: Number("int"),
60
+ * NextToken: "STRING_VALUE",
61
+ * };
47
62
  * const command = new DescribeDataRepositoryAssociationsCommand(input);
48
63
  * const response = await client.send(command);
49
64
  * ```
@@ -35,6 +35,21 @@ export interface DescribeDataRepositoryTasksCommandOutput extends DescribeDataRe
35
35
  * import { FSxClient, DescribeDataRepositoryTasksCommand } from "@aws-sdk/client-fsx"; // ES Modules import
36
36
  * // const { FSxClient, DescribeDataRepositoryTasksCommand } = require("@aws-sdk/client-fsx"); // CommonJS import
37
37
  * const client = new FSxClient(config);
38
+ * const input = {
39
+ * TaskIds: [
40
+ * "STRING_VALUE",
41
+ * ],
42
+ * Filters: [
43
+ * {
44
+ * Name: "file-system-id" || "task-lifecycle" || "data-repository-association-id" || "file-cache-id",
45
+ * Values: [
46
+ * "STRING_VALUE",
47
+ * ],
48
+ * },
49
+ * ],
50
+ * MaxResults: Number("int"),
51
+ * NextToken: "STRING_VALUE",
52
+ * };
38
53
  * const command = new DescribeDataRepositoryTasksCommand(input);
39
54
  * const response = await client.send(command);
40
55
  * ```
@@ -53,6 +53,13 @@ export interface DescribeFileCachesCommandOutput extends DescribeFileCachesRespo
53
53
  * import { FSxClient, DescribeFileCachesCommand } from "@aws-sdk/client-fsx"; // ES Modules import
54
54
  * // const { FSxClient, DescribeFileCachesCommand } = require("@aws-sdk/client-fsx"); // CommonJS import
55
55
  * const client = new FSxClient(config);
56
+ * const input = {
57
+ * FileCacheIds: [
58
+ * "STRING_VALUE",
59
+ * ],
60
+ * MaxResults: Number("int"),
61
+ * NextToken: "STRING_VALUE",
62
+ * };
56
63
  * const command = new DescribeFileCachesCommand(input);
57
64
  * const response = await client.send(command);
58
65
  * ```
@@ -28,6 +28,12 @@ export interface DescribeFileSystemAliasesCommandOutput extends DescribeFileSyst
28
28
  * import { FSxClient, DescribeFileSystemAliasesCommand } from "@aws-sdk/client-fsx"; // ES Modules import
29
29
  * // const { FSxClient, DescribeFileSystemAliasesCommand } = require("@aws-sdk/client-fsx"); // CommonJS import
30
30
  * const client = new FSxClient(config);
31
+ * const input = {
32
+ * ClientRequestToken: "STRING_VALUE",
33
+ * FileSystemId: "STRING_VALUE", // required
34
+ * MaxResults: Number("int"),
35
+ * NextToken: "STRING_VALUE",
36
+ * };
31
37
  * const command = new DescribeFileSystemAliasesCommand(input);
32
38
  * const response = await client.send(command);
33
39
  * ```
@@ -53,6 +53,13 @@ export interface DescribeFileSystemsCommandOutput extends DescribeFileSystemsRes
53
53
  * import { FSxClient, DescribeFileSystemsCommand } from "@aws-sdk/client-fsx"; // ES Modules import
54
54
  * // const { FSxClient, DescribeFileSystemsCommand } = require("@aws-sdk/client-fsx"); // CommonJS import
55
55
  * const client = new FSxClient(config);
56
+ * const input = {
57
+ * FileSystemIds: [
58
+ * "STRING_VALUE",
59
+ * ],
60
+ * MaxResults: Number("int"),
61
+ * NextToken: "STRING_VALUE",
62
+ * };
56
63
  * const command = new DescribeFileSystemsCommand(input);
57
64
  * const response = await client.send(command);
58
65
  * ```
@@ -52,6 +52,21 @@ export interface DescribeSnapshotsCommandOutput extends DescribeSnapshotsRespons
52
52
  * import { FSxClient, DescribeSnapshotsCommand } from "@aws-sdk/client-fsx"; // ES Modules import
53
53
  * // const { FSxClient, DescribeSnapshotsCommand } = require("@aws-sdk/client-fsx"); // CommonJS import
54
54
  * const client = new FSxClient(config);
55
+ * const input = {
56
+ * SnapshotIds: [
57
+ * "STRING_VALUE",
58
+ * ],
59
+ * Filters: [
60
+ * {
61
+ * Name: "file-system-id" || "volume-id",
62
+ * Values: [
63
+ * "STRING_VALUE",
64
+ * ],
65
+ * },
66
+ * ],
67
+ * MaxResults: Number("int"),
68
+ * NextToken: "STRING_VALUE",
69
+ * };
55
70
  * const command = new DescribeSnapshotsCommand(input);
56
71
  * const response = await client.send(command);
57
72
  * ```
@@ -26,6 +26,21 @@ export interface DescribeStorageVirtualMachinesCommandOutput extends DescribeSto
26
26
  * import { FSxClient, DescribeStorageVirtualMachinesCommand } from "@aws-sdk/client-fsx"; // ES Modules import
27
27
  * // const { FSxClient, DescribeStorageVirtualMachinesCommand } = require("@aws-sdk/client-fsx"); // CommonJS import
28
28
  * const client = new FSxClient(config);
29
+ * const input = {
30
+ * StorageVirtualMachineIds: [
31
+ * "STRING_VALUE",
32
+ * ],
33
+ * Filters: [
34
+ * {
35
+ * Name: "file-system-id",
36
+ * Values: [
37
+ * "STRING_VALUE",
38
+ * ],
39
+ * },
40
+ * ],
41
+ * MaxResults: Number("int"),
42
+ * NextToken: "STRING_VALUE",
43
+ * };
29
44
  * const command = new DescribeStorageVirtualMachinesCommand(input);
30
45
  * const response = await client.send(command);
31
46
  * ```
@@ -27,6 +27,21 @@ export interface DescribeVolumesCommandOutput extends DescribeVolumesResponse, _
27
27
  * import { FSxClient, DescribeVolumesCommand } from "@aws-sdk/client-fsx"; // ES Modules import
28
28
  * // const { FSxClient, DescribeVolumesCommand } = require("@aws-sdk/client-fsx"); // CommonJS import
29
29
  * const client = new FSxClient(config);
30
+ * const input = {
31
+ * VolumeIds: [
32
+ * "STRING_VALUE",
33
+ * ],
34
+ * Filters: [
35
+ * {
36
+ * Name: "file-system-id" || "storage-virtual-machine-id",
37
+ * Values: [
38
+ * "STRING_VALUE",
39
+ * ],
40
+ * },
41
+ * ],
42
+ * MaxResults: Number("int"),
43
+ * NextToken: "STRING_VALUE",
44
+ * };
30
45
  * const command = new DescribeVolumesCommand(input);
31
46
  * const response = await client.send(command);
32
47
  * ```
@@ -34,6 +34,13 @@ export interface DisassociateFileSystemAliasesCommandOutput extends Disassociate
34
34
  * import { FSxClient, DisassociateFileSystemAliasesCommand } from "@aws-sdk/client-fsx"; // ES Modules import
35
35
  * // const { FSxClient, DisassociateFileSystemAliasesCommand } = require("@aws-sdk/client-fsx"); // CommonJS import
36
36
  * const client = new FSxClient(config);
37
+ * const input = {
38
+ * ClientRequestToken: "STRING_VALUE",
39
+ * FileSystemId: "STRING_VALUE", // required
40
+ * Aliases: [ // required
41
+ * "STRING_VALUE",
42
+ * ],
43
+ * };
37
44
  * const command = new DisassociateFileSystemAliasesCommand(input);
38
45
  * const response = await client.send(command);
39
46
  * ```
@@ -49,6 +49,11 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
49
49
  * import { FSxClient, ListTagsForResourceCommand } from "@aws-sdk/client-fsx"; // ES Modules import
50
50
  * // const { FSxClient, ListTagsForResourceCommand } = require("@aws-sdk/client-fsx"); // CommonJS import
51
51
  * const client = new FSxClient(config);
52
+ * const input = {
53
+ * ResourceARN: "STRING_VALUE", // required
54
+ * MaxResults: Number("int"),
55
+ * NextToken: "STRING_VALUE",
56
+ * };
52
57
  * const command = new ListTagsForResourceCommand(input);
53
58
  * const response = await client.send(command);
54
59
  * ```
@@ -27,6 +27,10 @@ export interface ReleaseFileSystemNfsV3LocksCommandOutput extends ReleaseFileSys
27
27
  * import { FSxClient, ReleaseFileSystemNfsV3LocksCommand } from "@aws-sdk/client-fsx"; // ES Modules import
28
28
  * // const { FSxClient, ReleaseFileSystemNfsV3LocksCommand } = require("@aws-sdk/client-fsx"); // CommonJS import
29
29
  * const client = new FSxClient(config);
30
+ * const input = {
31
+ * FileSystemId: "STRING_VALUE", // required
32
+ * ClientRequestToken: "STRING_VALUE",
33
+ * };
30
34
  * const command = new ReleaseFileSystemNfsV3LocksCommand(input);
31
35
  * const response = await client.send(command);
32
36
  * ```
@@ -27,6 +27,14 @@ export interface RestoreVolumeFromSnapshotCommandOutput extends RestoreVolumeFro
27
27
  * import { FSxClient, RestoreVolumeFromSnapshotCommand } from "@aws-sdk/client-fsx"; // ES Modules import
28
28
  * // const { FSxClient, RestoreVolumeFromSnapshotCommand } = require("@aws-sdk/client-fsx"); // CommonJS import
29
29
  * const client = new FSxClient(config);
30
+ * const input = {
31
+ * ClientRequestToken: "STRING_VALUE",
32
+ * VolumeId: "STRING_VALUE", // required
33
+ * SnapshotId: "STRING_VALUE", // required
34
+ * Options: [
35
+ * "DELETE_INTERMEDIATE_SNAPSHOTS" || "DELETE_CLONED_VOLUMES",
36
+ * ],
37
+ * };
30
38
  * const command = new RestoreVolumeFromSnapshotCommand(input);
31
39
  * const response = await client.send(command);
32
40
  * ```
@@ -26,6 +26,15 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
26
26
  * import { FSxClient, TagResourceCommand } from "@aws-sdk/client-fsx"; // ES Modules import
27
27
  * // const { FSxClient, TagResourceCommand } = require("@aws-sdk/client-fsx"); // CommonJS import
28
28
  * const client = new FSxClient(config);
29
+ * const input = {
30
+ * ResourceARN: "STRING_VALUE", // required
31
+ * Tags: [ // required
32
+ * {
33
+ * Key: "STRING_VALUE", // required
34
+ * Value: "STRING_VALUE", // required
35
+ * },
36
+ * ],
37
+ * };
29
38
  * const command = new TagResourceCommand(input);
30
39
  * const response = await client.send(command);
31
40
  * ```
@@ -26,6 +26,12 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
26
26
  * import { FSxClient, UntagResourceCommand } from "@aws-sdk/client-fsx"; // ES Modules import
27
27
  * // const { FSxClient, UntagResourceCommand } = require("@aws-sdk/client-fsx"); // CommonJS import
28
28
  * const client = new FSxClient(config);
29
+ * const input = {
30
+ * ResourceARN: "STRING_VALUE", // required
31
+ * TagKeys: [ // required
32
+ * "STRING_VALUE",
33
+ * ],
34
+ * };
29
35
  * const command = new UntagResourceCommand(input);
30
36
  * const response = await client.send(command);
31
37
  * ```
@@ -28,6 +28,23 @@ export interface UpdateDataRepositoryAssociationCommandOutput extends UpdateData
28
28
  * import { FSxClient, UpdateDataRepositoryAssociationCommand } from "@aws-sdk/client-fsx"; // ES Modules import
29
29
  * // const { FSxClient, UpdateDataRepositoryAssociationCommand } = require("@aws-sdk/client-fsx"); // CommonJS import
30
30
  * const client = new FSxClient(config);
31
+ * const input = {
32
+ * AssociationId: "STRING_VALUE", // required
33
+ * ClientRequestToken: "STRING_VALUE",
34
+ * ImportedFileChunkSize: Number("int"),
35
+ * S3: {
36
+ * AutoImportPolicy: {
37
+ * Events: [
38
+ * "NEW" || "CHANGED" || "DELETED",
39
+ * ],
40
+ * },
41
+ * AutoExportPolicy: {
42
+ * Events: [
43
+ * "NEW" || "CHANGED" || "DELETED",
44
+ * ],
45
+ * },
46
+ * },
47
+ * };
31
48
  * const command = new UpdateDataRepositoryAssociationCommand(input);
32
49
  * const response = await client.send(command);
33
50
  * ```
@@ -27,6 +27,13 @@ export interface UpdateFileCacheCommandOutput extends UpdateFileCacheResponse, _
27
27
  * import { FSxClient, UpdateFileCacheCommand } from "@aws-sdk/client-fsx"; // ES Modules import
28
28
  * // const { FSxClient, UpdateFileCacheCommand } = require("@aws-sdk/client-fsx"); // CommonJS import
29
29
  * const client = new FSxClient(config);
30
+ * const input = {
31
+ * FileCacheId: "STRING_VALUE", // required
32
+ * ClientRequestToken: "STRING_VALUE",
33
+ * LustreConfiguration: {
34
+ * WeeklyMaintenanceStartTime: "STRING_VALUE",
35
+ * },
36
+ * };
30
37
  * const command = new UpdateFileCacheCommand(input);
31
38
  * const response = await client.send(command);
32
39
  * ```
@@ -178,6 +178,75 @@ export interface UpdateFileSystemCommandOutput extends UpdateFileSystemResponse,
178
178
  * import { FSxClient, UpdateFileSystemCommand } from "@aws-sdk/client-fsx"; // ES Modules import
179
179
  * // const { FSxClient, UpdateFileSystemCommand } = require("@aws-sdk/client-fsx"); // CommonJS import
180
180
  * const client = new FSxClient(config);
181
+ * const input = {
182
+ * FileSystemId: "STRING_VALUE", // required
183
+ * ClientRequestToken: "STRING_VALUE",
184
+ * StorageCapacity: Number("int"),
185
+ * WindowsConfiguration: {
186
+ * WeeklyMaintenanceStartTime: "STRING_VALUE",
187
+ * DailyAutomaticBackupStartTime: "STRING_VALUE",
188
+ * AutomaticBackupRetentionDays: Number("int"),
189
+ * ThroughputCapacity: Number("int"),
190
+ * SelfManagedActiveDirectoryConfiguration: {
191
+ * UserName: "STRING_VALUE",
192
+ * Password: "STRING_VALUE",
193
+ * DnsIps: [
194
+ * "STRING_VALUE",
195
+ * ],
196
+ * },
197
+ * AuditLogConfiguration: {
198
+ * FileAccessAuditLogLevel: "DISABLED" || "SUCCESS_ONLY" || "FAILURE_ONLY" || "SUCCESS_AND_FAILURE", // required
199
+ * FileShareAccessAuditLogLevel: "DISABLED" || "SUCCESS_ONLY" || "FAILURE_ONLY" || "SUCCESS_AND_FAILURE", // required
200
+ * AuditLogDestination: "STRING_VALUE",
201
+ * },
202
+ * },
203
+ * LustreConfiguration: {
204
+ * WeeklyMaintenanceStartTime: "STRING_VALUE",
205
+ * DailyAutomaticBackupStartTime: "STRING_VALUE",
206
+ * AutomaticBackupRetentionDays: Number("int"),
207
+ * AutoImportPolicy: "NONE" || "NEW" || "NEW_CHANGED" || "NEW_CHANGED_DELETED",
208
+ * DataCompressionType: "NONE" || "LZ4",
209
+ * LogConfiguration: {
210
+ * Level: "DISABLED" || "WARN_ONLY" || "ERROR_ONLY" || "WARN_ERROR", // required
211
+ * Destination: "STRING_VALUE",
212
+ * },
213
+ * RootSquashConfiguration: {
214
+ * RootSquash: "STRING_VALUE",
215
+ * NoSquashNids: [
216
+ * "STRING_VALUE",
217
+ * ],
218
+ * },
219
+ * },
220
+ * OntapConfiguration: {
221
+ * AutomaticBackupRetentionDays: Number("int"),
222
+ * DailyAutomaticBackupStartTime: "STRING_VALUE",
223
+ * FsxAdminPassword: "STRING_VALUE",
224
+ * WeeklyMaintenanceStartTime: "STRING_VALUE",
225
+ * DiskIopsConfiguration: {
226
+ * Mode: "AUTOMATIC" || "USER_PROVISIONED",
227
+ * Iops: Number("long"),
228
+ * },
229
+ * ThroughputCapacity: Number("int"),
230
+ * AddRouteTableIds: [
231
+ * "STRING_VALUE",
232
+ * ],
233
+ * RemoveRouteTableIds: [
234
+ * "STRING_VALUE",
235
+ * ],
236
+ * },
237
+ * OpenZFSConfiguration: {
238
+ * AutomaticBackupRetentionDays: Number("int"),
239
+ * CopyTagsToBackups: true || false,
240
+ * CopyTagsToVolumes: true || false,
241
+ * DailyAutomaticBackupStartTime: "STRING_VALUE",
242
+ * ThroughputCapacity: Number("int"),
243
+ * WeeklyMaintenanceStartTime: "STRING_VALUE",
244
+ * DiskIopsConfiguration: {
245
+ * Mode: "AUTOMATIC" || "USER_PROVISIONED",
246
+ * Iops: Number("long"),
247
+ * },
248
+ * },
249
+ * };
181
250
  * const command = new UpdateFileSystemCommand(input);
182
251
  * const response = await client.send(command);
183
252
  * ```
@@ -26,6 +26,11 @@ export interface UpdateSnapshotCommandOutput extends UpdateSnapshotResponse, __M
26
26
  * import { FSxClient, UpdateSnapshotCommand } from "@aws-sdk/client-fsx"; // ES Modules import
27
27
  * // const { FSxClient, UpdateSnapshotCommand } = require("@aws-sdk/client-fsx"); // CommonJS import
28
28
  * const client = new FSxClient(config);
29
+ * const input = {
30
+ * ClientRequestToken: "STRING_VALUE",
31
+ * Name: "STRING_VALUE", // required
32
+ * SnapshotId: "STRING_VALUE", // required
33
+ * };
29
34
  * const command = new UpdateSnapshotCommand(input);
30
35
  * const response = await client.send(command);
31
36
  * ```
@@ -26,6 +26,20 @@ export interface UpdateStorageVirtualMachineCommandOutput extends UpdateStorageV
26
26
  * import { FSxClient, UpdateStorageVirtualMachineCommand } from "@aws-sdk/client-fsx"; // ES Modules import
27
27
  * // const { FSxClient, UpdateStorageVirtualMachineCommand } = require("@aws-sdk/client-fsx"); // CommonJS import
28
28
  * const client = new FSxClient(config);
29
+ * const input = {
30
+ * ActiveDirectoryConfiguration: {
31
+ * SelfManagedActiveDirectoryConfiguration: {
32
+ * UserName: "STRING_VALUE",
33
+ * Password: "STRING_VALUE",
34
+ * DnsIps: [
35
+ * "STRING_VALUE",
36
+ * ],
37
+ * },
38
+ * },
39
+ * ClientRequestToken: "STRING_VALUE",
40
+ * StorageVirtualMachineId: "STRING_VALUE", // required
41
+ * SvmAdminPassword: "STRING_VALUE",
42
+ * };
29
43
  * const command = new UpdateStorageVirtualMachineCommand(input);
30
44
  * const response = await client.send(command);
31
45
  * ```
@@ -26,6 +26,49 @@ export interface UpdateVolumeCommandOutput extends UpdateVolumeResponse, __Metad
26
26
  * import { FSxClient, UpdateVolumeCommand } from "@aws-sdk/client-fsx"; // ES Modules import
27
27
  * // const { FSxClient, UpdateVolumeCommand } = require("@aws-sdk/client-fsx"); // CommonJS import
28
28
  * const client = new FSxClient(config);
29
+ * const input = {
30
+ * ClientRequestToken: "STRING_VALUE",
31
+ * VolumeId: "STRING_VALUE", // required
32
+ * OntapConfiguration: {
33
+ * JunctionPath: "STRING_VALUE",
34
+ * SecurityStyle: "UNIX" || "NTFS" || "MIXED",
35
+ * SizeInMegabytes: Number("int"),
36
+ * StorageEfficiencyEnabled: true || false,
37
+ * TieringPolicy: {
38
+ * CoolingPeriod: Number("int"),
39
+ * Name: "SNAPSHOT_ONLY" || "AUTO" || "ALL" || "NONE",
40
+ * },
41
+ * SnapshotPolicy: "STRING_VALUE",
42
+ * CopyTagsToBackups: true || false,
43
+ * },
44
+ * Name: "STRING_VALUE",
45
+ * OpenZFSConfiguration: {
46
+ * StorageCapacityReservationGiB: Number("int"),
47
+ * StorageCapacityQuotaGiB: Number("int"),
48
+ * RecordSizeKiB: Number("int"),
49
+ * DataCompressionType: "NONE" || "ZSTD" || "LZ4",
50
+ * NfsExports: [
51
+ * {
52
+ * ClientConfigurations: [ // required
53
+ * {
54
+ * Clients: "STRING_VALUE", // required
55
+ * Options: [ // required
56
+ * "STRING_VALUE",
57
+ * ],
58
+ * },
59
+ * ],
60
+ * },
61
+ * ],
62
+ * UserAndGroupQuotas: [
63
+ * {
64
+ * Type: "USER" || "GROUP", // required
65
+ * Id: Number("int"), // required
66
+ * StorageCapacityQuotaGiB: Number("int"), // required
67
+ * },
68
+ * ],
69
+ * ReadOnly: true || false,
70
+ * },
71
+ * };
29
72
  * const command = new UpdateVolumeCommand(input);
30
73
  * const response = await client.send(command);
31
74
  * ```
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-fsx",
3
3
  "description": "AWS SDK for JavaScript Fsx Client for Node.js, Browser and React Native",
4
- "version": "3.298.0",
4
+ "version": "3.300.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,23 +21,23 @@
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.298.0",
25
- "@aws-sdk/config-resolver": "3.296.0",
26
- "@aws-sdk/credential-provider-node": "3.298.0",
24
+ "@aws-sdk/client-sts": "3.300.0",
25
+ "@aws-sdk/config-resolver": "3.300.0",
26
+ "@aws-sdk/credential-provider-node": "3.300.0",
27
27
  "@aws-sdk/fetch-http-handler": "3.296.0",
28
28
  "@aws-sdk/hash-node": "3.296.0",
29
29
  "@aws-sdk/invalid-dependency": "3.296.0",
30
30
  "@aws-sdk/middleware-content-length": "3.296.0",
31
- "@aws-sdk/middleware-endpoint": "3.296.0",
31
+ "@aws-sdk/middleware-endpoint": "3.299.0",
32
32
  "@aws-sdk/middleware-host-header": "3.296.0",
33
33
  "@aws-sdk/middleware-logger": "3.296.0",
34
34
  "@aws-sdk/middleware-recursion-detection": "3.296.0",
35
- "@aws-sdk/middleware-retry": "3.296.0",
35
+ "@aws-sdk/middleware-retry": "3.300.0",
36
36
  "@aws-sdk/middleware-serde": "3.296.0",
37
- "@aws-sdk/middleware-signing": "3.296.0",
37
+ "@aws-sdk/middleware-signing": "3.299.0",
38
38
  "@aws-sdk/middleware-stack": "3.296.0",
39
- "@aws-sdk/middleware-user-agent": "3.296.0",
40
- "@aws-sdk/node-config-provider": "3.296.0",
39
+ "@aws-sdk/middleware-user-agent": "3.299.0",
40
+ "@aws-sdk/node-config-provider": "3.300.0",
41
41
  "@aws-sdk/node-http-handler": "3.296.0",
42
42
  "@aws-sdk/protocol-http": "3.296.0",
43
43
  "@aws-sdk/smithy-client": "3.296.0",
@@ -47,11 +47,11 @@
47
47
  "@aws-sdk/util-body-length-browser": "3.295.0",
48
48
  "@aws-sdk/util-body-length-node": "3.295.0",
49
49
  "@aws-sdk/util-defaults-mode-browser": "3.296.0",
50
- "@aws-sdk/util-defaults-mode-node": "3.296.0",
50
+ "@aws-sdk/util-defaults-mode-node": "3.300.0",
51
51
  "@aws-sdk/util-endpoints": "3.296.0",
52
52
  "@aws-sdk/util-retry": "3.296.0",
53
- "@aws-sdk/util-user-agent-browser": "3.296.0",
54
- "@aws-sdk/util-user-agent-node": "3.296.0",
53
+ "@aws-sdk/util-user-agent-browser": "3.299.0",
54
+ "@aws-sdk/util-user-agent-node": "3.300.0",
55
55
  "@aws-sdk/util-utf8": "3.295.0",
56
56
  "tslib": "^2.5.0",
57
57
  "uuid": "^8.3.2"