@aws-sdk/client-omics 3.637.0 → 3.645.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/dist-cjs/index.js +8 -0
- package/dist-es/models/models_0.js +3 -0
- package/dist-es/protocols/Aws_restJson1.js +3 -0
- package/dist-types/commands/CreateRunGroupCommand.d.ts +1 -1
- package/dist-types/commands/CreateShareCommand.d.ts +2 -2
- package/dist-types/commands/GetReadSetImportJobCommand.d.ts +1 -0
- package/dist-types/commands/GetReadSetMetadataCommand.d.ts +1 -0
- package/dist-types/commands/GetReferenceImportJobCommand.d.ts +1 -0
- package/dist-types/commands/GetReferenceMetadataCommand.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +45 -6
- package/dist-types/ts3.4/models/models_0.d.ts +10 -0
- package/package.json +6 -6
package/dist-cjs/index.js
CHANGED
|
@@ -117,6 +117,7 @@ __export(src_exports, {
|
|
|
117
117
|
ReadSetImportJobStatus: () => ReadSetImportJobStatus,
|
|
118
118
|
ReadSetPartSource: () => ReadSetPartSource,
|
|
119
119
|
ReadSetStatus: () => ReadSetStatus,
|
|
120
|
+
ReferenceCreationType: () => ReferenceCreationType,
|
|
120
121
|
ReferenceFile: () => ReferenceFile,
|
|
121
122
|
ReferenceImportJobItemStatus: () => ReferenceImportJobItemStatus,
|
|
122
123
|
ReferenceImportJobStatus: () => ReferenceImportJobStatus,
|
|
@@ -914,6 +915,9 @@ var ReferenceImportJobStatus = {
|
|
|
914
915
|
IN_PROGRESS: "IN_PROGRESS",
|
|
915
916
|
SUBMITTED: "SUBMITTED"
|
|
916
917
|
};
|
|
918
|
+
var ReferenceCreationType = {
|
|
919
|
+
IMPORT: "IMPORT"
|
|
920
|
+
};
|
|
917
921
|
var ReferenceStatus = {
|
|
918
922
|
ACTIVE: "ACTIVE",
|
|
919
923
|
DELETED: "DELETED",
|
|
@@ -3411,6 +3415,7 @@ var de_GetReadSetMetadataCommand = /* @__PURE__ */ __name(async (output, context
|
|
|
3411
3415
|
const data = (0, import_smithy_client.expectNonNull)((0, import_smithy_client.expectObject)(await (0, import_core2.parseJsonBody)(output.body, context)), "body");
|
|
3412
3416
|
const doc = (0, import_smithy_client.take)(data, {
|
|
3413
3417
|
arn: import_smithy_client.expectString,
|
|
3418
|
+
creationJobId: import_smithy_client.expectString,
|
|
3414
3419
|
creationTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseRfc3339DateTimeWithOffset)(_)),
|
|
3415
3420
|
creationType: import_smithy_client.expectString,
|
|
3416
3421
|
description: import_smithy_client.expectString,
|
|
@@ -3473,7 +3478,9 @@ var de_GetReferenceMetadataCommand = /* @__PURE__ */ __name(async (output, conte
|
|
|
3473
3478
|
const data = (0, import_smithy_client.expectNonNull)((0, import_smithy_client.expectObject)(await (0, import_core2.parseJsonBody)(output.body, context)), "body");
|
|
3474
3479
|
const doc = (0, import_smithy_client.take)(data, {
|
|
3475
3480
|
arn: import_smithy_client.expectString,
|
|
3481
|
+
creationJobId: import_smithy_client.expectString,
|
|
3476
3482
|
creationTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseRfc3339DateTimeWithOffset)(_)),
|
|
3483
|
+
creationType: import_smithy_client.expectString,
|
|
3477
3484
|
description: import_smithy_client.expectString,
|
|
3478
3485
|
files: import_smithy_client._json,
|
|
3479
3486
|
id: import_smithy_client.expectString,
|
|
@@ -7701,6 +7708,7 @@ var waitUntilWorkflowActive = /* @__PURE__ */ __name(async (params, input) => {
|
|
|
7701
7708
|
ReferenceFile,
|
|
7702
7709
|
ReferenceImportJobItemStatus,
|
|
7703
7710
|
ReferenceImportJobStatus,
|
|
7711
|
+
ReferenceCreationType,
|
|
7704
7712
|
ReferenceStatus,
|
|
7705
7713
|
RunExport,
|
|
7706
7714
|
RunLogLevel,
|
|
@@ -350,6 +350,9 @@ export const ReferenceImportJobStatus = {
|
|
|
350
350
|
IN_PROGRESS: "IN_PROGRESS",
|
|
351
351
|
SUBMITTED: "SUBMITTED",
|
|
352
352
|
};
|
|
353
|
+
export const ReferenceCreationType = {
|
|
354
|
+
IMPORT: "IMPORT",
|
|
355
|
+
};
|
|
353
356
|
export const ReferenceStatus = {
|
|
354
357
|
ACTIVE: "ACTIVE",
|
|
355
358
|
DELETED: "DELETED",
|
|
@@ -2353,6 +2353,7 @@ export const de_GetReadSetMetadataCommand = async (output, context) => {
|
|
|
2353
2353
|
const data = __expectNonNull(__expectObject(await parseBody(output.body, context)), "body");
|
|
2354
2354
|
const doc = take(data, {
|
|
2355
2355
|
arn: __expectString,
|
|
2356
|
+
creationJobId: __expectString,
|
|
2356
2357
|
creationTime: (_) => __expectNonNull(__parseRfc3339DateTimeWithOffset(_)),
|
|
2357
2358
|
creationType: __expectString,
|
|
2358
2359
|
description: __expectString,
|
|
@@ -2415,7 +2416,9 @@ export const de_GetReferenceMetadataCommand = async (output, context) => {
|
|
|
2415
2416
|
const data = __expectNonNull(__expectObject(await parseBody(output.body, context)), "body");
|
|
2416
2417
|
const doc = take(data, {
|
|
2417
2418
|
arn: __expectString,
|
|
2419
|
+
creationJobId: __expectString,
|
|
2418
2420
|
creationTime: (_) => __expectNonNull(__parseRfc3339DateTimeWithOffset(_)),
|
|
2421
|
+
creationType: __expectString,
|
|
2419
2422
|
description: __expectString,
|
|
2420
2423
|
files: _json,
|
|
2421
2424
|
id: __expectString,
|
|
@@ -27,7 +27,7 @@ declare const CreateRunGroupCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
* <p>
|
|
30
|
+
* <p>You can optionally create a run group to limit the compute resources for the runs that you add to the group.</p>
|
|
31
31
|
* @example
|
|
32
32
|
* Use a bare-bones client and the command you need to make an API call.
|
|
33
33
|
* ```javascript
|
|
@@ -32,10 +32,10 @@ declare const CreateShareCommand_base: {
|
|
|
32
32
|
* <p>The following resources support cross-account sharing:</p>
|
|
33
33
|
* <ul>
|
|
34
34
|
* <li>
|
|
35
|
-
* <p>
|
|
35
|
+
* <p>HealthOmics variant stores</p>
|
|
36
36
|
* </li>
|
|
37
37
|
* <li>
|
|
38
|
-
* <p>
|
|
38
|
+
* <p>HealthOmics annotation stores</p>
|
|
39
39
|
* </li>
|
|
40
40
|
* <li>
|
|
41
41
|
* <p>Private workflows</p>
|
|
@@ -2337,17 +2337,19 @@ export interface CreateRunGroupRequest {
|
|
|
2337
2337
|
*/
|
|
2338
2338
|
name?: string;
|
|
2339
2339
|
/**
|
|
2340
|
-
* <p>The maximum number of CPUs
|
|
2340
|
+
* <p>The maximum number of CPUs that can run
|
|
2341
|
+
* concurrently across all active runs in the run group.</p>
|
|
2341
2342
|
* @public
|
|
2342
2343
|
*/
|
|
2343
2344
|
maxCpus?: number;
|
|
2344
2345
|
/**
|
|
2345
|
-
* <p>The maximum number of
|
|
2346
|
+
* <p>The maximum number of runs that can be running at the same time.</p>
|
|
2346
2347
|
* @public
|
|
2347
2348
|
*/
|
|
2348
2349
|
maxRuns?: number;
|
|
2349
2350
|
/**
|
|
2350
|
-
* <p>
|
|
2351
|
+
* <p>The maximum time for each run (in minutes). If a run exceeds
|
|
2352
|
+
* the maximum run time, the run fails automatically.</p>
|
|
2351
2353
|
* @public
|
|
2352
2354
|
*/
|
|
2353
2355
|
maxDuration?: number;
|
|
@@ -2362,7 +2364,8 @@ export interface CreateRunGroupRequest {
|
|
|
2362
2364
|
*/
|
|
2363
2365
|
requestId?: string;
|
|
2364
2366
|
/**
|
|
2365
|
-
* <p>The maximum GPUs that can
|
|
2367
|
+
* <p>The maximum number of GPUs that can run concurrently across all active
|
|
2368
|
+
* runs in the run group.</p>
|
|
2366
2369
|
* @public
|
|
2367
2370
|
*/
|
|
2368
2371
|
maxGpus?: number;
|
|
@@ -2654,7 +2657,7 @@ export interface CreateWorkflowRequest {
|
|
|
2654
2657
|
*/
|
|
2655
2658
|
parameterTemplate?: Record<string, WorkflowParameter>;
|
|
2656
2659
|
/**
|
|
2657
|
-
* <p>The storage capacity for the workflow in gibibytes.</p>
|
|
2660
|
+
* <p>The default storage capacity for the workflow runs, in gibibytes.</p>
|
|
2658
2661
|
* @public
|
|
2659
2662
|
*/
|
|
2660
2663
|
storageCapacity?: number;
|
|
@@ -3374,6 +3377,11 @@ export interface ImportReadSetSourceItem {
|
|
|
3374
3377
|
* @public
|
|
3375
3378
|
*/
|
|
3376
3379
|
tags?: Record<string, string>;
|
|
3380
|
+
/**
|
|
3381
|
+
* <p>The source's read set ID.</p>
|
|
3382
|
+
* @public
|
|
3383
|
+
*/
|
|
3384
|
+
readSetId?: string;
|
|
3377
3385
|
}
|
|
3378
3386
|
/**
|
|
3379
3387
|
* @public
|
|
@@ -3602,6 +3610,11 @@ export interface GetReadSetMetadataResponse {
|
|
|
3602
3610
|
* @public
|
|
3603
3611
|
*/
|
|
3604
3612
|
etag?: ETag;
|
|
3613
|
+
/**
|
|
3614
|
+
* <p>The read set's creation job ID.</p>
|
|
3615
|
+
* @public
|
|
3616
|
+
*/
|
|
3617
|
+
creationJobId?: string;
|
|
3605
3618
|
}
|
|
3606
3619
|
/**
|
|
3607
3620
|
* @public
|
|
@@ -3719,6 +3732,11 @@ export interface ImportReferenceSourceItem {
|
|
|
3719
3732
|
* @public
|
|
3720
3733
|
*/
|
|
3721
3734
|
tags?: Record<string, string>;
|
|
3735
|
+
/**
|
|
3736
|
+
* <p>The source's reference ID.</p>
|
|
3737
|
+
* @public
|
|
3738
|
+
*/
|
|
3739
|
+
referenceId?: string;
|
|
3722
3740
|
}
|
|
3723
3741
|
/**
|
|
3724
3742
|
* @public
|
|
@@ -3797,6 +3815,17 @@ export interface GetReferenceMetadataRequest {
|
|
|
3797
3815
|
*/
|
|
3798
3816
|
referenceStoreId: string | undefined;
|
|
3799
3817
|
}
|
|
3818
|
+
/**
|
|
3819
|
+
* @public
|
|
3820
|
+
* @enum
|
|
3821
|
+
*/
|
|
3822
|
+
export declare const ReferenceCreationType: {
|
|
3823
|
+
readonly IMPORT: "IMPORT";
|
|
3824
|
+
};
|
|
3825
|
+
/**
|
|
3826
|
+
* @public
|
|
3827
|
+
*/
|
|
3828
|
+
export type ReferenceCreationType = (typeof ReferenceCreationType)[keyof typeof ReferenceCreationType];
|
|
3800
3829
|
/**
|
|
3801
3830
|
* <p>A set of genome reference files.</p>
|
|
3802
3831
|
* @public
|
|
@@ -3880,6 +3909,16 @@ export interface GetReferenceMetadataResponse {
|
|
|
3880
3909
|
* @public
|
|
3881
3910
|
*/
|
|
3882
3911
|
files?: ReferenceFiles;
|
|
3912
|
+
/**
|
|
3913
|
+
* <p>The reference's creation type.</p>
|
|
3914
|
+
* @public
|
|
3915
|
+
*/
|
|
3916
|
+
creationType?: ReferenceCreationType;
|
|
3917
|
+
/**
|
|
3918
|
+
* <p>The reference's creation job ID.</p>
|
|
3919
|
+
* @public
|
|
3920
|
+
*/
|
|
3921
|
+
creationJobId?: string;
|
|
3883
3922
|
}
|
|
3884
3923
|
/**
|
|
3885
3924
|
* @public
|
|
@@ -4774,7 +4813,7 @@ export interface GetWorkflowResponse {
|
|
|
4774
4813
|
*/
|
|
4775
4814
|
parameterTemplate?: Record<string, WorkflowParameter>;
|
|
4776
4815
|
/**
|
|
4777
|
-
* <p>The workflow's storage capacity in gibibytes.</p>
|
|
4816
|
+
* <p>The workflow's default run storage capacity in gibibytes.</p>
|
|
4778
4817
|
* @public
|
|
4779
4818
|
*/
|
|
4780
4819
|
storageCapacity?: number;
|
|
@@ -938,6 +938,7 @@ export interface ImportReadSetSourceItem {
|
|
|
938
938
|
name?: string;
|
|
939
939
|
description?: string;
|
|
940
940
|
tags?: Record<string, string>;
|
|
941
|
+
readSetId?: string;
|
|
941
942
|
}
|
|
942
943
|
export declare const ReadSetImportJobStatus: {
|
|
943
944
|
readonly CANCELLED: "CANCELLED";
|
|
@@ -1002,6 +1003,7 @@ export interface GetReadSetMetadataResponse {
|
|
|
1002
1003
|
statusMessage?: string;
|
|
1003
1004
|
creationType?: CreationType;
|
|
1004
1005
|
etag?: ETag;
|
|
1006
|
+
creationJobId?: string;
|
|
1005
1007
|
}
|
|
1006
1008
|
export declare const ReferenceFile: {
|
|
1007
1009
|
readonly INDEX: "INDEX";
|
|
@@ -1037,6 +1039,7 @@ export interface ImportReferenceSourceItem {
|
|
|
1037
1039
|
name?: string;
|
|
1038
1040
|
description?: string;
|
|
1039
1041
|
tags?: Record<string, string>;
|
|
1042
|
+
referenceId?: string;
|
|
1040
1043
|
}
|
|
1041
1044
|
export declare const ReferenceImportJobStatus: {
|
|
1042
1045
|
readonly CANCELLED: "CANCELLED";
|
|
@@ -1063,6 +1066,11 @@ export interface GetReferenceMetadataRequest {
|
|
|
1063
1066
|
id: string | undefined;
|
|
1064
1067
|
referenceStoreId: string | undefined;
|
|
1065
1068
|
}
|
|
1069
|
+
export declare const ReferenceCreationType: {
|
|
1070
|
+
readonly IMPORT: "IMPORT";
|
|
1071
|
+
};
|
|
1072
|
+
export type ReferenceCreationType =
|
|
1073
|
+
(typeof ReferenceCreationType)[keyof typeof ReferenceCreationType];
|
|
1066
1074
|
export interface ReferenceFiles {
|
|
1067
1075
|
source?: FileInformation;
|
|
1068
1076
|
index?: FileInformation;
|
|
@@ -1085,6 +1093,8 @@ export interface GetReferenceMetadataResponse {
|
|
|
1085
1093
|
creationTime: Date | undefined;
|
|
1086
1094
|
updateTime: Date | undefined;
|
|
1087
1095
|
files?: ReferenceFiles;
|
|
1096
|
+
creationType?: ReferenceCreationType;
|
|
1097
|
+
creationJobId?: string;
|
|
1088
1098
|
}
|
|
1089
1099
|
export interface GetReferenceStoreRequest {
|
|
1090
1100
|
id: 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.
|
|
4
|
+
"version": "3.645.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-omics",
|
|
@@ -20,17 +20,17 @@
|
|
|
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.
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.645.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.645.0",
|
|
25
25
|
"@aws-sdk/core": "3.635.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.645.0",
|
|
27
27
|
"@aws-sdk/middleware-host-header": "3.620.0",
|
|
28
28
|
"@aws-sdk/middleware-logger": "3.609.0",
|
|
29
29
|
"@aws-sdk/middleware-recursion-detection": "3.620.0",
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.645.0",
|
|
31
31
|
"@aws-sdk/region-config-resolver": "3.614.0",
|
|
32
32
|
"@aws-sdk/types": "3.609.0",
|
|
33
|
-
"@aws-sdk/util-endpoints": "3.
|
|
33
|
+
"@aws-sdk/util-endpoints": "3.645.0",
|
|
34
34
|
"@aws-sdk/util-user-agent-browser": "3.609.0",
|
|
35
35
|
"@aws-sdk/util-user-agent-node": "3.614.0",
|
|
36
36
|
"@smithy/config-resolver": "^3.0.5",
|