@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
|
@@ -38,6 +38,20 @@ export interface ListReferenceImportJobsCommandOutput extends ListReferenceImpor
|
|
|
38
38
|
* };
|
|
39
39
|
* const command = new ListReferenceImportJobsCommand(input);
|
|
40
40
|
* const response = await client.send(command);
|
|
41
|
+
* // { // ListReferenceImportJobsResponse
|
|
42
|
+
* // nextToken: "STRING_VALUE",
|
|
43
|
+
* // importJobs: [ // ImportReferenceJobList
|
|
44
|
+
* // { // ImportReferenceJobItem
|
|
45
|
+
* // id: "STRING_VALUE", // required
|
|
46
|
+
* // referenceStoreId: "STRING_VALUE", // required
|
|
47
|
+
* // roleArn: "STRING_VALUE", // required
|
|
48
|
+
* // status: "STRING_VALUE", // required
|
|
49
|
+
* // creationTime: new Date("TIMESTAMP"), // required
|
|
50
|
+
* // completionTime: new Date("TIMESTAMP"),
|
|
51
|
+
* // },
|
|
52
|
+
* // ],
|
|
53
|
+
* // };
|
|
54
|
+
*
|
|
41
55
|
* ```
|
|
42
56
|
*
|
|
43
57
|
* @param ListReferenceImportJobsCommandInput - {@link ListReferenceImportJobsCommandInput}
|
|
@@ -64,6 +78,8 @@ export interface ListReferenceImportJobsCommandOutput extends ListReferenceImpor
|
|
|
64
78
|
* @throws {@link ValidationException} (client fault)
|
|
65
79
|
* <p>The input fails to satisfy the constraints specified by an AWS service.</p>
|
|
66
80
|
*
|
|
81
|
+
* @throws {@link OmicsServiceException}
|
|
82
|
+
* <p>Base exception class for all service exceptions from Omics service.</p>
|
|
67
83
|
*
|
|
68
84
|
*/
|
|
69
85
|
export declare class ListReferenceImportJobsCommand extends $Command<ListReferenceImportJobsCommandInput, ListReferenceImportJobsCommandOutput, OmicsClientResolvedConfig> {
|
|
@@ -37,6 +37,23 @@ export interface ListReferenceStoresCommandOutput extends ListReferenceStoresRes
|
|
|
37
37
|
* };
|
|
38
38
|
* const command = new ListReferenceStoresCommand(input);
|
|
39
39
|
* const response = await client.send(command);
|
|
40
|
+
* // { // ListReferenceStoresResponse
|
|
41
|
+
* // nextToken: "STRING_VALUE",
|
|
42
|
+
* // referenceStores: [ // ReferenceStoreDetailList // required
|
|
43
|
+
* // { // ReferenceStoreDetail
|
|
44
|
+
* // arn: "STRING_VALUE", // required
|
|
45
|
+
* // id: "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
|
+
* // ],
|
|
55
|
+
* // };
|
|
56
|
+
*
|
|
40
57
|
* ```
|
|
41
58
|
*
|
|
42
59
|
* @param ListReferenceStoresCommandInput - {@link ListReferenceStoresCommandInput}
|
|
@@ -60,6 +77,8 @@ export interface ListReferenceStoresCommandOutput extends ListReferenceStoresRes
|
|
|
60
77
|
* @throws {@link ValidationException} (client fault)
|
|
61
78
|
* <p>The input fails to satisfy the constraints specified by an AWS service.</p>
|
|
62
79
|
*
|
|
80
|
+
* @throws {@link OmicsServiceException}
|
|
81
|
+
* <p>Base exception class for all service exceptions from Omics service.</p>
|
|
63
82
|
*
|
|
64
83
|
*/
|
|
65
84
|
export declare class ListReferenceStoresCommand extends $Command<ListReferenceStoresCommandInput, ListReferenceStoresCommandOutput, OmicsClientResolvedConfig> {
|
|
@@ -39,6 +39,23 @@ export interface ListReferencesCommandOutput extends ListReferencesResponse, __M
|
|
|
39
39
|
* };
|
|
40
40
|
* const command = new ListReferencesCommand(input);
|
|
41
41
|
* const response = await client.send(command);
|
|
42
|
+
* // { // ListReferencesResponse
|
|
43
|
+
* // nextToken: "STRING_VALUE",
|
|
44
|
+
* // references: [ // ReferenceList // required
|
|
45
|
+
* // { // ReferenceListItem
|
|
46
|
+
* // id: "STRING_VALUE", // required
|
|
47
|
+
* // arn: "STRING_VALUE", // required
|
|
48
|
+
* // referenceStoreId: "STRING_VALUE", // required
|
|
49
|
+
* // md5: "STRING_VALUE", // required
|
|
50
|
+
* // status: "STRING_VALUE",
|
|
51
|
+
* // name: "STRING_VALUE",
|
|
52
|
+
* // description: "STRING_VALUE",
|
|
53
|
+
* // creationTime: new Date("TIMESTAMP"), // required
|
|
54
|
+
* // updateTime: new Date("TIMESTAMP"), // required
|
|
55
|
+
* // },
|
|
56
|
+
* // ],
|
|
57
|
+
* // };
|
|
58
|
+
*
|
|
42
59
|
* ```
|
|
43
60
|
*
|
|
44
61
|
* @param ListReferencesCommandInput - {@link ListReferencesCommandInput}
|
|
@@ -65,6 +82,8 @@ export interface ListReferencesCommandOutput extends ListReferencesResponse, __M
|
|
|
65
82
|
* @throws {@link ValidationException} (client fault)
|
|
66
83
|
* <p>The input fails to satisfy the constraints specified by an AWS service.</p>
|
|
67
84
|
*
|
|
85
|
+
* @throws {@link OmicsServiceException}
|
|
86
|
+
* <p>Base exception class for all service exceptions from Omics service.</p>
|
|
68
87
|
*
|
|
69
88
|
*/
|
|
70
89
|
export declare class ListReferencesCommand extends $Command<ListReferencesCommandInput, ListReferencesCommandOutput, OmicsClientResolvedConfig> {
|
|
@@ -33,6 +33,21 @@ export interface ListRunGroupsCommandOutput extends ListRunGroupsResponse, __Met
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new ListRunGroupsCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // ListRunGroupsResponse
|
|
37
|
+
* // items: [ // RunGroupList
|
|
38
|
+
* // { // RunGroupListItem
|
|
39
|
+
* // arn: "STRING_VALUE",
|
|
40
|
+
* // id: "STRING_VALUE",
|
|
41
|
+
* // name: "STRING_VALUE",
|
|
42
|
+
* // maxCpus: Number("int"),
|
|
43
|
+
* // maxRuns: Number("int"),
|
|
44
|
+
* // maxDuration: Number("int"),
|
|
45
|
+
* // creationTime: new Date("TIMESTAMP"),
|
|
46
|
+
* // },
|
|
47
|
+
* // ],
|
|
48
|
+
* // nextToken: "STRING_VALUE",
|
|
49
|
+
* // };
|
|
50
|
+
*
|
|
36
51
|
* ```
|
|
37
52
|
*
|
|
38
53
|
* @param ListRunGroupsCommandInput - {@link ListRunGroupsCommandInput}
|
|
@@ -65,6 +80,8 @@ export interface ListRunGroupsCommandOutput extends ListRunGroupsResponse, __Met
|
|
|
65
80
|
* @throws {@link ValidationException} (client fault)
|
|
66
81
|
* <p>The input fails to satisfy the constraints specified by an AWS service.</p>
|
|
67
82
|
*
|
|
83
|
+
* @throws {@link OmicsServiceException}
|
|
84
|
+
* <p>Base exception class for all service exceptions from Omics service.</p>
|
|
68
85
|
*
|
|
69
86
|
*/
|
|
70
87
|
export declare class ListRunGroupsCommand extends $Command<ListRunGroupsCommandInput, ListRunGroupsCommandOutput, OmicsClientResolvedConfig> {
|
|
@@ -34,6 +34,22 @@ export interface ListRunTasksCommandOutput extends ListRunTasksResponse, __Metad
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new ListRunTasksCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // { // ListRunTasksResponse
|
|
38
|
+
* // items: [ // TaskList
|
|
39
|
+
* // { // TaskListItem
|
|
40
|
+
* // taskId: "STRING_VALUE",
|
|
41
|
+
* // status: "STRING_VALUE",
|
|
42
|
+
* // name: "STRING_VALUE",
|
|
43
|
+
* // cpus: Number("int"),
|
|
44
|
+
* // memory: Number("int"),
|
|
45
|
+
* // creationTime: new Date("TIMESTAMP"),
|
|
46
|
+
* // startTime: new Date("TIMESTAMP"),
|
|
47
|
+
* // stopTime: new Date("TIMESTAMP"),
|
|
48
|
+
* // },
|
|
49
|
+
* // ],
|
|
50
|
+
* // nextToken: "STRING_VALUE",
|
|
51
|
+
* // };
|
|
52
|
+
*
|
|
37
53
|
* ```
|
|
38
54
|
*
|
|
39
55
|
* @param ListRunTasksCommandInput - {@link ListRunTasksCommandInput}
|
|
@@ -66,6 +82,8 @@ export interface ListRunTasksCommandOutput extends ListRunTasksResponse, __Metad
|
|
|
66
82
|
* @throws {@link ValidationException} (client fault)
|
|
67
83
|
* <p>The input fails to satisfy the constraints specified by an AWS service.</p>
|
|
68
84
|
*
|
|
85
|
+
* @throws {@link OmicsServiceException}
|
|
86
|
+
* <p>Base exception class for all service exceptions from Omics service.</p>
|
|
69
87
|
*
|
|
70
88
|
*/
|
|
71
89
|
export declare class ListRunTasksCommand extends $Command<ListRunTasksCommandInput, ListRunTasksCommandOutput, OmicsClientResolvedConfig> {
|
|
@@ -34,6 +34,24 @@ export interface ListRunsCommandOutput extends ListRunsResponse, __MetadataBeare
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new ListRunsCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // { // ListRunsResponse
|
|
38
|
+
* // items: [ // RunList
|
|
39
|
+
* // { // RunListItem
|
|
40
|
+
* // arn: "STRING_VALUE",
|
|
41
|
+
* // id: "STRING_VALUE",
|
|
42
|
+
* // status: "STRING_VALUE",
|
|
43
|
+
* // workflowId: "STRING_VALUE",
|
|
44
|
+
* // name: "STRING_VALUE",
|
|
45
|
+
* // priority: Number("int"),
|
|
46
|
+
* // storageCapacity: Number("int"),
|
|
47
|
+
* // creationTime: new Date("TIMESTAMP"),
|
|
48
|
+
* // startTime: new Date("TIMESTAMP"),
|
|
49
|
+
* // stopTime: new Date("TIMESTAMP"),
|
|
50
|
+
* // },
|
|
51
|
+
* // ],
|
|
52
|
+
* // nextToken: "STRING_VALUE",
|
|
53
|
+
* // };
|
|
54
|
+
*
|
|
37
55
|
* ```
|
|
38
56
|
*
|
|
39
57
|
* @param ListRunsCommandInput - {@link ListRunsCommandInput}
|
|
@@ -66,6 +84,8 @@ export interface ListRunsCommandOutput extends ListRunsResponse, __MetadataBeare
|
|
|
66
84
|
* @throws {@link ValidationException} (client fault)
|
|
67
85
|
* <p>The input fails to satisfy the constraints specified by an AWS service.</p>
|
|
68
86
|
*
|
|
87
|
+
* @throws {@link OmicsServiceException}
|
|
88
|
+
* <p>Base exception class for all service exceptions from Omics service.</p>
|
|
69
89
|
*
|
|
70
90
|
*/
|
|
71
91
|
export declare class ListRunsCommand extends $Command<ListRunsCommandInput, ListRunsCommandOutput, OmicsClientResolvedConfig> {
|
|
@@ -37,6 +37,23 @@ export interface ListSequenceStoresCommandOutput extends ListSequenceStoresRespo
|
|
|
37
37
|
* };
|
|
38
38
|
* const command = new ListSequenceStoresCommand(input);
|
|
39
39
|
* const response = await client.send(command);
|
|
40
|
+
* // { // ListSequenceStoresResponse
|
|
41
|
+
* // nextToken: "STRING_VALUE",
|
|
42
|
+
* // sequenceStores: [ // SequenceStoreDetailList // required
|
|
43
|
+
* // { // SequenceStoreDetail
|
|
44
|
+
* // arn: "STRING_VALUE", // required
|
|
45
|
+
* // id: "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
|
+
* // ],
|
|
55
|
+
* // };
|
|
56
|
+
*
|
|
40
57
|
* ```
|
|
41
58
|
*
|
|
42
59
|
* @param ListSequenceStoresCommandInput - {@link ListSequenceStoresCommandInput}
|
|
@@ -60,6 +77,8 @@ export interface ListSequenceStoresCommandOutput extends ListSequenceStoresRespo
|
|
|
60
77
|
* @throws {@link ValidationException} (client fault)
|
|
61
78
|
* <p>The input fails to satisfy the constraints specified by an AWS service.</p>
|
|
62
79
|
*
|
|
80
|
+
* @throws {@link OmicsServiceException}
|
|
81
|
+
* <p>Base exception class for all service exceptions from Omics service.</p>
|
|
63
82
|
*
|
|
64
83
|
*/
|
|
65
84
|
export declare class ListSequenceStoresCommand extends $Command<ListSequenceStoresCommandInput, ListSequenceStoresCommandOutput, OmicsClientResolvedConfig> {
|
|
@@ -31,6 +31,12 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new ListTagsForResourceCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // ListTagsForResourceResponse
|
|
35
|
+
* // tags: { // TagMap // required
|
|
36
|
+
* // "<keys>": "STRING_VALUE",
|
|
37
|
+
* // },
|
|
38
|
+
* // };
|
|
39
|
+
*
|
|
34
40
|
* ```
|
|
35
41
|
*
|
|
36
42
|
* @param ListTagsForResourceCommandInput - {@link ListTagsForResourceCommandInput}
|
|
@@ -63,6 +69,8 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
63
69
|
* @throws {@link ValidationException} (client fault)
|
|
64
70
|
* <p>The input fails to satisfy the constraints specified by an AWS service.</p>
|
|
65
71
|
*
|
|
72
|
+
* @throws {@link OmicsServiceException}
|
|
73
|
+
* <p>Base exception class for all service exceptions from Omics service.</p>
|
|
66
74
|
*
|
|
67
75
|
*/
|
|
68
76
|
export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, OmicsClientResolvedConfig> {
|
|
@@ -39,6 +39,22 @@ export interface ListVariantImportJobsCommandOutput extends ListVariantImportJob
|
|
|
39
39
|
* };
|
|
40
40
|
* const command = new ListVariantImportJobsCommand(input);
|
|
41
41
|
* const response = await client.send(command);
|
|
42
|
+
* // { // ListVariantImportJobsResponse
|
|
43
|
+
* // variantImportJobs: [ // VariantImportJobItems
|
|
44
|
+
* // { // VariantImportJobItem
|
|
45
|
+
* // id: "STRING_VALUE", // required
|
|
46
|
+
* // destinationName: "STRING_VALUE", // required
|
|
47
|
+
* // roleArn: "STRING_VALUE", // required
|
|
48
|
+
* // status: "STRING_VALUE", // required
|
|
49
|
+
* // creationTime: new Date("TIMESTAMP"), // required
|
|
50
|
+
* // updateTime: new Date("TIMESTAMP"), // required
|
|
51
|
+
* // completionTime: new Date("TIMESTAMP"),
|
|
52
|
+
* // runLeftNormalization: true || false,
|
|
53
|
+
* // },
|
|
54
|
+
* // ],
|
|
55
|
+
* // nextToken: "STRING_VALUE",
|
|
56
|
+
* // };
|
|
57
|
+
*
|
|
42
58
|
* ```
|
|
43
59
|
*
|
|
44
60
|
* @param ListVariantImportJobsCommandInput - {@link ListVariantImportJobsCommandInput}
|
|
@@ -62,6 +78,8 @@ export interface ListVariantImportJobsCommandOutput extends ListVariantImportJob
|
|
|
62
78
|
* @throws {@link ValidationException} (client fault)
|
|
63
79
|
* <p>The input fails to satisfy the constraints specified by an AWS service.</p>
|
|
64
80
|
*
|
|
81
|
+
* @throws {@link OmicsServiceException}
|
|
82
|
+
* <p>Base exception class for all service exceptions from Omics service.</p>
|
|
65
83
|
*
|
|
66
84
|
*/
|
|
67
85
|
export declare class ListVariantImportJobsCommand extends $Command<ListVariantImportJobsCommandInput, ListVariantImportJobsCommandOutput, OmicsClientResolvedConfig> {
|
|
@@ -38,6 +38,30 @@ export interface ListVariantStoresCommandOutput extends ListVariantStoresRespons
|
|
|
38
38
|
* };
|
|
39
39
|
* const command = new ListVariantStoresCommand(input);
|
|
40
40
|
* const response = await client.send(command);
|
|
41
|
+
* // { // ListVariantStoresResponse
|
|
42
|
+
* // variantStores: [ // VariantStoreItems
|
|
43
|
+
* // { // VariantStoreItem
|
|
44
|
+
* // id: "STRING_VALUE", // required
|
|
45
|
+
* // reference: { // ReferenceItem Union: only one key present
|
|
46
|
+
* // referenceArn: "STRING_VALUE",
|
|
47
|
+
* // },
|
|
48
|
+
* // status: "STRING_VALUE", // required
|
|
49
|
+
* // storeArn: "STRING_VALUE", // required
|
|
50
|
+
* // name: "STRING_VALUE", // required
|
|
51
|
+
* // description: "STRING_VALUE", // required
|
|
52
|
+
* // sseConfig: { // SseConfig
|
|
53
|
+
* // type: "STRING_VALUE", // required
|
|
54
|
+
* // keyArn: "STRING_VALUE",
|
|
55
|
+
* // },
|
|
56
|
+
* // creationTime: new Date("TIMESTAMP"), // required
|
|
57
|
+
* // updateTime: new Date("TIMESTAMP"), // required
|
|
58
|
+
* // statusMessage: "STRING_VALUE", // required
|
|
59
|
+
* // storeSizeBytes: Number("long"), // required
|
|
60
|
+
* // },
|
|
61
|
+
* // ],
|
|
62
|
+
* // nextToken: "STRING_VALUE",
|
|
63
|
+
* // };
|
|
64
|
+
*
|
|
41
65
|
* ```
|
|
42
66
|
*
|
|
43
67
|
* @param ListVariantStoresCommandInput - {@link ListVariantStoresCommandInput}
|
|
@@ -61,6 +85,8 @@ export interface ListVariantStoresCommandOutput extends ListVariantStoresRespons
|
|
|
61
85
|
* @throws {@link ValidationException} (client fault)
|
|
62
86
|
* <p>The input fails to satisfy the constraints specified by an AWS service.</p>
|
|
63
87
|
*
|
|
88
|
+
* @throws {@link OmicsServiceException}
|
|
89
|
+
* <p>Base exception class for all service exceptions from Omics service.</p>
|
|
64
90
|
*
|
|
65
91
|
*/
|
|
66
92
|
export declare class ListVariantStoresCommand extends $Command<ListVariantStoresCommandInput, ListVariantStoresCommandOutput, OmicsClientResolvedConfig> {
|
|
@@ -34,6 +34,21 @@ export interface ListWorkflowsCommandOutput extends ListWorkflowsResponse, __Met
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new ListWorkflowsCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // { // ListWorkflowsResponse
|
|
38
|
+
* // items: [ // WorkflowList
|
|
39
|
+
* // { // WorkflowListItem
|
|
40
|
+
* // arn: "STRING_VALUE",
|
|
41
|
+
* // id: "STRING_VALUE",
|
|
42
|
+
* // name: "STRING_VALUE",
|
|
43
|
+
* // status: "STRING_VALUE",
|
|
44
|
+
* // type: "STRING_VALUE",
|
|
45
|
+
* // digest: "STRING_VALUE",
|
|
46
|
+
* // creationTime: new Date("TIMESTAMP"),
|
|
47
|
+
* // },
|
|
48
|
+
* // ],
|
|
49
|
+
* // nextToken: "STRING_VALUE",
|
|
50
|
+
* // };
|
|
51
|
+
*
|
|
37
52
|
* ```
|
|
38
53
|
*
|
|
39
54
|
* @param ListWorkflowsCommandInput - {@link ListWorkflowsCommandInput}
|
|
@@ -66,6 +81,8 @@ export interface ListWorkflowsCommandOutput extends ListWorkflowsResponse, __Met
|
|
|
66
81
|
* @throws {@link ValidationException} (client fault)
|
|
67
82
|
* <p>The input fails to satisfy the constraints specified by an AWS service.</p>
|
|
68
83
|
*
|
|
84
|
+
* @throws {@link OmicsServiceException}
|
|
85
|
+
* <p>Base exception class for all service exceptions from Omics service.</p>
|
|
69
86
|
*
|
|
70
87
|
*/
|
|
71
88
|
export declare class ListWorkflowsCommand extends $Command<ListWorkflowsCommandInput, ListWorkflowsCommandOutput, OmicsClientResolvedConfig> {
|
|
@@ -57,6 +57,10 @@ export interface StartAnnotationImportJobCommandOutput extends StartAnnotationIm
|
|
|
57
57
|
* };
|
|
58
58
|
* const command = new StartAnnotationImportJobCommand(input);
|
|
59
59
|
* const response = await client.send(command);
|
|
60
|
+
* // { // StartAnnotationImportResponse
|
|
61
|
+
* // jobId: "STRING_VALUE", // required
|
|
62
|
+
* // };
|
|
63
|
+
*
|
|
60
64
|
* ```
|
|
61
65
|
*
|
|
62
66
|
* @param StartAnnotationImportJobCommandInput - {@link StartAnnotationImportJobCommandInput}
|
|
@@ -83,6 +87,8 @@ export interface StartAnnotationImportJobCommandOutput extends StartAnnotationIm
|
|
|
83
87
|
* @throws {@link ValidationException} (client fault)
|
|
84
88
|
* <p>The input fails to satisfy the constraints specified by an AWS service.</p>
|
|
85
89
|
*
|
|
90
|
+
* @throws {@link OmicsServiceException}
|
|
91
|
+
* <p>Base exception class for all service exceptions from Omics service.</p>
|
|
86
92
|
*
|
|
87
93
|
*/
|
|
88
94
|
export declare class StartAnnotationImportJobCommand extends $Command<StartAnnotationImportJobCommandInput, StartAnnotationImportJobCommandOutput, OmicsClientResolvedConfig> {
|
|
@@ -38,6 +38,13 @@ export interface StartReadSetActivationJobCommandOutput extends StartReadSetActi
|
|
|
38
38
|
* };
|
|
39
39
|
* const command = new StartReadSetActivationJobCommand(input);
|
|
40
40
|
* const response = await client.send(command);
|
|
41
|
+
* // { // StartReadSetActivationJobResponse
|
|
42
|
+
* // id: "STRING_VALUE", // required
|
|
43
|
+
* // sequenceStoreId: "STRING_VALUE", // required
|
|
44
|
+
* // status: "STRING_VALUE", // required
|
|
45
|
+
* // creationTime: new Date("TIMESTAMP"), // required
|
|
46
|
+
* // };
|
|
47
|
+
*
|
|
41
48
|
* ```
|
|
42
49
|
*
|
|
43
50
|
* @param StartReadSetActivationJobCommandInput - {@link StartReadSetActivationJobCommandInput}
|
|
@@ -67,6 +74,8 @@ export interface StartReadSetActivationJobCommandOutput extends StartReadSetActi
|
|
|
67
74
|
* @throws {@link ValidationException} (client fault)
|
|
68
75
|
* <p>The input fails to satisfy the constraints specified by an AWS service.</p>
|
|
69
76
|
*
|
|
77
|
+
* @throws {@link OmicsServiceException}
|
|
78
|
+
* <p>Base exception class for all service exceptions from Omics service.</p>
|
|
70
79
|
*
|
|
71
80
|
*/
|
|
72
81
|
export declare class StartReadSetActivationJobCommand extends $Command<StartReadSetActivationJobCommandInput, StartReadSetActivationJobCommandOutput, OmicsClientResolvedConfig> {
|
|
@@ -39,6 +39,14 @@ export interface StartReadSetExportJobCommandOutput extends StartReadSetExportJo
|
|
|
39
39
|
* };
|
|
40
40
|
* const command = new StartReadSetExportJobCommand(input);
|
|
41
41
|
* const response = await client.send(command);
|
|
42
|
+
* // { // StartReadSetExportJobResponse
|
|
43
|
+
* // id: "STRING_VALUE", // required
|
|
44
|
+
* // sequenceStoreId: "STRING_VALUE", // required
|
|
45
|
+
* // destination: "STRING_VALUE", // required
|
|
46
|
+
* // status: "STRING_VALUE", // required
|
|
47
|
+
* // creationTime: new Date("TIMESTAMP"), // required
|
|
48
|
+
* // };
|
|
49
|
+
*
|
|
42
50
|
* ```
|
|
43
51
|
*
|
|
44
52
|
* @param StartReadSetExportJobCommandInput - {@link StartReadSetExportJobCommandInput}
|
|
@@ -68,6 +76,8 @@ export interface StartReadSetExportJobCommandOutput extends StartReadSetExportJo
|
|
|
68
76
|
* @throws {@link ValidationException} (client fault)
|
|
69
77
|
* <p>The input fails to satisfy the constraints specified by an AWS service.</p>
|
|
70
78
|
*
|
|
79
|
+
* @throws {@link OmicsServiceException}
|
|
80
|
+
* <p>Base exception class for all service exceptions from Omics service.</p>
|
|
71
81
|
*
|
|
72
82
|
*/
|
|
73
83
|
export declare class StartReadSetExportJobCommand extends $Command<StartReadSetExportJobCommandInput, StartReadSetExportJobCommandOutput, OmicsClientResolvedConfig> {
|
|
@@ -51,6 +51,14 @@ export interface StartReadSetImportJobCommandOutput extends StartReadSetImportJo
|
|
|
51
51
|
* };
|
|
52
52
|
* const command = new StartReadSetImportJobCommand(input);
|
|
53
53
|
* const response = await client.send(command);
|
|
54
|
+
* // { // StartReadSetImportJobResponse
|
|
55
|
+
* // id: "STRING_VALUE", // required
|
|
56
|
+
* // sequenceStoreId: "STRING_VALUE", // required
|
|
57
|
+
* // roleArn: "STRING_VALUE", // required
|
|
58
|
+
* // status: "STRING_VALUE", // required
|
|
59
|
+
* // creationTime: new Date("TIMESTAMP"), // required
|
|
60
|
+
* // };
|
|
61
|
+
*
|
|
54
62
|
* ```
|
|
55
63
|
*
|
|
56
64
|
* @param StartReadSetImportJobCommandInput - {@link StartReadSetImportJobCommandInput}
|
|
@@ -80,6 +88,8 @@ export interface StartReadSetImportJobCommandOutput extends StartReadSetImportJo
|
|
|
80
88
|
* @throws {@link ValidationException} (client fault)
|
|
81
89
|
* <p>The input fails to satisfy the constraints specified by an AWS service.</p>
|
|
82
90
|
*
|
|
91
|
+
* @throws {@link OmicsServiceException}
|
|
92
|
+
* <p>Base exception class for all service exceptions from Omics service.</p>
|
|
83
93
|
*
|
|
84
94
|
*/
|
|
85
95
|
export declare class StartReadSetImportJobCommand extends $Command<StartReadSetImportJobCommandInput, StartReadSetImportJobCommandOutput, OmicsClientResolvedConfig> {
|
|
@@ -43,6 +43,14 @@ export interface StartReferenceImportJobCommandOutput extends StartReferenceImpo
|
|
|
43
43
|
* };
|
|
44
44
|
* const command = new StartReferenceImportJobCommand(input);
|
|
45
45
|
* const response = await client.send(command);
|
|
46
|
+
* // { // StartReferenceImportJobResponse
|
|
47
|
+
* // id: "STRING_VALUE", // required
|
|
48
|
+
* // referenceStoreId: "STRING_VALUE", // required
|
|
49
|
+
* // roleArn: "STRING_VALUE", // required
|
|
50
|
+
* // status: "STRING_VALUE", // required
|
|
51
|
+
* // creationTime: new Date("TIMESTAMP"), // required
|
|
52
|
+
* // };
|
|
53
|
+
*
|
|
46
54
|
* ```
|
|
47
55
|
*
|
|
48
56
|
* @param StartReferenceImportJobCommandInput - {@link StartReferenceImportJobCommandInput}
|
|
@@ -72,6 +80,8 @@ export interface StartReferenceImportJobCommandOutput extends StartReferenceImpo
|
|
|
72
80
|
* @throws {@link ValidationException} (client fault)
|
|
73
81
|
* <p>The input fails to satisfy the constraints specified by an AWS service.</p>
|
|
74
82
|
*
|
|
83
|
+
* @throws {@link OmicsServiceException}
|
|
84
|
+
* <p>Base exception class for all service exceptions from Omics service.</p>
|
|
75
85
|
*
|
|
76
86
|
*/
|
|
77
87
|
export declare class StartReferenceImportJobCommand extends $Command<StartReferenceImportJobCommandInput, StartReferenceImportJobCommandOutput, OmicsClientResolvedConfig> {
|
|
@@ -45,6 +45,15 @@ export interface StartRunCommandOutput extends StartRunResponse, __MetadataBeare
|
|
|
45
45
|
* };
|
|
46
46
|
* const command = new StartRunCommand(input);
|
|
47
47
|
* const response = await client.send(command);
|
|
48
|
+
* // { // StartRunResponse
|
|
49
|
+
* // arn: "STRING_VALUE",
|
|
50
|
+
* // id: "STRING_VALUE",
|
|
51
|
+
* // status: "STRING_VALUE",
|
|
52
|
+
* // tags: { // TagMap
|
|
53
|
+
* // "<keys>": "STRING_VALUE",
|
|
54
|
+
* // },
|
|
55
|
+
* // };
|
|
56
|
+
*
|
|
48
57
|
* ```
|
|
49
58
|
*
|
|
50
59
|
* @param StartRunCommandInput - {@link StartRunCommandInput}
|
|
@@ -77,6 +86,8 @@ export interface StartRunCommandOutput extends StartRunResponse, __MetadataBeare
|
|
|
77
86
|
* @throws {@link ValidationException} (client fault)
|
|
78
87
|
* <p>The input fails to satisfy the constraints specified by an AWS service.</p>
|
|
79
88
|
*
|
|
89
|
+
* @throws {@link OmicsServiceException}
|
|
90
|
+
* <p>Base exception class for all service exceptions from Omics service.</p>
|
|
80
91
|
*
|
|
81
92
|
*/
|
|
82
93
|
export declare class StartRunCommand extends $Command<StartRunCommandInput, StartRunCommandOutput, OmicsClientResolvedConfig> {
|
|
@@ -38,6 +38,10 @@ export interface StartVariantImportJobCommandOutput extends StartVariantImportRe
|
|
|
38
38
|
* };
|
|
39
39
|
* const command = new StartVariantImportJobCommand(input);
|
|
40
40
|
* const response = await client.send(command);
|
|
41
|
+
* // { // StartVariantImportResponse
|
|
42
|
+
* // jobId: "STRING_VALUE", // required
|
|
43
|
+
* // };
|
|
44
|
+
*
|
|
41
45
|
* ```
|
|
42
46
|
*
|
|
43
47
|
* @param StartVariantImportJobCommandInput - {@link StartVariantImportJobCommandInput}
|
|
@@ -64,6 +68,8 @@ export interface StartVariantImportJobCommandOutput extends StartVariantImportRe
|
|
|
64
68
|
* @throws {@link ValidationException} (client fault)
|
|
65
69
|
* <p>The input fails to satisfy the constraints specified by an AWS service.</p>
|
|
66
70
|
*
|
|
71
|
+
* @throws {@link OmicsServiceException}
|
|
72
|
+
* <p>Base exception class for all service exceptions from Omics service.</p>
|
|
67
73
|
*
|
|
68
74
|
*/
|
|
69
75
|
export declare class StartVariantImportJobCommand extends $Command<StartVariantImportJobCommandInput, StartVariantImportJobCommandOutput, OmicsClientResolvedConfig> {
|
|
@@ -34,6 +34,8 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new TagResourceCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // {};
|
|
38
|
+
*
|
|
37
39
|
* ```
|
|
38
40
|
*
|
|
39
41
|
* @param TagResourceCommandInput - {@link TagResourceCommandInput}
|
|
@@ -66,6 +68,8 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
66
68
|
* @throws {@link ValidationException} (client fault)
|
|
67
69
|
* <p>The input fails to satisfy the constraints specified by an AWS service.</p>
|
|
68
70
|
*
|
|
71
|
+
* @throws {@link OmicsServiceException}
|
|
72
|
+
* <p>Base exception class for all service exceptions from Omics service.</p>
|
|
69
73
|
*
|
|
70
74
|
*/
|
|
71
75
|
export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, OmicsClientResolvedConfig> {
|
|
@@ -34,6 +34,8 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new UntagResourceCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // {};
|
|
38
|
+
*
|
|
37
39
|
* ```
|
|
38
40
|
*
|
|
39
41
|
* @param UntagResourceCommandInput - {@link UntagResourceCommandInput}
|
|
@@ -66,6 +68,8 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
66
68
|
* @throws {@link ValidationException} (client fault)
|
|
67
69
|
* <p>The input fails to satisfy the constraints specified by an AWS service.</p>
|
|
68
70
|
*
|
|
71
|
+
* @throws {@link OmicsServiceException}
|
|
72
|
+
* <p>Base exception class for all service exceptions from Omics service.</p>
|
|
69
73
|
*
|
|
70
74
|
*/
|
|
71
75
|
export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, OmicsClientResolvedConfig> {
|
|
@@ -32,6 +32,32 @@ export interface UpdateAnnotationStoreCommandOutput extends UpdateAnnotationStor
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new UpdateAnnotationStoreCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // UpdateAnnotationStoreResponse
|
|
36
|
+
* // id: "STRING_VALUE", // required
|
|
37
|
+
* // reference: { // ReferenceItem Union: only one key present
|
|
38
|
+
* // referenceArn: "STRING_VALUE",
|
|
39
|
+
* // },
|
|
40
|
+
* // status: "STRING_VALUE", // required
|
|
41
|
+
* // name: "STRING_VALUE", // required
|
|
42
|
+
* // description: "STRING_VALUE", // required
|
|
43
|
+
* // creationTime: new Date("TIMESTAMP"), // required
|
|
44
|
+
* // updateTime: new Date("TIMESTAMP"), // required
|
|
45
|
+
* // storeOptions: { // StoreOptions Union: only one key present
|
|
46
|
+
* // tsvStoreOptions: { // TsvStoreOptions
|
|
47
|
+
* // annotationType: "STRING_VALUE",
|
|
48
|
+
* // formatToHeader: { // FormatToHeader
|
|
49
|
+
* // "<keys>": "STRING_VALUE",
|
|
50
|
+
* // },
|
|
51
|
+
* // schema: [ // Schema
|
|
52
|
+
* // { // SchemaItem
|
|
53
|
+
* // "<keys>": "STRING_VALUE",
|
|
54
|
+
* // },
|
|
55
|
+
* // ],
|
|
56
|
+
* // },
|
|
57
|
+
* // },
|
|
58
|
+
* // storeFormat: "STRING_VALUE",
|
|
59
|
+
* // };
|
|
60
|
+
*
|
|
35
61
|
* ```
|
|
36
62
|
*
|
|
37
63
|
* @param UpdateAnnotationStoreCommandInput - {@link UpdateAnnotationStoreCommandInput}
|
|
@@ -55,6 +81,8 @@ export interface UpdateAnnotationStoreCommandOutput extends UpdateAnnotationStor
|
|
|
55
81
|
* @throws {@link ValidationException} (client fault)
|
|
56
82
|
* <p>The input fails to satisfy the constraints specified by an AWS service.</p>
|
|
57
83
|
*
|
|
84
|
+
* @throws {@link OmicsServiceException}
|
|
85
|
+
* <p>Base exception class for all service exceptions from Omics service.</p>
|
|
58
86
|
*
|
|
59
87
|
*/
|
|
60
88
|
export declare class UpdateAnnotationStoreCommand extends $Command<UpdateAnnotationStoreCommandInput, UpdateAnnotationStoreCommandOutput, OmicsClientResolvedConfig> {
|
|
@@ -35,6 +35,8 @@ export interface UpdateRunGroupCommandOutput extends __MetadataBearer {
|
|
|
35
35
|
* };
|
|
36
36
|
* const command = new UpdateRunGroupCommand(input);
|
|
37
37
|
* const response = await client.send(command);
|
|
38
|
+
* // {};
|
|
39
|
+
*
|
|
38
40
|
* ```
|
|
39
41
|
*
|
|
40
42
|
* @param UpdateRunGroupCommandInput - {@link UpdateRunGroupCommandInput}
|
|
@@ -67,6 +69,8 @@ export interface UpdateRunGroupCommandOutput extends __MetadataBearer {
|
|
|
67
69
|
* @throws {@link ValidationException} (client fault)
|
|
68
70
|
* <p>The input fails to satisfy the constraints specified by an AWS service.</p>
|
|
69
71
|
*
|
|
72
|
+
* @throws {@link OmicsServiceException}
|
|
73
|
+
* <p>Base exception class for all service exceptions from Omics service.</p>
|
|
70
74
|
*
|
|
71
75
|
*/
|
|
72
76
|
export declare class UpdateRunGroupCommand extends $Command<UpdateRunGroupCommandInput, UpdateRunGroupCommandOutput, OmicsClientResolvedConfig> {
|
|
@@ -32,6 +32,18 @@ export interface UpdateVariantStoreCommandOutput extends UpdateVariantStoreRespo
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new UpdateVariantStoreCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // UpdateVariantStoreResponse
|
|
36
|
+
* // id: "STRING_VALUE", // required
|
|
37
|
+
* // reference: { // ReferenceItem Union: only one key present
|
|
38
|
+
* // referenceArn: "STRING_VALUE",
|
|
39
|
+
* // },
|
|
40
|
+
* // status: "STRING_VALUE", // required
|
|
41
|
+
* // name: "STRING_VALUE", // required
|
|
42
|
+
* // description: "STRING_VALUE", // required
|
|
43
|
+
* // creationTime: new Date("TIMESTAMP"), // required
|
|
44
|
+
* // updateTime: new Date("TIMESTAMP"), // required
|
|
45
|
+
* // };
|
|
46
|
+
*
|
|
35
47
|
* ```
|
|
36
48
|
*
|
|
37
49
|
* @param UpdateVariantStoreCommandInput - {@link UpdateVariantStoreCommandInput}
|
|
@@ -55,6 +67,8 @@ export interface UpdateVariantStoreCommandOutput extends UpdateVariantStoreRespo
|
|
|
55
67
|
* @throws {@link ValidationException} (client fault)
|
|
56
68
|
* <p>The input fails to satisfy the constraints specified by an AWS service.</p>
|
|
57
69
|
*
|
|
70
|
+
* @throws {@link OmicsServiceException}
|
|
71
|
+
* <p>Base exception class for all service exceptions from Omics service.</p>
|
|
58
72
|
*
|
|
59
73
|
*/
|
|
60
74
|
export declare class UpdateVariantStoreCommand extends $Command<UpdateVariantStoreCommandInput, UpdateVariantStoreCommandOutput, OmicsClientResolvedConfig> {
|