@aws-sdk/client-datasync 3.1095.0 → 3.1097.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/README.md CHANGED
@@ -7,6 +7,9 @@
7
7
  AWS SDK for JavaScript DataSync Client for Node.js, Browser and React Native.
8
8
 
9
9
  <fullname>DataSync</fullname>
10
+ <p>In addition to the Amazon Web Services Management Console and Amazon Web Services Command Line Interface,
11
+ you can use the DataSync API to configure and manage DataSync with the
12
+ <a href="http://aws.amazon.com/developer/tools/">Amazon Web Services SDKs</a>.</p>
10
13
  <p>DataSync is an online data movement service that simplifies data
11
14
  migration and helps you quickly, easily, and securely transfer your file or object data to,
12
15
  from, and between Amazon Web Services storage services.</p>
package/dist-cjs/index.js CHANGED
@@ -69,7 +69,7 @@ const commonParams = {
69
69
  UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
70
70
  };
71
71
 
72
- var version = "3.1094.0";
72
+ var version = "3.1096.0";
73
73
  var packageInfo = {
74
74
  version: version};
75
75
 
@@ -414,6 +414,9 @@ export interface DataSync {
414
414
  }
415
415
  /**
416
416
  * <fullname>DataSync</fullname>
417
+ * <p>In addition to the Amazon Web Services Management Console and Amazon Web Services Command Line Interface,
418
+ * you can use the DataSync API to configure and manage DataSync with the
419
+ * <a href="http://aws.amazon.com/developer/tools/">Amazon Web Services SDKs</a>.</p>
417
420
  * <p>DataSync is an online data movement service that simplifies data
418
421
  * migration and helps you quickly, easily, and securely transfer your file or object data to,
419
422
  * from, and between Amazon Web Services storage services.</p>
@@ -222,6 +222,9 @@ export interface DataSyncClientResolvedConfig extends DataSyncClientResolvedConf
222
222
  }
223
223
  /**
224
224
  * <fullname>DataSync</fullname>
225
+ * <p>In addition to the Amazon Web Services Management Console and Amazon Web Services Command Line Interface,
226
+ * you can use the DataSync API to configure and manage DataSync with the
227
+ * <a href="http://aws.amazon.com/developer/tools/">Amazon Web Services SDKs</a>.</p>
225
228
  * <p>DataSync is an online data movement service that simplifies data
226
229
  * migration and helps you quickly, easily, and securely transfer your file or object data to,
227
230
  * from, and between Amazon Web Services storage services.</p>
@@ -1,5 +1,8 @@
1
1
  /**
2
2
  * <fullname>DataSync</fullname>
3
+ * <p>In addition to the Amazon Web Services Management Console and Amazon Web Services Command Line Interface,
4
+ * you can use the DataSync API to configure and manage DataSync with the
5
+ * <a href="http://aws.amazon.com/developer/tools/">Amazon Web Services SDKs</a>.</p>
3
6
  * <p>DataSync is an online data movement service that simplifies data
4
7
  * migration and helps you quickly, easily, and securely transfer your file or object data to,
5
8
  * from, and between Amazon Web Services storage services.</p>
@@ -966,7 +966,19 @@ export interface CreateLocationHdfsRequest {
966
966
  /**
967
967
  * <p>The NameNode that manages the HDFS namespace. The NameNode performs operations such as
968
968
  * opening, closing, and renaming files and directories. The NameNode contains the information to
969
- * map blocks of data to the DataNodes. You can use only one NameNode.</p>
969
+ * map blocks of data to the DataNodes.</p>
970
+ * <p>The number of NameNodes you can specify depends on the task mode:</p>
971
+ * <ul>
972
+ * <li>
973
+ * <p>
974
+ * <b>Enhanced mode</b> – You can specify multiple NameNodes for HDFS High Availability (HA)
975
+ * configurations.</p>
976
+ * </li>
977
+ * <li>
978
+ * <p>
979
+ * <b>Basic mode</b> – You can specify only one NameNode.</p>
980
+ * </li>
981
+ * </ul>
970
982
  * @public
971
983
  */
