@aws-sdk/client-fsx 3.744.0 → 3.747.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/index.js +1 -0
- package/dist-es/protocols/Aws_json1_1.js +1 -0
- package/dist-types/commands/CancelDataRepositoryTaskCommand.d.ts +1 -1
- package/dist-types/commands/CreateFileCacheCommand.d.ts +1 -1
- package/dist-types/commands/UpdateFileSystemCommand.d.ts +6 -0
- package/dist-types/models/models_0.d.ts +15 -9
- package/dist-types/ts3.4/models/models_0.d.ts +1 -0
- package/package.json +1 -1
package/dist-cjs/index.js
CHANGED
|
@@ -3399,6 +3399,7 @@ var se_UpdateFileSystemRequest = /* @__PURE__ */ __name((input, context) => {
|
|
|
3399
3399
|
return (0, import_smithy_client.take)(input, {
|
|
3400
3400
|
ClientRequestToken: [true, (_) => _ ?? (0, import_uuid.v4)()],
|
|
3401
3401
|
FileSystemId: [],
|
|
3402
|
+
FileSystemTypeVersion: [],
|
|
3402
3403
|
LustreConfiguration: import_smithy_client._json,
|
|
3403
3404
|
OntapConfiguration: import_smithy_client._json,
|
|
3404
3405
|
OpenZFSConfiguration: import_smithy_client._json,
|
|
@@ -1541,6 +1541,7 @@ const se_UpdateFileSystemRequest = (input, context) => {
|
|
|
1541
1541
|
return take(input, {
|
|
1542
1542
|
ClientRequestToken: [true, (_) => _ ?? generateIdempotencyToken()],
|
|
1543
1543
|
FileSystemId: [],
|
|
1544
|
+
FileSystemTypeVersion: [],
|
|
1544
1545
|
LustreConfiguration: _json,
|
|
1545
1546
|
OntapConfiguration: _json,
|
|
1546
1547
|
OpenZFSConfiguration: _json,
|
|
@@ -28,7 +28,7 @@ declare const CancelDataRepositoryTaskCommand_base: {
|
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
30
|
* <p>Cancels an existing Amazon FSx for Lustre data repository task if that task is in either the
|
|
31
|
-
* <code>PENDING</code> or <code>EXECUTING</code> state. When you cancel
|
|
31
|
+
* <code>PENDING</code> or <code>EXECUTING</code> state. When you cancel an export task, Amazon FSx
|
|
32
32
|
* does the following.</p>
|
|
33
33
|
* <ul>
|
|
34
34
|
* <li>
|
|
@@ -38,7 +38,7 @@ declare const CreateFileCacheCommand_base: {
|
|
|
38
38
|
* <code>CreateFileCache</code> does the following: </p>
|
|
39
39
|
* <ul>
|
|
40
40
|
* <li>
|
|
41
|
-
* <p>Creates a new, empty Amazon File Cache
|
|
41
|
+
* <p>Creates a new, empty Amazon File Cache resource with an assigned ID, and
|
|
42
42
|
* an initial lifecycle state of <code>CREATING</code>.</p>
|
|
43
43
|
* </li>
|
|
44
44
|
* <li>
|
|
@@ -103,6 +103,11 @@ declare const UpdateFileSystemCommand_base: {
|
|
|
103
103
|
* </li>
|
|
104
104
|
* <li>
|
|
105
105
|
* <p>
|
|
106
|
+
* <code>FileSystemTypeVersion</code>
|
|
107
|
+
* </p>
|
|
108
|
+
* </li>
|
|
109
|
+
* <li>
|
|
110
|
+
* <p>
|
|
106
111
|
* <code>LogConfiguration</code>
|
|
107
112
|
* </p>
|
|
108
113
|
* </li>
|
|
@@ -349,6 +354,7 @@ declare const UpdateFileSystemCommand_base: {
|
|
|
349
354
|
* },
|
|
350
355
|
* },
|
|
351
356
|
* StorageType: "SSD" || "HDD" || "INTELLIGENT_TIERING",
|
|
357
|
+
* FileSystemTypeVersion: "STRING_VALUE",
|
|
352
358
|
* };
|
|
353
359
|
* const command = new UpdateFileSystemCommand(input);
|
|
354
360
|
* const response = await client.send(command);
|
|
@@ -2244,7 +2244,7 @@ export interface OpenZFSVolumeConfiguration {
|
|
|
2244
2244
|
*/
|
|
2245
2245
|
StorageCapacityReservationGiB?: number | undefined;
|
|
2246
2246
|
/**
|
|
2247
|
-
* <p>The maximum amount of storage in
|
|
2247
|
+
* <p>The maximum amount of storage in gibibytes (GiB) that the volume can use from its
|
|
2248
2248
|
* parent. You can specify a quota larger than the storage on the parent volume.</p>
|
|
2249
2249
|
* @public
|
|
2250
2250
|
*/
|
|
@@ -6091,10 +6091,9 @@ export interface CreateFileSystemFromBackupRequest {
|
|
|
6091
6091
|
* <p>Sets the version for the Amazon FSx for Lustre file system that you're
|
|
6092
6092
|
* creating from a backup. Valid values are <code>2.10</code>, <code>2.12</code>,
|
|
6093
6093
|
* and <code>2.15</code>.</p>
|
|
6094
|
-
* <p>You
|
|
6095
|
-
*
|
|
6096
|
-
*
|
|
6097
|
-
* value must match the backup's <code>FileSystemTypeVersion</code> setting.</p>
|
|
6094
|
+
* <p>You can enter a Lustre version that is newer than the backup's
|
|
6095
|
+
* <code>FileSystemTypeVersion</code> setting. If you don't enter a newer Lustre version,
|
|
6096
|
+
* it defaults to the backup's setting.</p>
|
|
6098
6097
|
* @public
|
|
6099
6098
|
*/
|
|
6100
6099
|
FileSystemTypeVersion?: string | undefined;
|
|
@@ -6111,7 +6110,7 @@ export interface CreateFileSystemFromBackupRequest {
|
|
|
6111
6110
|
* parameter, the default is the backup's <code>StorageCapacity</code> value.</p>
|
|
6112
6111
|
* <p>If used to create a file system other than OpenZFS, you must provide a value
|
|
6113
6112
|
* that matches the backup's <code>StorageCapacity</code> value. If you provide any
|
|
6114
|
-
* other value, Amazon FSx responds with
|
|
6113
|
+
* other value, Amazon FSx responds with an HTTP status code 400 Bad Request. </p>
|
|
6115
6114
|
* @public
|
|
6116
6115
|
*/
|
|
6117
6116
|
StorageCapacity?: number | undefined;
|
|
@@ -6798,7 +6797,7 @@ export interface CreateOpenZFSVolumeConfiguration {
|
|
|
6798
6797
|
StorageCapacityQuotaGiB?: number | undefined;
|
|
6799
6798
|
/**
|
|
6800
6799
|
* <p>Specifies the suggested block size for a volume in a ZFS dataset, in kibibytes (KiB).
|
|
6801
|
-
* For file systems using the Intelligent-Tiering storage class, valid values are 128, 256, 512, 1024, 2048, or 4096 KiB, with a default of
|
|
6800
|
+
* For file systems using the Intelligent-Tiering storage class, valid values are 128, 256, 512, 1024, 2048, or 4096 KiB, with a default of 1024 KiB.
|
|
6802
6801
|
* For all other file systems, valid values are 4, 8, 16, 32, 64, 128, 256, 512, or 1024 KiB, with a default of 128 KiB.
|
|
6803
6802
|
* We recommend using the default setting for the majority of use cases. Generally, workloads that write in fixed small or large record sizes may benefit from setting a custom record size, like database workloads (small record size) or media streaming workloads (large record size).
|
|
6804
6803
|
* For additional guidance on when to set a custom record size, see
|
|
@@ -7719,7 +7718,7 @@ export declare const DataRepositoryTaskFilterName: {
|
|
|
7719
7718
|
*/
|
|
7720
7719
|
export type DataRepositoryTaskFilterName = (typeof DataRepositoryTaskFilterName)[keyof typeof DataRepositoryTaskFilterName];
|
|
7721
7720
|
/**
|
|
7722
|
-
* <p>(Optional) An array of filter objects you can use to filter the response of data repository tasks you will see in the
|
|
7721
|
+
* <p>(Optional) An array of filter objects you can use to filter the response of data repository tasks you will see in the response.
|
|
7723
7722
|
* You can filter the tasks returned in the response by one or more file system IDs, task lifecycles, and by task type.
|
|
7724
7723
|
* A filter object consists of a filter <code>Name</code>, and one or more <code>Values</code> for the filter.</p>
|
|
7725
7724
|
* @public
|
|
@@ -8827,7 +8826,7 @@ export interface UpdateFileSystemOntapConfiguration {
|
|
|
8827
8826
|
* <p>Update the password for the <code>fsxadmin</code> user by entering a new password.
|
|
8828
8827
|
* You use the <code>fsxadmin</code> user to access the NetApp ONTAP CLI and REST API to manage your file system resources.
|
|
8829
8828
|
* For more information, see
|
|
8830
|
-
* <a href="https://docs.aws.amazon.com/fsx/latest/ONTAPGuide/managing-resources-ontap-apps.html">Managing resources using NetApp
|
|
8829
|
+
* <a href="https://docs.aws.amazon.com/fsx/latest/ONTAPGuide/managing-resources-ontap-apps.html">Managing resources using NetApp Application</a>.</p>
|
|
8831
8830
|
* @public
|
|
8832
8831
|
*/
|
|
8833
8832
|
FsxAdminPassword?: string | undefined;
|
|
@@ -9204,6 +9203,13 @@ export interface UpdateFileSystemRequest {
|
|
|
9204
9203
|
* @public
|
|
9205
9204
|
*/
|
|
9206
9205
|
StorageType?: StorageType | undefined;
|
|
9206
|
+
/**
|
|
9207
|
+
* <p>The Lustre version you are updating an FSx for Lustre file system to.
|
|
9208
|
+
* Valid values are <code>2.12</code> and <code>2.15</code>. The value you choose must be
|
|
9209
|
+
* newer than the file system's current Lustre version.</p>
|
|
9210
|
+
* @public
|
|
9211
|
+
*/
|
|
9212
|
+
FileSystemTypeVersion?: string | undefined;
|
|
9207
9213
|
}
|
|
9208
9214
|
/**
|
|
9209
9215
|
* @public
|
|
@@ -1759,6 +1759,7 @@ export interface UpdateFileSystemRequest {
|
|
|
1759
1759
|
OntapConfiguration?: UpdateFileSystemOntapConfiguration | undefined;
|
|
1760
1760
|
OpenZFSConfiguration?: UpdateFileSystemOpenZFSConfiguration | undefined;
|
|
1761
1761
|
StorageType?: StorageType | undefined;
|
|
1762
|
+
FileSystemTypeVersion?: string | undefined;
|
|
1762
1763
|
}
|
|
1763
1764
|
export interface UpdateSharedVpcConfigurationRequest {
|
|
1764
1765
|
EnableFsxRouteTableUpdatesFromParticipantAccounts?: string | undefined;
|
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.
|
|
4
|
+
"version": "3.747.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-fsx",
|