@aws-sdk/client-omics 3.331.0 → 3.332.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 +56 -8
- package/dist-cjs/Omics.js +12 -0
- package/dist-cjs/commands/AbortMultipartReadSetUploadCommand.js +45 -0
- package/dist-cjs/commands/CompleteMultipartReadSetUploadCommand.js +45 -0
- package/dist-cjs/commands/CreateMultipartReadSetUploadCommand.js +45 -0
- package/dist-cjs/commands/ListMultipartReadSetUploadsCommand.js +45 -0
- package/dist-cjs/commands/ListReadSetUploadPartsCommand.js +45 -0
- package/dist-cjs/commands/UploadReadSetPartCommand.js +46 -0
- package/dist-cjs/commands/index.js +6 -0
- package/dist-cjs/models/models_0.js +83 -55
- package/dist-cjs/pagination/ListMultipartReadSetUploadsPaginator.js +29 -0
- package/dist-cjs/pagination/ListReadSetUploadPartsPaginator.js +29 -0
- package/dist-cjs/pagination/index.js +2 -0
- package/dist-cjs/protocols/Aws_restJson1.js +625 -3
- package/dist-es/Omics.js +12 -0
- package/dist-es/commands/AbortMultipartReadSetUploadCommand.js +41 -0
- package/dist-es/commands/CompleteMultipartReadSetUploadCommand.js +41 -0
- package/dist-es/commands/CreateMultipartReadSetUploadCommand.js +41 -0
- package/dist-es/commands/ListMultipartReadSetUploadsCommand.js +41 -0
- package/dist-es/commands/ListReadSetUploadPartsCommand.js +41 -0
- package/dist-es/commands/UploadReadSetPartCommand.js +42 -0
- package/dist-es/commands/index.js +6 -0
- package/dist-es/models/models_0.js +78 -52
- package/dist-es/pagination/ListMultipartReadSetUploadsPaginator.js +25 -0
- package/dist-es/pagination/ListReadSetUploadPartsPaginator.js +25 -0
- package/dist-es/pagination/index.js +2 -0
- package/dist-es/protocols/Aws_restJson1.js +611 -1
- package/dist-types/Omics.d.ts +43 -1
- package/dist-types/OmicsClient.d.ts +9 -3
- package/dist-types/commands/AbortMultipartReadSetUploadCommand.d.ts +96 -0
- package/dist-types/commands/CompleteMultipartReadSetUploadCommand.d.ts +105 -0
- package/dist-types/commands/CreateMultipartReadSetUploadCommand.d.ts +120 -0
- package/dist-types/commands/CreateRunGroupCommand.d.ts +1 -0
- package/dist-types/commands/CreateSequenceStoreCommand.d.ts +2 -0
- package/dist-types/commands/CreateWorkflowCommand.d.ts +1 -0
- package/dist-types/commands/GetAnnotationImportJobCommand.d.ts +3 -0
- package/dist-types/commands/GetReadSetMetadataCommand.d.ts +1 -0
- package/dist-types/commands/GetRunCommand.d.ts +1 -0
- package/dist-types/commands/GetRunGroupCommand.d.ts +1 -0
- package/dist-types/commands/GetRunTaskCommand.d.ts +1 -0
- package/dist-types/commands/GetSequenceStoreCommand.d.ts +1 -0
- package/dist-types/commands/GetVariantImportJobCommand.d.ts +3 -0
- package/dist-types/commands/GetWorkflowCommand.d.ts +4 -0
- package/dist-types/commands/ListAnnotationImportJobsCommand.d.ts +3 -0
- package/dist-types/commands/ListMultipartReadSetUploadsCommand.d.ts +116 -0
- package/dist-types/commands/ListReadSetUploadPartsCommand.d.ts +115 -0
- package/dist-types/commands/ListReadSetsCommand.d.ts +4 -0
- package/dist-types/commands/ListRunGroupsCommand.d.ts +1 -0
- package/dist-types/commands/ListRunTasksCommand.d.ts +1 -0
- package/dist-types/commands/ListRunsCommand.d.ts +1 -0
- package/dist-types/commands/ListSequenceStoresCommand.d.ts +1 -0
- package/dist-types/commands/ListVariantImportJobsCommand.d.ts +3 -0
- package/dist-types/commands/ListWorkflowsCommand.d.ts +3 -0
- package/dist-types/commands/StartAnnotationImportJobCommand.d.ts +3 -0
- package/dist-types/commands/StartVariantImportJobCommand.d.ts +3 -0
- package/dist-types/commands/UpdateRunGroupCommand.d.ts +1 -0
- package/dist-types/commands/UploadReadSetPartCommand.d.ts +111 -0
- package/dist-types/commands/index.d.ts +6 -0
- package/dist-types/models/models_0.d.ts +825 -119
- package/dist-types/pagination/ListMultipartReadSetUploadsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListReadSetUploadPartsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +2 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +54 -0
- package/dist-types/ts3.4/Omics.d.ts +102 -0
- package/dist-types/ts3.4/OmicsClient.d.ts +38 -2
- package/dist-types/ts3.4/commands/AbortMultipartReadSetUploadCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/CompleteMultipartReadSetUploadCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/CreateMultipartReadSetUploadCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/ListMultipartReadSetUploadsCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/ListReadSetUploadPartsCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/UploadReadSetPartCommand.d.ts +44 -0
- package/dist-types/ts3.4/commands/index.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +202 -52
- package/dist-types/ts3.4/pagination/ListMultipartReadSetUploadsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListReadSetUploadPartsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +2 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +72 -0
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
AWS SDK for JavaScript Omics Client for Node.js, Browser and React Native.
|
|
8
8
|
|
|
9
9
|
<p>This is the <i>Amazon Omics API Reference</i>. For an introduction to the service, see <a href="https://docs.aws.amazon.com/omics/latest/dev/">What is Amazon Omics?</a> in the
|
|
10
|
-
<i>Amazon Omics
|
|
10
|
+
<i>Amazon Omics User Guide</i>.</p>
|
|
11
11
|
|
|
12
12
|
## Installing
|
|
13
13
|
|
|
@@ -24,16 +24,16 @@ using your favorite package manager:
|
|
|
24
24
|
|
|
25
25
|
The AWS SDK is modulized by clients and commands.
|
|
26
26
|
To send a request, you only need to import the `OmicsClient` and
|
|
27
|
-
the commands you need, for example `
|
|
27
|
+
the commands you need, for example `AbortMultipartReadSetUploadCommand`:
|
|
28
28
|
|
|
29
29
|
```js
|
|
30
30
|
// ES5 example
|
|
31
|
-
const { OmicsClient,
|
|
31
|
+
const { OmicsClient, AbortMultipartReadSetUploadCommand } = require("@aws-sdk/client-omics");
|
|
32
32
|
```
|
|
33
33
|
|
|
34
34
|
```ts
|
|
35
35
|
// ES6+ example
|
|
36
|
-
import { OmicsClient,
|
|
36
|
+
import { OmicsClient, AbortMultipartReadSetUploadCommand } from "@aws-sdk/client-omics";
|
|
37
37
|
```
|
|
38
38
|
|
|
39
39
|
### Usage
|
|
@@ -52,7 +52,7 @@ const client = new OmicsClient({ region: "REGION" });
|
|
|
52
52
|
const params = {
|
|
53
53
|
/** input parameters */
|
|
54
54
|
};
|
|
55
|
-
const command = new
|
|
55
|
+
const command = new AbortMultipartReadSetUploadCommand(params);
|
|
56
56
|
```
|
|
57
57
|
|
|
58
58
|
#### Async/await
|
|
@@ -131,7 +131,7 @@ const client = new AWS.Omics({ region: "REGION" });
|
|
|
131
131
|
|
|
132
132
|
// async/await.
|
|
133
133
|
try {
|
|
134
|
-
const data = await client.
|
|
134
|
+
const data = await client.abortMultipartReadSetUpload(params);
|
|
135
135
|
// process data.
|
|
136
136
|
} catch (error) {
|
|
137
137
|
// error handling.
|
|
@@ -139,7 +139,7 @@ try {
|
|
|
139
139
|
|
|
140
140
|
// Promises.
|
|
141
141
|
client
|
|
142
|
-
.
|
|
142
|
+
.abortMultipartReadSetUpload(params)
|
|
143
143
|
.then((data) => {
|
|
144
144
|
// process data.
|
|
145
145
|
})
|
|
@@ -148,7 +148,7 @@ client
|
|
|
148
148
|
});
|
|
149
149
|
|
|
150
150
|
// callbacks.
|
|
151
|
-
client.
|
|
151
|
+
client.abortMultipartReadSetUpload(params, (err, data) => {
|
|
152
152
|
// process err and data.
|
|
153
153
|
});
|
|
154
154
|
```
|
|
@@ -204,6 +204,14 @@ see LICENSE for more information.
|
|
|
204
204
|
|
|
205
205
|
## Client Commands (Operations List)
|
|
206
206
|
|
|
207
|
+
<details>
|
|
208
|
+
<summary>
|
|
209
|
+
AbortMultipartReadSetUpload
|
|
210
|
+
</summary>
|
|
211
|
+
|
|
212
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-omics/classes/abortmultipartreadsetuploadcommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-omics/interfaces/abortmultipartreadsetuploadcommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-omics/interfaces/abortmultipartreadsetuploadcommandoutput.html)
|
|
213
|
+
|
|
214
|
+
</details>
|
|
207
215
|
<details>
|
|
208
216
|
<summary>
|
|
209
217
|
BatchDeleteReadSet
|
|
@@ -235,6 +243,14 @@ CancelVariantImportJob
|
|
|
235
243
|
|
|
236
244
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-omics/classes/cancelvariantimportjobcommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-omics/interfaces/cancelvariantimportjobcommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-omics/interfaces/cancelvariantimportjobcommandoutput.html)
|
|
237
245
|
|
|
246
|
+
</details>
|
|
247
|
+
<details>
|
|
248
|
+
<summary>
|
|
249
|
+
CompleteMultipartReadSetUpload
|
|
250
|
+
</summary>
|
|
251
|
+
|
|
252
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-omics/classes/completemultipartreadsetuploadcommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-omics/interfaces/completemultipartreadsetuploadcommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-omics/interfaces/completemultipartreadsetuploadcommandoutput.html)
|
|
253
|
+
|
|
238
254
|
</details>
|
|
239
255
|
<details>
|
|
240
256
|
<summary>
|
|
@@ -243,6 +259,14 @@ CreateAnnotationStore
|
|
|
243
259
|
|
|
244
260
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-omics/classes/createannotationstorecommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-omics/interfaces/createannotationstorecommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-omics/interfaces/createannotationstorecommandoutput.html)
|
|
245
261
|
|
|
262
|
+
</details>
|
|
263
|
+
<details>
|
|
264
|
+
<summary>
|
|
265
|
+
CreateMultipartReadSetUpload
|
|
266
|
+
</summary>
|
|
267
|
+
|
|
268
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-omics/classes/createmultipartreadsetuploadcommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-omics/interfaces/createmultipartreadsetuploadcommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-omics/interfaces/createmultipartreadsetuploadcommandoutput.html)
|
|
269
|
+
|
|
246
270
|
</details>
|
|
247
271
|
<details>
|
|
248
272
|
<summary>
|
|
@@ -507,6 +531,14 @@ ListAnnotationStores
|
|
|
507
531
|
|
|
508
532
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-omics/classes/listannotationstorescommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-omics/interfaces/listannotationstorescommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-omics/interfaces/listannotationstorescommandoutput.html)
|
|
509
533
|
|
|
534
|
+
</details>
|
|
535
|
+
<details>
|
|
536
|
+
<summary>
|
|
537
|
+
ListMultipartReadSetUploads
|
|
538
|
+
</summary>
|
|
539
|
+
|
|
540
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-omics/classes/listmultipartreadsetuploadscommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-omics/interfaces/listmultipartreadsetuploadscommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-omics/interfaces/listmultipartreadsetuploadscommandoutput.html)
|
|
541
|
+
|
|
510
542
|
</details>
|
|
511
543
|
<details>
|
|
512
544
|
<summary>
|
|
@@ -539,6 +571,14 @@ ListReadSets
|
|
|
539
571
|
|
|
540
572
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-omics/classes/listreadsetscommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-omics/interfaces/listreadsetscommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-omics/interfaces/listreadsetscommandoutput.html)
|
|
541
573
|
|
|
574
|
+
</details>
|
|
575
|
+
<details>
|
|
576
|
+
<summary>
|
|
577
|
+
ListReadSetUploadParts
|
|
578
|
+
</summary>
|
|
579
|
+
|
|
580
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-omics/classes/listreadsetuploadpartscommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-omics/interfaces/listreadsetuploadpartscommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-omics/interfaces/listreadsetuploadpartscommandoutput.html)
|
|
581
|
+
|
|
542
582
|
</details>
|
|
543
583
|
<details>
|
|
544
584
|
<summary>
|
|
@@ -732,3 +772,11 @@ UpdateWorkflow
|
|
|
732
772
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-omics/classes/updateworkflowcommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-omics/interfaces/updateworkflowcommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-omics/interfaces/updateworkflowcommandoutput.html)
|
|
733
773
|
|
|
734
774
|
</details>
|
|
775
|
+
<details>
|
|
776
|
+
<summary>
|
|
777
|
+
UploadReadSetPart
|
|
778
|
+
</summary>
|
|
779
|
+
|
|
780
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-omics/classes/uploadreadsetpartcommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-omics/interfaces/uploadreadsetpartcommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-omics/interfaces/uploadreadsetpartcommandoutput.html)
|
|
781
|
+
|
|
782
|
+
</details>
|
package/dist-cjs/Omics.js
CHANGED
|
@@ -2,11 +2,14 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.Omics = void 0;
|
|
4
4
|
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
5
|
+
const AbortMultipartReadSetUploadCommand_1 = require("./commands/AbortMultipartReadSetUploadCommand");
|
|
5
6
|
const BatchDeleteReadSetCommand_1 = require("./commands/BatchDeleteReadSetCommand");
|
|
6
7
|
const CancelAnnotationImportJobCommand_1 = require("./commands/CancelAnnotationImportJobCommand");
|
|
7
8
|
const CancelRunCommand_1 = require("./commands/CancelRunCommand");
|
|
8
9
|
const CancelVariantImportJobCommand_1 = require("./commands/CancelVariantImportJobCommand");
|
|
10
|
+
const CompleteMultipartReadSetUploadCommand_1 = require("./commands/CompleteMultipartReadSetUploadCommand");
|
|
9
11
|
const CreateAnnotationStoreCommand_1 = require("./commands/CreateAnnotationStoreCommand");
|
|
12
|
+
const CreateMultipartReadSetUploadCommand_1 = require("./commands/CreateMultipartReadSetUploadCommand");
|
|
10
13
|
const CreateReferenceStoreCommand_1 = require("./commands/CreateReferenceStoreCommand");
|
|
11
14
|
const CreateRunGroupCommand_1 = require("./commands/CreateRunGroupCommand");
|
|
12
15
|
const CreateSequenceStoreCommand_1 = require("./commands/CreateSequenceStoreCommand");
|
|
@@ -40,10 +43,12 @@ const GetVariantStoreCommand_1 = require("./commands/GetVariantStoreCommand");
|
|
|
40
43
|
const GetWorkflowCommand_1 = require("./commands/GetWorkflowCommand");
|
|
41
44
|
const ListAnnotationImportJobsCommand_1 = require("./commands/ListAnnotationImportJobsCommand");
|
|
42
45
|
const ListAnnotationStoresCommand_1 = require("./commands/ListAnnotationStoresCommand");
|
|
46
|
+
const ListMultipartReadSetUploadsCommand_1 = require("./commands/ListMultipartReadSetUploadsCommand");
|
|
43
47
|
const ListReadSetActivationJobsCommand_1 = require("./commands/ListReadSetActivationJobsCommand");
|
|
44
48
|
const ListReadSetExportJobsCommand_1 = require("./commands/ListReadSetExportJobsCommand");
|
|
45
49
|
const ListReadSetImportJobsCommand_1 = require("./commands/ListReadSetImportJobsCommand");
|
|
46
50
|
const ListReadSetsCommand_1 = require("./commands/ListReadSetsCommand");
|
|
51
|
+
const ListReadSetUploadPartsCommand_1 = require("./commands/ListReadSetUploadPartsCommand");
|
|
47
52
|
const ListReferenceImportJobsCommand_1 = require("./commands/ListReferenceImportJobsCommand");
|
|
48
53
|
const ListReferencesCommand_1 = require("./commands/ListReferencesCommand");
|
|
49
54
|
const ListReferenceStoresCommand_1 = require("./commands/ListReferenceStoresCommand");
|
|
@@ -68,13 +73,17 @@ const UpdateAnnotationStoreCommand_1 = require("./commands/UpdateAnnotationStore
|
|
|
68
73
|
const UpdateRunGroupCommand_1 = require("./commands/UpdateRunGroupCommand");
|
|
69
74
|
const UpdateVariantStoreCommand_1 = require("./commands/UpdateVariantStoreCommand");
|
|
70
75
|
const UpdateWorkflowCommand_1 = require("./commands/UpdateWorkflowCommand");
|
|
76
|
+
const UploadReadSetPartCommand_1 = require("./commands/UploadReadSetPartCommand");
|
|
71
77
|
const OmicsClient_1 = require("./OmicsClient");
|
|
72
78
|
const commands = {
|
|
79
|
+
AbortMultipartReadSetUploadCommand: AbortMultipartReadSetUploadCommand_1.AbortMultipartReadSetUploadCommand,
|
|
73
80
|
BatchDeleteReadSetCommand: BatchDeleteReadSetCommand_1.BatchDeleteReadSetCommand,
|
|
74
81
|
CancelAnnotationImportJobCommand: CancelAnnotationImportJobCommand_1.CancelAnnotationImportJobCommand,
|
|
75
82
|
CancelRunCommand: CancelRunCommand_1.CancelRunCommand,
|
|
76
83
|
CancelVariantImportJobCommand: CancelVariantImportJobCommand_1.CancelVariantImportJobCommand,
|
|
84
|
+
CompleteMultipartReadSetUploadCommand: CompleteMultipartReadSetUploadCommand_1.CompleteMultipartReadSetUploadCommand,
|
|
77
85
|
CreateAnnotationStoreCommand: CreateAnnotationStoreCommand_1.CreateAnnotationStoreCommand,
|
|
86
|
+
CreateMultipartReadSetUploadCommand: CreateMultipartReadSetUploadCommand_1.CreateMultipartReadSetUploadCommand,
|
|
78
87
|
CreateReferenceStoreCommand: CreateReferenceStoreCommand_1.CreateReferenceStoreCommand,
|
|
79
88
|
CreateRunGroupCommand: CreateRunGroupCommand_1.CreateRunGroupCommand,
|
|
80
89
|
CreateSequenceStoreCommand: CreateSequenceStoreCommand_1.CreateSequenceStoreCommand,
|
|
@@ -108,10 +117,12 @@ const commands = {
|
|
|
108
117
|
GetWorkflowCommand: GetWorkflowCommand_1.GetWorkflowCommand,
|
|
109
118
|
ListAnnotationImportJobsCommand: ListAnnotationImportJobsCommand_1.ListAnnotationImportJobsCommand,
|
|
110
119
|
ListAnnotationStoresCommand: ListAnnotationStoresCommand_1.ListAnnotationStoresCommand,
|
|
120
|
+
ListMultipartReadSetUploadsCommand: ListMultipartReadSetUploadsCommand_1.ListMultipartReadSetUploadsCommand,
|
|
111
121
|
ListReadSetActivationJobsCommand: ListReadSetActivationJobsCommand_1.ListReadSetActivationJobsCommand,
|
|
112
122
|
ListReadSetExportJobsCommand: ListReadSetExportJobsCommand_1.ListReadSetExportJobsCommand,
|
|
113
123
|
ListReadSetImportJobsCommand: ListReadSetImportJobsCommand_1.ListReadSetImportJobsCommand,
|
|
114
124
|
ListReadSetsCommand: ListReadSetsCommand_1.ListReadSetsCommand,
|
|
125
|
+
ListReadSetUploadPartsCommand: ListReadSetUploadPartsCommand_1.ListReadSetUploadPartsCommand,
|
|
115
126
|
ListReferenceImportJobsCommand: ListReferenceImportJobsCommand_1.ListReferenceImportJobsCommand,
|
|
116
127
|
ListReferencesCommand: ListReferencesCommand_1.ListReferencesCommand,
|
|
117
128
|
ListReferenceStoresCommand: ListReferenceStoresCommand_1.ListReferenceStoresCommand,
|
|
@@ -136,6 +147,7 @@ const commands = {
|
|
|
136
147
|
UpdateRunGroupCommand: UpdateRunGroupCommand_1.UpdateRunGroupCommand,
|
|
137
148
|
UpdateVariantStoreCommand: UpdateVariantStoreCommand_1.UpdateVariantStoreCommand,
|
|
138
149
|
UpdateWorkflowCommand: UpdateWorkflowCommand_1.UpdateWorkflowCommand,
|
|
150
|
+
UploadReadSetPartCommand: UploadReadSetPartCommand_1.UploadReadSetPartCommand,
|
|
139
151
|
};
|
|
140
152
|
class Omics extends OmicsClient_1.OmicsClient {
|
|
141
153
|
}
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.AbortMultipartReadSetUploadCommand = void 0;
|
|
4
|
+
const middleware_endpoint_1 = require("@aws-sdk/middleware-endpoint");
|
|
5
|
+
const middleware_serde_1 = require("@aws-sdk/middleware-serde");
|
|
6
|
+
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
7
|
+
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
8
|
+
class AbortMultipartReadSetUploadCommand extends smithy_client_1.Command {
|
|
9
|
+
static getEndpointParameterInstructions() {
|
|
10
|
+
return {
|
|
11
|
+
UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
|
|
12
|
+
Endpoint: { type: "builtInParams", name: "endpoint" },
|
|
13
|
+
Region: { type: "builtInParams", name: "region" },
|
|
14
|
+
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
15
|
+
};
|
|
16
|
+
}
|
|
17
|
+
constructor(input) {
|
|
18
|
+
super();
|
|
19
|
+
this.input = input;
|
|
20
|
+
}
|
|
21
|
+
resolveMiddleware(clientStack, configuration, options) {
|
|
22
|
+
this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
|
|
23
|
+
this.middlewareStack.use((0, middleware_endpoint_1.getEndpointPlugin)(configuration, AbortMultipartReadSetUploadCommand.getEndpointParameterInstructions()));
|
|
24
|
+
const stack = clientStack.concat(this.middlewareStack);
|
|
25
|
+
const { logger } = configuration;
|
|
26
|
+
const clientName = "OmicsClient";
|
|
27
|
+
const commandName = "AbortMultipartReadSetUploadCommand";
|
|
28
|
+
const handlerExecutionContext = {
|
|
29
|
+
logger,
|
|
30
|
+
clientName,
|
|
31
|
+
commandName,
|
|
32
|
+
inputFilterSensitiveLog: (_) => _,
|
|
33
|
+
outputFilterSensitiveLog: (_) => _,
|
|
34
|
+
};
|
|
35
|
+
const { requestHandler } = configuration;
|
|
36
|
+
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
37
|
+
}
|
|
38
|
+
serialize(input, context) {
|
|
39
|
+
return (0, Aws_restJson1_1.se_AbortMultipartReadSetUploadCommand)(input, context);
|
|
40
|
+
}
|
|
41
|
+
deserialize(output, context) {
|
|
42
|
+
return (0, Aws_restJson1_1.de_AbortMultipartReadSetUploadCommand)(output, context);
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
exports.AbortMultipartReadSetUploadCommand = AbortMultipartReadSetUploadCommand;
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.CompleteMultipartReadSetUploadCommand = void 0;
|
|
4
|
+
const middleware_endpoint_1 = require("@aws-sdk/middleware-endpoint");
|
|
5
|
+
const middleware_serde_1 = require("@aws-sdk/middleware-serde");
|
|
6
|
+
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
7
|
+
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
8
|
+
class CompleteMultipartReadSetUploadCommand extends smithy_client_1.Command {
|
|
9
|
+
static getEndpointParameterInstructions() {
|
|
10
|
+
return {
|
|
11
|
+
UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
|
|
12
|
+
Endpoint: { type: "builtInParams", name: "endpoint" },
|
|
13
|
+
Region: { type: "builtInParams", name: "region" },
|
|
14
|
+
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
15
|
+
};
|
|
16
|
+
}
|
|
17
|
+
constructor(input) {
|
|
18
|
+
super();
|
|
19
|
+
this.input = input;
|
|
20
|
+
}
|
|
21
|
+
resolveMiddleware(clientStack, configuration, options) {
|
|
22
|
+
this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
|
|
23
|
+
this.middlewareStack.use((0, middleware_endpoint_1.getEndpointPlugin)(configuration, CompleteMultipartReadSetUploadCommand.getEndpointParameterInstructions()));
|
|
24
|
+
const stack = clientStack.concat(this.middlewareStack);
|
|
25
|
+
const { logger } = configuration;
|
|
26
|
+
const clientName = "OmicsClient";
|
|
27
|
+
const commandName = "CompleteMultipartReadSetUploadCommand";
|
|
28
|
+
const handlerExecutionContext = {
|
|
29
|
+
logger,
|
|
30
|
+
clientName,
|
|
31
|
+
commandName,
|
|
32
|
+
inputFilterSensitiveLog: (_) => _,
|
|
33
|
+
outputFilterSensitiveLog: (_) => _,
|
|
34
|
+
};
|
|
35
|
+
const { requestHandler } = configuration;
|
|
36
|
+
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
37
|
+
}
|
|
38
|
+
serialize(input, context) {
|
|
39
|
+
return (0, Aws_restJson1_1.se_CompleteMultipartReadSetUploadCommand)(input, context);
|
|
40
|
+
}
|
|
41
|
+
deserialize(output, context) {
|
|
42
|
+
return (0, Aws_restJson1_1.de_CompleteMultipartReadSetUploadCommand)(output, context);
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
exports.CompleteMultipartReadSetUploadCommand = CompleteMultipartReadSetUploadCommand;
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.CreateMultipartReadSetUploadCommand = void 0;
|
|
4
|
+
const middleware_endpoint_1 = require("@aws-sdk/middleware-endpoint");
|
|
5
|
+
const middleware_serde_1 = require("@aws-sdk/middleware-serde");
|
|
6
|
+
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
7
|
+
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
8
|
+
class CreateMultipartReadSetUploadCommand extends smithy_client_1.Command {
|
|
9
|
+
static getEndpointParameterInstructions() {
|
|
10
|
+
return {
|
|
11
|
+
UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
|
|
12
|
+
Endpoint: { type: "builtInParams", name: "endpoint" },
|
|
13
|
+
Region: { type: "builtInParams", name: "region" },
|
|
14
|
+
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
15
|
+
};
|
|
16
|
+
}
|
|
17
|
+
constructor(input) {
|
|
18
|
+
super();
|
|
19
|
+
this.input = input;
|
|
20
|
+
}
|
|
21
|
+
resolveMiddleware(clientStack, configuration, options) {
|
|
22
|
+
this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
|
|
23
|
+
this.middlewareStack.use((0, middleware_endpoint_1.getEndpointPlugin)(configuration, CreateMultipartReadSetUploadCommand.getEndpointParameterInstructions()));
|
|
24
|
+
const stack = clientStack.concat(this.middlewareStack);
|
|
25
|
+
const { logger } = configuration;
|
|
26
|
+
const clientName = "OmicsClient";
|
|
27
|
+
const commandName = "CreateMultipartReadSetUploadCommand";
|
|
28
|
+
const handlerExecutionContext = {
|
|
29
|
+
logger,
|
|
30
|
+
clientName,
|
|
31
|
+
commandName,
|
|
32
|
+
inputFilterSensitiveLog: (_) => _,
|
|
33
|
+
outputFilterSensitiveLog: (_) => _,
|
|
34
|
+
};
|
|
35
|
+
const { requestHandler } = configuration;
|
|
36
|
+
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
37
|
+
}
|
|
38
|
+
serialize(input, context) {
|
|
39
|
+
return (0, Aws_restJson1_1.se_CreateMultipartReadSetUploadCommand)(input, context);
|
|
40
|
+
}
|
|
41
|
+
deserialize(output, context) {
|
|
42
|
+
return (0, Aws_restJson1_1.de_CreateMultipartReadSetUploadCommand)(output, context);
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
exports.CreateMultipartReadSetUploadCommand = CreateMultipartReadSetUploadCommand;
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ListMultipartReadSetUploadsCommand = void 0;
|
|
4
|
+
const middleware_endpoint_1 = require("@aws-sdk/middleware-endpoint");
|
|
5
|
+
const middleware_serde_1 = require("@aws-sdk/middleware-serde");
|
|
6
|
+
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
7
|
+
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
8
|
+
class ListMultipartReadSetUploadsCommand extends smithy_client_1.Command {
|
|
9
|
+
static getEndpointParameterInstructions() {
|
|
10
|
+
return {
|
|
11
|
+
UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
|
|
12
|
+
Endpoint: { type: "builtInParams", name: "endpoint" },
|
|
13
|
+
Region: { type: "builtInParams", name: "region" },
|
|
14
|
+
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
15
|
+
};
|
|
16
|
+
}
|
|
17
|
+
constructor(input) {
|
|
18
|
+
super();
|
|
19
|
+
this.input = input;
|
|
20
|
+
}
|
|
21
|
+
resolveMiddleware(clientStack, configuration, options) {
|
|
22
|
+
this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
|
|
23
|
+
this.middlewareStack.use((0, middleware_endpoint_1.getEndpointPlugin)(configuration, ListMultipartReadSetUploadsCommand.getEndpointParameterInstructions()));
|
|
24
|
+
const stack = clientStack.concat(this.middlewareStack);
|
|
25
|
+
const { logger } = configuration;
|
|
26
|
+
const clientName = "OmicsClient";
|
|
27
|
+
const commandName = "ListMultipartReadSetUploadsCommand";
|
|
28
|
+
const handlerExecutionContext = {
|
|
29
|
+
logger,
|
|
30
|
+
clientName,
|
|
31
|
+
commandName,
|
|
32
|
+
inputFilterSensitiveLog: (_) => _,
|
|
33
|
+
outputFilterSensitiveLog: (_) => _,
|
|
34
|
+
};
|
|
35
|
+
const { requestHandler } = configuration;
|
|
36
|
+
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
37
|
+
}
|
|
38
|
+
serialize(input, context) {
|
|
39
|
+
return (0, Aws_restJson1_1.se_ListMultipartReadSetUploadsCommand)(input, context);
|
|
40
|
+
}
|
|
41
|
+
deserialize(output, context) {
|
|
42
|
+
return (0, Aws_restJson1_1.de_ListMultipartReadSetUploadsCommand)(output, context);
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
exports.ListMultipartReadSetUploadsCommand = ListMultipartReadSetUploadsCommand;
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ListReadSetUploadPartsCommand = void 0;
|
|
4
|
+
const middleware_endpoint_1 = require("@aws-sdk/middleware-endpoint");
|
|
5
|
+
const middleware_serde_1 = require("@aws-sdk/middleware-serde");
|
|
6
|
+
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
7
|
+
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
8
|
+
class ListReadSetUploadPartsCommand extends smithy_client_1.Command {
|
|
9
|
+
static getEndpointParameterInstructions() {
|
|
10
|
+
return {
|
|
11
|
+
UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
|
|
12
|
+
Endpoint: { type: "builtInParams", name: "endpoint" },
|
|
13
|
+
Region: { type: "builtInParams", name: "region" },
|
|
14
|
+
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
15
|
+
};
|
|
16
|
+
}
|
|
17
|
+
constructor(input) {
|
|
18
|
+
super();
|
|
19
|
+
this.input = input;
|
|
20
|
+
}
|
|
21
|
+
resolveMiddleware(clientStack, configuration, options) {
|
|
22
|
+
this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
|
|
23
|
+
this.middlewareStack.use((0, middleware_endpoint_1.getEndpointPlugin)(configuration, ListReadSetUploadPartsCommand.getEndpointParameterInstructions()));
|
|
24
|
+
const stack = clientStack.concat(this.middlewareStack);
|
|
25
|
+
const { logger } = configuration;
|
|
26
|
+
const clientName = "OmicsClient";
|
|
27
|
+
const commandName = "ListReadSetUploadPartsCommand";
|
|
28
|
+
const handlerExecutionContext = {
|
|
29
|
+
logger,
|
|
30
|
+
clientName,
|
|
31
|
+
commandName,
|
|
32
|
+
inputFilterSensitiveLog: (_) => _,
|
|
33
|
+
outputFilterSensitiveLog: (_) => _,
|
|
34
|
+
};
|
|
35
|
+
const { requestHandler } = configuration;
|
|
36
|
+
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
37
|
+
}
|
|
38
|
+
serialize(input, context) {
|
|
39
|
+
return (0, Aws_restJson1_1.se_ListReadSetUploadPartsCommand)(input, context);
|
|
40
|
+
}
|
|
41
|
+
deserialize(output, context) {
|
|
42
|
+
return (0, Aws_restJson1_1.de_ListReadSetUploadPartsCommand)(output, context);
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
exports.ListReadSetUploadPartsCommand = ListReadSetUploadPartsCommand;
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.UploadReadSetPartCommand = void 0;
|
|
4
|
+
const middleware_endpoint_1 = require("@aws-sdk/middleware-endpoint");
|
|
5
|
+
const middleware_serde_1 = require("@aws-sdk/middleware-serde");
|
|
6
|
+
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
7
|
+
const models_0_1 = require("../models/models_0");
|
|
8
|
+
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
9
|
+
class UploadReadSetPartCommand extends smithy_client_1.Command {
|
|
10
|
+
static getEndpointParameterInstructions() {
|
|
11
|
+
return {
|
|
12
|
+
UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
|
|
13
|
+
Endpoint: { type: "builtInParams", name: "endpoint" },
|
|
14
|
+
Region: { type: "builtInParams", name: "region" },
|
|
15
|
+
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
16
|
+
};
|
|
17
|
+
}
|
|
18
|
+
constructor(input) {
|
|
19
|
+
super();
|
|
20
|
+
this.input = input;
|
|
21
|
+
}
|
|
22
|
+
resolveMiddleware(clientStack, configuration, options) {
|
|
23
|
+
this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
|
|
24
|
+
this.middlewareStack.use((0, middleware_endpoint_1.getEndpointPlugin)(configuration, UploadReadSetPartCommand.getEndpointParameterInstructions()));
|
|
25
|
+
const stack = clientStack.concat(this.middlewareStack);
|
|
26
|
+
const { logger } = configuration;
|
|
27
|
+
const clientName = "OmicsClient";
|
|
28
|
+
const commandName = "UploadReadSetPartCommand";
|
|
29
|
+
const handlerExecutionContext = {
|
|
30
|
+
logger,
|
|
31
|
+
clientName,
|
|
32
|
+
commandName,
|
|
33
|
+
inputFilterSensitiveLog: models_0_1.UploadReadSetPartRequestFilterSensitiveLog,
|
|
34
|
+
outputFilterSensitiveLog: (_) => _,
|
|
35
|
+
};
|
|
36
|
+
const { requestHandler } = configuration;
|
|
37
|
+
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
38
|
+
}
|
|
39
|
+
serialize(input, context) {
|
|
40
|
+
return (0, Aws_restJson1_1.se_UploadReadSetPartCommand)(input, context);
|
|
41
|
+
}
|
|
42
|
+
deserialize(output, context) {
|
|
43
|
+
return (0, Aws_restJson1_1.de_UploadReadSetPartCommand)(output, context);
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
exports.UploadReadSetPartCommand = UploadReadSetPartCommand;
|
|
@@ -1,11 +1,14 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
const tslib_1 = require("tslib");
|
|
4
|
+
tslib_1.__exportStar(require("./AbortMultipartReadSetUploadCommand"), exports);
|
|
4
5
|
tslib_1.__exportStar(require("./BatchDeleteReadSetCommand"), exports);
|
|
5
6
|
tslib_1.__exportStar(require("./CancelAnnotationImportJobCommand"), exports);
|
|
6
7
|
tslib_1.__exportStar(require("./CancelRunCommand"), exports);
|
|
7
8
|
tslib_1.__exportStar(require("./CancelVariantImportJobCommand"), exports);
|
|
9
|
+
tslib_1.__exportStar(require("./CompleteMultipartReadSetUploadCommand"), exports);
|
|
8
10
|
tslib_1.__exportStar(require("./CreateAnnotationStoreCommand"), exports);
|
|
11
|
+
tslib_1.__exportStar(require("./CreateMultipartReadSetUploadCommand"), exports);
|
|
9
12
|
tslib_1.__exportStar(require("./CreateReferenceStoreCommand"), exports);
|
|
10
13
|
tslib_1.__exportStar(require("./CreateRunGroupCommand"), exports);
|
|
11
14
|
tslib_1.__exportStar(require("./CreateSequenceStoreCommand"), exports);
|
|
@@ -39,9 +42,11 @@ tslib_1.__exportStar(require("./GetVariantStoreCommand"), exports);
|
|
|
39
42
|
tslib_1.__exportStar(require("./GetWorkflowCommand"), exports);
|
|
40
43
|
tslib_1.__exportStar(require("./ListAnnotationImportJobsCommand"), exports);
|
|
41
44
|
tslib_1.__exportStar(require("./ListAnnotationStoresCommand"), exports);
|
|
45
|
+
tslib_1.__exportStar(require("./ListMultipartReadSetUploadsCommand"), exports);
|
|
42
46
|
tslib_1.__exportStar(require("./ListReadSetActivationJobsCommand"), exports);
|
|
43
47
|
tslib_1.__exportStar(require("./ListReadSetExportJobsCommand"), exports);
|
|
44
48
|
tslib_1.__exportStar(require("./ListReadSetImportJobsCommand"), exports);
|
|
49
|
+
tslib_1.__exportStar(require("./ListReadSetUploadPartsCommand"), exports);
|
|
45
50
|
tslib_1.__exportStar(require("./ListReadSetsCommand"), exports);
|
|
46
51
|
tslib_1.__exportStar(require("./ListReferenceImportJobsCommand"), exports);
|
|
47
52
|
tslib_1.__exportStar(require("./ListReferenceStoresCommand"), exports);
|
|
@@ -67,3 +72,4 @@ tslib_1.__exportStar(require("./UpdateAnnotationStoreCommand"), exports);
|
|
|
67
72
|
tslib_1.__exportStar(require("./UpdateRunGroupCommand"), exports);
|
|
68
73
|
tslib_1.__exportStar(require("./UpdateVariantStoreCommand"), exports);
|
|
69
74
|
tslib_1.__exportStar(require("./UpdateWorkflowCommand"), exports);
|
|
75
|
+
tslib_1.__exportStar(require("./UploadReadSetPartCommand"), exports);
|