@aws-sdk/client-ecs 3.678.0 → 3.682.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
@@ -23,7 +23,7 @@ You also don't need to worry about scaling your management infrastructure. </p>
23
23
 
24
24
  ## Installing
25
25
 
26
- To install the this package, simply type add or install @aws-sdk/client-ecs
26
+ To install this package, simply type add or install @aws-sdk/client-ecs
27
27
  using your favorite package manager:
28
28
 
29
29
  - `npm install @aws-sdk/client-ecs`
package/dist-cjs/index.js CHANGED
@@ -579,6 +579,7 @@ var LogDriver = {
579
579
  var TaskFilesystemType = {
580
580
  EXT3: "ext3",
581
581
  EXT4: "ext4",
582
+ NTFS: "ntfs",
582
583
  XFS: "xfs"
583
584
  };
584
585
  var EBSResourceType = {
@@ -181,6 +181,7 @@ export const LogDriver = {
181
181
  export const TaskFilesystemType = {
182
182
  EXT3: "ext3",
183
183
  EXT4: "ext4",
184
+ NTFS: "ntfs",
184
185
  XFS: "xfs",
185
186
  };
186
187
  export const EBSResourceType = {
@@ -268,7 +268,7 @@ declare const CreateServiceCommand_base: {
268
268
  * },
269
269
  * ],
270
270
  * roleArn: "STRING_VALUE", // required
271
- * filesystemType: "ext3" || "ext4" || "xfs",
271
+ * filesystemType: "ext3" || "ext4" || "xfs" || "ntfs",
272
272
  * },
273
273
  * },
274
274
  * ],
@@ -499,7 +499,7 @@ declare const CreateServiceCommand_base: {
499
499
  * // },
500
500
  * // ],
501
501
  * // roleArn: "STRING_VALUE", // required
502
- * // filesystemType: "ext3" || "ext4" || "xfs",
502
+ * // filesystemType: "ext3" || "ext4" || "xfs" || "ntfs",
503
503
  * // },
504
504
  * // },
505
505
  * // ],
@@ -285,7 +285,7 @@ declare const DeleteServiceCommand_base: {
285
285
  * // },
286
286
  * // ],
287
287
  * // roleArn: "STRING_VALUE", // required
288
- * // filesystemType: "ext3" || "ext4" || "xfs",
288
+ * // filesystemType: "ext3" || "ext4" || "xfs" || "ntfs",
289
289
  * // },
290
290
  * // },
291
291
  * // ],
@@ -270,7 +270,7 @@ declare const DescribeServicesCommand_base: {
270
270
  * // },
271
271
  * // ],
272
272
  * // roleArn: "STRING_VALUE", // required
273
- * // filesystemType: "ext3" || "ext4" || "xfs",
273
+ * // filesystemType: "ext3" || "ext4" || "xfs" || "ntfs",
274
274
  * // },
275
275
  * // },
276
276
  * // ],
@@ -189,7 +189,7 @@ declare const RunTaskCommand_base: {
189
189
  * terminationPolicy: { // TaskManagedEBSVolumeTerminationPolicy
190
190
  * deleteOnTermination: true || false, // required
191
191
  * },
192
- * filesystemType: "ext3" || "ext4" || "xfs",
192
+ * filesystemType: "ext3" || "ext4" || "xfs" || "ntfs",
193
193
  * },
194
194
  * },
195
195
  * ],
@@ -143,7 +143,7 @@ declare const StartTaskCommand_base: {
143
143
  * terminationPolicy: { // TaskManagedEBSVolumeTerminationPolicy
144
144
  * deleteOnTermination: true || false, // required
145
145
  * },
146
- * filesystemType: "ext3" || "ext4" || "xfs",
146
+ * filesystemType: "ext3" || "ext4" || "xfs" || "ntfs",
147
147
  * },
148
148
  * },
149
149
  * ],
@@ -305,7 +305,7 @@ declare const UpdateServiceCommand_base: {
305
305
  * },
306
306
  * ],
307
307
  * roleArn: "STRING_VALUE", // required
308
- * filesystemType: "ext3" || "ext4" || "xfs",
308
+ * filesystemType: "ext3" || "ext4" || "xfs" || "ntfs",
309
309
  * },
310
310
  * },
311
311
  * ],
