@aws-sdk/client-omics 3.445.0 → 3.446.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.
@@ -4507,6 +4507,7 @@ const de_GetRunCommand = async (output, context) => {
4507
4507
  roleArn: smithy_client_1.expectString,
4508
4508
  runGroupId: smithy_client_1.expectString,
4509
4509
  runId: smithy_client_1.expectString,
4510
+ runOutputUri: smithy_client_1.expectString,
4510
4511
  startTime: (_) => (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseRfc3339DateTimeWithOffset)(_)),
4511
4512
  startedBy: smithy_client_1.expectString,
4512
4513
  status: smithy_client_1.expectString,
@@ -4514,6 +4515,7 @@ const de_GetRunCommand = async (output, context) => {
4514
4515
  stopTime: (_) => (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseRfc3339DateTimeWithOffset)(_)),
4515
4516
  storageCapacity: smithy_client_1.expectInt32,
4516
4517
  tags: smithy_client_1._json,
4518
+ uuid: smithy_client_1.expectString,
4517
4519
  workflowId: smithy_client_1.expectString,
4518
4520
  workflowType: smithy_client_1.expectString,
4519
4521
  });
@@ -6338,8 +6340,10 @@ const de_StartRunCommand = async (output, context) => {
6338
6340
  const doc = (0, smithy_client_1.take)(data, {
6339
6341
  arn: smithy_client_1.expectString,
6340
6342
  id: smithy_client_1.expectString,
6343
+ runOutputUri: smithy_client_1.expectString,
6341
6344
  status: smithy_client_1.expectString,
6342
6345
  tags: smithy_client_1._json,
6346
+ uuid: smithy_client_1.expectString,
6343
6347
  });
6344
6348
  Object.assign(contents, doc);
6345
6349
  return contents;
@@ -4381,6 +4381,7 @@ export const de_GetRunCommand = async (output, context) => {
4381
4381
  roleArn: __expectString,
4382
4382
  runGroupId: __expectString,
4383
4383
  runId: __expectString,
4384
+ runOutputUri: __expectString,
4384
4385
  startTime: (_) => __expectNonNull(__parseRfc3339DateTimeWithOffset(_)),
4385
4386
  startedBy: __expectString,
4386
4387
  status: __expectString,
@@ -4388,6 +4389,7 @@ export const de_GetRunCommand = async (output, context) => {
4388
4389
  stopTime: (_) => __expectNonNull(__parseRfc3339DateTimeWithOffset(_)),
4389
4390
  storageCapacity: __expectInt32,
4390
4391
  tags: _json,
4392
+ uuid: __expectString,
4391
4393
  workflowId: __expectString,
4392
4394
  workflowType: __expectString,
4393
4395
  });
@@ -6178,8 +6180,10 @@ export const de_StartRunCommand = async (output, context) => {
6178
6180
  const doc = take(data, {
6179
6181
  arn: __expectString,
6180
6182
  id: __expectString,
6183
+ runOutputUri: __expectString,
6181
6184
  status: __expectString,
6182
6185
  tags: _json,
6186
+ uuid: __expectString,
6183
6187
  });
6184
6188
  Object.assign(contents, doc);
6185
6189
  return contents;
@@ -73,6 +73,8 @@ export interface GetRunCommandOutput extends GetRunResponse, __MetadataBearer {
73
73
  * // engineLogStream: "STRING_VALUE",
74
74
  * // runLogStream: "STRING_VALUE",
75
75
  * // },
76
+ * // uuid: "STRING_VALUE",
77
+ * // runOutputUri: "STRING_VALUE",
76
78
  * // };
77
79
  *
78
80
  * ```
@@ -61,6 +61,8 @@ export interface StartRunCommandOutput extends StartRunResponse, __MetadataBeare
61
61
  * // tags: { // TagMap
62
62
  * // "<keys>": "STRING_VALUE",
63
63
  * // },
64
+ * // uuid: "STRING_VALUE",
65
+ * // runOutputUri: "STRING_VALUE",
64
66
  * // };
65
67
  *
66
68
  * ```
@@ -4207,6 +4207,20 @@ export interface GetRunResponse {
4207
4207
  * </p>
4208
4208
  */
4209
4209
  logLocation?: RunLogLocation;
4210
+ /**
4211
+ * @public
4212
+ * <p>
4213
+ * The universally unique identifier for a run.
4214
+ * </p>
4215
+ */
4216
+ uuid?: string;
4217
+ /**
4218
+ * @public
4219
+ * <p>
4220
+ * The destination for workflow outputs.
4221
+ * </p>
4222
+ */
4223
+ runOutputUri?: string;
4210
4224
  }
4211
4225
  /**
4212
4226
  * @public
@@ -6755,6 +6769,20 @@ export interface StartRunResponse {
6755
6769
  * <p>The run's tags.</p>
6756
6770
  */
6757
6771
  tags?: Record<string, string>;
6772
+ /**
6773
+ * @public
6774
+ * <p>
6775
+ * The universally unique identifier for a run.
6776
+ * </p>
6777
+ */
6778
+ uuid?: string;
6779
+ /**
6780
+ * @public
6781
+ * <p>
6782
+ * The destination for workflow outputs.
6783
+ * </p>
6784
+ */
6785
+ runOutputUri?: string;
6758
6786
  }
6759
6787
  /**
6760
6788
  * @public
@@ -1138,6 +1138,8 @@ export interface GetRunResponse {
1138
1138
  retentionMode?: RunRetentionMode;
1139
1139
  failureReason?: string;
1140
1140
  logLocation?: RunLogLocation;
1141
+ uuid?: string;
1142
+ runOutputUri?: string;
1141
1143
  }
1142
1144
  export interface GetRunGroupRequest {
1143
1145
  id: string | undefined;
@@ -1704,6 +1706,8 @@ export interface StartRunResponse {
1704
1706
  id?: string;
1705
1707
  status?: RunStatus;
1706
1708
  tags?: Record<string, string>;
1709
+ uuid?: string;
1710
+ runOutputUri?: string;
1707
1711
  }
1708
1712
  export interface StartReadSetActivationJobSourceItem {
1709
1713
  readSetId: string | undefined;
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.445.0",
4
+ "version": "3.446.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",