@aws-sdk/client-omics 3.445.0 → 3.448.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.
@@ -247,6 +247,7 @@ exports.FileType = {
247
247
  BAM: "BAM",
248
248
  CRAM: "CRAM",
249
249
  FASTQ: "FASTQ",
250
+ UBAM: "UBAM",
250
251
  };
251
252
  exports.WorkflowEngine = {
252
253
  CWL: "CWL",
@@ -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;
@@ -234,6 +234,7 @@ export const FileType = {
234
234
  BAM: "BAM",
235
235
  CRAM: "CRAM",
236
236
  FASTQ: "FASTQ",
237
+ UBAM: "UBAM",
237
238
  };
238
239
  export const WorkflowEngine = {
239
240
  CWL: "CWL",
@@ -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;
@@ -39,7 +39,7 @@ export interface CreateMultipartReadSetUploadCommandOutput extends CreateMultipa
39
39
  * subjectId: "STRING_VALUE", // required
40
40
  * sampleId: "STRING_VALUE", // required
41
41
  * generatedFrom: "STRING_VALUE",
42
- * referenceArn: "STRING_VALUE", // required
42
+ * referenceArn: "STRING_VALUE",
43
43
  * name: "STRING_VALUE", // required
44
44
  * description: "STRING_VALUE",
45
45
  * tags: { // TagMap
@@ -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
  * ```
@@ -44,7 +44,7 @@ export interface StartReadSetImportJobCommandOutput extends StartReadSetImportJo
44
44
  * subjectId: "STRING_VALUE", // required
45
45
  * sampleId: "STRING_VALUE", // required
46
46
  * generatedFrom: "STRING_VALUE",
47
- * referenceArn: "STRING_VALUE", // required
47
+ * referenceArn: "STRING_VALUE",
48
48
  * name: "STRING_VALUE",
49
49
  * description: "STRING_VALUE",
50
50
  * tags: { // TagMap
@@ -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
  * ```
@@ -2164,6 +2164,7 @@ export declare const FileType: {
2164
2164
  readonly BAM: "BAM";
2165
2165
  readonly CRAM: "CRAM";
2166
2166
  readonly FASTQ: "FASTQ";
2167
+ readonly UBAM: "UBAM";
2167
2168
  };
2168
2169
  /**
2169
2170
  * @public
@@ -2221,7 +2222,7 @@ export interface CreateMultipartReadSetUploadRequest {
2221
2222
  * The ARN of the reference.
2222
2223
  * </p>
2223
2224
  */
2224
- referenceArn: string | undefined;
2225
+ referenceArn?: string;
2225
2226
  /**
2226
2227
  * @public
2227
2228
  * <p>
@@ -4207,6 +4208,20 @@ export interface GetRunResponse {
4207
4208
  * </p>
4208
4209
  */
4209
4210
  logLocation?: RunLogLocation;
4211
+ /**
4212
+ * @public
4213
+ * <p>
4214
+ * The universally unique identifier for a run.
4215
+ * </p>
4216
+ */
4217
+ uuid?: string;
4218
+ /**
4219
+ * @public
4220
+ * <p>
4221
+ * The destination for workflow outputs.
4222
+ * </p>
4223
+ */
4224
+ runOutputUri?: string;
4210
4225
  }
4211
4226
  /**
4212
4227
  * @public
@@ -6755,6 +6770,20 @@ export interface StartRunResponse {
6755
6770
  * <p>The run's tags.</p>
6756
6771
  */
6757
6772
  tags?: Record<string, string>;
6773
+ /**
6774
+ * @public
6775
+ * <p>
6776
+ * The universally unique identifier for a run.
6777
+ * </p>
6778
+ */
6779
+ uuid?: string;
6780
+ /**
6781
+ * @public
6782
+ * <p>
6783
+ * The destination for workflow outputs.
6784
+ * </p>
6785
+ */
6786
+ runOutputUri?: string;
6758
6787
  }
6759
6788
  /**
6760
6789
  * @public
@@ -6906,7 +6935,7 @@ export interface StartReadSetImportJobSourceItem {
6906
6935
  * @public
6907
6936
  * <p>The source's reference ARN.</p>
6908
6937
  */
6909
- referenceArn: string | undefined;
6938
+ referenceArn?: string;
6910
6939
  /**
6911
6940
  * @public
6912
6941
  * <p>The source's name.</p>
@@ -595,6 +595,7 @@ export declare const FileType: {
595
595
  readonly BAM: "BAM";
596
596
  readonly CRAM: "CRAM";
597
597
  readonly FASTQ: "FASTQ";
598
+ readonly UBAM: "UBAM";
598
599
  };
599
600
  export type FileType = (typeof FileType)[keyof typeof FileType];
600
601
  export interface CreateMultipartReadSetUploadRequest {
@@ -604,7 +605,7 @@ export interface CreateMultipartReadSetUploadRequest {
604
605
  subjectId: string | undefined;
605
606
  sampleId: string | undefined;
606
607
  generatedFrom?: string;
607
- referenceArn: string | undefined;
608
+ referenceArn?: string;
608
609
  name: string | undefined;
609
610
  description?: string;
610
611
  tags?: Record<string, string>;
@@ -1138,6 +1139,8 @@ export interface GetRunResponse {
1138
1139
  retentionMode?: RunRetentionMode;
1139
1140
  failureReason?: string;
1140
1141
  logLocation?: RunLogLocation;
1142
+ uuid?: string;
1143
+ runOutputUri?: string;
1141
1144
  }
1142
1145
  export interface GetRunGroupRequest {
1143
1146
  id: string | undefined;
@@ -1704,6 +1707,8 @@ export interface StartRunResponse {
1704
1707
  id?: string;
1705
1708
  status?: RunStatus;
1706
1709
  tags?: Record<string, string>;
1710
+ uuid?: string;
1711
+ runOutputUri?: string;
1707
1712
  }
1708
1713
  export interface StartReadSetActivationJobSourceItem {
1709
1714
  readSetId: string | undefined;
@@ -1739,7 +1744,7 @@ export interface StartReadSetImportJobSourceItem {
1739
1744
  subjectId: string | undefined;
1740
1745
  sampleId: string | undefined;
1741
1746
  generatedFrom?: string;
1742
- referenceArn: string | undefined;
1747
+ referenceArn?: string;
1743
1748
  name?: string;
1744
1749
  description?: string;
1745
1750
  tags?: Record<string, string>;
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.448.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",