@aws-sdk/client-omics 3.331.0 → 3.335.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 +626 -4
- 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 +612 -2
- package/dist-types/Omics.d.ts +43 -1
- package/dist-types/OmicsClient.d.ts +12 -5
- 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/endpoint/EndpointParameters.d.ts +2 -1
- 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 +57 -2
- package/dist-types/runtimeConfig.browser.d.ts +12 -12
- package/dist-types/runtimeConfig.d.ts +9 -9
- package/dist-types/runtimeConfig.native.d.ts +13 -13
- package/dist-types/runtimeConfig.shared.d.ts +4 -4
- package/dist-types/ts3.4/Omics.d.ts +102 -0
- package/dist-types/ts3.4/OmicsClient.d.ts +45 -7
- 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/endpoint/EndpointParameters.d.ts +1 -2
- 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 +74 -4
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +18 -15
- package/dist-types/ts3.4/runtimeConfig.d.ts +12 -12
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +20 -15
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -4
- package/package.json +7 -6
|
@@ -0,0 +1,116 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
|
+
import { ListMultipartReadSetUploadsRequest, ListMultipartReadSetUploadsResponse } from "../models/models_0";
|
|
5
|
+
import { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient";
|
|
6
|
+
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
9
|
+
* The input for {@link ListMultipartReadSetUploadsCommand}.
|
|
10
|
+
*/
|
|
11
|
+
export interface ListMultipartReadSetUploadsCommandInput extends ListMultipartReadSetUploadsRequest {
|
|
12
|
+
}
|
|
13
|
+
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
16
|
+
* The output of {@link ListMultipartReadSetUploadsCommand}.
|
|
17
|
+
*/
|
|
18
|
+
export interface ListMultipartReadSetUploadsCommandOutput extends ListMultipartReadSetUploadsResponse, __MetadataBearer {
|
|
19
|
+
}
|
|
20
|
+
/**
|
|
21
|
+
* @public
|
|
22
|
+
* <p>
|
|
23
|
+
* Lists all multipart read set uploads and their statuses.
|
|
24
|
+
* </p>
|
|
25
|
+
* @example
|
|
26
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
27
|
+
* ```javascript
|
|
28
|
+
* import { OmicsClient, ListMultipartReadSetUploadsCommand } from "@aws-sdk/client-omics"; // ES Modules import
|
|
29
|
+
* // const { OmicsClient, ListMultipartReadSetUploadsCommand } = require("@aws-sdk/client-omics"); // CommonJS import
|
|
30
|
+
* const client = new OmicsClient(config);
|
|
31
|
+
* const input = { // ListMultipartReadSetUploadsRequest
|
|
32
|
+
* sequenceStoreId: "STRING_VALUE", // required
|
|
33
|
+
* maxResults: Number("int"),
|
|
34
|
+
* nextToken: "STRING_VALUE",
|
|
35
|
+
* };
|
|
36
|
+
* const command = new ListMultipartReadSetUploadsCommand(input);
|
|
37
|
+
* const response = await client.send(command);
|
|
38
|
+
* // { // ListMultipartReadSetUploadsResponse
|
|
39
|
+
* // nextToken: "STRING_VALUE",
|
|
40
|
+
* // uploads: [ // MultipartReadSetUploadList
|
|
41
|
+
* // { // MultipartReadSetUploadListItem
|
|
42
|
+
* // sequenceStoreId: "STRING_VALUE", // required
|
|
43
|
+
* // uploadId: "STRING_VALUE", // required
|
|
44
|
+
* // sourceFileType: "STRING_VALUE", // required
|
|
45
|
+
* // subjectId: "STRING_VALUE", // required
|
|
46
|
+
* // sampleId: "STRING_VALUE", // required
|
|
47
|
+
* // generatedFrom: "STRING_VALUE", // required
|
|
48
|
+
* // referenceArn: "STRING_VALUE", // required
|
|
49
|
+
* // name: "STRING_VALUE",
|
|
50
|
+
* // description: "STRING_VALUE",
|
|
51
|
+
* // tags: { // TagMap
|
|
52
|
+
* // "<keys>": "STRING_VALUE",
|
|
53
|
+
* // },
|
|
54
|
+
* // creationTime: new Date("TIMESTAMP"), // required
|
|
55
|
+
* // },
|
|
56
|
+
* // ],
|
|
57
|
+
* // };
|
|
58
|
+
*
|
|
59
|
+
* ```
|
|
60
|
+
*
|
|
61
|
+
* @param ListMultipartReadSetUploadsCommandInput - {@link ListMultipartReadSetUploadsCommandInput}
|
|
62
|
+
* @returns {@link ListMultipartReadSetUploadsCommandOutput}
|
|
63
|
+
* @see {@link ListMultipartReadSetUploadsCommandInput} for command's `input` shape.
|
|
64
|
+
* @see {@link ListMultipartReadSetUploadsCommandOutput} for command's `response` shape.
|
|
65
|
+
* @see {@link OmicsClientResolvedConfig | config} for OmicsClient's `config` shape.
|
|
66
|
+
*
|
|
67
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
68
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
69
|
+
*
|
|
70
|
+
* @throws {@link InternalServerException} (server fault)
|
|
71
|
+
* <p>An unexpected error occurred. Try the request again.</p>
|
|
72
|
+
*
|
|
73
|
+
* @throws {@link NotSupportedOperationException} (client fault)
|
|
74
|
+
* <p>
|
|
75
|
+
* The operation is not supported by Amazon Omics, or the API does not exist.
|
|
76
|
+
* </p>
|
|
77
|
+
*
|
|
78
|
+
* @throws {@link RequestTimeoutException} (client fault)
|
|
79
|
+
* <p>The request timed out.</p>
|
|
80
|
+
*
|
|
81
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
82
|
+
* <p>The target resource was not found in the current Region.</p>
|
|
83
|
+
*
|
|
84
|
+
* @throws {@link ServiceQuotaExceededException} (client fault)
|
|
85
|
+
* <p>The request exceeds a service quota.</p>
|
|
86
|
+
*
|
|
87
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
88
|
+
* <p>The request was denied due to request throttling.</p>
|
|
89
|
+
*
|
|
90
|
+
* @throws {@link ValidationException} (client fault)
|
|
91
|
+
* <p>The input fails to satisfy the constraints specified by an AWS service.</p>
|
|
92
|
+
*
|
|
93
|
+
* @throws {@link OmicsServiceException}
|
|
94
|
+
* <p>Base exception class for all service exceptions from Omics service.</p>
|
|
95
|
+
*
|
|
96
|
+
*/
|
|
97
|
+
export declare class ListMultipartReadSetUploadsCommand extends $Command<ListMultipartReadSetUploadsCommandInput, ListMultipartReadSetUploadsCommandOutput, OmicsClientResolvedConfig> {
|
|
98
|
+
readonly input: ListMultipartReadSetUploadsCommandInput;
|
|
99
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
100
|
+
/**
|
|
101
|
+
* @public
|
|
102
|
+
*/
|
|
103
|
+
constructor(input: ListMultipartReadSetUploadsCommandInput);
|
|
104
|
+
/**
|
|
105
|
+
* @internal
|
|
106
|
+
*/
|
|
107
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: OmicsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListMultipartReadSetUploadsCommandInput, ListMultipartReadSetUploadsCommandOutput>;
|
|
108
|
+
/**
|
|
109
|
+
* @internal
|
|
110
|
+
*/
|
|
111
|
+
private serialize;
|
|
112
|
+
/**
|
|
113
|
+
* @internal
|
|
114
|
+
*/
|
|
115
|
+
private deserialize;
|
|
116
|
+
}
|
|
@@ -0,0 +1,115 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
|
+
import { ListReadSetUploadPartsRequest, ListReadSetUploadPartsResponse } from "../models/models_0";
|
|
5
|
+
import { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient";
|
|
6
|
+
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
9
|
+
* The input for {@link ListReadSetUploadPartsCommand}.
|
|
10
|
+
*/
|
|
11
|
+
export interface ListReadSetUploadPartsCommandInput extends ListReadSetUploadPartsRequest {
|
|
12
|
+
}
|
|
13
|
+
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
16
|
+
* The output of {@link ListReadSetUploadPartsCommand}.
|
|
17
|
+
*/
|
|
18
|
+
export interface ListReadSetUploadPartsCommandOutput extends ListReadSetUploadPartsResponse, __MetadataBearer {
|
|
19
|
+
}
|
|
20
|
+
/**
|
|
21
|
+
* @public
|
|
22
|
+
* <p>
|
|
23
|
+
* This operation will list all parts in a requested multipart upload for a sequence store.
|
|
24
|
+
* </p>
|
|
25
|
+
* @example
|
|
26
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
27
|
+
* ```javascript
|
|
28
|
+
* import { OmicsClient, ListReadSetUploadPartsCommand } from "@aws-sdk/client-omics"; // ES Modules import
|
|
29
|
+
* // const { OmicsClient, ListReadSetUploadPartsCommand } = require("@aws-sdk/client-omics"); // CommonJS import
|
|
30
|
+
* const client = new OmicsClient(config);
|
|
31
|
+
* const input = { // ListReadSetUploadPartsRequest
|
|
32
|
+
* sequenceStoreId: "STRING_VALUE", // required
|
|
33
|
+
* uploadId: "STRING_VALUE", // required
|
|
34
|
+
* partSource: "STRING_VALUE", // required
|
|
35
|
+
* maxResults: Number("int"),
|
|
36
|
+
* nextToken: "STRING_VALUE",
|
|
37
|
+
* filter: { // ReadSetUploadPartListFilter
|
|
38
|
+
* createdAfter: new Date("TIMESTAMP"),
|
|
39
|
+
* createdBefore: new Date("TIMESTAMP"),
|
|
40
|
+
* },
|
|
41
|
+
* };
|
|
42
|
+
* const command = new ListReadSetUploadPartsCommand(input);
|
|
43
|
+
* const response = await client.send(command);
|
|
44
|
+
* // { // ListReadSetUploadPartsResponse
|
|
45
|
+
* // nextToken: "STRING_VALUE",
|
|
46
|
+
* // parts: [ // ReadSetUploadPartList
|
|
47
|
+
* // { // ReadSetUploadPartListItem
|
|
48
|
+
* // partNumber: Number("int"), // required
|
|
49
|
+
* // partSize: Number("long"), // required
|
|
50
|
+
* // partSource: "STRING_VALUE", // required
|
|
51
|
+
* // checksum: "STRING_VALUE", // required
|
|
52
|
+
* // creationTime: new Date("TIMESTAMP"),
|
|
53
|
+
* // lastUpdatedTime: new Date("TIMESTAMP"),
|
|
54
|
+
* // },
|
|
55
|
+
* // ],
|
|
56
|
+
* // };
|
|
57
|
+
*
|
|
58
|
+
* ```
|
|
59
|
+
*
|
|
60
|
+
* @param ListReadSetUploadPartsCommandInput - {@link ListReadSetUploadPartsCommandInput}
|
|
61
|
+
* @returns {@link ListReadSetUploadPartsCommandOutput}
|
|
62
|
+
* @see {@link ListReadSetUploadPartsCommandInput} for command's `input` shape.
|
|
63
|
+
* @see {@link ListReadSetUploadPartsCommandOutput} for command's `response` shape.
|
|
64
|
+
* @see {@link OmicsClientResolvedConfig | config} for OmicsClient's `config` shape.
|
|
65
|
+
*
|
|
66
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
67
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
68
|
+
*
|
|
69
|
+
* @throws {@link InternalServerException} (server fault)
|
|
70
|
+
* <p>An unexpected error occurred. Try the request again.</p>
|
|
71
|
+
*
|
|
72
|
+
* @throws {@link NotSupportedOperationException} (client fault)
|
|
73
|
+
* <p>
|
|
74
|
+
* The operation is not supported by Amazon Omics, or the API does not exist.
|
|
75
|
+
* </p>
|
|
76
|
+
*
|
|
77
|
+
* @throws {@link RequestTimeoutException} (client fault)
|
|
78
|
+
* <p>The request timed out.</p>
|
|
79
|
+
*
|
|
80
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
81
|
+
* <p>The target resource was not found in the current Region.</p>
|
|
82
|
+
*
|
|
83
|
+
* @throws {@link ServiceQuotaExceededException} (client fault)
|
|
84
|
+
* <p>The request exceeds a service quota.</p>
|
|
85
|
+
*
|
|
86
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
87
|
+
* <p>The request was denied due to request throttling.</p>
|
|
88
|
+
*
|
|
89
|
+
* @throws {@link ValidationException} (client fault)
|
|
90
|
+
* <p>The input fails to satisfy the constraints specified by an AWS service.</p>
|
|
91
|
+
*
|
|
92
|
+
* @throws {@link OmicsServiceException}
|
|
93
|
+
* <p>Base exception class for all service exceptions from Omics service.</p>
|
|
94
|
+
*
|
|
95
|
+
*/
|
|
96
|
+
export declare class ListReadSetUploadPartsCommand extends $Command<ListReadSetUploadPartsCommandInput, ListReadSetUploadPartsCommandOutput, OmicsClientResolvedConfig> {
|
|
97
|
+
readonly input: ListReadSetUploadPartsCommandInput;
|
|
98
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
99
|
+
/**
|
|
100
|
+
* @public
|
|
101
|
+
*/
|
|
102
|
+
constructor(input: ListReadSetUploadPartsCommandInput);
|
|
103
|
+
/**
|
|
104
|
+
* @internal
|
|
105
|
+
*/
|
|
106
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: OmicsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListReadSetUploadPartsCommandInput, ListReadSetUploadPartsCommandOutput>;
|
|
107
|
+
/**
|
|
108
|
+
* @internal
|
|
109
|
+
*/
|
|
110
|
+
private serialize;
|
|
111
|
+
/**
|
|
112
|
+
* @internal
|
|
113
|
+
*/
|
|
114
|
+
private deserialize;
|
|
115
|
+
}
|
|
@@ -36,6 +36,9 @@ export interface ListReadSetsCommandOutput extends ListReadSetsResponse, __Metad
|
|
|
36
36
|
* referenceArn: "STRING_VALUE",
|
|
37
37
|
* createdAfter: new Date("TIMESTAMP"),
|
|
38
38
|
* createdBefore: new Date("TIMESTAMP"),
|
|
39
|
+
* sampleId: "STRING_VALUE",
|
|
40
|
+
* subjectId: "STRING_VALUE",
|
|
41
|
+
* generatedFrom: "STRING_VALUE",
|
|
39
42
|
* },
|
|
40
43
|
* };
|
|
41
44
|
* const command = new ListReadSetsCommand(input);
|
|
@@ -61,6 +64,7 @@ export interface ListReadSetsCommandOutput extends ListReadSetsResponse, __Metad
|
|
|
61
64
|
* // alignment: "STRING_VALUE",
|
|
62
65
|
* // },
|
|
63
66
|
* // creationTime: new Date("TIMESTAMP"), // required
|
|
67
|
+
* // statusMessage: "STRING_VALUE",
|
|
64
68
|
* // },
|
|
65
69
|
* // ],
|
|
66
70
|
* // };
|
|
@@ -43,6 +43,7 @@ export interface ListRunGroupsCommandOutput extends ListRunGroupsResponse, __Met
|
|
|
43
43
|
* // maxRuns: Number("int"),
|
|
44
44
|
* // maxDuration: Number("int"),
|
|
45
45
|
* // creationTime: new Date("TIMESTAMP"),
|
|
46
|
+
* // maxGpus: Number("int"),
|
|
46
47
|
* // },
|
|
47
48
|
* // ],
|
|
48
49
|
* // nextToken: "STRING_VALUE",
|
|
@@ -45,6 +45,7 @@ export interface ListRunTasksCommandOutput extends ListRunTasksResponse, __Metad
|
|
|
45
45
|
* // creationTime: new Date("TIMESTAMP"),
|
|
46
46
|
* // startTime: new Date("TIMESTAMP"),
|
|
47
47
|
* // stopTime: new Date("TIMESTAMP"),
|
|
48
|
+
* // gpus: Number("int"),
|
|
48
49
|
* // },
|
|
49
50
|
* // ],
|
|
50
51
|
* // nextToken: "STRING_VALUE",
|
|
@@ -31,6 +31,7 @@ export interface ListRunsCommandOutput extends ListRunsResponse, __MetadataBeare
|
|
|
31
31
|
* runGroupId: "STRING_VALUE",
|
|
32
32
|
* startingToken: "STRING_VALUE",
|
|
33
33
|
* maxResults: Number("int"),
|
|
34
|
+
* status: "STRING_VALUE",
|
|
34
35
|
* };
|
|
35
36
|
* const command = new ListRunsCommand(input);
|
|
36
37
|
* const response = await client.send(command);
|
|
@@ -50,6 +50,9 @@ export interface ListVariantImportJobsCommandOutput extends ListVariantImportJob
|
|
|
50
50
|
* // updateTime: new Date("TIMESTAMP"), // required
|
|
51
51
|
* // completionTime: new Date("TIMESTAMP"),
|
|
52
52
|
* // runLeftNormalization: true || false,
|
|
53
|
+
* // annotationFields: { // AnnotationFieldMap
|
|
54
|
+
* // "<keys>": "STRING_VALUE",
|
|
55
|
+
* // },
|
|
53
56
|
* // },
|
|
54
57
|
* // ],
|
|
55
58
|
* // nextToken: "STRING_VALUE",
|
|
@@ -44,6 +44,9 @@ export interface ListWorkflowsCommandOutput extends ListWorkflowsResponse, __Met
|
|
|
44
44
|
* // type: "STRING_VALUE",
|
|
45
45
|
* // digest: "STRING_VALUE",
|
|
46
46
|
* // creationTime: new Date("TIMESTAMP"),
|
|
47
|
+
* // metadata: { // WorkflowMetadata
|
|
48
|
+
* // "<keys>": "STRING_VALUE",
|
|
49
|
+
* // },
|
|
47
50
|
* // },
|
|
48
51
|
* // ],
|
|
49
52
|
* // nextToken: "STRING_VALUE",
|
|
@@ -54,6 +54,9 @@ export interface StartAnnotationImportJobCommandOutput extends StartAnnotationIm
|
|
|
54
54
|
* },
|
|
55
55
|
* },
|
|
56
56
|
* runLeftNormalization: true || false,
|
|
57
|
+
* annotationFields: { // AnnotationFieldMap
|
|
58
|
+
* "<keys>": "STRING_VALUE",
|
|
59
|
+
* },
|
|
57
60
|
* };
|
|
58
61
|
* const command = new StartAnnotationImportJobCommand(input);
|
|
59
62
|
* const response = await client.send(command);
|
|
@@ -35,6 +35,9 @@ export interface StartVariantImportJobCommandOutput extends StartVariantImportRe
|
|
|
35
35
|
* },
|
|
36
36
|
* ],
|
|
37
37
|
* runLeftNormalization: true || false,
|
|
38
|
+
* annotationFields: { // AnnotationFieldMap
|
|
39
|
+
* "<keys>": "STRING_VALUE",
|
|
40
|
+
* },
|
|
38
41
|
* };
|
|
39
42
|
* const command = new StartVariantImportJobCommand(input);
|
|
40
43
|
* const response = await client.send(command);
|
|
@@ -32,6 +32,7 @@ export interface UpdateRunGroupCommandOutput extends __MetadataBearer {
|
|
|
32
32
|
* maxCpus: Number("int"),
|
|
33
33
|
* maxRuns: Number("int"),
|
|
34
34
|
* maxDuration: Number("int"),
|
|
35
|
+
* maxGpus: Number("int"),
|
|
35
36
|
* };
|
|
36
37
|
* const command = new UpdateRunGroupCommand(input);
|
|
37
38
|
* const response = await client.send(command);
|
|
@@ -0,0 +1,111 @@
|
|
|
1
|
+
/// <reference types="node" />
|
|
2
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
3
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
5
|
+
import { UploadReadSetPartRequest, UploadReadSetPartResponse } from "../models/models_0";
|
|
6
|
+
import { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient";
|
|
7
|
+
/**
|
|
8
|
+
* @public
|
|
9
|
+
*
|
|
10
|
+
* The input for {@link UploadReadSetPartCommand}.
|
|
11
|
+
*/
|
|
12
|
+
export type UploadReadSetPartCommandInputType = Omit<UploadReadSetPartRequest, "payload"> & {
|
|
13
|
+
/**
|
|
14
|
+
* For *`UploadReadSetPartRequest["payload"]`*, see {@link UploadReadSetPartRequest.payload}.
|
|
15
|
+
*/
|
|
16
|
+
payload: UploadReadSetPartRequest["payload"] | string | Uint8Array | Buffer;
|
|
17
|
+
};
|
|
18
|
+
/**
|
|
19
|
+
* This interface extends from `UploadReadSetPartRequest` interface. There are more parameters than `payload` defined in {@link UploadReadSetPartRequest}
|
|
20
|
+
*/
|
|
21
|
+
export interface UploadReadSetPartCommandInput extends UploadReadSetPartCommandInputType {
|
|
22
|
+
}
|
|
23
|
+
/**
|
|
24
|
+
* @public
|
|
25
|
+
*
|
|
26
|
+
* The output of {@link UploadReadSetPartCommand}.
|
|
27
|
+
*/
|
|
28
|
+
export interface UploadReadSetPartCommandOutput extends UploadReadSetPartResponse, __MetadataBearer {
|
|
29
|
+
}
|
|
30
|
+
/**
|
|
31
|
+
* @public
|
|
32
|
+
* <p>
|
|
33
|
+
* This operation uploads a specific part of a read set. If you upload a new part using a previously used part number, the previously uploaded part will be overwritten.
|
|
34
|
+
* </p>
|
|
35
|
+
* @example
|
|
36
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
37
|
+
* ```javascript
|
|
38
|
+
* import { OmicsClient, UploadReadSetPartCommand } from "@aws-sdk/client-omics"; // ES Modules import
|
|
39
|
+
* // const { OmicsClient, UploadReadSetPartCommand } = require("@aws-sdk/client-omics"); // CommonJS import
|
|
40
|
+
* const client = new OmicsClient(config);
|
|
41
|
+
* const input = { // UploadReadSetPartRequest
|
|
42
|
+
* sequenceStoreId: "STRING_VALUE", // required
|
|
43
|
+
* uploadId: "STRING_VALUE", // required
|
|
44
|
+
* partSource: "STRING_VALUE", // required
|
|
45
|
+
* partNumber: Number("int"), // required
|
|
46
|
+
* payload: "STREAMING_BLOB_VALUE", // required
|
|
47
|
+
* };
|
|
48
|
+
* const command = new UploadReadSetPartCommand(input);
|
|
49
|
+
* const response = await client.send(command);
|
|
50
|
+
* // { // UploadReadSetPartResponse
|
|
51
|
+
* // checksum: "STRING_VALUE", // required
|
|
52
|
+
* // };
|
|
53
|
+
*
|
|
54
|
+
* ```
|
|
55
|
+
*
|
|
56
|
+
* @param UploadReadSetPartCommandInput - {@link UploadReadSetPartCommandInput}
|
|
57
|
+
* @returns {@link UploadReadSetPartCommandOutput}
|
|
58
|
+
* @see {@link UploadReadSetPartCommandInput} for command's `input` shape.
|
|
59
|
+
* @see {@link UploadReadSetPartCommandOutput} for command's `response` shape.
|
|
60
|
+
* @see {@link OmicsClientResolvedConfig | config} for OmicsClient's `config` shape.
|
|
61
|
+
*
|
|
62
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
63
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
64
|
+
*
|
|
65
|
+
* @throws {@link InternalServerException} (server fault)
|
|
66
|
+
* <p>An unexpected error occurred. Try the request again.</p>
|
|
67
|
+
*
|
|
68
|
+
* @throws {@link NotSupportedOperationException} (client fault)
|
|
69
|
+
* <p>
|
|
70
|
+
* The operation is not supported by Amazon Omics, or the API does not exist.
|
|
71
|
+
* </p>
|
|
72
|
+
*
|
|
73
|
+
* @throws {@link RequestTimeoutException} (client fault)
|
|
74
|
+
* <p>The request timed out.</p>
|
|
75
|
+
*
|
|
76
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
77
|
+
* <p>The target resource was not found in the current Region.</p>
|
|
78
|
+
*
|
|
79
|
+
* @throws {@link ServiceQuotaExceededException} (client fault)
|
|
80
|
+
* <p>The request exceeds a service quota.</p>
|
|
81
|
+
*
|
|
82
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
83
|
+
* <p>The request was denied due to request throttling.</p>
|
|
84
|
+
*
|
|
85
|
+
* @throws {@link ValidationException} (client fault)
|
|
86
|
+
* <p>The input fails to satisfy the constraints specified by an AWS service.</p>
|
|
87
|
+
*
|
|
88
|
+
* @throws {@link OmicsServiceException}
|
|
89
|
+
* <p>Base exception class for all service exceptions from Omics service.</p>
|
|
90
|
+
*
|
|
91
|
+
*/
|
|
92
|
+
export declare class UploadReadSetPartCommand extends $Command<UploadReadSetPartCommandInput, UploadReadSetPartCommandOutput, OmicsClientResolvedConfig> {
|
|
93
|
+
readonly input: UploadReadSetPartCommandInput;
|
|
94
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
95
|
+
/**
|
|
96
|
+
* @public
|
|
97
|
+
*/
|
|
98
|
+
constructor(input: UploadReadSetPartCommandInput);
|
|
99
|
+
/**
|
|
100
|
+
* @internal
|
|
101
|
+
*/
|
|
102
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: OmicsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UploadReadSetPartCommandInput, UploadReadSetPartCommandOutput>;
|
|
103
|
+
/**
|
|
104
|
+
* @internal
|
|
105
|
+
*/
|
|
106
|
+
private serialize;
|
|
107
|
+
/**
|
|
108
|
+
* @internal
|
|
109
|
+
*/
|
|
110
|
+
private deserialize;
|
|
111
|
+
}
|
|
@@ -1,8 +1,11 @@
|
|
|
1
|
+
export * from "./AbortMultipartReadSetUploadCommand";
|
|
1
2
|
export * from "./BatchDeleteReadSetCommand";
|
|
2
3
|
export * from "./CancelAnnotationImportJobCommand";
|
|
3
4
|
export * from "./CancelRunCommand";
|
|
4
5
|
export * from "./CancelVariantImportJobCommand";
|
|
6
|
+
export * from "./CompleteMultipartReadSetUploadCommand";
|
|
5
7
|
export * from "./CreateAnnotationStoreCommand";
|
|
8
|
+
export * from "./CreateMultipartReadSetUploadCommand";
|
|
6
9
|
export * from "./CreateReferenceStoreCommand";
|
|
7
10
|
export * from "./CreateRunGroupCommand";
|
|
8
11
|
export * from "./CreateSequenceStoreCommand";
|
|
@@ -36,9 +39,11 @@ export * from "./GetVariantStoreCommand";
|
|
|
36
39
|
export * from "./GetWorkflowCommand";
|
|
37
40
|
export * from "./ListAnnotationImportJobsCommand";
|
|
38
41
|
export * from "./ListAnnotationStoresCommand";
|
|
42
|
+
export * from "./ListMultipartReadSetUploadsCommand";
|
|
39
43
|
export * from "./ListReadSetActivationJobsCommand";
|
|
40
44
|
export * from "./ListReadSetExportJobsCommand";
|
|
41
45
|
export * from "./ListReadSetImportJobsCommand";
|
|
46
|
+
export * from "./ListReadSetUploadPartsCommand";
|
|
42
47
|
export * from "./ListReadSetsCommand";
|
|
43
48
|
export * from "./ListReferenceImportJobsCommand";
|
|
44
49
|
export * from "./ListReferenceStoresCommand";
|
|
@@ -64,3 +69,4 @@ export * from "./UpdateAnnotationStoreCommand";
|
|
|
64
69
|
export * from "./UpdateRunGroupCommand";
|
|
65
70
|
export * from "./UpdateVariantStoreCommand";
|
|
66
71
|
export * from "./UpdateWorkflowCommand";
|
|
72
|
+
export * from "./UploadReadSetPartCommand";
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { EndpointParameters as __EndpointParameters, EndpointV2 } from "@aws-sdk/types";
|
|
2
|
+
import { Endpoint, Provider } from "@smithy/types";
|
|
2
3
|
export interface ClientInputEndpointParameters {
|
|
3
4
|
region?: string | Provider<string>;
|
|
4
5
|
useDualstackEndpoint?: boolean | Provider<boolean>;
|