@aws-sdk/client-omics 3.387.0 → 3.389.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.
@@ -4009,6 +4009,7 @@ const de_GetRunTaskCommand = async (output, context) => {
4009
4009
  cpus: smithy_client_1.expectInt32,
4010
4010
  creationTime: (_) => (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseRfc3339DateTimeWithOffset)(_)),
4011
4011
  gpus: smithy_client_1.expectInt32,
4012
+ instanceType: smithy_client_1.expectString,
4012
4013
  logStream: smithy_client_1.expectString,
4013
4014
  memory: smithy_client_1.expectInt32,
4014
4015
  name: smithy_client_1.expectString,
@@ -6520,6 +6521,7 @@ const de_TaskListItem = (output, context) => {
6520
6521
  cpus: smithy_client_1.expectInt32,
6521
6522
  creationTime: (_) => (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseRfc3339DateTimeWithOffset)(_)),
6522
6523
  gpus: smithy_client_1.expectInt32,
6524
+ instanceType: smithy_client_1.expectString,
6523
6525
  memory: smithy_client_1.expectInt32,
6524
6526
  name: smithy_client_1.expectString,
6525
6527
  startTime: (_) => (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseRfc3339DateTimeWithOffset)(_)),
@@ -3898,6 +3898,7 @@ export const de_GetRunTaskCommand = async (output, context) => {
3898
3898
  cpus: __expectInt32,
3899
3899
  creationTime: (_) => __expectNonNull(__parseRfc3339DateTimeWithOffset(_)),
3900
3900
  gpus: __expectInt32,
3901
+ instanceType: __expectString,
3901
3902
  logStream: __expectString,
3902
3903
  memory: __expectInt32,
3903
3904
  name: __expectString,
@@ -6371,6 +6372,7 @@ const de_TaskListItem = (output, context) => {
6371
6372
  cpus: __expectInt32,
6372
6373
  creationTime: (_) => __expectNonNull(__parseRfc3339DateTimeWithOffset(_)),
6373
6374
  gpus: __expectInt32,
6375
+ instanceType: __expectString,
6374
6376
  memory: __expectInt32,
6375
6377
  name: __expectString,
6376
6378
  startTime: (_) => __expectNonNull(__parseRfc3339DateTimeWithOffset(_)),
@@ -48,6 +48,7 @@ export interface GetRunTaskCommandOutput extends GetRunTaskResponse, __MetadataB
48
48
  * // statusMessage: "STRING_VALUE",
49
49
  * // logStream: "STRING_VALUE",
50
50
  * // gpus: Number("int"),
51
+ * // instanceType: "STRING_VALUE",
51
52
  * // };
52
53
  *
53
54
  * ```
@@ -50,6 +50,7 @@ export interface ListRunTasksCommandOutput extends ListRunTasksResponse, __Metad
50
50
  * // startTime: new Date("TIMESTAMP"),
51
51
  * // stopTime: new Date("TIMESTAMP"),
52
52
  * // gpus: Number("int"),
53
+ * // instanceType: "STRING_VALUE",
53
54
  * // },
54
55
  * // ],
55
56
  * // nextToken: "STRING_VALUE",
@@ -547,7 +547,7 @@ export interface ListAnnotationImportJobsRequest {
547
547
  ids?: string[];
548
548
  /**
549
549
  * @public
550
- * <p>Specify the pagination token from a previous request to retrieve the next page of results.</p>
550
+ * <p>Specifies the pagination token from a previous request to retrieve the next page of results.</p>
551
551
  */
552
552
  nextToken?: string;
553
553
  /**
@@ -620,7 +620,7 @@ export interface ListAnnotationImportJobsResponse {
620
620
  annotationImportJobs?: AnnotationImportJobItem[];
621
621
  /**
622
622
  * @public
623
- * <p>A pagination token that's included if more results are available.</p>
623
+ * <p>Specifies the pagination token from a previous request to retrieve the next page of results.</p>
624
624
  */
625
625
  nextToken?: string;
626
626
  }
@@ -3464,6 +3464,13 @@ export interface GetRunTaskResponse {
3464
3464
  * </p>
3465
3465
  */
3466
3466
  gpus?: number;
3467
+ /**
3468
+ * @public
3469
+ * <p>
3470
+ * The instance type for a task.
3471
+ * </p>
3472
+ */
3473
+ instanceType?: string;
3467
3474
  }
3468
3475
  /**
3469
3476
  * @public
@@ -5002,6 +5009,13 @@ export interface TaskListItem {
5002
5009
  * </p>
5003
5010
  */
5004
5011
  gpus?: number;
5012
+ /**
5013
+ * @public
5014
+ * <p>
5015
+ * The instance type for a task.
5016
+ * </p>
5017
+ */
5018
+ instanceType?: string;
5005
5019
  }
5006
5020
  /**
5007
5021
  * @public
@@ -994,6 +994,7 @@ export interface GetRunTaskResponse {
994
994
  statusMessage?: string;
995
995
  logStream?: string;
996
996
  gpus?: number;
997
+ instanceType?: string;
997
998
  }
998
999
  export interface GetSequenceStoreRequest {
999
1000
  id: string | undefined;
@@ -1330,6 +1331,7 @@ export interface TaskListItem {
1330
1331
  startTime?: Date;
1331
1332
  stopTime?: Date;
1332
1333
  gpus?: number;
1334
+ instanceType?: string;
1333
1335
  }
1334
1336
  export interface ListRunTasksResponse {
1335
1337
  items?: TaskListItem[];
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-omics",
3
3
  "description": "AWS SDK for JavaScript Omics Client for Node.js, Browser and React Native",
4
- "version": "3.387.0",
4
+ "version": "3.389.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",
@@ -21,8 +21,8 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "3.0.0",
23
23
  "@aws-crypto/sha256-js": "3.0.0",
24
- "@aws-sdk/client-sts": "3.387.0",
25
- "@aws-sdk/credential-provider-node": "3.387.0",
24
+ "@aws-sdk/client-sts": "3.388.0",
25
+ "@aws-sdk/credential-provider-node": "3.388.0",
26
26
  "@aws-sdk/middleware-host-header": "3.387.0",
27
27
  "@aws-sdk/middleware-logger": "3.387.0",
28
28
  "@aws-sdk/middleware-recursion-detection": "3.387.0",