@aws-sdk/client-fsx 3.395.0 → 3.402.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/runtimeExtensions.js +5 -5
- package/dist-es/runtimeExtensions.js +5 -5
- package/dist-types/commands/CreateDataRepositoryAssociationCommand.d.ts +1 -1
- package/dist-types/commands/CreateDataRepositoryTaskCommand.d.ts +1 -1
- package/dist-types/commands/DeleteDataRepositoryAssociationCommand.d.ts +1 -1
- package/dist-types/commands/DeleteFileSystemCommand.d.ts +14 -0
- package/dist-types/commands/DescribeDataRepositoryAssociationsCommand.d.ts +1 -1
- package/dist-types/commands/UpdateDataRepositoryAssociationCommand.d.ts +1 -1
- package/dist-types/commands/UpdateFileSystemCommand.d.ts +10 -0
- package/dist-types/extensionConfiguration.d.ts +6 -0
- package/dist-types/models/models_0.d.ts +58 -51
- package/dist-types/runtimeExtensions.d.ts +2 -2
- package/dist-types/ts3.4/extensionConfiguration.d.ts +3 -0
- package/dist-types/ts3.4/runtimeExtensions.d.ts +2 -2
- package/package.json +29 -29
- package/dist-types/clientConfiguration.d.ts +0 -6
- package/dist-types/ts3.4/clientConfiguration.d.ts +0 -2
- /package/dist-cjs/{clientConfiguration.js → extensionConfiguration.js} +0 -0
- /package/dist-es/{clientConfiguration.js → extensionConfiguration.js} +0 -0
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.resolveRuntimeExtensions = void 0;
|
|
4
|
-
const
|
|
4
|
+
const smithy_client_1 = require("@smithy/smithy-client");
|
|
5
5
|
const asPartial = (t) => t;
|
|
6
6
|
const resolveRuntimeExtensions = (runtimeConfig, extensions) => {
|
|
7
|
-
const
|
|
8
|
-
...asPartial((0,
|
|
7
|
+
const extensionConfiguration = {
|
|
8
|
+
...asPartial((0, smithy_client_1.getDefaultExtensionConfiguration)(runtimeConfig)),
|
|
9
9
|
};
|
|
10
|
-
extensions.forEach((extension) => extension.
|
|
10
|
+
extensions.forEach((extension) => extension.configure(extensionConfiguration));
|
|
11
11
|
return {
|
|
12
12
|
...runtimeConfig,
|
|
13
|
-
...(0,
|
|
13
|
+
...(0, smithy_client_1.resolveDefaultRuntimeConfig)(extensionConfiguration),
|
|
14
14
|
};
|
|
15
15
|
};
|
|
16
16
|
exports.resolveRuntimeExtensions = resolveRuntimeExtensions;
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client";
|
|
2
2
|
const asPartial = (t) => t;
|
|
3
3
|
export const resolveRuntimeExtensions = (runtimeConfig, extensions) => {
|
|
4
|
-
const
|
|
5
|
-
...asPartial(
|
|
4
|
+
const extensionConfiguration = {
|
|
5
|
+
...asPartial(getDefaultExtensionConfiguration(runtimeConfig)),
|
|
6
6
|
};
|
|
7
|
-
extensions.forEach((extension) => extension.
|
|
7
|
+
extensions.forEach((extension) => extension.configure(extensionConfiguration));
|
|
8
8
|
return {
|
|
9
9
|
...runtimeConfig,
|
|
10
|
-
...resolveDefaultRuntimeConfig(
|
|
10
|
+
...resolveDefaultRuntimeConfig(extensionConfiguration),
|
|
11
11
|
};
|
|
12
12
|
};
|
|
@@ -27,7 +27,7 @@ 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
|
-
* on all FSx for Lustre 2.12 and
|
|
30
|
+
* on all FSx for Lustre 2.12 and 2.15 file systems, excluding
|
|
31
31
|
* <code>scratch_1</code> deployment type.</p>
|
|
32
32
|
* <p>Each data repository association must have a unique Amazon FSx file
|
|
33
33
|
* system directory and a unique S3 bucket or prefix associated with it. You
|
|
@@ -31,7 +31,7 @@ export interface CreateDataRepositoryTaskCommandOutput extends CreateDataReposit
|
|
|
31
31
|
* task is exporting any data and metadata changes, including POSIX metadata, to files, directories,
|
|
32
32
|
* and symbolic links (symlinks) from your FSx file system to a linked data repository.</p>
|
|
33
33
|
* <p>You use release data repository tasks to release data from your file system for files that
|
|
34
|
-
* are
|
|
34
|
+
* are exported to S3. The metadata of released files remains on the file system so users or applications
|
|
35
35
|
* can still access released files by reading the files again, which will restore data from
|
|
36
36
|
* Amazon S3 to the FSx for Lustre file system.</p>
|
|
37
37
|
* <p>To learn more about data repository tasks, see
|
|
@@ -28,7 +28,7 @@ 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 on all FSx for Lustre 2.12 and
|
|
31
|
+
* associations are supported on all FSx for Lustre 2.12 and 2.15 file
|
|
32
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.
|
|
@@ -31,6 +31,20 @@ export interface DeleteFileSystemCommandOutput extends DeleteFileSystemResponse,
|
|
|
31
31
|
* <p>By default, when you delete an Amazon FSx for Windows File Server file system,
|
|
32
32
|
* a final backup is created upon deletion. This final backup isn't subject to the file
|
|
33
33
|
* system's retention policy, and must be manually deleted.</p>
|
|
34
|
+
* <p>To delete an Amazon FSx for Lustre file system, first
|
|
35
|
+
* <a href="https://docs.aws.amazon.com/fsx/latest/LustreGuide/unmounting-fs.html">unmount</a>
|
|
36
|
+
* it from every connected Amazon EC2 instance, then provide a <code>FileSystemId</code>
|
|
37
|
+
* value to the <code>DeleFileSystem</code> operation. By default, Amazon FSx will not
|
|
38
|
+
* take a final backup when the <code>DeleteFileSystem</code> operation is invoked. On file systems
|
|
39
|
+
* not linked to an Amazon S3 bucket, set <code>SkipFinalBackup</code> to <code>false</code>
|
|
40
|
+
* to take a final backup of the file system you are deleting. Backups cannot be enabled on S3-linked
|
|
41
|
+
* file systems. To ensure all of your data is written back to S3 before deleting your file system,
|
|
42
|
+
* you can either monitor for the
|
|
43
|
+
* <a href="https://docs.aws.amazon.com/fsx/latest/LustreGuide/monitoring-cloudwatch.html#auto-import-export-metrics">AgeOfOldestQueuedMessage</a>
|
|
44
|
+
* metric to be zero (if using automatic export) or you can run an
|
|
45
|
+
* <a href="https://docs.aws.amazon.com/fsx/latest/LustreGuide/export-data-repo-task-dra.html">export data repository task</a>.
|
|
46
|
+
* If you have automatic export enabled and want to use an export data repository task, you have
|
|
47
|
+
* to disable automatic export before executing the export data repository task.</p>
|
|
34
48
|
* <p>The <code>DeleteFileSystem</code> operation returns while the file system has the
|
|
35
49
|
* <code>DELETING</code> status. You can check the file system deletion status by
|
|
36
50
|
* calling the <a href="https://docs.aws.amazon.com/fsx/latest/APIReference/API_DescribeFileSystems.html">DescribeFileSystems</a> operation, which returns a list of file systems in your
|
|
@@ -27,7 +27,7 @@ export interface DescribeDataRepositoryAssociationsCommandOutput extends Describ
|
|
|
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
29
|
* associations are supported on Amazon File Cache resources and all FSx for Lustre
|
|
30
|
-
* 2.12 and
|
|
30
|
+
* 2.12 and 2,15 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
|
|
@@ -25,7 +25,7 @@ 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 on all FSx for Lustre 2.12 and
|
|
28
|
+
* are supported on all FSx for Lustre 2.12 and 2.15 file systems,
|
|
29
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.
|
|
@@ -172,6 +172,11 @@ export interface UpdateFileSystemCommandOutput extends UpdateFileSystemResponse,
|
|
|
172
172
|
* <ul>
|
|
173
173
|
* <li>
|
|
174
174
|
* <p>
|
|
175
|
+
* <code>AddRouteTableIds</code>
|
|
176
|
+
* </p>
|
|
177
|
+
* </li>
|
|
178
|
+
* <li>
|
|
179
|
+
* <p>
|
|
175
180
|
* <code>AutomaticBackupRetentionDays</code>
|
|
176
181
|
* </p>
|
|
177
182
|
* </li>
|
|
@@ -197,6 +202,11 @@ export interface UpdateFileSystemCommandOutput extends UpdateFileSystemResponse,
|
|
|
197
202
|
* </li>
|
|
198
203
|
* <li>
|
|
199
204
|
* <p>
|
|
205
|
+
* <code>RemoveRouteTableIds</code>
|
|
206
|
+
* </p>
|
|
207
|
+
* </li>
|
|
208
|
+
* <li>
|
|
209
|
+
* <p>
|
|
200
210
|
* <code>StorageCapacity</code>
|
|
201
211
|
* </p>
|
|
202
212
|
* </li>
|
|
@@ -487,9 +487,9 @@ export interface LustreFileSystemConfiguration {
|
|
|
487
487
|
* throughput capacity than <code>SCRATCH_1</code>.</p>
|
|
488
488
|
* <p>The <code>PERSISTENT_1</code> and <code>PERSISTENT_2</code> deployment type is used
|
|
489
489
|
* for longer-term storage and workloads and encryption of data in transit.
|
|
490
|
-
* <code>PERSISTENT_2</code>
|
|
491
|
-
*
|
|
492
|
-
*
|
|
490
|
+
* <code>PERSISTENT_2</code> offers higher <code>PerUnitStorageThroughput</code>
|
|
491
|
+
* (up to 1000 MB/s/TiB) along with a lower minimum storage capacity requirement (600 GiB).
|
|
492
|
+
* To learn more about FSx for Lustre deployment types, see <a href="https://docs.aws.amazon.com/fsx/latest/LustreGuide/lustre-deployment-types.html">
|
|
493
493
|
* FSx for Lustre deployment options</a>.</p>
|
|
494
494
|
* <p>The default is <code>SCRATCH_1</code>.</p>
|
|
495
495
|
*/
|
|
@@ -2965,7 +2965,7 @@ export interface NFSDataRepositoryConfiguration {
|
|
|
2965
2965
|
* </li>
|
|
2966
2966
|
* </ul>
|
|
2967
2967
|
* <p>Data repository associations are supported on Amazon File Cache resources and
|
|
2968
|
-
* all FSx for Lustre 2.12 and
|
|
2968
|
+
* all FSx for Lustre 2.12 and 2.15 file systems, excluding
|
|
2969
2969
|
* <code>scratch_1</code> deployment type.</p>
|
|
2970
2970
|
*/
|
|
2971
2971
|
export interface DataRepositoryAssociation {
|
|
@@ -3196,9 +3196,10 @@ export type Unit = (typeof Unit)[keyof typeof Unit];
|
|
|
3196
3196
|
/**
|
|
3197
3197
|
* @public
|
|
3198
3198
|
* <p>Defines the minimum amount of time since last access for a
|
|
3199
|
-
* file to be eligible for release. Only
|
|
3200
|
-
* last accessed or modified before
|
|
3201
|
-
* to be released from the
|
|
3199
|
+
* file to be eligible for release. Only files that have been
|
|
3200
|
+
* exported to S3 and that were last accessed or modified before
|
|
3201
|
+
* this point-in-time are eligible to be released from the
|
|
3202
|
+
* Amazon FSx for Lustre file system.</p>
|
|
3202
3203
|
*/
|
|
3203
3204
|
export interface DurationSinceLastAccess {
|
|
3204
3205
|
/**
|
|
@@ -3212,13 +3213,13 @@ export interface DurationSinceLastAccess {
|
|
|
3212
3213
|
/**
|
|
3213
3214
|
* @public
|
|
3214
3215
|
* <p>An integer that represents the minimum amount of time (in days)
|
|
3215
|
-
* since a file was last accessed in the file system. Only
|
|
3216
|
+
* since a file was last accessed in the file system. Only exported files
|
|
3216
3217
|
* with a <code>MAX(atime, ctime, mtime)</code> timestamp that is more than
|
|
3217
3218
|
* this amount of time in the past (relative to the task create time)
|
|
3218
3219
|
* will be released. The default of <code>Value</code> is <code>0</code>.
|
|
3219
3220
|
* This is a required parameter.</p>
|
|
3220
3221
|
* <note>
|
|
3221
|
-
* <p>If an
|
|
3222
|
+
* <p>If an exported file meets the last accessed time criteria,
|
|
3222
3223
|
* its file or directory path must also be specified in the <code>Paths</code>
|
|
3223
3224
|
* parameter of the operation
|
|
3224
3225
|
* in order for the file to be released.</p>
|
|
@@ -3229,15 +3230,15 @@ export interface DurationSinceLastAccess {
|
|
|
3229
3230
|
/**
|
|
3230
3231
|
* @public
|
|
3231
3232
|
* <p>The configuration that specifies a minimum amount of time since
|
|
3232
|
-
* last access for an
|
|
3233
|
+
* last access for an exported file to be eligible for release from an
|
|
3233
3234
|
* Amazon FSx for Lustre file system. Only files that were last
|
|
3234
3235
|
* accessed before this point-in-time can be released. For example, if
|
|
3235
3236
|
* you specify a last accessed time criteria of 9 days, only files that
|
|
3236
3237
|
* were last accessed 9.00001 or more days ago can be released.</p>
|
|
3237
|
-
* <p>Only file data that has been
|
|
3238
|
-
* have not yet been
|
|
3239
|
-
* not been exported, are not eligible for release. When files
|
|
3240
|
-
* released, their metadata stays on the file system, so they
|
|
3238
|
+
* <p>Only file data that has been exported to S3 can be released. Files
|
|
3239
|
+
* that have not yet been exported to S3, such as new or changed files
|
|
3240
|
+
* that have not been exported, are not eligible for release. When files
|
|
3241
|
+
* are released, their metadata stays on the file system, so they
|
|
3241
3242
|
* can still be accessed later. Users and applications can access a
|
|
3242
3243
|
* released file by reading the file again, which restores data from
|
|
3243
3244
|
* Amazon S3 to the FSx for Lustre file system.</p>
|
|
@@ -3252,7 +3253,7 @@ export interface DurationSinceLastAccess {
|
|
|
3252
3253
|
export interface ReleaseConfiguration {
|
|
3253
3254
|
/**
|
|
3254
3255
|
* @public
|
|
3255
|
-
* <p>Defines the point-in-time since an
|
|
3256
|
+
* <p>Defines the point-in-time since an exported file was last accessed,
|
|
3256
3257
|
* in order for that file to be eligible for release. Only files that were
|
|
3257
3258
|
* last accessed before this point-in-time are eligible to be released from
|
|
3258
3259
|
* the file system.</p>
|
|
@@ -3354,8 +3355,8 @@ export interface CreateDataRepositoryTaskRequest {
|
|
|
3354
3355
|
* <li>
|
|
3355
3356
|
* <p>
|
|
3356
3357
|
* <code>RELEASE_DATA_FROM_FILESYSTEM</code> tasks release files in
|
|
3357
|
-
* your Amazon FSx for Lustre file system that
|
|
3358
|
-
* your specified release criteria.</p>
|
|
3358
|
+
* your Amazon FSx for Lustre file system that have been exported to a linked
|
|
3359
|
+
* S3 bucket and that meet your specified release criteria.</p>
|
|
3359
3360
|
* </li>
|
|
3360
3361
|
* <li>
|
|
3361
3362
|
* <p>
|
|
@@ -3370,7 +3371,7 @@ export interface CreateDataRepositoryTaskRequest {
|
|
|
3370
3371
|
* <p>A list of paths for the data repository task to use when the task is processed.
|
|
3371
3372
|
* If a path that you provide isn't valid, the task fails. If you don't provide
|
|
3372
3373
|
* paths, the default behavior is to export all files to S3 (for export tasks), import
|
|
3373
|
-
* all files from S3 (for import tasks), or release all
|
|
3374
|
+
* all files from S3 (for import tasks), or release all exported files that meet the
|
|
3374
3375
|
* last accessed time criteria (for release tasks).</p>
|
|
3375
3376
|
* <ul>
|
|
3376
3377
|
* <li>
|
|
@@ -3390,9 +3391,9 @@ export interface CreateDataRepositoryTaskRequest {
|
|
|
3390
3391
|
* </li>
|
|
3391
3392
|
* <li>
|
|
3392
3393
|
* <p>For release tasks, the list contains directory or file paths on the
|
|
3393
|
-
* FSx for Lustre file system from which to release
|
|
3394
|
+
* FSx for Lustre file system from which to release exported files. If a directory is
|
|
3394
3395
|
* specified, files within the directory are released. If a file path is specified,
|
|
3395
|
-
* only that file is released. To release all
|
|
3396
|
+
* only that file is released. To release all exported files in the file system,
|
|
3396
3397
|
* specify a forward slash (/) as the path.</p>
|
|
3397
3398
|
* <note>
|
|
3398
3399
|
* <p>A file must also meet the last accessed time criteria
|
|
@@ -3497,8 +3498,8 @@ export interface DataRepositoryTaskStatus {
|
|
|
3497
3498
|
* and a linked data repository.</p>
|
|
3498
3499
|
* </li>
|
|
3499
3500
|
* <li>
|
|
3500
|
-
* <p>You use release data repository tasks to release
|
|
3501
|
-
* from your Amazon FSx for Lustre file system.</p>
|
|
3501
|
+
* <p>You use release data repository tasks to release have been exported
|
|
3502
|
+
* to a linked S3 bucketed files from your Amazon FSx for Lustre file system.</p>
|
|
3502
3503
|
* </li>
|
|
3503
3504
|
* <li>
|
|
3504
3505
|
* <p>An Amazon File Cache resource uses a task to automatically
|
|
@@ -3570,8 +3571,8 @@ export interface DataRepositoryTask {
|
|
|
3570
3571
|
* <li>
|
|
3571
3572
|
* <p>
|
|
3572
3573
|
* <code>RELEASE_DATA_FROM_FILESYSTEM</code> tasks release files in
|
|
3573
|
-
* your Amazon FSx for Lustre file system that
|
|
3574
|
-
* your specified release criteria.</p>
|
|
3574
|
+
* your Amazon FSx for Lustre file system that have been exported to a
|
|
3575
|
+
* linked S3 bucket and that meet your specified release criteria.</p>
|
|
3575
3576
|
* </li>
|
|
3576
3577
|
* <li>
|
|
3577
3578
|
* <p>
|
|
@@ -4634,10 +4635,10 @@ export interface CreateFileSystemOntapConfiguration {
|
|
|
4634
4635
|
PreferredSubnetId?: string;
|
|
4635
4636
|
/**
|
|
4636
4637
|
* @public
|
|
4637
|
-
* <p>(Multi-AZ only) Specifies the
|
|
4638
|
-
*
|
|
4639
|
-
* associated with the subnets in which your clients are located. By default,
|
|
4640
|
-
* selects your VPC's default route table.</p>
|
|
4638
|
+
* <p>(Multi-AZ only) Specifies the route tables in which Amazon FSx creates the rules
|
|
4639
|
+
* for routing traffic to the correct file server. You should specify all virtual private cloud
|
|
4640
|
+
* (VPC) route tables associated with the subnets in which your clients are located. By default,
|
|
4641
|
+
* Amazon FSx selects your VPC's default route table.</p>
|
|
4641
4642
|
*/
|
|
4642
4643
|
RouteTableIds?: string[];
|
|
4643
4644
|
/**
|
|
@@ -4776,23 +4777,26 @@ export interface CreateFileSystemOpenZFSConfiguration {
|
|
|
4776
4777
|
* <ul>
|
|
4777
4778
|
* <li>
|
|
4778
4779
|
* <p>
|
|
4779
|
-
* <code>MULTI_AZ_1</code>- Creates file systems with high availability that are configured
|
|
4780
|
-
*
|
|
4780
|
+
* <code>MULTI_AZ_1</code>- Creates file systems with high availability that are configured
|
|
4781
|
+
* for Multi-AZ redundancy to tolerate temporary unavailability in Availability Zones (AZs).
|
|
4782
|
+
* <code>Multi_AZ_1</code> is available only in the US East (N. Virginia), US East (Ohio), US West (Oregon),
|
|
4783
|
+
* Asia Pacific (Singapore), Asia Pacific (Tokyo), and Europe (Ireland) Amazon Web Services Regions.</p>
|
|
4781
4784
|
* </li>
|
|
4782
4785
|
* <li>
|
|
4783
4786
|
* <p>
|
|
4784
|
-
* <code>SINGLE_AZ_1</code>-
|
|
4787
|
+
* <code>SINGLE_AZ_1</code>- Creates file systems with throughput capacities of 64 - 4,096 MB/s.
|
|
4785
4788
|
* <code>Single_AZ_1</code> is available in all Amazon Web Services Regions where Amazon FSx
|
|
4786
4789
|
* for OpenZFS is available.</p>
|
|
4787
4790
|
* </li>
|
|
4788
4791
|
* <li>
|
|
4789
4792
|
* <p>
|
|
4790
4793
|
* <code>SINGLE_AZ_2</code>- Creates file systems with throughput capacities of 160 - 10,240 MB/s
|
|
4791
|
-
* using an NVMe L2ARC cache. <code>Single_AZ_2</code> is available only in the US East (N. Virginia),
|
|
4792
|
-
* US West (Oregon),
|
|
4794
|
+
* using an NVMe L2ARC cache. <code>Single_AZ_2</code> is available only in the US East (N. Virginia),
|
|
4795
|
+
* US East (Ohio), US West (Oregon), Asia Pacific (Singapore), Asia Pacific (Tokyo), and Europe (Ireland)
|
|
4796
|
+
* Amazon Web Services Regions.</p>
|
|
4793
4797
|
* </li>
|
|
4794
4798
|
* </ul>
|
|
4795
|
-
* <p>For more information, see
|
|
4799
|
+
* <p>For more information, see <a href="https://docs.aws.amazon.com/fsx/latest/OpenZFSGuide/availability-durability.html#available-aws-regions">Deployment type availability</a>
|
|
4796
4800
|
* and <a href="https://docs.aws.amazon.com/fsx/latest/OpenZFSGuide/performance.html#zfs-fs-performance">File system performance</a>
|
|
4797
4801
|
* in the <i>Amazon FSx for OpenZFS User Guide</i>.</p>
|
|
4798
4802
|
*/
|
|
@@ -4802,10 +4806,11 @@ export interface CreateFileSystemOpenZFSConfiguration {
|
|
|
4802
4806
|
* <p>Specifies the throughput of an Amazon FSx for OpenZFS file system, measured in megabytes per second (MBps). Valid values depend on the DeploymentType you choose, as follows:</p>
|
|
4803
4807
|
* <ul>
|
|
4804
4808
|
* <li>
|
|
4805
|
-
* <p>For <code>
|
|
4809
|
+
* <p>For <code>MULTI_AZ_1</code> and <code>SINGLE_AZ_2</code>, valid values are 160, 320, 640,
|
|
4810
|
+
* 1280, 2560, 3840, 5120, 7680, or 10240 MBps.</p>
|
|
4806
4811
|
* </li>
|
|
4807
4812
|
* <li>
|
|
4808
|
-
* <p>For <code>
|
|
4813
|
+
* <p>For <code>SINGLE_AZ_1</code>, valid values are 64, 128, 256, 512, 1024, 2048, 3072, or 4096 MBps.</p>
|
|
4809
4814
|
* </li>
|
|
4810
4815
|
* </ul>
|
|
4811
4816
|
* <p>You pay for additional throughput capacity that you provision.</p>
|
|
@@ -4853,10 +4858,10 @@ export interface CreateFileSystemOpenZFSConfiguration {
|
|
|
4853
4858
|
EndpointIpAddressRange?: string;
|
|
4854
4859
|
/**
|
|
4855
4860
|
* @public
|
|
4856
|
-
* <p>(Multi-AZ only) Specifies the
|
|
4857
|
-
*
|
|
4858
|
-
* associated with the subnets in which your clients are located. By default,
|
|
4859
|
-
* selects your VPC's default route table.</p>
|
|
4861
|
+
* <p>(Multi-AZ only) Specifies the route tables in which Amazon FSx creates the rules
|
|
4862
|
+
* for routing traffic to the correct file server. You should specify all virtual private cloud
|
|
4863
|
+
* (VPC) route tables associated with the subnets in which your clients are located. By default,
|
|
4864
|
+
* Amazon FSx selects your VPC's default route table.</p>
|
|
4860
4865
|
*/
|
|
4861
4866
|
RouteTableIds?: string[];
|
|
4862
4867
|
}
|
|
@@ -5336,17 +5341,17 @@ export interface CreateFileSystemRequest {
|
|
|
5336
5341
|
OntapConfiguration?: CreateFileSystemOntapConfiguration;
|
|
5337
5342
|
/**
|
|
5338
5343
|
* @public
|
|
5339
|
-
* <p>(Optional) For FSx for Lustre file systems, sets the Lustre version
|
|
5340
|
-
* file system that you're creating. Valid values are <code>2.10</code
|
|
5341
|
-
*
|
|
5344
|
+
* <p>(Optional) For FSx for Lustre file systems, sets the Lustre version
|
|
5345
|
+
* for the file system that you're creating. Valid values are <code>2.10</code>,
|
|
5346
|
+
* <code>2.12</code>m and <code>2.15</code>:</p>
|
|
5342
5347
|
* <ul>
|
|
5343
5348
|
* <li>
|
|
5344
5349
|
* <p>2.10 is supported by the Scratch and Persistent_1 Lustre deployment types.</p>
|
|
5345
5350
|
* </li>
|
|
5346
5351
|
* <li>
|
|
5347
|
-
* <p>2.12
|
|
5348
|
-
* required when setting FSx for Lustre <code>DeploymentType</code>
|
|
5349
|
-
* <code>PERSISTENT_2</code>.</p>
|
|
5352
|
+
* <p>2.12 and 2.15 are supported by all Lustre deployment types. <code>2.12</code>
|
|
5353
|
+
* or <code>2.15</code> is required when setting FSx for Lustre <code>DeploymentType</code>
|
|
5354
|
+
* to <code>PERSISTENT_2</code>.</p>
|
|
5350
5355
|
* </li>
|
|
5351
5356
|
* </ul>
|
|
5352
5357
|
* <p>Default value = <code>2.10</code>, except when <code>DeploymentType</code> is set to
|
|
@@ -5548,7 +5553,8 @@ export interface CreateFileSystemFromBackupRequest {
|
|
|
5548
5553
|
/**
|
|
5549
5554
|
* @public
|
|
5550
5555
|
* <p>Sets the version for the Amazon FSx for Lustre file system that you're
|
|
5551
|
-
* creating from a backup. Valid values are <code>2.10</code
|
|
5556
|
+
* creating from a backup. Valid values are <code>2.10</code>, <code>2.12</code>,
|
|
5557
|
+
* and <code>2.15</code>.</p>
|
|
5552
5558
|
* <p>You don't need to specify <code>FileSystemTypeVersion</code> because it will
|
|
5553
5559
|
* be applied using the backup's <code>FileSystemTypeVersion</code> setting.
|
|
5554
5560
|
* If you choose to specify <code>FileSystemTypeVersion</code> when creating from backup, the
|
|
@@ -8224,10 +8230,11 @@ export interface UpdateFileSystemOpenZFSConfiguration {
|
|
|
8224
8230
|
(MB/s). Valid values depend on the DeploymentType you choose, as follows:</p>
|
|
8225
8231
|
* <ul>
|
|
8226
8232
|
* <li>
|
|
8227
|
-
* <p>For <code>
|
|
8233
|
+
* <p>For <code>MULTI_AZ_1</code> and <code>SINGLE_AZ_2</code>, valid values are 160, 320, 640,
|
|
8234
|
+
* 1280, 2560, 3840, 5120, 7680, or 10240 MBps.</p>
|
|
8228
8235
|
* </li>
|
|
8229
8236
|
* <li>
|
|
8230
|
-
* <p>For <code>
|
|
8237
|
+
* <p>For <code>SINGLE_AZ_1</code>, valid values are 64, 128, 256, 512, 1024, 2048, 3072, or 4096 MB/s.</p>
|
|
8231
8238
|
* </li>
|
|
8232
8239
|
* </ul>
|
|
8233
8240
|
*/
|
|
@@ -9124,8 +9131,8 @@ export interface FileSystem {
|
|
|
9124
9131
|
OntapConfiguration?: OntapFileSystemConfiguration;
|
|
9125
9132
|
/**
|
|
9126
9133
|
* @public
|
|
9127
|
-
* <p>The Lustre version of the Amazon FSx for Lustre file system,
|
|
9128
|
-
* <code>2.10</code> or <code>2.
|
|
9134
|
+
* <p>The Lustre version of the Amazon FSx for Lustre file system, which
|
|
9135
|
+
* is <code>2.10</code>, <code>2.12</code>, or <code>2.15</code>.</p>
|
|
9129
9136
|
*/
|
|
9130
9137
|
FileSystemTypeVersion?: string;
|
|
9131
9138
|
/**
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { FSxExtensionConfiguration } from "./extensionConfiguration";
|
|
2
2
|
/**
|
|
3
3
|
* @public
|
|
4
4
|
*/
|
|
5
5
|
export interface RuntimeExtension {
|
|
6
|
-
|
|
6
|
+
configure(clientConfiguration: FSxExtensionConfiguration): void;
|
|
7
7
|
}
|
|
8
8
|
/**
|
|
9
9
|
* @public
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { FSxExtensionConfiguration } from "./extensionConfiguration";
|
|
2
2
|
export interface RuntimeExtension {
|
|
3
|
-
|
|
3
|
+
configure(clientConfiguration: FSxExtensionConfiguration): void;
|
|
4
4
|
}
|
|
5
5
|
export interface RuntimeExtensionsConfig {
|
|
6
6
|
extensions: RuntimeExtension[];
|
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.402.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,37 +21,37 @@
|
|
|
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.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
27
|
-
"@aws-sdk/middleware-logger": "3.
|
|
28
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
29
|
-
"@aws-sdk/middleware-signing": "3.
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
31
|
-
"@aws-sdk/types": "3.
|
|
32
|
-
"@aws-sdk/util-endpoints": "3.
|
|
33
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
34
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
35
|
-
"@smithy/config-resolver": "^2.0.
|
|
36
|
-
"@smithy/fetch-http-handler": "^2.0.
|
|
37
|
-
"@smithy/hash-node": "^2.0.
|
|
38
|
-
"@smithy/invalid-dependency": "^2.0.
|
|
39
|
-
"@smithy/middleware-content-length": "^2.0.
|
|
40
|
-
"@smithy/middleware-endpoint": "^2.0.
|
|
41
|
-
"@smithy/middleware-retry": "^2.0.
|
|
42
|
-
"@smithy/middleware-serde": "^2.0.
|
|
24
|
+
"@aws-sdk/client-sts": "3.398.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.398.0",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "3.398.0",
|
|
27
|
+
"@aws-sdk/middleware-logger": "3.398.0",
|
|
28
|
+
"@aws-sdk/middleware-recursion-detection": "3.398.0",
|
|
29
|
+
"@aws-sdk/middleware-signing": "3.398.0",
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.398.0",
|
|
31
|
+
"@aws-sdk/types": "3.398.0",
|
|
32
|
+
"@aws-sdk/util-endpoints": "3.398.0",
|
|
33
|
+
"@aws-sdk/util-user-agent-browser": "3.398.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-node": "3.398.0",
|
|
35
|
+
"@smithy/config-resolver": "^2.0.5",
|
|
36
|
+
"@smithy/fetch-http-handler": "^2.0.5",
|
|
37
|
+
"@smithy/hash-node": "^2.0.5",
|
|
38
|
+
"@smithy/invalid-dependency": "^2.0.5",
|
|
39
|
+
"@smithy/middleware-content-length": "^2.0.5",
|
|
40
|
+
"@smithy/middleware-endpoint": "^2.0.5",
|
|
41
|
+
"@smithy/middleware-retry": "^2.0.5",
|
|
42
|
+
"@smithy/middleware-serde": "^2.0.5",
|
|
43
43
|
"@smithy/middleware-stack": "^2.0.0",
|
|
44
|
-
"@smithy/node-config-provider": "^2.0.
|
|
45
|
-
"@smithy/node-http-handler": "^2.0.
|
|
46
|
-
"@smithy/protocol-http": "^2.0.
|
|
47
|
-
"@smithy/smithy-client": "^2.0.
|
|
48
|
-
"@smithy/types": "^2.2.
|
|
49
|
-
"@smithy/url-parser": "^2.0.
|
|
44
|
+
"@smithy/node-config-provider": "^2.0.5",
|
|
45
|
+
"@smithy/node-http-handler": "^2.0.5",
|
|
46
|
+
"@smithy/protocol-http": "^2.0.5",
|
|
47
|
+
"@smithy/smithy-client": "^2.0.5",
|
|
48
|
+
"@smithy/types": "^2.2.2",
|
|
49
|
+
"@smithy/url-parser": "^2.0.5",
|
|
50
50
|
"@smithy/util-base64": "^2.0.0",
|
|
51
51
|
"@smithy/util-body-length-browser": "^2.0.0",
|
|
52
|
-
"@smithy/util-body-length-node": "^2.
|
|
53
|
-
"@smithy/util-defaults-mode-browser": "^2.0.
|
|
54
|
-
"@smithy/util-defaults-mode-node": "^2.0.
|
|
52
|
+
"@smithy/util-body-length-node": "^2.1.0",
|
|
53
|
+
"@smithy/util-defaults-mode-browser": "^2.0.5",
|
|
54
|
+
"@smithy/util-defaults-mode-node": "^2.0.5",
|
|
55
55
|
"@smithy/util-retry": "^2.0.0",
|
|
56
56
|
"@smithy/util-utf8": "^2.0.0",
|
|
57
57
|
"tslib": "^2.5.0",
|
|
File without changes
|
|
File without changes
|