@aws-sdk/client-omics 3.325.0 → 3.327.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-types/commands/BatchDeleteReadSetCommand.d.ts +12 -0
- package/dist-types/commands/CancelAnnotationImportJobCommand.d.ts +4 -0
- package/dist-types/commands/CancelRunCommand.d.ts +4 -0
- package/dist-types/commands/CancelVariantImportJobCommand.d.ts +4 -0
- package/dist-types/commands/CreateAnnotationStoreCommand.d.ts +26 -0
- package/dist-types/commands/CreateReferenceStoreCommand.d.ts +14 -0
- package/dist-types/commands/CreateRunGroupCommand.d.ts +10 -0
- package/dist-types/commands/CreateSequenceStoreCommand.d.ts +14 -0
- package/dist-types/commands/CreateVariantStoreCommand.d.ts +12 -0
- package/dist-types/commands/CreateWorkflowCommand.d.ts +11 -0
- package/dist-types/commands/DeleteAnnotationStoreCommand.d.ts +6 -0
- package/dist-types/commands/DeleteReferenceCommand.d.ts +4 -0
- package/dist-types/commands/DeleteReferenceStoreCommand.d.ts +4 -0
- package/dist-types/commands/DeleteRunCommand.d.ts +4 -0
- package/dist-types/commands/DeleteRunGroupCommand.d.ts +4 -0
- package/dist-types/commands/DeleteSequenceStoreCommand.d.ts +4 -0
- package/dist-types/commands/DeleteVariantStoreCommand.d.ts +6 -0
- package/dist-types/commands/DeleteWorkflowCommand.d.ts +4 -0
- package/dist-types/commands/GetAnnotationImportJobCommand.d.ts +39 -0
- package/dist-types/commands/GetAnnotationStoreCommand.d.ts +38 -0
- package/dist-types/commands/GetReadSetActivationJobCommand.d.ts +18 -0
- package/dist-types/commands/GetReadSetCommand.d.ts +6 -0
- package/dist-types/commands/GetReadSetExportJobCommand.d.ts +19 -0
- package/dist-types/commands/GetReadSetImportJobCommand.d.ts +32 -0
- package/dist-types/commands/GetReadSetMetadataCommand.d.ts +39 -0
- package/dist-types/commands/GetReferenceCommand.d.ts +6 -0
- package/dist-types/commands/GetReferenceImportJobCommand.d.ts +24 -0
- package/dist-types/commands/GetReferenceMetadataCommand.d.ts +26 -0
- package/dist-types/commands/GetReferenceStoreCommand.d.ts +14 -0
- package/dist-types/commands/GetRunCommand.d.ts +32 -0
- package/dist-types/commands/GetRunGroupCommand.d.ts +15 -0
- package/dist-types/commands/GetRunTaskCommand.d.ts +15 -0
- package/dist-types/commands/GetSequenceStoreCommand.d.ts +14 -0
- package/dist-types/commands/GetVariantImportJobCommand.d.ts +21 -0
- package/dist-types/commands/GetVariantStoreCommand.d.ts +24 -0
- package/dist-types/commands/GetWorkflowCommand.d.ts +27 -0
- package/dist-types/commands/ListAnnotationImportJobsCommand.d.ts +18 -0
- package/dist-types/commands/ListAnnotationStoresCommand.d.ts +27 -0
- package/dist-types/commands/ListReadSetActivationJobsCommand.d.ts +15 -0
- package/dist-types/commands/ListReadSetExportJobsCommand.d.ts +16 -0
- package/dist-types/commands/ListReadSetImportJobsCommand.d.ts +16 -0
- package/dist-types/commands/ListReadSetsCommand.d.ts +27 -0
- package/dist-types/commands/ListReferenceImportJobsCommand.d.ts +16 -0
- package/dist-types/commands/ListReferenceStoresCommand.d.ts +19 -0
- package/dist-types/commands/ListReferencesCommand.d.ts +19 -0
- package/dist-types/commands/ListRunGroupsCommand.d.ts +17 -0
- package/dist-types/commands/ListRunTasksCommand.d.ts +18 -0
- package/dist-types/commands/ListRunsCommand.d.ts +20 -0
- package/dist-types/commands/ListSequenceStoresCommand.d.ts +19 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +8 -0
- package/dist-types/commands/ListVariantImportJobsCommand.d.ts +18 -0
- package/dist-types/commands/ListVariantStoresCommand.d.ts +26 -0
- package/dist-types/commands/ListWorkflowsCommand.d.ts +17 -0
- package/dist-types/commands/StartAnnotationImportJobCommand.d.ts +6 -0
- package/dist-types/commands/StartReadSetActivationJobCommand.d.ts +9 -0
- package/dist-types/commands/StartReadSetExportJobCommand.d.ts +10 -0
- package/dist-types/commands/StartReadSetImportJobCommand.d.ts +10 -0
- package/dist-types/commands/StartReferenceImportJobCommand.d.ts +10 -0
- package/dist-types/commands/StartRunCommand.d.ts +11 -0
- package/dist-types/commands/StartVariantImportJobCommand.d.ts +6 -0
- package/dist-types/commands/TagResourceCommand.d.ts +4 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +4 -0
- package/dist-types/commands/UpdateAnnotationStoreCommand.d.ts +28 -0
- package/dist-types/commands/UpdateRunGroupCommand.d.ts +4 -0
- package/dist-types/commands/UpdateVariantStoreCommand.d.ts +14 -0
- package/dist-types/commands/UpdateWorkflowCommand.d.ts +4 -0
- package/package.json +7 -7
|
@@ -34,6 +34,16 @@ export interface BatchDeleteReadSetCommandOutput extends BatchDeleteReadSetRespo
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new BatchDeleteReadSetCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // { // BatchDeleteReadSetResponse
|
|
38
|
+
* // errors: [ // ReadSetBatchErrorList
|
|
39
|
+
* // { // ReadSetBatchError
|
|
40
|
+
* // id: "STRING_VALUE", // required
|
|
41
|
+
* // code: "STRING_VALUE", // required
|
|
42
|
+
* // message: "STRING_VALUE", // required
|
|
43
|
+
* // },
|
|
44
|
+
* // ],
|
|
45
|
+
* // };
|
|
46
|
+
*
|
|
37
47
|
* ```
|
|
38
48
|
*
|
|
39
49
|
* @param BatchDeleteReadSetCommandInput - {@link BatchDeleteReadSetCommandInput}
|
|
@@ -60,6 +70,8 @@ export interface BatchDeleteReadSetCommandOutput extends BatchDeleteReadSetRespo
|
|
|
60
70
|
* @throws {@link ValidationException} (client fault)
|
|
61
71
|
* <p>The input fails to satisfy the constraints specified by an AWS service.</p>
|
|
62
72
|
*
|
|
73
|
+
* @throws {@link OmicsServiceException}
|
|
74
|
+
* <p>Base exception class for all service exceptions from Omics service.</p>
|
|
63
75
|
*
|
|
64
76
|
*/
|
|
65
77
|
export declare class BatchDeleteReadSetCommand extends $Command<BatchDeleteReadSetCommandInput, BatchDeleteReadSetCommandOutput, OmicsClientResolvedConfig> {
|
|
@@ -31,6 +31,8 @@ export interface CancelAnnotationImportJobCommandOutput extends CancelAnnotation
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new CancelAnnotationImportJobCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // {};
|
|
35
|
+
*
|
|
34
36
|
* ```
|
|
35
37
|
*
|
|
36
38
|
* @param CancelAnnotationImportJobCommandInput - {@link CancelAnnotationImportJobCommandInput}
|
|
@@ -54,6 +56,8 @@ export interface CancelAnnotationImportJobCommandOutput extends CancelAnnotation
|
|
|
54
56
|
* @throws {@link ValidationException} (client fault)
|
|
55
57
|
* <p>The input fails to satisfy the constraints specified by an AWS service.</p>
|
|
56
58
|
*
|
|
59
|
+
* @throws {@link OmicsServiceException}
|
|
60
|
+
* <p>Base exception class for all service exceptions from Omics service.</p>
|
|
57
61
|
*
|
|
58
62
|
*/
|
|
59
63
|
export declare class CancelAnnotationImportJobCommand extends $Command<CancelAnnotationImportJobCommandInput, CancelAnnotationImportJobCommandOutput, OmicsClientResolvedConfig> {
|
|
@@ -31,6 +31,8 @@ export interface CancelRunCommandOutput extends __MetadataBearer {
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new CancelRunCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // {};
|
|
35
|
+
*
|
|
34
36
|
* ```
|
|
35
37
|
*
|
|
36
38
|
* @param CancelRunCommandInput - {@link CancelRunCommandInput}
|
|
@@ -63,6 +65,8 @@ export interface CancelRunCommandOutput extends __MetadataBearer {
|
|
|
63
65
|
* @throws {@link ValidationException} (client fault)
|
|
64
66
|
* <p>The input fails to satisfy the constraints specified by an AWS service.</p>
|
|
65
67
|
*
|
|
68
|
+
* @throws {@link OmicsServiceException}
|
|
69
|
+
* <p>Base exception class for all service exceptions from Omics service.</p>
|
|
66
70
|
*
|
|
67
71
|
*/
|
|
68
72
|
export declare class CancelRunCommand extends $Command<CancelRunCommandInput, CancelRunCommandOutput, OmicsClientResolvedConfig> {
|
|
@@ -31,6 +31,8 @@ export interface CancelVariantImportJobCommandOutput extends CancelVariantImport
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new CancelVariantImportJobCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // {};
|
|
35
|
+
*
|
|
34
36
|
* ```
|
|
35
37
|
*
|
|
36
38
|
* @param CancelVariantImportJobCommandInput - {@link CancelVariantImportJobCommandInput}
|
|
@@ -54,6 +56,8 @@ export interface CancelVariantImportJobCommandOutput extends CancelVariantImport
|
|
|
54
56
|
* @throws {@link ValidationException} (client fault)
|
|
55
57
|
* <p>The input fails to satisfy the constraints specified by an AWS service.</p>
|
|
56
58
|
*
|
|
59
|
+
* @throws {@link OmicsServiceException}
|
|
60
|
+
* <p>Base exception class for all service exceptions from Omics service.</p>
|
|
57
61
|
*
|
|
58
62
|
*/
|
|
59
63
|
export declare class CancelVariantImportJobCommand extends $Command<CancelVariantImportJobCommandInput, CancelVariantImportJobCommandOutput, OmicsClientResolvedConfig> {
|
|
@@ -56,6 +56,30 @@ export interface CreateAnnotationStoreCommandOutput extends CreateAnnotationStor
|
|
|
56
56
|
* };
|
|
57
57
|
* const command = new CreateAnnotationStoreCommand(input);
|
|
58
58
|
* const response = await client.send(command);
|
|
59
|
+
* // { // CreateAnnotationStoreResponse
|
|
60
|
+
* // id: "STRING_VALUE", // required
|
|
61
|
+
* // reference: { // ReferenceItem Union: only one key present
|
|
62
|
+
* // referenceArn: "STRING_VALUE",
|
|
63
|
+
* // },
|
|
64
|
+
* // storeFormat: "STRING_VALUE",
|
|
65
|
+
* // storeOptions: { // StoreOptions Union: only one key present
|
|
66
|
+
* // tsvStoreOptions: { // TsvStoreOptions
|
|
67
|
+
* // annotationType: "STRING_VALUE",
|
|
68
|
+
* // formatToHeader: { // FormatToHeader
|
|
69
|
+
* // "<keys>": "STRING_VALUE",
|
|
70
|
+
* // },
|
|
71
|
+
* // schema: [ // Schema
|
|
72
|
+
* // { // SchemaItem
|
|
73
|
+
* // "<keys>": "STRING_VALUE",
|
|
74
|
+
* // },
|
|
75
|
+
* // ],
|
|
76
|
+
* // },
|
|
77
|
+
* // },
|
|
78
|
+
* // status: "STRING_VALUE", // required
|
|
79
|
+
* // name: "STRING_VALUE", // required
|
|
80
|
+
* // creationTime: new Date("TIMESTAMP"), // required
|
|
81
|
+
* // };
|
|
82
|
+
*
|
|
59
83
|
* ```
|
|
60
84
|
*
|
|
61
85
|
* @param CreateAnnotationStoreCommandInput - {@link CreateAnnotationStoreCommandInput}
|
|
@@ -85,6 +109,8 @@ export interface CreateAnnotationStoreCommandOutput extends CreateAnnotationStor
|
|
|
85
109
|
* @throws {@link ValidationException} (client fault)
|
|
86
110
|
* <p>The input fails to satisfy the constraints specified by an AWS service.</p>
|
|
87
111
|
*
|
|
112
|
+
* @throws {@link OmicsServiceException}
|
|
113
|
+
* <p>Base exception class for all service exceptions from Omics service.</p>
|
|
88
114
|
*
|
|
89
115
|
*/
|
|
90
116
|
export declare class CreateAnnotationStoreCommand extends $Command<CreateAnnotationStoreCommandInput, CreateAnnotationStoreCommandOutput, OmicsClientResolvedConfig> {
|
|
@@ -40,6 +40,18 @@ export interface CreateReferenceStoreCommandOutput extends CreateReferenceStoreR
|
|
|
40
40
|
* };
|
|
41
41
|
* const command = new CreateReferenceStoreCommand(input);
|
|
42
42
|
* const response = await client.send(command);
|
|
43
|
+
* // { // CreateReferenceStoreResponse
|
|
44
|
+
* // id: "STRING_VALUE", // required
|
|
45
|
+
* // arn: "STRING_VALUE", // required
|
|
46
|
+
* // name: "STRING_VALUE",
|
|
47
|
+
* // description: "STRING_VALUE",
|
|
48
|
+
* // sseConfig: { // SseConfig
|
|
49
|
+
* // type: "STRING_VALUE", // required
|
|
50
|
+
* // keyArn: "STRING_VALUE",
|
|
51
|
+
* // },
|
|
52
|
+
* // creationTime: new Date("TIMESTAMP"), // required
|
|
53
|
+
* // };
|
|
54
|
+
*
|
|
43
55
|
* ```
|
|
44
56
|
*
|
|
45
57
|
* @param CreateReferenceStoreCommandInput - {@link CreateReferenceStoreCommandInput}
|
|
@@ -66,6 +78,8 @@ export interface CreateReferenceStoreCommandOutput extends CreateReferenceStoreR
|
|
|
66
78
|
* @throws {@link ValidationException} (client fault)
|
|
67
79
|
* <p>The input fails to satisfy the constraints specified by an AWS service.</p>
|
|
68
80
|
*
|
|
81
|
+
* @throws {@link OmicsServiceException}
|
|
82
|
+
* <p>Base exception class for all service exceptions from Omics service.</p>
|
|
69
83
|
*
|
|
70
84
|
*/
|
|
71
85
|
export declare class CreateReferenceStoreCommand extends $Command<CreateReferenceStoreCommandInput, CreateReferenceStoreCommandOutput, OmicsClientResolvedConfig> {
|
|
@@ -38,6 +38,14 @@ export interface CreateRunGroupCommandOutput extends CreateRunGroupResponse, __M
|
|
|
38
38
|
* };
|
|
39
39
|
* const command = new CreateRunGroupCommand(input);
|
|
40
40
|
* const response = await client.send(command);
|
|
41
|
+
* // { // CreateRunGroupResponse
|
|
42
|
+
* // arn: "STRING_VALUE",
|
|
43
|
+
* // id: "STRING_VALUE",
|
|
44
|
+
* // tags: { // TagMap
|
|
45
|
+
* // "<keys>": "STRING_VALUE",
|
|
46
|
+
* // },
|
|
47
|
+
* // };
|
|
48
|
+
*
|
|
41
49
|
* ```
|
|
42
50
|
*
|
|
43
51
|
* @param CreateRunGroupCommandInput - {@link CreateRunGroupCommandInput}
|
|
@@ -70,6 +78,8 @@ export interface CreateRunGroupCommandOutput extends CreateRunGroupResponse, __M
|
|
|
70
78
|
* @throws {@link ValidationException} (client fault)
|
|
71
79
|
* <p>The input fails to satisfy the constraints specified by an AWS service.</p>
|
|
72
80
|
*
|
|
81
|
+
* @throws {@link OmicsServiceException}
|
|
82
|
+
* <p>Base exception class for all service exceptions from Omics service.</p>
|
|
73
83
|
*
|
|
74
84
|
*/
|
|
75
85
|
export declare class CreateRunGroupCommand extends $Command<CreateRunGroupCommandInput, CreateRunGroupCommandOutput, OmicsClientResolvedConfig> {
|
|
@@ -40,6 +40,18 @@ export interface CreateSequenceStoreCommandOutput extends CreateSequenceStoreRes
|
|
|
40
40
|
* };
|
|
41
41
|
* const command = new CreateSequenceStoreCommand(input);
|
|
42
42
|
* const response = await client.send(command);
|
|
43
|
+
* // { // CreateSequenceStoreResponse
|
|
44
|
+
* // id: "STRING_VALUE", // required
|
|
45
|
+
* // arn: "STRING_VALUE", // required
|
|
46
|
+
* // name: "STRING_VALUE",
|
|
47
|
+
* // description: "STRING_VALUE",
|
|
48
|
+
* // sseConfig: { // SseConfig
|
|
49
|
+
* // type: "STRING_VALUE", // required
|
|
50
|
+
* // keyArn: "STRING_VALUE",
|
|
51
|
+
* // },
|
|
52
|
+
* // creationTime: new Date("TIMESTAMP"), // required
|
|
53
|
+
* // };
|
|
54
|
+
*
|
|
43
55
|
* ```
|
|
44
56
|
*
|
|
45
57
|
* @param CreateSequenceStoreCommandInput - {@link CreateSequenceStoreCommandInput}
|
|
@@ -66,6 +78,8 @@ export interface CreateSequenceStoreCommandOutput extends CreateSequenceStoreRes
|
|
|
66
78
|
* @throws {@link ValidationException} (client fault)
|
|
67
79
|
* <p>The input fails to satisfy the constraints specified by an AWS service.</p>
|
|
68
80
|
*
|
|
81
|
+
* @throws {@link OmicsServiceException}
|
|
82
|
+
* <p>Base exception class for all service exceptions from Omics service.</p>
|
|
69
83
|
*
|
|
70
84
|
*/
|
|
71
85
|
export declare class CreateSequenceStoreCommand extends $Command<CreateSequenceStoreCommandInput, CreateSequenceStoreCommandOutput, OmicsClientResolvedConfig> {
|
|
@@ -42,6 +42,16 @@ export interface CreateVariantStoreCommandOutput extends CreateVariantStoreRespo
|
|
|
42
42
|
* };
|
|
43
43
|
* const command = new CreateVariantStoreCommand(input);
|
|
44
44
|
* const response = await client.send(command);
|
|
45
|
+
* // { // CreateVariantStoreResponse
|
|
46
|
+
* // id: "STRING_VALUE", // required
|
|
47
|
+
* // reference: { // ReferenceItem Union: only one key present
|
|
48
|
+
* // referenceArn: "STRING_VALUE",
|
|
49
|
+
* // },
|
|
50
|
+
* // status: "STRING_VALUE", // required
|
|
51
|
+
* // name: "STRING_VALUE", // required
|
|
52
|
+
* // creationTime: new Date("TIMESTAMP"), // required
|
|
53
|
+
* // };
|
|
54
|
+
*
|
|
45
55
|
* ```
|
|
46
56
|
*
|
|
47
57
|
* @param CreateVariantStoreCommandInput - {@link CreateVariantStoreCommandInput}
|
|
@@ -71,6 +81,8 @@ export interface CreateVariantStoreCommandOutput extends CreateVariantStoreRespo
|
|
|
71
81
|
* @throws {@link ValidationException} (client fault)
|
|
72
82
|
* <p>The input fails to satisfy the constraints specified by an AWS service.</p>
|
|
73
83
|
*
|
|
84
|
+
* @throws {@link OmicsServiceException}
|
|
85
|
+
* <p>Base exception class for all service exceptions from Omics service.</p>
|
|
74
86
|
*
|
|
75
87
|
*/
|
|
76
88
|
export declare class CreateVariantStoreCommand extends $Command<CreateVariantStoreCommandInput, CreateVariantStoreCommandOutput, OmicsClientResolvedConfig> {
|
|
@@ -47,6 +47,15 @@ export interface CreateWorkflowCommandOutput extends CreateWorkflowResponse, __M
|
|
|
47
47
|
* };
|
|
48
48
|
* const command = new CreateWorkflowCommand(input);
|
|
49
49
|
* const response = await client.send(command);
|
|
50
|
+
* // { // CreateWorkflowResponse
|
|
51
|
+
* // arn: "STRING_VALUE",
|
|
52
|
+
* // id: "STRING_VALUE",
|
|
53
|
+
* // status: "STRING_VALUE",
|
|
54
|
+
* // tags: { // TagMap
|
|
55
|
+
* // "<keys>": "STRING_VALUE",
|
|
56
|
+
* // },
|
|
57
|
+
* // };
|
|
58
|
+
*
|
|
50
59
|
* ```
|
|
51
60
|
*
|
|
52
61
|
* @param CreateWorkflowCommandInput - {@link CreateWorkflowCommandInput}
|
|
@@ -79,6 +88,8 @@ export interface CreateWorkflowCommandOutput extends CreateWorkflowResponse, __M
|
|
|
79
88
|
* @throws {@link ValidationException} (client fault)
|
|
80
89
|
* <p>The input fails to satisfy the constraints specified by an AWS service.</p>
|
|
81
90
|
*
|
|
91
|
+
* @throws {@link OmicsServiceException}
|
|
92
|
+
* <p>Base exception class for all service exceptions from Omics service.</p>
|
|
82
93
|
*
|
|
83
94
|
*/
|
|
84
95
|
export declare class CreateWorkflowCommand extends $Command<CreateWorkflowCommandInput, CreateWorkflowCommandOutput, OmicsClientResolvedConfig> {
|
|
@@ -32,6 +32,10 @@ export interface DeleteAnnotationStoreCommandOutput extends DeleteAnnotationStor
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new DeleteAnnotationStoreCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // DeleteAnnotationStoreResponse
|
|
36
|
+
* // status: "STRING_VALUE", // required
|
|
37
|
+
* // };
|
|
38
|
+
*
|
|
35
39
|
* ```
|
|
36
40
|
*
|
|
37
41
|
* @param DeleteAnnotationStoreCommandInput - {@link DeleteAnnotationStoreCommandInput}
|
|
@@ -58,6 +62,8 @@ export interface DeleteAnnotationStoreCommandOutput extends DeleteAnnotationStor
|
|
|
58
62
|
* @throws {@link ValidationException} (client fault)
|
|
59
63
|
* <p>The input fails to satisfy the constraints specified by an AWS service.</p>
|
|
60
64
|
*
|
|
65
|
+
* @throws {@link OmicsServiceException}
|
|
66
|
+
* <p>Base exception class for all service exceptions from Omics service.</p>
|
|
61
67
|
*
|
|
62
68
|
*/
|
|
63
69
|
export declare class DeleteAnnotationStoreCommand extends $Command<DeleteAnnotationStoreCommandInput, DeleteAnnotationStoreCommandOutput, OmicsClientResolvedConfig> {
|
|
@@ -32,6 +32,8 @@ export interface DeleteReferenceCommandOutput extends DeleteReferenceResponse, _
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new DeleteReferenceCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // {};
|
|
36
|
+
*
|
|
35
37
|
* ```
|
|
36
38
|
*
|
|
37
39
|
* @param DeleteReferenceCommandInput - {@link DeleteReferenceCommandInput}
|
|
@@ -61,6 +63,8 @@ export interface DeleteReferenceCommandOutput extends DeleteReferenceResponse, _
|
|
|
61
63
|
* @throws {@link ValidationException} (client fault)
|
|
62
64
|
* <p>The input fails to satisfy the constraints specified by an AWS service.</p>
|
|
63
65
|
*
|
|
66
|
+
* @throws {@link OmicsServiceException}
|
|
67
|
+
* <p>Base exception class for all service exceptions from Omics service.</p>
|
|
64
68
|
*
|
|
65
69
|
*/
|
|
66
70
|
export declare class DeleteReferenceCommand extends $Command<DeleteReferenceCommandInput, DeleteReferenceCommandOutput, OmicsClientResolvedConfig> {
|
|
@@ -31,6 +31,8 @@ export interface DeleteReferenceStoreCommandOutput extends DeleteReferenceStoreR
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DeleteReferenceStoreCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // {};
|
|
35
|
+
*
|
|
34
36
|
* ```
|
|
35
37
|
*
|
|
36
38
|
* @param DeleteReferenceStoreCommandInput - {@link DeleteReferenceStoreCommandInput}
|
|
@@ -60,6 +62,8 @@ export interface DeleteReferenceStoreCommandOutput extends DeleteReferenceStoreR
|
|
|
60
62
|
* @throws {@link ValidationException} (client fault)
|
|
61
63
|
* <p>The input fails to satisfy the constraints specified by an AWS service.</p>
|
|
62
64
|
*
|
|
65
|
+
* @throws {@link OmicsServiceException}
|
|
66
|
+
* <p>Base exception class for all service exceptions from Omics service.</p>
|
|
63
67
|
*
|
|
64
68
|
*/
|
|
65
69
|
export declare class DeleteReferenceStoreCommand extends $Command<DeleteReferenceStoreCommandInput, DeleteReferenceStoreCommandOutput, OmicsClientResolvedConfig> {
|
|
@@ -31,6 +31,8 @@ export interface DeleteRunCommandOutput extends __MetadataBearer {
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DeleteRunCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // {};
|
|
35
|
+
*
|
|
34
36
|
* ```
|
|
35
37
|
*
|
|
36
38
|
* @param DeleteRunCommandInput - {@link DeleteRunCommandInput}
|
|
@@ -63,6 +65,8 @@ export interface DeleteRunCommandOutput extends __MetadataBearer {
|
|
|
63
65
|
* @throws {@link ValidationException} (client fault)
|
|
64
66
|
* <p>The input fails to satisfy the constraints specified by an AWS service.</p>
|
|
65
67
|
*
|
|
68
|
+
* @throws {@link OmicsServiceException}
|
|
69
|
+
* <p>Base exception class for all service exceptions from Omics service.</p>
|
|
66
70
|
*
|
|
67
71
|
*/
|
|
68
72
|
export declare class DeleteRunCommand extends $Command<DeleteRunCommandInput, DeleteRunCommandOutput, OmicsClientResolvedConfig> {
|
|
@@ -31,6 +31,8 @@ export interface DeleteRunGroupCommandOutput extends __MetadataBearer {
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DeleteRunGroupCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // {};
|
|
35
|
+
*
|
|
34
36
|
* ```
|
|
35
37
|
*
|
|
36
38
|
* @param DeleteRunGroupCommandInput - {@link DeleteRunGroupCommandInput}
|
|
@@ -63,6 +65,8 @@ export interface DeleteRunGroupCommandOutput extends __MetadataBearer {
|
|
|
63
65
|
* @throws {@link ValidationException} (client fault)
|
|
64
66
|
* <p>The input fails to satisfy the constraints specified by an AWS service.</p>
|
|
65
67
|
*
|
|
68
|
+
* @throws {@link OmicsServiceException}
|
|
69
|
+
* <p>Base exception class for all service exceptions from Omics service.</p>
|
|
66
70
|
*
|
|
67
71
|
*/
|
|
68
72
|
export declare class DeleteRunGroupCommand extends $Command<DeleteRunGroupCommandInput, DeleteRunGroupCommandOutput, OmicsClientResolvedConfig> {
|
|
@@ -31,6 +31,8 @@ export interface DeleteSequenceStoreCommandOutput extends DeleteSequenceStoreRes
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DeleteSequenceStoreCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // {};
|
|
35
|
+
*
|
|
34
36
|
* ```
|
|
35
37
|
*
|
|
36
38
|
* @param DeleteSequenceStoreCommandInput - {@link DeleteSequenceStoreCommandInput}
|
|
@@ -60,6 +62,8 @@ export interface DeleteSequenceStoreCommandOutput extends DeleteSequenceStoreRes
|
|
|
60
62
|
* @throws {@link ValidationException} (client fault)
|
|
61
63
|
* <p>The input fails to satisfy the constraints specified by an AWS service.</p>
|
|
62
64
|
*
|
|
65
|
+
* @throws {@link OmicsServiceException}
|
|
66
|
+
* <p>Base exception class for all service exceptions from Omics service.</p>
|
|
63
67
|
*
|
|
64
68
|
*/
|
|
65
69
|
export declare class DeleteSequenceStoreCommand extends $Command<DeleteSequenceStoreCommandInput, DeleteSequenceStoreCommandOutput, OmicsClientResolvedConfig> {
|
|
@@ -32,6 +32,10 @@ export interface DeleteVariantStoreCommandOutput extends DeleteVariantStoreRespo
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new DeleteVariantStoreCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // DeleteVariantStoreResponse
|
|
36
|
+
* // status: "STRING_VALUE", // required
|
|
37
|
+
* // };
|
|
38
|
+
*
|
|
35
39
|
* ```
|
|
36
40
|
*
|
|
37
41
|
* @param DeleteVariantStoreCommandInput - {@link DeleteVariantStoreCommandInput}
|
|
@@ -58,6 +62,8 @@ export interface DeleteVariantStoreCommandOutput extends DeleteVariantStoreRespo
|
|
|
58
62
|
* @throws {@link ValidationException} (client fault)
|
|
59
63
|
* <p>The input fails to satisfy the constraints specified by an AWS service.</p>
|
|
60
64
|
*
|
|
65
|
+
* @throws {@link OmicsServiceException}
|
|
66
|
+
* <p>Base exception class for all service exceptions from Omics service.</p>
|
|
61
67
|
*
|
|
62
68
|
*/
|
|
63
69
|
export declare class DeleteVariantStoreCommand extends $Command<DeleteVariantStoreCommandInput, DeleteVariantStoreCommandOutput, OmicsClientResolvedConfig> {
|
|
@@ -31,6 +31,8 @@ export interface DeleteWorkflowCommandOutput extends __MetadataBearer {
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DeleteWorkflowCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // {};
|
|
35
|
+
*
|
|
34
36
|
* ```
|
|
35
37
|
*
|
|
36
38
|
* @param DeleteWorkflowCommandInput - {@link DeleteWorkflowCommandInput}
|
|
@@ -63,6 +65,8 @@ export interface DeleteWorkflowCommandOutput extends __MetadataBearer {
|
|
|
63
65
|
* @throws {@link ValidationException} (client fault)
|
|
64
66
|
* <p>The input fails to satisfy the constraints specified by an AWS service.</p>
|
|
65
67
|
*
|
|
68
|
+
* @throws {@link OmicsServiceException}
|
|
69
|
+
* <p>Base exception class for all service exceptions from Omics service.</p>
|
|
66
70
|
*
|
|
67
71
|
*/
|
|
68
72
|
export declare class DeleteWorkflowCommand extends $Command<DeleteWorkflowCommandInput, DeleteWorkflowCommandOutput, OmicsClientResolvedConfig> {
|
|
@@ -31,6 +31,43 @@ export interface GetAnnotationImportJobCommandOutput extends GetAnnotationImport
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new GetAnnotationImportJobCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // GetAnnotationImportResponse
|
|
35
|
+
* // id: "STRING_VALUE", // required
|
|
36
|
+
* // destinationName: "STRING_VALUE", // required
|
|
37
|
+
* // roleArn: "STRING_VALUE", // required
|
|
38
|
+
* // status: "STRING_VALUE", // required
|
|
39
|
+
* // statusMessage: "STRING_VALUE", // required
|
|
40
|
+
* // creationTime: new Date("TIMESTAMP"), // required
|
|
41
|
+
* // updateTime: new Date("TIMESTAMP"), // required
|
|
42
|
+
* // completionTime: new Date("TIMESTAMP"), // required
|
|
43
|
+
* // items: [ // AnnotationImportItemDetails // required
|
|
44
|
+
* // { // AnnotationImportItemDetail
|
|
45
|
+
* // source: "STRING_VALUE", // required
|
|
46
|
+
* // jobStatus: "STRING_VALUE", // required
|
|
47
|
+
* // },
|
|
48
|
+
* // ],
|
|
49
|
+
* // runLeftNormalization: true || false, // required
|
|
50
|
+
* // formatOptions: { // FormatOptions Union: only one key present
|
|
51
|
+
* // tsvOptions: { // TsvOptions
|
|
52
|
+
* // readOptions: { // ReadOptions
|
|
53
|
+
* // sep: "STRING_VALUE",
|
|
54
|
+
* // encoding: "STRING_VALUE",
|
|
55
|
+
* // quote: "STRING_VALUE",
|
|
56
|
+
* // quoteAll: true || false,
|
|
57
|
+
* // escape: "STRING_VALUE",
|
|
58
|
+
* // escapeQuotes: true || false,
|
|
59
|
+
* // comment: "STRING_VALUE",
|
|
60
|
+
* // header: true || false,
|
|
61
|
+
* // lineSep: "STRING_VALUE",
|
|
62
|
+
* // },
|
|
63
|
+
* // },
|
|
64
|
+
* // vcfOptions: { // VcfOptions
|
|
65
|
+
* // ignoreQualField: true || false,
|
|
66
|
+
* // ignoreFilterField: true || false,
|
|
67
|
+
* // },
|
|
68
|
+
* // },
|
|
69
|
+
* // };
|
|
70
|
+
*
|
|
34
71
|
* ```
|
|
35
72
|
*
|
|
36
73
|
* @param GetAnnotationImportJobCommandInput - {@link GetAnnotationImportJobCommandInput}
|
|
@@ -54,6 +91,8 @@ export interface GetAnnotationImportJobCommandOutput extends GetAnnotationImport
|
|
|
54
91
|
* @throws {@link ValidationException} (client fault)
|
|
55
92
|
* <p>The input fails to satisfy the constraints specified by an AWS service.</p>
|
|
56
93
|
*
|
|
94
|
+
* @throws {@link OmicsServiceException}
|
|
95
|
+
* <p>Base exception class for all service exceptions from Omics service.</p>
|
|
57
96
|
*
|
|
58
97
|
*/
|
|
59
98
|
export declare class GetAnnotationImportJobCommand extends $Command<GetAnnotationImportJobCommandInput, GetAnnotationImportJobCommandOutput, OmicsClientResolvedConfig> {
|
|
@@ -31,6 +31,42 @@ export interface GetAnnotationStoreCommandOutput extends GetAnnotationStoreRespo
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new GetAnnotationStoreCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // GetAnnotationStoreResponse
|
|
35
|
+
* // id: "STRING_VALUE", // required
|
|
36
|
+
* // reference: { // ReferenceItem Union: only one key present
|
|
37
|
+
* // referenceArn: "STRING_VALUE",
|
|
38
|
+
* // },
|
|
39
|
+
* // status: "STRING_VALUE", // required
|
|
40
|
+
* // storeArn: "STRING_VALUE", // required
|
|
41
|
+
* // name: "STRING_VALUE", // required
|
|
42
|
+
* // description: "STRING_VALUE", // required
|
|
43
|
+
* // sseConfig: { // SseConfig
|
|
44
|
+
* // type: "STRING_VALUE", // required
|
|
45
|
+
* // keyArn: "STRING_VALUE",
|
|
46
|
+
* // },
|
|
47
|
+
* // creationTime: new Date("TIMESTAMP"), // required
|
|
48
|
+
* // updateTime: new Date("TIMESTAMP"), // required
|
|
49
|
+
* // tags: { // TagMap // required
|
|
50
|
+
* // "<keys>": "STRING_VALUE",
|
|
51
|
+
* // },
|
|
52
|
+
* // storeOptions: { // StoreOptions Union: only one key present
|
|
53
|
+
* // tsvStoreOptions: { // TsvStoreOptions
|
|
54
|
+
* // annotationType: "STRING_VALUE",
|
|
55
|
+
* // formatToHeader: { // FormatToHeader
|
|
56
|
+
* // "<keys>": "STRING_VALUE",
|
|
57
|
+
* // },
|
|
58
|
+
* // schema: [ // Schema
|
|
59
|
+
* // { // SchemaItem
|
|
60
|
+
* // "<keys>": "STRING_VALUE",
|
|
61
|
+
* // },
|
|
62
|
+
* // ],
|
|
63
|
+
* // },
|
|
64
|
+
* // },
|
|
65
|
+
* // storeFormat: "STRING_VALUE",
|
|
66
|
+
* // statusMessage: "STRING_VALUE", // required
|
|
67
|
+
* // storeSizeBytes: Number("long"), // required
|
|
68
|
+
* // };
|
|
69
|
+
*
|
|
34
70
|
* ```
|
|
35
71
|
*
|
|
36
72
|
* @param GetAnnotationStoreCommandInput - {@link GetAnnotationStoreCommandInput}
|
|
@@ -54,6 +90,8 @@ export interface GetAnnotationStoreCommandOutput extends GetAnnotationStoreRespo
|
|
|
54
90
|
* @throws {@link ValidationException} (client fault)
|
|
55
91
|
* <p>The input fails to satisfy the constraints specified by an AWS service.</p>
|
|
56
92
|
*
|
|
93
|
+
* @throws {@link OmicsServiceException}
|
|
94
|
+
* <p>Base exception class for all service exceptions from Omics service.</p>
|
|
57
95
|
*
|
|
58
96
|
*/
|
|
59
97
|
export declare class GetAnnotationStoreCommand extends $Command<GetAnnotationStoreCommandInput, GetAnnotationStoreCommandOutput, OmicsClientResolvedConfig> {
|
|
@@ -32,6 +32,22 @@ export interface GetReadSetActivationJobCommandOutput extends GetReadSetActivati
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new GetReadSetActivationJobCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // GetReadSetActivationJobResponse
|
|
36
|
+
* // id: "STRING_VALUE", // required
|
|
37
|
+
* // sequenceStoreId: "STRING_VALUE", // required
|
|
38
|
+
* // status: "STRING_VALUE", // required
|
|
39
|
+
* // statusMessage: "STRING_VALUE",
|
|
40
|
+
* // creationTime: new Date("TIMESTAMP"), // required
|
|
41
|
+
* // completionTime: new Date("TIMESTAMP"),
|
|
42
|
+
* // sources: [ // ActivateReadSetSourceList
|
|
43
|
+
* // { // ActivateReadSetSourceItem
|
|
44
|
+
* // readSetId: "STRING_VALUE", // required
|
|
45
|
+
* // status: "STRING_VALUE", // required
|
|
46
|
+
* // statusMessage: "STRING_VALUE",
|
|
47
|
+
* // },
|
|
48
|
+
* // ],
|
|
49
|
+
* // };
|
|
50
|
+
*
|
|
35
51
|
* ```
|
|
36
52
|
*
|
|
37
53
|
* @param GetReadSetActivationJobCommandInput - {@link GetReadSetActivationJobCommandInput}
|
|
@@ -58,6 +74,8 @@ export interface GetReadSetActivationJobCommandOutput extends GetReadSetActivati
|
|
|
58
74
|
* @throws {@link ValidationException} (client fault)
|
|
59
75
|
* <p>The input fails to satisfy the constraints specified by an AWS service.</p>
|
|
60
76
|
*
|
|
77
|
+
* @throws {@link OmicsServiceException}
|
|
78
|
+
* <p>Base exception class for all service exceptions from Omics service.</p>
|
|
61
79
|
*
|
|
62
80
|
*/
|
|
63
81
|
export declare class GetReadSetActivationJobCommand extends $Command<GetReadSetActivationJobCommandInput, GetReadSetActivationJobCommandOutput, OmicsClientResolvedConfig> {
|
|
@@ -34,6 +34,10 @@ export interface GetReadSetCommandOutput extends __WithSdkStreamMixin<GetReadSet
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new GetReadSetCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // { // GetReadSetResponse
|
|
38
|
+
* // payload: "STREAMING_BLOB_VALUE",
|
|
39
|
+
* // };
|
|
40
|
+
*
|
|
37
41
|
* ```
|
|
38
42
|
*
|
|
39
43
|
* @param GetReadSetCommandInput - {@link GetReadSetCommandInput}
|
|
@@ -66,6 +70,8 @@ export interface GetReadSetCommandOutput extends __WithSdkStreamMixin<GetReadSet
|
|
|
66
70
|
* @throws {@link ValidationException} (client fault)
|
|
67
71
|
* <p>The input fails to satisfy the constraints specified by an AWS service.</p>
|
|
68
72
|
*
|
|
73
|
+
* @throws {@link OmicsServiceException}
|
|
74
|
+
* <p>Base exception class for all service exceptions from Omics service.</p>
|
|
69
75
|
*
|
|
70
76
|
*/
|
|
71
77
|
export declare class GetReadSetCommand extends $Command<GetReadSetCommandInput, GetReadSetCommandOutput, OmicsClientResolvedConfig> {
|
|
@@ -32,6 +32,23 @@ export interface GetReadSetExportJobCommandOutput extends GetReadSetExportJobRes
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new GetReadSetExportJobCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // GetReadSetExportJobResponse
|
|
36
|
+
* // id: "STRING_VALUE", // required
|
|
37
|
+
* // sequenceStoreId: "STRING_VALUE", // required
|
|
38
|
+
* // destination: "STRING_VALUE", // required
|
|
39
|
+
* // status: "STRING_VALUE", // required
|
|
40
|
+
* // statusMessage: "STRING_VALUE",
|
|
41
|
+
* // creationTime: new Date("TIMESTAMP"), // required
|
|
42
|
+
* // completionTime: new Date("TIMESTAMP"),
|
|
43
|
+
* // readSets: [ // ExportReadSetDetailList
|
|
44
|
+
* // { // ExportReadSetDetail
|
|
45
|
+
* // id: "STRING_VALUE", // required
|
|
46
|
+
* // status: "STRING_VALUE", // required
|
|
47
|
+
* // statusMessage: "STRING_VALUE",
|
|
48
|
+
* // },
|
|
49
|
+
* // ],
|
|
50
|
+
* // };
|
|
51
|
+
*
|
|
35
52
|
* ```
|
|
36
53
|
*
|
|
37
54
|
* @param GetReadSetExportJobCommandInput - {@link GetReadSetExportJobCommandInput}
|
|
@@ -58,6 +75,8 @@ export interface GetReadSetExportJobCommandOutput extends GetReadSetExportJobRes
|
|
|
58
75
|
* @throws {@link ValidationException} (client fault)
|
|
59
76
|
* <p>The input fails to satisfy the constraints specified by an AWS service.</p>
|
|
60
77
|
*
|
|
78
|
+
* @throws {@link OmicsServiceException}
|
|
79
|
+
* <p>Base exception class for all service exceptions from Omics service.</p>
|
|
61
80
|
*
|
|
62
81
|
*/
|
|
63
82
|
export declare class GetReadSetExportJobCommand extends $Command<GetReadSetExportJobCommandInput, GetReadSetExportJobCommandOutput, OmicsClientResolvedConfig> {
|
|
@@ -32,6 +32,36 @@ export interface GetReadSetImportJobCommandOutput extends GetReadSetImportJobRes
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new GetReadSetImportJobCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // GetReadSetImportJobResponse
|
|
36
|
+
* // id: "STRING_VALUE", // required
|
|
37
|
+
* // sequenceStoreId: "STRING_VALUE", // required
|
|
38
|
+
* // roleArn: "STRING_VALUE", // required
|
|
39
|
+
* // status: "STRING_VALUE", // required
|
|
40
|
+
* // statusMessage: "STRING_VALUE",
|
|
41
|
+
* // creationTime: new Date("TIMESTAMP"), // required
|
|
42
|
+
* // completionTime: new Date("TIMESTAMP"),
|
|
43
|
+
* // sources: [ // ImportReadSetSourceList // required
|
|
44
|
+
* // { // ImportReadSetSourceItem
|
|
45
|
+
* // sourceFiles: { // SourceFiles
|
|
46
|
+
* // source1: "STRING_VALUE", // required
|
|
47
|
+
* // source2: "STRING_VALUE",
|
|
48
|
+
* // },
|
|
49
|
+
* // sourceFileType: "STRING_VALUE", // required
|
|
50
|
+
* // status: "STRING_VALUE", // required
|
|
51
|
+
* // statusMessage: "STRING_VALUE",
|
|
52
|
+
* // subjectId: "STRING_VALUE", // required
|
|
53
|
+
* // sampleId: "STRING_VALUE", // required
|
|
54
|
+
* // generatedFrom: "STRING_VALUE",
|
|
55
|
+
* // referenceArn: "STRING_VALUE",
|
|
56
|
+
* // name: "STRING_VALUE",
|
|
57
|
+
* // description: "STRING_VALUE",
|
|
58
|
+
* // tags: { // TagMap
|
|
59
|
+
* // "<keys>": "STRING_VALUE",
|
|
60
|
+
* // },
|
|
61
|
+
* // },
|
|
62
|
+
* // ],
|
|
63
|
+
* // };
|
|
64
|
+
*
|
|
35
65
|
* ```
|
|
36
66
|
*
|
|
37
67
|
* @param GetReadSetImportJobCommandInput - {@link GetReadSetImportJobCommandInput}
|
|
@@ -58,6 +88,8 @@ export interface GetReadSetImportJobCommandOutput extends GetReadSetImportJobRes
|
|
|
58
88
|
* @throws {@link ValidationException} (client fault)
|
|
59
89
|
* <p>The input fails to satisfy the constraints specified by an AWS service.</p>
|
|
60
90
|
*
|
|
91
|
+
* @throws {@link OmicsServiceException}
|
|
92
|
+
* <p>Base exception class for all service exceptions from Omics service.</p>
|
|
61
93
|
*
|
|
62
94
|
*/
|
|
63
95
|
export declare class GetReadSetImportJobCommand extends $Command<GetReadSetImportJobCommandInput, GetReadSetImportJobCommandOutput, OmicsClientResolvedConfig> {
|