@aws-sdk/client-datasync 3.568.0 → 3.572.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.
@@ -26,10 +26,8 @@ declare const UpdateLocationObjectStorageCommand_base: {
26
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
27
27
  };
28
28
  /**
29
- * <p>Updates some parameters of an existing object storage location that DataSync
30
- * accesses for a transfer. For information about creating a self-managed object storage
31
- * location, see <a href="https://docs.aws.amazon.com/datasync/latest/userguide/create-object-location.html">Creating a location for object
32
- * storage</a>.</p>
29
+ * <p>Updates some parameters of an existing DataSync location for an object
30
+ * storage system.</p>
33
31
  * @example
34
32
  * Use a bare-bones client and the command you need to make an API call.
35
33
  * ```javascript
@@ -1300,24 +1300,29 @@ export interface CreateLocationObjectStorageRequest {
1300
1300
  */
1301
1301
  Tags?: TagListEntry[];
1302
1302
  /**
1303
- * <p>Specifies a file with the certificates that are used to sign the object storage server's
1304
- * certificate (for example, <code>file:///home/user/.ssh/storage_sys_certificate.pem</code>).
1305
- * The file you specify must include the following:</p>
1303
+ * <p>Specifies a certificate chain for DataSync to authenticate with your object
1304
+ * storage system if the system uses a private or self-signed certificate authority (CA). You
1305
+ * must specify a single <code>.pem</code> file with a full certificate chain (for example,
1306
+ * <code>file:///home/user/.ssh/object_storage_certificates.pem</code>).</p>
1307
+ * <p>The certificate chain might include:</p>
1306
1308
  * <ul>
1307
1309
  * <li>
1308
- * <p>The certificate of the signing certificate authority (CA)</p>
1310
+ * <p>The object storage system's certificate</p>
1309
1311
  * </li>
1310
1312
  * <li>
1311
- * <p>Any intermediate certificates</p>
1313
+ * <p>All intermediate certificates (if there are any)</p>
1312
1314
  * </li>
1313
1315
  * <li>
1314
- * <p>base64 encoding</p>
1315
- * </li>
1316
- * <li>
1317
- * <p>A <code>.pem</code> extension</p>
1316
+ * <p>The root certificate of the signing CA</p>
1318
1317
  * </li>
1319
1318
  * </ul>
1320
- * <p>The file can be up to 32768 bytes (before base64 encoding).</p>
1319
+ * <p>You can concatenate your certificates into a <code>.pem</code> file (which can be up to
1320
+ * 32768 bytes before base64 encoding). The following example <code>cat</code> command creates an
1321
+ * <code>object_storage_certificates.pem</code> file that includes three certificates:</p>
1322
+ * <p>
1323
+ * <code>cat object_server_certificate.pem intermediate_certificate.pem
1324
+ * ca_root_certificate.pem > object_storage_certificates.pem</code>
1325
+ * </p>
1321
1326
  * <p>To use this parameter, configure <code>ServerProtocol</code> to <code>HTTPS</code>.</p>
1322
1327
  * @public
1323
1328
  */
