@aws-sdk/client-omics 3.848.0 → 3.855.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 +1 -1
- package/dist-cjs/index.js +36 -5
- package/dist-es/commands/UploadReadSetPartCommand.js +1 -1
- package/dist-es/models/models_0.js +6 -3
- package/dist-es/models/models_1.js +3 -1
- package/dist-es/protocols/Aws_restJson1.js +19 -0
- package/dist-types/Omics.d.ts +1 -1
- package/dist-types/OmicsClient.d.ts +1 -1
- package/dist-types/commands/CancelRunCommand.d.ts +1 -1
- package/dist-types/commands/CreateRunCacheCommand.d.ts +1 -1
- package/dist-types/commands/CreateRunGroupCommand.d.ts +1 -1
- package/dist-types/commands/CreateWorkflowCommand.d.ts +17 -1
- package/dist-types/commands/CreateWorkflowVersionCommand.d.ts +16 -1
- package/dist-types/commands/DeleteRunCacheCommand.d.ts +1 -1
- package/dist-types/commands/DeleteRunCommand.d.ts +1 -1
- package/dist-types/commands/DeleteRunGroupCommand.d.ts +1 -1
- package/dist-types/commands/DeleteWorkflowCommand.d.ts +1 -1
- package/dist-types/commands/DeleteWorkflowVersionCommand.d.ts +1 -1
- package/dist-types/commands/GetRunCacheCommand.d.ts +1 -1
- package/dist-types/commands/GetRunCommand.d.ts +1 -1
- package/dist-types/commands/GetRunGroupCommand.d.ts +1 -1
- package/dist-types/commands/GetRunTaskCommand.d.ts +1 -1
- package/dist-types/commands/GetWorkflowCommand.d.ts +13 -1
- package/dist-types/commands/GetWorkflowVersionCommand.d.ts +13 -1
- package/dist-types/commands/ListRunCachesCommand.d.ts +1 -1
- package/dist-types/commands/ListRunGroupsCommand.d.ts +1 -1
- package/dist-types/commands/ListRunTasksCommand.d.ts +1 -1
- package/dist-types/commands/ListRunsCommand.d.ts +1 -1
- package/dist-types/commands/ListWorkflowVersionsCommand.d.ts +1 -1
- package/dist-types/commands/ListWorkflowsCommand.d.ts +1 -1
- package/dist-types/commands/StartRunCommand.d.ts +1 -1
- package/dist-types/commands/TagResourceCommand.d.ts +1 -1
- package/dist-types/commands/UpdateRunCacheCommand.d.ts +1 -1
- package/dist-types/commands/UpdateRunGroupCommand.d.ts +1 -1
- package/dist-types/commands/UpdateWorkflowCommand.d.ts +2 -1
- package/dist-types/commands/UpdateWorkflowVersionCommand.d.ts +2 -1
- package/dist-types/commands/UploadReadSetPartCommand.d.ts +1 -1
- package/dist-types/index.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +199 -91
- package/dist-types/models/models_1.d.ts +76 -1
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UploadReadSetPartCommand.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +42 -18
- package/dist-types/ts3.4/models/models_1.d.ts +27 -1
- package/package.json +5 -5
|
@@ -1,4 +1,65 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { StreamingBlobTypes } from "@smithy/types";
|
|
2
|
+
import { ReadSetPartSource, ReferenceItem, StorageType, StoreStatus } from "./models_0";
|
|
3
|
+
/**
|
|
4
|
+
* @public
|
|
5
|
+
*/
|
|
6
|
+
export interface UploadReadSetPartRequest {
|
|
7
|
+
/**
|
|
8
|
+
* <p>The Sequence Store ID used for the multipart upload.</p>
|
|
9
|
+
* @public
|
|
10
|
+
*/
|
|
11
|
+
sequenceStoreId: string | undefined;
|
|
12
|
+
/**
|
|
13
|
+
* <p>The ID for the initiated multipart upload.</p>
|
|
14
|
+
* @public
|
|
15
|
+
*/
|
|
16
|
+
uploadId: string | undefined;
|
|
17
|
+
/**
|
|
18
|
+
* <p>The source file for an upload part.</p>
|
|
19
|
+
* @public
|
|
20
|
+
*/
|
|
21
|
+
partSource: ReadSetPartSource | undefined;
|
|
22
|
+
/**
|
|
23
|
+
* <p>The number of the part being uploaded.</p>
|
|
24
|
+
* @public
|
|
25
|
+
*/
|
|
26
|
+
partNumber: number | undefined;
|
|
27
|
+
/**
|
|
28
|
+
* <p>The read set data to upload for a part.</p>
|
|
29
|
+
* @public
|
|
30
|
+
*/
|
|
31
|
+
payload: StreamingBlobTypes | undefined;
|
|
32
|
+
}
|
|
33
|
+
/**
|
|
34
|
+
* @public
|
|
35
|
+
*/
|
|
36
|
+
export interface UploadReadSetPartResponse {
|
|
37
|
+
/**
|
|
38
|
+
* <p>An identifier used to confirm that parts are being added to the intended upload.</p>
|
|
39
|
+
* @public
|
|
40
|
+
*/
|
|
41
|
+
checksum: string | undefined;
|
|
42
|
+
}
|
|
43
|
+
/**
|
|
44
|
+
* @public
|
|
45
|
+
*/
|
|
46
|
+
export interface TagResourceRequest {
|
|
47
|
+
/**
|
|
48
|
+
* <p>The resource's ARN.</p>
|
|
49
|
+
* @public
|
|
50
|
+
*/
|
|
51
|
+
resourceArn: string | undefined;
|
|
52
|
+
/**
|
|
53
|
+
* <p>Tags for the resource.</p>
|
|
54
|
+
* @public
|
|
55
|
+
*/
|
|
56
|
+
tags: Record<string, string> | undefined;
|
|
57
|
+
}
|
|
58
|
+
/**
|
|
59
|
+
* @public
|
|
60
|
+
*/
|
|
61
|
+
export interface TagResourceResponse {
|
|
62
|
+
}
|
|
2
63
|
/**
|
|
3
64
|
* @public
|
|
4
65
|
*/
|
|
@@ -154,6 +215,11 @@ export interface UpdateWorkflowRequest {
|
|
|
154
215
|
* @public
|
|
155
216
|
*/
|
|
156
217
|
storageCapacity?: number | undefined;
|
|
218
|
+
/**
|
|
219
|
+
* <p>The markdown content for the workflow's README file. This provides documentation and usage information for users of the workflow.</p>
|
|
220
|
+
* @public
|
|
221
|
+
*/
|
|
222
|
+
readmeMarkdown?: string | undefined;
|
|
157
223
|
}
|
|
158
224
|
/**
|
|
159
225
|
* @public
|
|
@@ -184,4 +250,13 @@ export interface UpdateWorkflowVersionRequest {
|
|
|
184
250
|
* @public
|
|
185
251
|
*/
|
|
186
252
|
storageCapacity?: number | undefined;
|
|
253
|
+
/**
|
|
254
|
+
* <p>The markdown content for the workflow version's README file. This provides documentation and usage information for users of this specific workflow version.</p>
|
|
255
|
+
* @public
|
|
256
|
+
*/
|
|
257
|
+
readmeMarkdown?: string | undefined;
|
|
187
258
|
}
|
|
259
|
+
/**
|
|
260
|
+
* @internal
|
|
261
|
+
*/
|
|
262
|
+
export declare const UploadReadSetPartRequestFilterSensitiveLog: (obj: UploadReadSetPartRequest) => any;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import { TagResourceRequest, TagResourceResponse } from "../models/
|
|
3
|
+
import { TagResourceRequest, TagResourceResponse } from "../models/models_1";
|
|
4
4
|
import {
|
|
5
5
|
OmicsClientResolvedConfig,
|
|
6
6
|
ServiceInputTypes,
|
|
@@ -755,6 +755,23 @@ export interface CreateVariantStoreResponse {
|
|
|
755
755
|
name: string | undefined;
|
|
756
756
|
creationTime: Date | undefined;
|
|
757
757
|
}
|
|
758
|
+
export declare const SourceReferenceType: {
|
|
759
|
+
readonly BRANCH: "BRANCH";
|
|
760
|
+
readonly COMMIT: "COMMIT";
|
|
761
|
+
readonly TAG: "TAG";
|
|
762
|
+
};
|
|
763
|
+
export type SourceReferenceType =
|
|
764
|
+
(typeof SourceReferenceType)[keyof typeof SourceReferenceType];
|
|
765
|
+
export interface SourceReference {
|
|
766
|
+
type: SourceReferenceType | undefined;
|
|
767
|
+
value: string | undefined;
|
|
768
|
+
}
|
|
769
|
+
export interface DefinitionRepository {
|
|
770
|
+
connectionArn: string | undefined;
|
|
771
|
+
fullRepositoryId: string | undefined;
|
|
772
|
+
sourceReference?: SourceReference | undefined;
|
|
773
|
+
excludeFilePatterns?: string[] | undefined;
|
|
774
|
+
}
|
|
758
775
|
export declare const WorkflowEngine: {
|
|
759
776
|
readonly CWL: "CWL";
|
|
760
777
|
readonly NEXTFLOW: "NEXTFLOW";
|
|
@@ -784,6 +801,12 @@ export interface CreateWorkflowRequest {
|
|
|
784
801
|
requestId?: string | undefined;
|
|
785
802
|
accelerators?: Accelerators | undefined;
|
|
786
803
|
storageType?: StorageType | undefined;
|
|
804
|
+
readmeMarkdown?: string | undefined;
|
|
805
|
+
parameterTemplatePath?: string | undefined;
|
|
806
|
+
readmePath?: string | undefined;
|
|
807
|
+
definitionRepository?: DefinitionRepository | undefined;
|
|
808
|
+
workflowBucketOwnerId?: string | undefined;
|
|
809
|
+
readmeUri?: string | undefined;
|
|
787
810
|
}
|
|
788
811
|
export declare const WorkflowStatus: {
|
|
789
812
|
readonly ACTIVE: "ACTIVE";
|
|
@@ -817,6 +840,11 @@ export interface CreateWorkflowVersionRequest {
|
|
|
817
840
|
storageCapacity?: number | undefined;
|
|
818
841
|
tags?: Record<string, string> | undefined;
|
|
819
842
|
workflowBucketOwnerId?: string | undefined;
|
|
843
|
+
readmeMarkdown?: string | undefined;
|
|
844
|
+
parameterTemplatePath?: string | undefined;
|
|
845
|
+
readmePath?: string | undefined;
|
|
846
|
+
definitionRepository?: DefinitionRepository | undefined;
|
|
847
|
+
readmeUri?: string | undefined;
|
|
820
848
|
}
|
|
821
849
|
export interface CreateWorkflowVersionResponse {
|
|
822
850
|
arn?: string | undefined;
|
|
@@ -831,6 +859,13 @@ export declare const CreationType: {
|
|
|
831
859
|
readonly UPLOAD: "UPLOAD";
|
|
832
860
|
};
|
|
833
861
|
export type CreationType = (typeof CreationType)[keyof typeof CreationType];
|
|
862
|
+
export interface DefinitionRepositoryDetails {
|
|
863
|
+
connectionArn?: string | undefined;
|
|
864
|
+
fullRepositoryId?: string | undefined;
|
|
865
|
+
sourceReference?: SourceReference | undefined;
|
|
866
|
+
providerType?: string | undefined;
|
|
867
|
+
providerEndpoint?: string | undefined;
|
|
868
|
+
}
|
|
834
869
|
export interface DeleteReferenceRequest {
|
|
835
870
|
id: string | undefined;
|
|
836
871
|
referenceStoreId: string | undefined;
|
|
@@ -1432,6 +1467,7 @@ export interface GetVariantStoreResponse {
|
|
|
1432
1467
|
}
|
|
1433
1468
|
export declare const WorkflowExport: {
|
|
1434
1469
|
readonly DEFINITION: "DEFINITION";
|
|
1470
|
+
readonly README: "README";
|
|
1435
1471
|
};
|
|
1436
1472
|
export type WorkflowExport =
|
|
1437
1473
|
(typeof WorkflowExport)[keyof typeof WorkflowExport];
|
|
@@ -1461,6 +1497,9 @@ export interface GetWorkflowResponse {
|
|
|
1461
1497
|
accelerators?: Accelerators | undefined;
|
|
1462
1498
|
storageType?: StorageType | undefined;
|
|
1463
1499
|
uuid?: string | undefined;
|
|
1500
|
+
readme?: string | undefined;
|
|
1501
|
+
definitionRepositoryDetails?: DefinitionRepositoryDetails | undefined;
|
|
1502
|
+
readmePath?: string | undefined;
|
|
1464
1503
|
}
|
|
1465
1504
|
export interface GetWorkflowVersionRequest {
|
|
1466
1505
|
workflowId: string | undefined;
|
|
@@ -1490,6 +1529,9 @@ export interface GetWorkflowVersionResponse {
|
|
|
1490
1529
|
tags?: Record<string, string> | undefined;
|
|
1491
1530
|
uuid?: string | undefined;
|
|
1492
1531
|
workflowBucketOwnerId?: string | undefined;
|
|
1532
|
+
readme?: string | undefined;
|
|
1533
|
+
definitionRepositoryDetails?: DefinitionRepositoryDetails | undefined;
|
|
1534
|
+
readmePath?: string | undefined;
|
|
1493
1535
|
}
|
|
1494
1536
|
export interface ImportReadSetFilter {
|
|
1495
1537
|
status?: ReadSetImportJobStatus | undefined;
|
|
@@ -2066,27 +2108,9 @@ export interface UpdateSequenceStoreResponse {
|
|
|
2066
2108
|
s3Access?: SequenceStoreS3Access | undefined;
|
|
2067
2109
|
eTagAlgorithmFamily?: ETagAlgorithmFamily | undefined;
|
|
2068
2110
|
}
|
|
2069
|
-
export interface UploadReadSetPartRequest {
|
|
2070
|
-
sequenceStoreId: string | undefined;
|
|
2071
|
-
uploadId: string | undefined;
|
|
2072
|
-
partSource: ReadSetPartSource | undefined;
|
|
2073
|
-
partNumber: number | undefined;
|
|
2074
|
-
payload: StreamingBlobTypes | undefined;
|
|
2075
|
-
}
|
|
2076
|
-
export interface UploadReadSetPartResponse {
|
|
2077
|
-
checksum: string | undefined;
|
|
2078
|
-
}
|
|
2079
|
-
export interface TagResourceRequest {
|
|
2080
|
-
resourceArn: string | undefined;
|
|
2081
|
-
tags: Record<string, string> | undefined;
|
|
2082
|
-
}
|
|
2083
|
-
export interface TagResourceResponse {}
|
|
2084
2111
|
export declare const GetReadSetResponseFilterSensitiveLog: (
|
|
2085
2112
|
obj: GetReadSetResponse
|
|
2086
2113
|
) => any;
|
|
2087
2114
|
export declare const GetReferenceResponseFilterSensitiveLog: (
|
|
2088
2115
|
obj: GetReferenceResponse
|
|
2089
2116
|
) => any;
|
|
2090
|
-
export declare const UploadReadSetPartRequestFilterSensitiveLog: (
|
|
2091
|
-
obj: UploadReadSetPartRequest
|
|
2092
|
-
) => any;
|
|
@@ -1,4 +1,25 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { StreamingBlobTypes } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ReadSetPartSource,
|
|
4
|
+
ReferenceItem,
|
|
5
|
+
StorageType,
|
|
6
|
+
StoreStatus,
|
|
7
|
+
} from "./models_0";
|
|
8
|
+
export interface UploadReadSetPartRequest {
|
|
9
|
+
sequenceStoreId: string | undefined;
|
|
10
|
+
uploadId: string | undefined;
|
|
11
|
+
partSource: ReadSetPartSource | undefined;
|
|
12
|
+
partNumber: number | undefined;
|
|
13
|
+
payload: StreamingBlobTypes | undefined;
|
|
14
|
+
}
|
|
15
|
+
export interface UploadReadSetPartResponse {
|
|
16
|
+
checksum: string | undefined;
|
|
17
|
+
}
|
|
18
|
+
export interface TagResourceRequest {
|
|
19
|
+
resourceArn: string | undefined;
|
|
20
|
+
tags: Record<string, string> | undefined;
|
|
21
|
+
}
|
|
22
|
+
export interface TagResourceResponse {}
|
|
2
23
|
export interface UntagResourceRequest {
|
|
3
24
|
resourceArn: string | undefined;
|
|
4
25
|
tagKeys: string[] | undefined;
|
|
@@ -36,6 +57,7 @@ export interface UpdateWorkflowRequest {
|
|
|
36
57
|
description?: string | undefined;
|
|
37
58
|
storageType?: StorageType | undefined;
|
|
38
59
|
storageCapacity?: number | undefined;
|
|
60
|
+
readmeMarkdown?: string | undefined;
|
|
39
61
|
}
|
|
40
62
|
export interface UpdateWorkflowVersionRequest {
|
|
41
63
|
workflowId: string | undefined;
|
|
@@ -43,4 +65,8 @@ export interface UpdateWorkflowVersionRequest {
|
|
|
43
65
|
description?: string | undefined;
|
|
44
66
|
storageType?: StorageType | undefined;
|
|
45
67
|
storageCapacity?: number | undefined;
|
|
68
|
+
readmeMarkdown?: string | undefined;
|
|
46
69
|
}
|
|
70
|
+
export declare const UploadReadSetPartRequestFilterSensitiveLog: (
|
|
71
|
+
obj: UploadReadSetPartRequest
|
|
72
|
+
) => any;
|
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.855.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/core": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/core": "3.855.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.855.0",
|
|
25
25
|
"@aws-sdk/middleware-host-header": "3.840.0",
|
|
26
26
|
"@aws-sdk/middleware-logger": "3.840.0",
|
|
27
27
|
"@aws-sdk/middleware-recursion-detection": "3.840.0",
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.855.0",
|
|
29
29
|
"@aws-sdk/region-config-resolver": "3.840.0",
|
|
30
30
|
"@aws-sdk/types": "3.840.0",
|
|
31
31
|
"@aws-sdk/util-endpoints": "3.848.0",
|
|
32
32
|
"@aws-sdk/util-user-agent-browser": "3.840.0",
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.855.0",
|
|
34
34
|
"@smithy/config-resolver": "^4.1.4",
|
|
35
35
|
"@smithy/core": "^3.7.0",
|
|
36
36
|
"@smithy/fetch-http-handler": "^5.1.0",
|