@@ -536,7 +536,7 @@ declare const UpdateServiceCommand_base: {
536
536
  * // },
537
537
  * // ],
538
538
  * // roleArn: "STRING_VALUE", // required
539
- * // filesystemType: "ext3" || "ext4" || "xfs",
539
+ * // filesystemType: "ext3" || "ext4" || "xfs" || "ntfs",
540
540
  * // },
541
541
  * // },
542
542
  * // ],
@@ -2273,6 +2273,7 @@ export interface ServiceRegistry {
2273
2273
  export declare const TaskFilesystemType: {
2274
2274
  readonly EXT3: "ext3";
2275
2275
  readonly EXT4: "ext4";
2276
+ readonly NTFS: "ntfs";
2276
2277
  readonly XFS: "xfs";
2277
2278
  };
2278
2279
  /**
@@ -2319,9 +2320,10 @@ export interface EBSTagSpecification {
2319
2320
  propagateTags?: PropagateTags;
2320
2321
  }
2321
2322
  /**
2322
- * <p>The configuration for the Amazon EBS volume that Amazon ECS creates and manages on your behalf.
2323
- * These settings are used to create each Amazon EBS volume, with one volume created for each
2324
- * task in the service.</p>
2323
+ * <p>The configuration for the Amazon EBS volume that Amazon ECS creates and manages on your behalf. These
2324
+ * settings are used to create each Amazon EBS volume, with one volume created for each task in
2325
+ * the service. For information about the supported launch types and operating systems, see <a href="https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ebs-volumes.html#ebs-volumes-configuration">Supported operating systems and launch types</a>
2326
+ * in the<i> Amazon Elastic Container Service Developer Guide</i>.</p>
2325
2327
  * <p>Many of these parameters map 1:1 with the Amazon EBS <code>CreateVolume</code> API request
2326
2328
  * parameters.</p>
2327
2329
  * @public
@@ -2473,13 +2475,14 @@ export interface ServiceManagedEBSVolumeConfiguration {
2473
2475
  */
2474
2476
  roleArn: string | undefined;
2475
2477
  /**
2476
- * <p>The Linux filesystem type for the volume. For volumes created from a snapshot, you
2477
- * must specify the same filesystem type that the volume was using when the snapshot was
2478
- * created. If there is a filesystem type mismatch, the task will fail to start.</p>
2479
- * <p>The available filesystem types are
2478
+ * <p>The filesystem type for the volume. For volumes created from a snapshot, you must specify
2479
+ * the same filesystem type that the volume was using when the snapshot was created. If
2480
+ * there is a filesystem type mismatch, the task will fail to start.</p>
2481
+ * <p>The available Linux filesystem types are
2480
2482
  <code>ext3</code>, <code>ext4</code>, and
2481
2483
  * <code>xfs</code>. If no value is specified, the <code>xfs</code> filesystem type is
2482
2484
  * used by default.</p>
2485
+ * <p>The available Windows filesystem types are <code>NTFS</code>.</p>
2483
2486
  * @public
2484
2487
  */
2485
2488
  filesystemType?: TaskFilesystemType;
@@ -4528,7 +4531,7 @@ export interface HealthCheck {
4528
4531
  * <code> CMD-SHELL, curl -f http://localhost/ || exit 1</code>
4529
4532
  * </p>
4530
4533
  * <p>An exit code of 0 indicates success, and non-zero exit code indicates failure. For
4531
- * more information, see <code>HealthCheck</code> in the docker container create command</p>
4534
+ * more information, see <code>HealthCheck</code> in the docker container create command.</p>
4532
4535
  * @public
4533
4536
  */
4534
4537
  command: string[] | undefined;
@@ -360,6 +360,7 @@ export interface ServiceRegistry {
360
360
  export declare const TaskFilesystemType: {
361
361
  readonly EXT3: "ext3";
362
362
  readonly EXT4: "ext4";
363
+ readonly NTFS: "ntfs";
363
364
  readonly XFS: "xfs";
364
365
  };
365
366
  export type TaskFilesystemType =
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-ecs",
3
3
  "description": "AWS SDK for JavaScript Ecs Client for Node.js, Browser and React Native",
4
- "version": "3.678.0",
4
+ "version": "3.682.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-ecs",
@@ -20,19 +20,19 @@
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.678.0",
24
- "@aws-sdk/client-sts": "3.678.0",
25
- "@aws-sdk/core": "3.678.0",
26
- "@aws-sdk/credential-provider-node": "3.678.0",
27
- "@aws-sdk/middleware-host-header": "3.667.0",
28
- "@aws-sdk/middleware-logger": "3.667.0",
29
- "@aws-sdk/middleware-recursion-detection": "3.667.0",
30
- "@aws-sdk/middleware-user-agent": "3.678.0",
31
- "@aws-sdk/region-config-resolver": "3.667.0",
32
- "@aws-sdk/types": "3.667.0",
33
- "@aws-sdk/util-endpoints": "3.667.0",
34
- "@aws-sdk/util-user-agent-browser": "3.675.0",
35
- "@aws-sdk/util-user-agent-node": "3.678.0",
23
+ "@aws-sdk/client-sso-oidc": "3.682.0",
24
+ "@aws-sdk/client-sts": "3.682.0",
25
+ "@aws-sdk/core": "3.679.0",
26
+ "@aws-sdk/credential-provider-node": "3.682.0",
27
+ "@aws-sdk/middleware-host-header": "3.679.0",
28
+ "@aws-sdk/middleware-logger": "3.679.0",
29
+ "@aws-sdk/middleware-recursion-detection": "3.679.0",
30
+ "@aws-sdk/middleware-user-agent": "3.682.0",
31
+ "@aws-sdk/region-config-resolver": "3.679.0",
32
+ "@aws-sdk/types": "3.679.0",
33
+ "@aws-sdk/util-endpoints": "3.679.0",
34
+ "@aws-sdk/util-user-agent-browser": "3.679.0",
35
+ "@aws-sdk/util-user-agent-node": "3.682.0",
36
36
  "@smithy/config-resolver": "^3.0.9",
37
37
  "@smithy/core": "^2.4.8",
38
38
  "@smithy/fetch-http-handler": "^3.2.9",