@aws-sdk/client-fsx 3.137.0 → 3.140.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/CHANGELOG.md CHANGED
@@ -3,6 +3,14 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [3.140.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.139.0...v3.140.0) (2022-07-29)
7
+
8
+ **Note:** Version bump only for package @aws-sdk/client-fsx
9
+
10
+
11
+
12
+
13
+
6
14
  # [3.137.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.136.1...v3.137.0) (2022-07-26)
7
15
 
8
16
 
@@ -611,8 +611,7 @@ export declare class FSx extends FSxClient {
611
611
  disassociateFileSystemAliases(args: DisassociateFileSystemAliasesCommandInput, cb: (err: any, data?: DisassociateFileSystemAliasesCommandOutput) => void): void;
612
612
  disassociateFileSystemAliases(args: DisassociateFileSystemAliasesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisassociateFileSystemAliasesCommandOutput) => void): void;
613
613
  /**
614
- * <p>Lists tags for an Amazon FSx file systems and backups in the case of Amazon FSx for
615
- * Windows File Server.</p>
614
+ * <p>Lists tags for Amazon FSx resources.</p>
616
615
  *
617
616
  * <p>When retrieving all tags, you can optionally specify the <code>MaxResults</code>
618
617
  * parameter to limit the number of tags in a response. If more tags remain, Amazon FSx
@@ -7,8 +7,7 @@ export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequ
7
7
  export interface ListTagsForResourceCommandOutput extends ListTagsForResourceResponse, __MetadataBearer {
8
8
  }
9
9
  /**
10
- * <p>Lists tags for an Amazon FSx file systems and backups in the case of Amazon FSx for
11
- * Windows File Server.</p>
10
+ * <p>Lists tags for Amazon FSx resources.</p>
12
11
  *
13
12
  * <p>When retrieving all tags, you can optionally specify the <code>MaxResults</code>
14
13
  * parameter to limit the number of tags in a response. If more tags remain, Amazon FSx
@@ -2244,11 +2244,24 @@ export interface CreateDataRepositoryTaskRequest {
2244
2244
  */
2245
2245
  Type: DataRepositoryTaskType | string | undefined;
2246
2246
  /**
2247
- * <p>(Optional) The path or paths on the Amazon FSx file system to use when the data repository task is processed.
2248
- * The default path is the file system root directory. The paths you provide need to be relative to the mount point of the file system.
2249
- * If the mount point is <code>/mnt/fsx</code> and <code>/mnt/fsx/path1</code> is a directory or
2250
- * file on the file system you want to export, then the path to provide is <code>path1</code>.
2247
+ * <p>A list of paths for the data repository task to use when the task is processed.
2251
2248
  * If a path that you provide isn't valid, the task fails.</p>
2249
+ * <ul>
2250
+ * <li>
2251
+ * <p>For export tasks, the list contains paths on the Amazon FSx file system
2252
+ * from which the files are exported to the Amazon S3 bucket. The default path is the
2253
+ * file system root directory. The paths you provide need to be relative to the mount
2254
+ * point of the file system. If the mount point is <code>/mnt/fsx</code> and
2255
+ * <code>/mnt/fsx/path1</code> is a directory or file on the file system you want
2256
+ * to export, then the path to provide is <code>path1</code>.</p>
2257
+ * </li>
2258
+ * <li>
2259
+ * <p>For import tasks, the list contains paths in the Amazon S3 bucket
2260
+ * from which POSIX metadata changes are imported to the Amazon FSx file system.
2261
+ * The path can be an S3 bucket or prefix in the format
2262
+ * <code>s3://myBucket/myPrefix</code> (where <code>myPrefix</code> is optional).</p>
2263
+ * </li>
2264
+ * </ul>
2252
2265
  */
2253
2266
  Paths?: string[];
2254
2267
  /**
@@ -2930,12 +2943,12 @@ export interface CreateFileSystemOpenZFSConfiguration {
2930
2943
  */
2931
2944
  CopyTagsToBackups?: boolean;
2932
2945
  /**
2933
- * <p>A Boolean value indicating whether tags for the volume should be copied to snapshots.
2946
+ * <p>A Boolean value indicating whether tags for the file system should be copied to volumes.
2934
2947
  * This value defaults to <code>false</code>. If it's set to <code>true</code>, all tags
2935
- * for the volume are copied to snapshots where the user doesn't specify tags. If this
2948
+ * for the file system are copied to volumes where the user doesn't specify tags. If this
2936
2949
  * value is <code>true</code>, and you specify one or more tags, only the specified tags
2937
- * are copied to snapshots. If you specify one or more tags when creating the snapshot, no
2938
- * tags are copied from the volume, regardless of this value. </p>
2950
+ * are copied to volumes. If you specify one or more tags when creating the volume, no
2951
+ * tags are copied from the file system, regardless of this value.</p>
2939
2952
  */
2940
2953
  CopyTagsToVolumes?: boolean;
2941
2954
  /**
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.137.0",
4
+ "version": "3.140.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",