@aws-sdk/client-omics 3.876.0 → 3.879.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 +7 -0
- package/dist-es/protocols/Aws_restJson1.js +7 -0
- package/dist-types/commands/AbortMultipartReadSetUploadCommand.d.ts +1 -1
- package/dist-types/commands/BatchDeleteReadSetCommand.d.ts +1 -1
- package/dist-types/commands/CompleteMultipartReadSetUploadCommand.d.ts +1 -1
- package/dist-types/commands/CreateMultipartReadSetUploadCommand.d.ts +1 -1
- package/dist-types/commands/CreateReferenceStoreCommand.d.ts +1 -1
- package/dist-types/commands/CreateSequenceStoreCommand.d.ts +1 -1
- package/dist-types/commands/CreateWorkflowCommand.d.ts +18 -1
- package/dist-types/commands/CreateWorkflowVersionCommand.d.ts +18 -1
- package/dist-types/commands/DeleteReferenceCommand.d.ts +1 -1
- package/dist-types/commands/DeleteReferenceStoreCommand.d.ts +1 -1
- package/dist-types/commands/DeleteSequenceStoreCommand.d.ts +1 -1
- package/dist-types/commands/DeleteWorkflowCommand.d.ts +1 -1
- package/dist-types/commands/GetReadSetActivationJobCommand.d.ts +1 -1
- package/dist-types/commands/GetReadSetCommand.d.ts +1 -1
- package/dist-types/commands/GetReadSetExportJobCommand.d.ts +1 -1
- package/dist-types/commands/GetReadSetImportJobCommand.d.ts +1 -1
- package/dist-types/commands/GetReadSetMetadataCommand.d.ts +1 -1
- package/dist-types/commands/GetReferenceCommand.d.ts +1 -1
- package/dist-types/commands/GetReferenceImportJobCommand.d.ts +1 -1
- package/dist-types/commands/GetReferenceMetadataCommand.d.ts +1 -1
- package/dist-types/commands/GetRunTaskCommand.d.ts +5 -0
- package/dist-types/commands/GetSequenceStoreCommand.d.ts +1 -1
- package/dist-types/commands/GetWorkflowCommand.d.ts +16 -0
- package/dist-types/commands/GetWorkflowVersionCommand.d.ts +16 -0
- package/dist-types/commands/ListMultipartReadSetUploadsCommand.d.ts +1 -1
- package/dist-types/commands/ListReadSetActivationJobsCommand.d.ts +1 -1
- package/dist-types/commands/ListReadSetExportJobsCommand.d.ts +1 -1
- package/dist-types/commands/ListReadSetImportJobsCommand.d.ts +1 -1
- package/dist-types/commands/ListReadSetUploadPartsCommand.d.ts +1 -1
- package/dist-types/commands/ListReadSetsCommand.d.ts +1 -1
- package/dist-types/commands/ListReferenceImportJobsCommand.d.ts +1 -1
- package/dist-types/commands/ListReferenceStoresCommand.d.ts +1 -1
- package/dist-types/commands/ListReferencesCommand.d.ts +1 -1
- package/dist-types/commands/ListSequenceStoresCommand.d.ts +1 -1
- package/dist-types/commands/StartReadSetActivationJobCommand.d.ts +1 -1
- package/dist-types/commands/StartReadSetExportJobCommand.d.ts +1 -1
- package/dist-types/commands/StartReadSetImportJobCommand.d.ts +2 -2
- package/dist-types/commands/StartReferenceImportJobCommand.d.ts +1 -1
- package/dist-types/commands/StartRunCommand.d.ts +1 -1
- package/dist-types/commands/UpdateSequenceStoreCommand.d.ts +1 -1
- package/dist-types/commands/UploadReadSetPartCommand.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +136 -187
- package/dist-types/models/models_1.d.ts +169 -4
- package/dist-types/ts3.4/commands/StartReadSetImportJobCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateSequenceStoreCommand.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +27 -38
- package/dist-types/ts3.4/models/models_1.d.ts +44 -0
- package/package.json +12 -12
|
@@ -1,5 +1,170 @@
|
|
|
1
1
|
import { StreamingBlobTypes } from "@smithy/types";
|
|
2
|
-
import { ReadSetPartSource, ReferenceItem, StorageType, StoreStatus } from "./models_0";
|
|
2
|
+
import { ETagAlgorithmFamily, ReadSetImportJobStatus, ReadSetPartSource, ReferenceItem, S3AccessConfig, SequenceStoreS3Access, SequenceStoreStatus, SseConfig, StartReadSetImportJobSourceItem, StorageType, StoreStatus } from "./models_0";
|
|
3
|
+
/**
|
|
4
|
+
* @public
|
|
5
|
+
*/
|
|
6
|
+
export interface StartReadSetImportJobRequest {
|
|
7
|
+
/**
|
|
8
|
+
* <p>The read set's sequence store ID.</p>
|
|
9
|
+
* @public
|
|
10
|
+
*/
|
|
11
|
+
sequenceStoreId: string | undefined;
|
|
12
|
+
/**
|
|
13
|
+
* <p>A service role for the job.</p>
|
|
14
|
+
* @public
|
|
15
|
+
*/
|
|
16
|
+
roleArn: string | undefined;
|
|
17
|
+
/**
|
|
18
|
+
* <p>To ensure that jobs don't run multiple times, specify a unique token for each job.</p>
|
|
19
|
+
* @public
|
|
20
|
+
*/
|
|
21
|
+
clientToken?: string | undefined;
|
|
22
|
+
/**
|
|
23
|
+
* <p>The job's source files.</p>
|
|
24
|
+
* @public
|
|
25
|
+
*/
|
|
26
|
+
sources: StartReadSetImportJobSourceItem[] | undefined;
|
|
27
|
+
}
|
|
28
|
+
/**
|
|
29
|
+
* @public
|
|
30
|
+
*/
|
|
31
|
+
export interface StartReadSetImportJobResponse {
|
|
32
|
+
/**
|
|
33
|
+
* <p>The job's ID.</p>
|
|
34
|
+
* @public
|
|
35
|
+
*/
|
|
36
|
+
id: string | undefined;
|
|
37
|
+
/**
|
|
38
|
+
* <p>The read set's sequence store ID.</p>
|
|
39
|
+
* @public
|
|
40
|
+
*/
|
|
41
|
+
sequenceStoreId: string | undefined;
|
|
42
|
+
/**
|
|
43
|
+
* <p>The job's service role ARN.</p>
|
|
44
|
+
* @public
|
|
45
|
+
*/
|
|
46
|
+
roleArn: string | undefined;
|
|
47
|
+
/**
|
|
48
|
+
* <p>The job's status.</p>
|
|
49
|
+
* @public
|
|
50
|
+
*/
|
|
51
|
+
status: ReadSetImportJobStatus | undefined;
|
|
52
|
+
/**
|
|
53
|
+
* <p>When the job was created.</p>
|
|
54
|
+
* @public
|
|
55
|
+
*/
|
|
56
|
+
creationTime: Date | undefined;
|
|
57
|
+
}
|
|
58
|
+
/**
|
|
59
|
+
* @public
|
|
60
|
+
*/
|
|
61
|
+
export interface UpdateSequenceStoreRequest {
|
|
62
|
+
/**
|
|
63
|
+
* <p>The ID of the sequence store.</p>
|
|
64
|
+
* @public
|
|
65
|
+
*/
|
|
66
|
+
id: string | undefined;
|
|
67
|
+
/**
|
|
68
|
+
* <p>A name for the sequence store.</p>
|
|
69
|
+
* @public
|
|
70
|
+
*/
|
|
71
|
+
name?: string | undefined;
|
|
72
|
+
/**
|
|
73
|
+
* <p>A description for the sequence store.</p>
|
|
74
|
+
* @public
|
|
75
|
+
*/
|
|
76
|
+
description?: string | undefined;
|
|
77
|
+
/**
|
|
78
|
+
* <p>To ensure that requests don't run multiple times, specify a unique token for each request.</p>
|
|
79
|
+
* @public
|
|
80
|
+
*/
|
|
81
|
+
clientToken?: string | undefined;
|
|
82
|
+
/**
|
|
83
|
+
* <p>The S3 URI of a bucket and folder to store Read Sets that fail to upload.</p>
|
|
84
|
+
* @public
|
|
85
|
+
*/
|
|
86
|
+
fallbackLocation?: string | undefined;
|
|
87
|
+
/**
|
|
88
|
+
* <p>The tags keys to propagate to the S3 objects associated with read sets in the sequence store.</p>
|
|
89
|
+
* @public
|
|
90
|
+
*/
|
|
91
|
+
propagatedSetLevelTags?: string[] | undefined;
|
|
92
|
+
/**
|
|
93
|
+
* <p>S3 access configuration parameters.</p>
|
|
94
|
+
* @public
|
|
95
|
+
*/
|
|
96
|
+
s3AccessConfig?: S3AccessConfig | undefined;
|
|
97
|
+
}
|
|
98
|
+
/**
|
|
99
|
+
* @public
|
|
100
|
+
*/
|
|
101
|
+
export interface UpdateSequenceStoreResponse {
|
|
102
|
+
/**
|
|
103
|
+
* <p>The ID of the sequence store.</p>
|
|
104
|
+
* @public
|
|
105
|
+
*/
|
|
106
|
+
id: string | undefined;
|
|
107
|
+
/**
|
|
108
|
+
* <p>The ARN of the sequence store.</p>
|
|
109
|
+
* @public
|
|
110
|
+
*/
|
|
111
|
+
arn: string | undefined;
|
|
112
|
+
/**
|
|
113
|
+
* <p>The name of the sequence store.</p>
|
|
114
|
+
* @public
|
|
115
|
+
*/
|
|
116
|
+
name?: string | undefined;
|
|
117
|
+
/**
|
|
118
|
+
* <p>Description of the sequence store.</p>
|
|
119
|
+
* @public
|
|
120
|
+
*/
|
|
121
|
+
description?: string | undefined;
|
|
122
|
+
/**
|
|
123
|
+
* <p>Server-side encryption (SSE) settings for a store.</p>
|
|
124
|
+
* @public
|
|
125
|
+
*/
|
|
126
|
+
sseConfig?: SseConfig | undefined;
|
|
127
|
+
/**
|
|
128
|
+
* <p>The time when the store was created.</p>
|
|
129
|
+
* @public
|
|
130
|
+
*/
|
|
131
|
+
creationTime: Date | undefined;
|
|
132
|
+
/**
|
|
133
|
+
* <p>The last-updated time of the Sequence Store.</p>
|
|
134
|
+
* @public
|
|
135
|
+
*/
|
|
136
|
+
updateTime?: Date | undefined;
|
|
137
|
+
/**
|
|
138
|
+
* <p>The tags keys to propagate to the S3 objects associated with read sets in the sequence store.</p>
|
|
139
|
+
* @public
|
|
140
|
+
*/
|
|
141
|
+
propagatedSetLevelTags?: string[] | undefined;
|
|
142
|
+
/**
|
|
143
|
+
* <p>The status of the sequence store.</p>
|
|
144
|
+
* @public
|
|
145
|
+
*/
|
|
146
|
+
status?: SequenceStoreStatus | undefined;
|
|
147
|
+
/**
|
|
148
|
+
* <p>The status message of the sequence store.</p>
|
|
149
|
+
* @public
|
|
150
|
+
*/
|
|
151
|
+
statusMessage?: string | undefined;
|
|
152
|
+
/**
|
|
153
|
+
* <p>The S3 URI of a bucket and folder to store Read Sets that fail to upload.</p>
|
|
154
|
+
* @public
|
|
155
|
+
*/
|
|
156
|
+
fallbackLocation?: string | undefined;
|
|
157
|
+
/**
|
|
158
|
+
* <p>The S3 access metadata of the sequence store.</p>
|
|
159
|
+
* @public
|
|
160
|
+
*/
|
|
161
|
+
s3Access?: SequenceStoreS3Access | undefined;
|
|
162
|
+
/**
|
|
163
|
+
* <p>The ETag algorithm family to use on ingested read sets.</p>
|
|
164
|
+
* @public
|
|
165
|
+
*/
|
|
166
|
+
eTagAlgorithmFamily?: ETagAlgorithmFamily | undefined;
|
|
167
|
+
}
|
|
3
168
|
/**
|
|
4
169
|
* @public
|
|
5
170
|
*/
|
|
@@ -226,7 +391,7 @@ export interface UpdateWorkflowRequest {
|
|
|
226
391
|
*/
|
|
227
392
|
export interface UpdateWorkflowVersionRequest {
|
|
228
393
|
/**
|
|
229
|
-
* <p>The workflow's ID.</p>
|
|
394
|
+
* <p>The workflow's ID. The <code>workflowId</code> is not the UUID.</p>
|
|
230
395
|
* @public
|
|
231
396
|
*/
|
|
232
397
|
workflowId: string | undefined;
|
|
@@ -241,12 +406,12 @@ export interface UpdateWorkflowVersionRequest {
|
|
|
241
406
|
*/
|
|
242
407
|
description?: string | undefined;
|
|
243
408
|
/**
|
|
244
|
-
* <p>The default storage type for runs that use this workflow.
|
|
409
|
+
* <p>The default storage type for runs that use this workflow version. The <code>storageType</code> can be overridden at run time. <code>DYNAMIC</code> storage dynamically scales the storage up or down, based on file system utilization. STATIC storage allocates a fixed amount of storage. For more information about dynamic and static storage types, see <a href="https://docs.aws.amazon.com/omics/latest/dev/workflows-run-types.html">Run storage types</a> in the <i>in the <i>Amazon Web Services HealthOmics User Guide</i> </i>.</p>
|
|
245
410
|
* @public
|
|
246
411
|
*/
|
|
247
412
|
storageType?: StorageType | undefined;
|
|
248
413
|
/**
|
|
249
|
-
* <p>The default static storage capacity (in gibibytes) for runs that use this workflow
|
|
414
|
+
* <p>The default static storage capacity (in gibibytes) for runs that use this workflow version. The <code>storageCapacity</code> can be overwritten at run time. The storage capacity is not required for runs with a <code>DYNAMIC</code> storage type.</p>
|
|
250
415
|
* @public
|
|
251
416
|
*/
|
|
252
417
|
storageCapacity?: number | undefined;
|
|
@@ -599,6 +599,20 @@ export interface CompleteMultipartReadSetUploadRequest {
|
|
|
599
599
|
export interface CompleteMultipartReadSetUploadResponse {
|
|
600
600
|
readSetId: string | undefined;
|
|
601
601
|
}
|
|
602
|
+
export interface ImageMapping {
|
|
603
|
+
sourceImage?: string | undefined;
|
|
604
|
+
destinationImage?: string | undefined;
|
|
605
|
+
}
|
|
606
|
+
export interface RegistryMapping {
|
|
607
|
+
upstreamRegistryUrl?: string | undefined;
|
|
608
|
+
ecrRepositoryPrefix?: string | undefined;
|
|
609
|
+
upstreamRepositoryPrefix?: string | undefined;
|
|
610
|
+
ecrAccountId?: string | undefined;
|
|
611
|
+
}
|
|
612
|
+
export interface ContainerRegistryMap {
|
|
613
|
+
registryMappings?: RegistryMapping[] | undefined;
|
|
614
|
+
imageMappings?: ImageMapping[] | undefined;
|
|
615
|
+
}
|
|
602
616
|
export declare const FileType: {
|
|
603
617
|
readonly BAM: "BAM";
|
|
604
618
|
readonly CRAM: "CRAM";
|
|
@@ -801,6 +815,8 @@ export interface CreateWorkflowRequest {
|
|
|
801
815
|
requestId?: string | undefined;
|
|
802
816
|
accelerators?: Accelerators | undefined;
|
|
803
817
|
storageType?: StorageType | undefined;
|
|
818
|
+
containerRegistryMap?: ContainerRegistryMap | undefined;
|
|
819
|
+
containerRegistryMapUri?: string | undefined;
|
|
804
820
|
readmeMarkdown?: string | undefined;
|
|
805
821
|
parameterTemplatePath?: string | undefined;
|
|
806
822
|
readmePath?: string | undefined;
|
|
@@ -840,6 +856,8 @@ export interface CreateWorkflowVersionRequest {
|
|
|
840
856
|
storageCapacity?: number | undefined;
|
|
841
857
|
tags?: Record<string, string> | undefined;
|
|
842
858
|
workflowBucketOwnerId?: string | undefined;
|
|
859
|
+
containerRegistryMap?: ContainerRegistryMap | undefined;
|
|
860
|
+
containerRegistryMapUri?: string | undefined;
|
|
843
861
|
readmeMarkdown?: string | undefined;
|
|
844
862
|
parameterTemplatePath?: string | undefined;
|
|
845
863
|
readmePath?: string | undefined;
|
|
@@ -1349,6 +1367,11 @@ export interface GetRunTaskRequest {
|
|
|
1349
1367
|
id: string | undefined;
|
|
1350
1368
|
taskId: string | undefined;
|
|
1351
1369
|
}
|
|
1370
|
+
export interface ImageDetails {
|
|
1371
|
+
image?: string | undefined;
|
|
1372
|
+
imageDigest?: string | undefined;
|
|
1373
|
+
sourceImage?: string | undefined;
|
|
1374
|
+
}
|
|
1352
1375
|
export declare const TaskStatus: {
|
|
1353
1376
|
readonly CANCELLED: "CANCELLED";
|
|
1354
1377
|
readonly COMPLETED: "COMPLETED";
|
|
@@ -1375,6 +1398,7 @@ export interface GetRunTaskResponse {
|
|
|
1375
1398
|
gpus?: number | undefined;
|
|
1376
1399
|
instanceType?: string | undefined;
|
|
1377
1400
|
failureReason?: string | undefined;
|
|
1401
|
+
imageDetails?: ImageDetails | undefined;
|
|
1378
1402
|
}
|
|
1379
1403
|
export interface GetS3AccessPolicyRequest {
|
|
1380
1404
|
s3AccessPointArn: string | undefined;
|
|
@@ -1497,6 +1521,7 @@ export interface GetWorkflowResponse {
|
|
|
1497
1521
|
accelerators?: Accelerators | undefined;
|
|
1498
1522
|
storageType?: StorageType | undefined;
|
|
1499
1523
|
uuid?: string | undefined;
|
|
1524
|
+
containerRegistryMap?: ContainerRegistryMap | undefined;
|
|
1500
1525
|
readme?: string | undefined;
|
|
1501
1526
|
definitionRepositoryDetails?: DefinitionRepositoryDetails | undefined;
|
|
1502
1527
|
readmePath?: string | undefined;
|
|
@@ -1529,6 +1554,7 @@ export interface GetWorkflowVersionResponse {
|
|
|
1529
1554
|
tags?: Record<string, string> | undefined;
|
|
1530
1555
|
uuid?: string | undefined;
|
|
1531
1556
|
workflowBucketOwnerId?: string | undefined;
|
|
1557
|
+
containerRegistryMap?: ContainerRegistryMap | undefined;
|
|
1532
1558
|
readme?: string | undefined;
|
|
1533
1559
|
definitionRepositoryDetails?: DefinitionRepositoryDetails | undefined;
|
|
1534
1560
|
readmePath?: string | undefined;
|
|
@@ -2015,7 +2041,7 @@ export interface StartRunRequest {
|
|
|
2015
2041
|
priority?: number | undefined;
|
|
2016
2042
|
parameters?: __DocumentType | undefined;
|
|
2017
2043
|
storageCapacity?: number | undefined;
|
|
2018
|
-
outputUri
|
|
2044
|
+
outputUri: string | undefined;
|
|
2019
2045
|
logLevel?: RunLogLevel | undefined;
|
|
2020
2046
|
tags?: Record<string, string> | undefined;
|
|
2021
2047
|
requestId?: string | undefined;
|
|
@@ -2071,43 +2097,6 @@ export interface StartReadSetImportJobSourceItem {
|
|
|
2071
2097
|
description?: string | undefined;
|
|
2072
2098
|
tags?: Record<string, string> | undefined;
|
|
2073
2099
|
}
|
|
2074
|
-
export interface StartReadSetImportJobRequest {
|
|
2075
|
-
sequenceStoreId: string | undefined;
|
|
2076
|
-
roleArn: string | undefined;
|
|
2077
|
-
clientToken?: string | undefined;
|
|
2078
|
-
sources: StartReadSetImportJobSourceItem[] | undefined;
|
|
2079
|
-
}
|
|
2080
|
-
export interface StartReadSetImportJobResponse {
|
|
2081
|
-
id: string | undefined;
|
|
2082
|
-
sequenceStoreId: string | undefined;
|
|
2083
|
-
roleArn: string | undefined;
|
|
2084
|
-
status: ReadSetImportJobStatus | undefined;
|
|
2085
|
-
creationTime: Date | undefined;
|
|
2086
|
-
}
|
|
2087
|
-
export interface UpdateSequenceStoreRequest {
|
|
2088
|
-
id: string | undefined;
|
|
2089
|
-
name?: string | undefined;
|
|
2090
|
-
description?: string | undefined;
|
|
2091
|
-
clientToken?: string | undefined;
|
|
2092
|
-
fallbackLocation?: string | undefined;
|
|
2093
|
-
propagatedSetLevelTags?: string[] | undefined;
|
|
2094
|
-
s3AccessConfig?: S3AccessConfig | undefined;
|
|
2095
|
-
}
|
|
2096
|
-
export interface UpdateSequenceStoreResponse {
|
|
2097
|
-
id: string | undefined;
|
|
2098
|
-
arn: string | undefined;
|
|
2099
|
-
name?: string | undefined;
|
|
2100
|
-
description?: string | undefined;
|
|
2101
|
-
sseConfig?: SseConfig | undefined;
|
|
2102
|
-
creationTime: Date | undefined;
|
|
2103
|
-
updateTime?: Date | undefined;
|
|
2104
|
-
propagatedSetLevelTags?: string[] | undefined;
|
|
2105
|
-
status?: SequenceStoreStatus | undefined;
|
|
2106
|
-
statusMessage?: string | undefined;
|
|
2107
|
-
fallbackLocation?: string | undefined;
|
|
2108
|
-
s3Access?: SequenceStoreS3Access | undefined;
|
|
2109
|
-
eTagAlgorithmFamily?: ETagAlgorithmFamily | undefined;
|
|
2110
|
-
}
|
|
2111
2100
|
export declare const GetReadSetResponseFilterSensitiveLog: (
|
|
2112
2101
|
obj: GetReadSetResponse
|
|
2113
2102
|
) => any;
|
|
@@ -1,10 +1,54 @@
|
|
|
1
1
|
import { StreamingBlobTypes } from "@smithy/types";
|
|
2
2
|
import {
|
|
3
|
+
ETagAlgorithmFamily,
|
|
4
|
+
ReadSetImportJobStatus,
|
|
3
5
|
ReadSetPartSource,
|
|
4
6
|
ReferenceItem,
|
|
7
|
+
S3AccessConfig,
|
|
8
|
+
SequenceStoreS3Access,
|
|
9
|
+
SequenceStoreStatus,
|
|
10
|
+
SseConfig,
|
|
11
|
+
StartReadSetImportJobSourceItem,
|
|
5
12
|
StorageType,
|
|
6
13
|
StoreStatus,
|
|
7
14
|
} from "./models_0";
|
|
15
|
+
export interface StartReadSetImportJobRequest {
|
|
16
|
+
sequenceStoreId: string | undefined;
|
|
17
|
+
roleArn: string | undefined;
|
|
18
|
+
clientToken?: string | undefined;
|
|
19
|
+
sources: StartReadSetImportJobSourceItem[] | undefined;
|
|
20
|
+
}
|
|
21
|
+
export interface StartReadSetImportJobResponse {
|
|
22
|
+
id: string | undefined;
|
|
23
|
+
sequenceStoreId: string | undefined;
|
|
24
|
+
roleArn: string | undefined;
|
|
25
|
+
status: ReadSetImportJobStatus | undefined;
|
|
26
|
+
creationTime: Date | undefined;
|
|
27
|
+
}
|
|
28
|
+
export interface UpdateSequenceStoreRequest {
|
|
29
|
+
id: string | undefined;
|
|
30
|
+
name?: string | undefined;
|
|
31
|
+
description?: string | undefined;
|
|
32
|
+
clientToken?: string | undefined;
|
|
33
|
+
fallbackLocation?: string | undefined;
|
|
34
|
+
propagatedSetLevelTags?: string[] | undefined;
|
|
35
|
+
s3AccessConfig?: S3AccessConfig | undefined;
|
|
36
|
+
}
|
|
37
|
+
export interface UpdateSequenceStoreResponse {
|
|
38
|
+
id: string | undefined;
|
|
39
|
+
arn: string | undefined;
|
|
40
|
+
name?: string | undefined;
|
|
41
|
+
description?: string | undefined;
|
|
42
|
+
sseConfig?: SseConfig | undefined;
|
|
43
|
+
creationTime: Date | undefined;
|
|
44
|
+
updateTime?: Date | undefined;
|
|
45
|
+
propagatedSetLevelTags?: string[] | undefined;
|
|
46
|
+
status?: SequenceStoreStatus | undefined;
|
|
47
|
+
statusMessage?: string | undefined;
|
|
48
|
+
fallbackLocation?: string | undefined;
|
|
49
|
+
s3Access?: SequenceStoreS3Access | undefined;
|
|
50
|
+
eTagAlgorithmFamily?: ETagAlgorithmFamily | undefined;
|
|
51
|
+
}
|
|
8
52
|
export interface UploadReadSetPartRequest {
|
|
9
53
|
sequenceStoreId: string | undefined;
|
|
10
54
|
uploadId: 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.879.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,38 +20,38 @@
|
|
|
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.879.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.879.0",
|
|
25
25
|
"@aws-sdk/middleware-host-header": "3.873.0",
|
|
26
26
|
"@aws-sdk/middleware-logger": "3.876.0",
|
|
27
27
|
"@aws-sdk/middleware-recursion-detection": "3.873.0",
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.879.0",
|
|
29
29
|
"@aws-sdk/region-config-resolver": "3.873.0",
|
|
30
30
|
"@aws-sdk/types": "3.862.0",
|
|
31
|
-
"@aws-sdk/util-endpoints": "3.
|
|
31
|
+
"@aws-sdk/util-endpoints": "3.879.0",
|
|
32
32
|
"@aws-sdk/util-user-agent-browser": "3.873.0",
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.879.0",
|
|
34
34
|
"@smithy/config-resolver": "^4.1.5",
|
|
35
|
-
"@smithy/core": "^3.
|
|
35
|
+
"@smithy/core": "^3.9.0",
|
|
36
36
|
"@smithy/fetch-http-handler": "^5.1.1",
|
|
37
37
|
"@smithy/hash-node": "^4.0.5",
|
|
38
38
|
"@smithy/invalid-dependency": "^4.0.5",
|
|
39
39
|
"@smithy/middleware-content-length": "^4.0.5",
|
|
40
|
-
"@smithy/middleware-endpoint": "^4.1.
|
|
41
|
-
"@smithy/middleware-retry": "^4.1.
|
|
40
|
+
"@smithy/middleware-endpoint": "^4.1.19",
|
|
41
|
+
"@smithy/middleware-retry": "^4.1.20",
|
|
42
42
|
"@smithy/middleware-serde": "^4.0.9",
|
|
43
43
|
"@smithy/middleware-stack": "^4.0.5",
|
|
44
44
|
"@smithy/node-config-provider": "^4.1.4",
|
|
45
45
|
"@smithy/node-http-handler": "^4.1.1",
|
|
46
46
|
"@smithy/protocol-http": "^5.1.3",
|
|
47
|
-
"@smithy/smithy-client": "^4.
|
|
47
|
+
"@smithy/smithy-client": "^4.5.0",
|
|
48
48
|
"@smithy/types": "^4.3.2",
|
|
49
49
|
"@smithy/url-parser": "^4.0.5",
|
|
50
50
|
"@smithy/util-base64": "^4.0.0",
|
|
51
51
|
"@smithy/util-body-length-browser": "^4.0.0",
|
|
52
52
|
"@smithy/util-body-length-node": "^4.0.0",
|
|
53
|
-
"@smithy/util-defaults-mode-browser": "^4.0.
|
|
54
|
-
"@smithy/util-defaults-mode-node": "^4.0.
|
|
53
|
+
"@smithy/util-defaults-mode-browser": "^4.0.27",
|
|
54
|
+
"@smithy/util-defaults-mode-node": "^4.0.27",
|
|
55
55
|
"@smithy/util-endpoints": "^3.0.7",
|
|
56
56
|
"@smithy/util-middleware": "^4.0.5",
|
|
57
57
|
"@smithy/util-retry": "^4.0.7",
|