@@ -2188,8 +2193,9 @@ export interface TaskSchedule {
2188
2193
  ScheduleExpression: string | undefined;
2189
2194
  /**
2190
2195
  * <p>Specifies whether to enable or disable your task schedule. Your schedule is enabled by
2191
- * default, but there can be situations where you need to disable it. For example,
2192
- * you might need to pause a recurring transfer or fix an issue with your task or perform maintenance on your storage system.</p>
2196
+ * default, but there can be situations where you need to disable it. For example, you might need
2197
+ * to pause a recurring transfer to fix an issue with your task or perform maintenance on your
2198
+ * storage system.</p>
2193
2199
  * <p>DataSync might disable your schedule automatically if your task fails repeatedly
2194
2200
  * with the same error. For more information, see <a href="https://docs.aws.amazon.com/datasync/latest/userguide/API_TaskScheduleDetails.html">TaskScheduleDetails</a>.</p>
2195
2201
  * @public
@@ -3148,8 +3154,8 @@ export interface DescribeLocationObjectStorageResponse {
3148
3154
  */
3149
3155
  CreationTime?: Date;
3150
3156
  /**
3151
- * <p>The self-signed certificate that DataSync uses to securely authenticate with
3152
- * your object storage system.</p>
3157
+ * <p>The certificate chain for DataSync to authenticate with your object storage
3158
+ * system if the system uses a private or self-signed certificate authority (CA).</p>
3153
3159
  * @public
3154
3160
  */
3155
3161
  ServerCertificate?: Uint8Array;
@@ -5434,12 +5440,31 @@ export interface UpdateLocationObjectStorageRequest {
5434
5440
  */
5435
5441
  AgentArns?: string[];
5436
5442
  /**
5437
- * <p>Specifies a certificate to authenticate with an object storage system that uses a private
5438
- * or self-signed certificate authority (CA). You must specify a Base64-encoded <code>.pem</code>
5439
- * file (for example, <code>file:///home/user/.ssh/storage_sys_certificate.pem</code>). The
5440
- * certificate can be up to 32768 bytes (before Base64 encoding).</p>
5443
+ * <p>Specifies a certificate chain for DataSync to authenticate with your object
5444
+ * storage system if the system uses a private or self-signed certificate authority (CA). You
5445
+ * must specify a single <code>.pem</code> file with a full certificate chain (for example,
5446
+ * <code>file:///home/user/.ssh/object_storage_certificates.pem</code>).</p>
5447
+ * <p>The certificate chain might include:</p>
5448
+ * <ul>
5449
+ * <li>
5450
+ * <p>The object storage system's certificate</p>
5451
+ * </li>
5452
+ * <li>
5453
+ * <p>All intermediate certificates (if there are any)</p>
5454
+ * </li>
5455
+ * <li>
5456
+ * <p>The root certificate of the signing CA</p>
5457
+ * </li>
5458
+ * </ul>
5459
+ * <p>You can concatenate your certificates into a <code>.pem</code> file (which can be up to
5460
+ * 32768 bytes before base64 encoding). The following example <code>cat</code> command creates an
5461
+ * <code>object_storage_certificates.pem</code> file that includes three certificates:</p>
5462
+ * <p>
5463
+ * <code>cat object_server_certificate.pem intermediate_certificate.pem
5464
+ * ca_root_certificate.pem > object_storage_certificates.pem</code>
5465
+ * </p>
5441
5466
  * <p>To use this parameter, configure <code>ServerProtocol</code> to <code>HTTPS</code>.</p>
5442
- * <p>Updating the certificate doesn't interfere with tasks that you have in progress.</p>
5467
+ * <p>Updating this parameter doesn't interfere with tasks that you have in progress.</p>
5443
5468
  * @public
5444
5469
  */
5445
5470
  ServerCertificate?: Uint8Array;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-datasync",
3
3
  "description": "AWS SDK for JavaScript Datasync Client for Node.js, Browser and React Native",
4
- "version": "3.568.0",
4
+ "version": "3.572.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-datasync",
@@ -20,15 +20,17 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "3.0.0",
22
22
  "@aws-crypto/sha256-js": "3.0.0",
23
- "@aws-sdk/core": "3.567.0",
24
- "@aws-sdk/credential-provider-node": "3.568.0",
23
+ "@aws-sdk/client-sso-oidc": "3.572.0",
24
+ "@aws-sdk/client-sts": "3.572.0",
25
+ "@aws-sdk/core": "3.572.0",
26
+ "@aws-sdk/credential-provider-node": "3.572.0",
25
27
  "@aws-sdk/middleware-host-header": "3.567.0",
26
28
  "@aws-sdk/middleware-logger": "3.568.0",
27
29
  "@aws-sdk/middleware-recursion-detection": "3.567.0",
28
- "@aws-sdk/middleware-user-agent": "3.567.0",
29
- "@aws-sdk/region-config-resolver": "3.567.0",
30
+ "@aws-sdk/middleware-user-agent": "3.572.0",
31
+ "@aws-sdk/region-config-resolver": "3.572.0",
30
32
  "@aws-sdk/types": "3.567.0",
31
- "@aws-sdk/util-endpoints": "3.567.0",
33
+ "@aws-sdk/util-endpoints": "3.572.0",
32
34
  "@aws-sdk/util-user-agent-browser": "3.567.0",
33
35
  "@aws-sdk/util-user-agent-node": "3.568.0",
34
36
  "@smithy/config-resolver": "^2.2.0",