972
984
  NameNodes: HdfsNameNode[] | undefined;
@@ -1761,10 +1773,12 @@ export interface Options {
1761
1773
  * </li>
1762
1774
  * </ul>
1763
1775
  * <note>
1776
+ * <p>The following applies only to Basic mode tasks:</p>
1764
1777
  * <p>If <code>Atime</code> is set to <code>BEST_EFFORT</code>, <code>Mtime</code> must be set
1765
1778
  * to <code>PRESERVE</code>. </p>
1766
1779
  * <p>If <code>Atime</code> is set to <code>NONE</code>, <code>Mtime</code> must also be
1767
1780
  * <code>NONE</code>. </p>
1781
+ * <p>Enhanced mode tasks support configuring <code>Atime</code> independently of <code>Mtime</code>.</p>
1768
1782
  * </note>
1769
1783
  * @public
1770
1784
  */
@@ -1785,10 +1799,12 @@ export interface Options {
1785
1799
  * </li>
1786
1800
  * </ul>
1787
1801
  * <note>
1802
+ * <p>The following applies only to Basic mode tasks:</p>
1788
1803
  * <p>If <code>Mtime</code> is set to <code>PRESERVE</code>, <code>Atime</code> must be set to
1789
1804
  * <code>BEST_EFFORT</code>.</p>
1790
1805
  * <p>If <code>Mtime</code> is set to <code>NONE</code>, <code>Atime</code> must also be set
1791
1806
  * to <code>NONE</code>. </p>
1807
+ * <p>Enhanced mode tasks don't support <code>Mtime</code> set to <code>NONE</code>.</p>
1792
1808
  * </note>
1793
1809
  * @public
1794
1810
  */
@@ -4873,7 +4889,17 @@ export interface UpdateLocationHdfsRequest {
4873
4889
  /**
4874
4890
  * <p>The NameNode that manages the HDFS namespace. The NameNode performs operations such as
4875
4891
  * opening, closing, and renaming files and directories. The NameNode contains the information to
4876
- * map blocks of data to the DataNodes. You can use only one NameNode.</p>
4892
+ * map blocks of data to the DataNodes.</p>
4893
+ * <p>The number of NameNodes you can specify depends on the task mode:</p>
4894
+ * <ul>
4895
+ * <li>
4896
+ * <p>Enhanced mode – You can specify multiple NameNodes for HDFS High Availability (HA)
4897
+ * configurations.</p>
4898
+ * </li>
4899
+ * <li>
4900
+ * <p>Basic mode – You can specify only one NameNode.</p>
4901
+ * </li>
4902
+ * </ul>
4877
4903
  * @public
4878
4904
  */
4879
4905
  NameNodes?: HdfsNameNode[] | undefined;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-datasync",
3
- "version": "3.1095.0",
3
+ "version": "3.1097.0",
4
4
  "description": "AWS SDK for JavaScript Datasync Client for Node.js, Browser and React Native",
5
5
  "homepage": "https://github.com/aws/aws-sdk-js-v3/tree/main/clients/client-datasync",
6
6
  "license": "Apache-2.0",
@@ -46,8 +46,8 @@
46
46
  "test:index": "tsc --noEmit ./test/index-types.ts && node ./test/index-objects.spec.mjs"
47
47
  },
48
48
  "dependencies": {
49
- "@aws-sdk/core": "^3.977.0",
50
- "@aws-sdk/credential-provider-node": "^3.972.72",
49
+ "@aws-sdk/core": "^3.977.2",
50
+ "@aws-sdk/credential-provider-node": "^3.972.74",
51
51
  "@aws-sdk/types": "^3.974.2",
52
52
  "@smithy/core": "^3.29.8",
53
53
  "@smithy/fetch-http-handler": "^5.6.10",