@aws-sdk/client-fsx 3.654.0 → 3.658.1
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-types/models/models_0.d.ts +14 -9
- package/package.json +12 -12
|
@@ -3167,8 +3167,9 @@ export interface CreateDataRepositoryAssociationRequest {
|
|
|
3167
3167
|
/**
|
|
3168
3168
|
* <p>The path to the Amazon S3 data repository that will be linked to the file
|
|
3169
3169
|
* system. The path can be an S3 bucket or prefix in the format
|
|
3170
|
-
* <code>s3://
|
|
3171
|
-
*
|
|
3170
|
+
* <code>s3://bucket-name/prefix/</code> (where <code>prefix</code>
|
|
3171
|
+
* is optional). This path specifies where in the S3 data repository
|
|
3172
|
+
* files will be imported from or exported to.</p>
|
|
3172
3173
|
* @public
|
|
3173
3174
|
*/
|
|
3174
3175
|
DataRepositoryPath: string | undefined;
|
|
@@ -3390,11 +3391,13 @@ export interface DataRepositoryAssociation {
|
|
|
3390
3391
|
* </li>
|
|
3391
3392
|
* <li>
|
|
3392
3393
|
* <p>For Amazon File Cache, the path can be an S3 bucket or prefix
|
|
3393
|
-
* in the format <code>s3://
|
|
3394
|
+
* in the format <code>s3://bucket-name/prefix/</code> (where <code>prefix</code>
|
|
3395
|
+
* is optional).</p>
|
|
3394
3396
|
* </li>
|
|
3395
3397
|
* <li>
|
|
3396
3398
|
* <p>For Amazon FSx for Lustre, the path can be an S3 bucket or prefix
|
|
3397
|
-
* in the format <code>s3://
|
|
3399
|
+
* in the format <code>s3://bucket-name/prefix/</code> (where <code>prefix</code>
|
|
3400
|
+
* is optional).</p>
|
|
3398
3401
|
* </li>
|
|
3399
3402
|
* </ul>
|
|
3400
3403
|
* @public
|
|
@@ -3610,9 +3613,11 @@ export interface CompletionReport {
|
|
|
3610
3613
|
*/
|
|
3611
3614
|
Enabled: boolean | undefined;
|
|
3612
3615
|
/**
|
|
3613
|
-
* <p>Required if <code>Enabled</code> is set to <code>true</code>. Specifies the location of the report on the file system's
|
|
3616
|
+
* <p>Required if <code>Enabled</code> is set to <code>true</code>. Specifies the location of the report on the file system's
|
|
3617
|
+
* linked S3 data repository. An absolute path that defines where the completion report will be stored in the destination location.
|
|
3614
3618
|
* The <code>Path</code> you provide must be located within the file system’s ExportPath.
|
|
3615
|
-
* An example <code>Path</code> value is "s3://
|
|
3619
|
+
* An example <code>Path</code> value is "s3://amzn-s3-demo-bucket/myExportPath/optionalPrefix".
|
|
3620
|
+
* The report provides the following information for each file in the report:
|
|
3616
3621
|
* FilePath, FileStatus, and ErrorCode.</p>
|
|
3617
3622
|
* @public
|
|
3618
3623
|
*/
|
|
@@ -3697,8 +3702,7 @@ export interface CreateDataRepositoryTaskRequest {
|
|
|
3697
3702
|
* <p>For import tasks, the list contains paths in the Amazon S3 bucket
|
|
3698
3703
|
* from which POSIX metadata changes are imported to the FSx for Lustre file system.
|
|
3699
3704
|
* The path can be an S3 bucket or prefix in the format
|
|
3700
|
-
* <code>s3://
|
|
3701
|
-
* </p>
|
|
3705
|
+
* <code>s3://bucket-name/prefix</code> (where <code>prefix</code> is optional).</p>
|
|
3702
3706
|
* </li>
|
|
3703
3707
|
* <li>
|
|
3704
3708
|
* <p>For release tasks, the list contains directory or file paths on the
|
|
@@ -4080,7 +4084,8 @@ export interface FileCacheDataRepositoryAssociation {
|
|
|
4080
4084
|
* </li>
|
|
4081
4085
|
* <li>
|
|
4082
4086
|
* <p>The path can be an S3 bucket or prefix
|
|
4083
|
-
* in the format <code>s3://
|
|
4087
|
+
* in the format <code>s3://bucket-name/prefix/</code> (where <code>prefix</code>
|
|
4088
|
+
* is optional).</p>
|
|
4084
4089
|
* </li>
|
|
4085
4090
|
* </ul>
|
|
4086
4091
|
* @public
|
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.658.1",
|
|
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",
|
|
@@ -20,10 +20,10 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/client-sso-oidc": "3.
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/core": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.658.1",
|
|
24
|
+
"@aws-sdk/client-sts": "3.658.1",
|
|
25
|
+
"@aws-sdk/core": "3.658.1",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.658.1",
|
|
27
27
|
"@aws-sdk/middleware-host-header": "3.654.0",
|
|
28
28
|
"@aws-sdk/middleware-logger": "3.654.0",
|
|
29
29
|
"@aws-sdk/middleware-recursion-detection": "3.654.0",
|
|
@@ -34,26 +34,26 @@
|
|
|
34
34
|
"@aws-sdk/util-user-agent-browser": "3.654.0",
|
|
35
35
|
"@aws-sdk/util-user-agent-node": "3.654.0",
|
|
36
36
|
"@smithy/config-resolver": "^3.0.8",
|
|
37
|
-
"@smithy/core": "^2.4.
|
|
38
|
-
"@smithy/fetch-http-handler": "^3.2.
|
|
37
|
+
"@smithy/core": "^2.4.6",
|
|
38
|
+
"@smithy/fetch-http-handler": "^3.2.8",
|
|
39
39
|
"@smithy/hash-node": "^3.0.6",
|
|
40
40
|
"@smithy/invalid-dependency": "^3.0.6",
|
|
41
41
|
"@smithy/middleware-content-length": "^3.0.8",
|
|
42
42
|
"@smithy/middleware-endpoint": "^3.1.3",
|
|
43
|
-
"@smithy/middleware-retry": "^3.0.
|
|
43
|
+
"@smithy/middleware-retry": "^3.0.21",
|
|
44
44
|
"@smithy/middleware-serde": "^3.0.6",
|
|
45
45
|
"@smithy/middleware-stack": "^3.0.6",
|
|
46
46
|
"@smithy/node-config-provider": "^3.1.7",
|
|
47
|
-
"@smithy/node-http-handler": "^3.2.
|
|
47
|
+
"@smithy/node-http-handler": "^3.2.3",
|
|
48
48
|
"@smithy/protocol-http": "^4.1.3",
|
|
49
|
-
"@smithy/smithy-client": "^3.3.
|
|
49
|
+
"@smithy/smithy-client": "^3.3.5",
|
|
50
50
|
"@smithy/types": "^3.4.2",
|
|
51
51
|
"@smithy/url-parser": "^3.0.6",
|
|
52
52
|
"@smithy/util-base64": "^3.0.0",
|
|
53
53
|
"@smithy/util-body-length-browser": "^3.0.0",
|
|
54
54
|
"@smithy/util-body-length-node": "^3.0.0",
|
|
55
|
-
"@smithy/util-defaults-mode-browser": "^3.0.
|
|
56
|
-
"@smithy/util-defaults-mode-node": "^3.0.
|
|
55
|
+
"@smithy/util-defaults-mode-browser": "^3.0.21",
|
|
56
|
+
"@smithy/util-defaults-mode-node": "^3.0.21",
|
|
57
57
|
"@smithy/util-endpoints": "^2.1.2",
|
|
58
58
|
"@smithy/util-middleware": "^3.0.6",
|
|
59
59
|
"@smithy/util-retry": "^3.0.6",
|