@aws-sdk/client-omics 3.289.0 → 3.292.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 +19 -0
- package/dist-types/commands/CancelAnnotationImportJobCommand.d.ts +16 -0
- package/dist-types/commands/CancelRunCommand.d.ts +25 -0
- package/dist-types/commands/CancelVariantImportJobCommand.d.ts +16 -0
- package/dist-types/commands/CreateAnnotationStoreCommand.d.ts +22 -0
- package/dist-types/commands/CreateReferenceStoreCommand.d.ts +19 -0
- package/dist-types/commands/CreateRunGroupCommand.d.ts +25 -0
- package/dist-types/commands/CreateSequenceStoreCommand.d.ts +19 -0
- package/dist-types/commands/CreateVariantStoreCommand.d.ts +22 -0
- package/dist-types/commands/CreateWorkflowCommand.d.ts +25 -0
- package/dist-types/commands/DeleteAnnotationStoreCommand.d.ts +19 -0
- package/dist-types/commands/DeleteReferenceCommand.d.ts +22 -0
- package/dist-types/commands/DeleteReferenceStoreCommand.d.ts +22 -0
- package/dist-types/commands/DeleteRunCommand.d.ts +25 -0
- package/dist-types/commands/DeleteRunGroupCommand.d.ts +25 -0
- package/dist-types/commands/DeleteSequenceStoreCommand.d.ts +22 -0
- package/dist-types/commands/DeleteVariantStoreCommand.d.ts +19 -0
- package/dist-types/commands/DeleteWorkflowCommand.d.ts +25 -0
- package/dist-types/commands/GetAnnotationImportJobCommand.d.ts +16 -0
- package/dist-types/commands/GetAnnotationStoreCommand.d.ts +16 -0
- package/dist-types/commands/GetReadSetActivationJobCommand.d.ts +19 -0
- package/dist-types/commands/GetReadSetCommand.d.ts +25 -0
- package/dist-types/commands/GetReadSetExportJobCommand.d.ts +19 -0
- package/dist-types/commands/GetReadSetImportJobCommand.d.ts +19 -0
- package/dist-types/commands/GetReadSetMetadataCommand.d.ts +19 -0
- package/dist-types/commands/GetReferenceCommand.d.ts +22 -0
- package/dist-types/commands/GetReferenceImportJobCommand.d.ts +19 -0
- package/dist-types/commands/GetReferenceMetadataCommand.d.ts +19 -0
- package/dist-types/commands/GetReferenceStoreCommand.d.ts +19 -0
- package/dist-types/commands/GetRunCommand.d.ts +25 -0
- package/dist-types/commands/GetRunGroupCommand.d.ts +25 -0
- package/dist-types/commands/GetRunTaskCommand.d.ts +25 -0
- package/dist-types/commands/GetSequenceStoreCommand.d.ts +19 -0
- package/dist-types/commands/GetVariantImportJobCommand.d.ts +16 -0
- package/dist-types/commands/GetVariantStoreCommand.d.ts +16 -0
- package/dist-types/commands/GetWorkflowCommand.d.ts +25 -0
- package/dist-types/commands/ListAnnotationImportJobsCommand.d.ts +16 -0
- package/dist-types/commands/ListAnnotationStoresCommand.d.ts +16 -0
- package/dist-types/commands/ListReadSetActivationJobsCommand.d.ts +19 -0
- package/dist-types/commands/ListReadSetExportJobsCommand.d.ts +19 -0
- package/dist-types/commands/ListReadSetImportJobsCommand.d.ts +19 -0
- package/dist-types/commands/ListReadSetsCommand.d.ts +19 -0
- package/dist-types/commands/ListReferenceImportJobsCommand.d.ts +19 -0
- package/dist-types/commands/ListReferenceStoresCommand.d.ts +16 -0
- package/dist-types/commands/ListReferencesCommand.d.ts +19 -0
- package/dist-types/commands/ListRunGroupsCommand.d.ts +25 -0
- package/dist-types/commands/ListRunTasksCommand.d.ts +25 -0
- package/dist-types/commands/ListRunsCommand.d.ts +25 -0
- package/dist-types/commands/ListSequenceStoresCommand.d.ts +16 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +25 -0
- package/dist-types/commands/ListVariantImportJobsCommand.d.ts +16 -0
- package/dist-types/commands/ListVariantStoresCommand.d.ts +16 -0
- package/dist-types/commands/ListWorkflowsCommand.d.ts +25 -0
- package/dist-types/commands/StartAnnotationImportJobCommand.d.ts +19 -0
- package/dist-types/commands/StartReadSetActivationJobCommand.d.ts +22 -0
- package/dist-types/commands/StartReadSetExportJobCommand.d.ts +22 -0
- package/dist-types/commands/StartReadSetImportJobCommand.d.ts +22 -0
- package/dist-types/commands/StartReferenceImportJobCommand.d.ts +22 -0
- package/dist-types/commands/StartRunCommand.d.ts +25 -0
- package/dist-types/commands/StartVariantImportJobCommand.d.ts +19 -0
- package/dist-types/commands/TagResourceCommand.d.ts +25 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +25 -0
- package/dist-types/commands/UpdateAnnotationStoreCommand.d.ts +16 -0
- package/dist-types/commands/UpdateRunGroupCommand.d.ts +25 -0
- package/dist-types/commands/UpdateVariantStoreCommand.d.ts +16 -0
- package/dist-types/commands/UpdateWorkflowCommand.d.ts +25 -0
- package/package.json +38 -43
|
@@ -29,6 +29,25 @@ export interface BatchDeleteReadSetCommandOutput extends BatchDeleteReadSetRespo
|
|
|
29
29
|
* @see {@link BatchDeleteReadSetCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link OmicsClientResolvedConfig | config} for OmicsClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link InternalServerException} (server fault)
|
|
36
|
+
* <p>An unexpected error occurred. Try the request again.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link RequestTimeoutException} (client fault)
|
|
39
|
+
* <p>The request timed out.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
42
|
+
* <p>The target resource was not found in the current Region.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
45
|
+
* <p>The request was denied due to request throttling.</p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link ValidationException} (client fault)
|
|
48
|
+
* <p>The input fails to satisfy the constraints specified by an AWS service.</p>
|
|
49
|
+
*
|
|
50
|
+
*
|
|
32
51
|
*/
|
|
33
52
|
export declare class BatchDeleteReadSetCommand extends $Command<BatchDeleteReadSetCommandInput, BatchDeleteReadSetCommandOutput, OmicsClientResolvedConfig> {
|
|
34
53
|
readonly input: BatchDeleteReadSetCommandInput;
|
|
@@ -29,6 +29,22 @@ export interface CancelAnnotationImportJobCommandOutput extends CancelAnnotation
|
|
|
29
29
|
* @see {@link CancelAnnotationImportJobCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link OmicsClientResolvedConfig | config} for OmicsClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link InternalServerException} (server fault)
|
|
36
|
+
* <p>An unexpected error occurred. Try the request again.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
39
|
+
* <p>The target resource was not found in the current Region.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
42
|
+
* <p>The request was denied due to request throttling.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ValidationException} (client fault)
|
|
45
|
+
* <p>The input fails to satisfy the constraints specified by an AWS service.</p>
|
|
46
|
+
*
|
|
47
|
+
*
|
|
32
48
|
*/
|
|
33
49
|
export declare class CancelAnnotationImportJobCommand extends $Command<CancelAnnotationImportJobCommandInput, CancelAnnotationImportJobCommandOutput, OmicsClientResolvedConfig> {
|
|
34
50
|
readonly input: CancelAnnotationImportJobCommandInput;
|
|
@@ -29,6 +29,31 @@ export interface CancelRunCommandOutput extends __MetadataBearer {
|
|
|
29
29
|
* @see {@link CancelRunCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link OmicsClientResolvedConfig | config} for OmicsClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link ConflictException} (client fault)
|
|
36
|
+
* <p>The request cannot be applied to the target resource in its current state.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link InternalServerException} (server fault)
|
|
39
|
+
* <p>An unexpected error occurred. Try the request again.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link RequestTimeoutException} (client fault)
|
|
42
|
+
* <p>The request timed out.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
45
|
+
* <p>The target resource was not found in the current Region.</p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link ServiceQuotaExceededException} (client fault)
|
|
48
|
+
* <p>The request exceeds a service quota.</p>
|
|
49
|
+
*
|
|
50
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
51
|
+
* <p>The request was denied due to request throttling.</p>
|
|
52
|
+
*
|
|
53
|
+
* @throws {@link ValidationException} (client fault)
|
|
54
|
+
* <p>The input fails to satisfy the constraints specified by an AWS service.</p>
|
|
55
|
+
*
|
|
56
|
+
*
|
|
32
57
|
*/
|
|
33
58
|
export declare class CancelRunCommand extends $Command<CancelRunCommandInput, CancelRunCommandOutput, OmicsClientResolvedConfig> {
|
|
34
59
|
readonly input: CancelRunCommandInput;
|
|
@@ -29,6 +29,22 @@ export interface CancelVariantImportJobCommandOutput extends CancelVariantImport
|
|
|
29
29
|
* @see {@link CancelVariantImportJobCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link OmicsClientResolvedConfig | config} for OmicsClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link InternalServerException} (server fault)
|
|
36
|
+
* <p>An unexpected error occurred. Try the request again.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
39
|
+
* <p>The target resource was not found in the current Region.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
42
|
+
* <p>The request was denied due to request throttling.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ValidationException} (client fault)
|
|
45
|
+
* <p>The input fails to satisfy the constraints specified by an AWS service.</p>
|
|
46
|
+
*
|
|
47
|
+
*
|
|
32
48
|
*/
|
|
33
49
|
export declare class CancelVariantImportJobCommand extends $Command<CancelVariantImportJobCommandInput, CancelVariantImportJobCommandOutput, OmicsClientResolvedConfig> {
|
|
34
50
|
readonly input: CancelVariantImportJobCommandInput;
|
|
@@ -29,6 +29,28 @@ export interface CreateAnnotationStoreCommandOutput extends CreateAnnotationStor
|
|
|
29
29
|
* @see {@link CreateAnnotationStoreCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link OmicsClientResolvedConfig | config} for OmicsClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link ConflictException} (client fault)
|
|
36
|
+
* <p>The request cannot be applied to the target resource in its current state.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link InternalServerException} (server fault)
|
|
39
|
+
* <p>An unexpected error occurred. Try the request again.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
42
|
+
* <p>The target resource was not found in the current Region.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ServiceQuotaExceededException} (client fault)
|
|
45
|
+
* <p>The request exceeds a service quota.</p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
48
|
+
* <p>The request was denied due to request throttling.</p>
|
|
49
|
+
*
|
|
50
|
+
* @throws {@link ValidationException} (client fault)
|
|
51
|
+
* <p>The input fails to satisfy the constraints specified by an AWS service.</p>
|
|
52
|
+
*
|
|
53
|
+
*
|
|
32
54
|
*/
|
|
33
55
|
export declare class CreateAnnotationStoreCommand extends $Command<CreateAnnotationStoreCommandInput, CreateAnnotationStoreCommandOutput, OmicsClientResolvedConfig> {
|
|
34
56
|
readonly input: CreateAnnotationStoreCommandInput;
|
|
@@ -29,6 +29,25 @@ export interface CreateReferenceStoreCommandOutput extends CreateReferenceStoreR
|
|
|
29
29
|
* @see {@link CreateReferenceStoreCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link OmicsClientResolvedConfig | config} for OmicsClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link InternalServerException} (server fault)
|
|
36
|
+
* <p>An unexpected error occurred. Try the request again.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link RequestTimeoutException} (client fault)
|
|
39
|
+
* <p>The request timed out.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ServiceQuotaExceededException} (client fault)
|
|
42
|
+
* <p>The request exceeds a service quota.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
45
|
+
* <p>The request was denied due to request throttling.</p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link ValidationException} (client fault)
|
|
48
|
+
* <p>The input fails to satisfy the constraints specified by an AWS service.</p>
|
|
49
|
+
*
|
|
50
|
+
*
|
|
32
51
|
*/
|
|
33
52
|
export declare class CreateReferenceStoreCommand extends $Command<CreateReferenceStoreCommandInput, CreateReferenceStoreCommandOutput, OmicsClientResolvedConfig> {
|
|
34
53
|
readonly input: CreateReferenceStoreCommandInput;
|
|
@@ -29,6 +29,31 @@ export interface CreateRunGroupCommandOutput extends CreateRunGroupResponse, __M
|
|
|
29
29
|
* @see {@link CreateRunGroupCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link OmicsClientResolvedConfig | config} for OmicsClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link ConflictException} (client fault)
|
|
36
|
+
* <p>The request cannot be applied to the target resource in its current state.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link InternalServerException} (server fault)
|
|
39
|
+
* <p>An unexpected error occurred. Try the request again.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link RequestTimeoutException} (client fault)
|
|
42
|
+
* <p>The request timed out.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
45
|
+
* <p>The target resource was not found in the current Region.</p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link ServiceQuotaExceededException} (client fault)
|
|
48
|
+
* <p>The request exceeds a service quota.</p>
|
|
49
|
+
*
|
|
50
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
51
|
+
* <p>The request was denied due to request throttling.</p>
|
|
52
|
+
*
|
|
53
|
+
* @throws {@link ValidationException} (client fault)
|
|
54
|
+
* <p>The input fails to satisfy the constraints specified by an AWS service.</p>
|
|
55
|
+
*
|
|
56
|
+
*
|
|
32
57
|
*/
|
|
33
58
|
export declare class CreateRunGroupCommand extends $Command<CreateRunGroupCommandInput, CreateRunGroupCommandOutput, OmicsClientResolvedConfig> {
|
|
34
59
|
readonly input: CreateRunGroupCommandInput;
|
|
@@ -29,6 +29,25 @@ export interface CreateSequenceStoreCommandOutput extends CreateSequenceStoreRes
|
|
|
29
29
|
* @see {@link CreateSequenceStoreCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link OmicsClientResolvedConfig | config} for OmicsClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link InternalServerException} (server fault)
|
|
36
|
+
* <p>An unexpected error occurred. Try the request again.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link RequestTimeoutException} (client fault)
|
|
39
|
+
* <p>The request timed out.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ServiceQuotaExceededException} (client fault)
|
|
42
|
+
* <p>The request exceeds a service quota.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
45
|
+
* <p>The request was denied due to request throttling.</p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link ValidationException} (client fault)
|
|
48
|
+
* <p>The input fails to satisfy the constraints specified by an AWS service.</p>
|
|
49
|
+
*
|
|
50
|
+
*
|
|
32
51
|
*/
|
|
33
52
|
export declare class CreateSequenceStoreCommand extends $Command<CreateSequenceStoreCommandInput, CreateSequenceStoreCommandOutput, OmicsClientResolvedConfig> {
|
|
34
53
|
readonly input: CreateSequenceStoreCommandInput;
|
|
@@ -29,6 +29,28 @@ export interface CreateVariantStoreCommandOutput extends CreateVariantStoreRespo
|
|
|
29
29
|
* @see {@link CreateVariantStoreCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link OmicsClientResolvedConfig | config} for OmicsClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link ConflictException} (client fault)
|
|
36
|
+
* <p>The request cannot be applied to the target resource in its current state.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link InternalServerException} (server fault)
|
|
39
|
+
* <p>An unexpected error occurred. Try the request again.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
42
|
+
* <p>The target resource was not found in the current Region.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ServiceQuotaExceededException} (client fault)
|
|
45
|
+
* <p>The request exceeds a service quota.</p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
48
|
+
* <p>The request was denied due to request throttling.</p>
|
|
49
|
+
*
|
|
50
|
+
* @throws {@link ValidationException} (client fault)
|
|
51
|
+
* <p>The input fails to satisfy the constraints specified by an AWS service.</p>
|
|
52
|
+
*
|
|
53
|
+
*
|
|
32
54
|
*/
|
|
33
55
|
export declare class CreateVariantStoreCommand extends $Command<CreateVariantStoreCommandInput, CreateVariantStoreCommandOutput, OmicsClientResolvedConfig> {
|
|
34
56
|
readonly input: CreateVariantStoreCommandInput;
|
|
@@ -29,6 +29,31 @@ export interface CreateWorkflowCommandOutput extends CreateWorkflowResponse, __M
|
|
|
29
29
|
* @see {@link CreateWorkflowCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link OmicsClientResolvedConfig | config} for OmicsClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link ConflictException} (client fault)
|
|
36
|
+
* <p>The request cannot be applied to the target resource in its current state.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link InternalServerException} (server fault)
|
|
39
|
+
* <p>An unexpected error occurred. Try the request again.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link RequestTimeoutException} (client fault)
|
|
42
|
+
* <p>The request timed out.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
45
|
+
* <p>The target resource was not found in the current Region.</p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link ServiceQuotaExceededException} (client fault)
|
|
48
|
+
* <p>The request exceeds a service quota.</p>
|
|
49
|
+
*
|
|
50
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
51
|
+
* <p>The request was denied due to request throttling.</p>
|
|
52
|
+
*
|
|
53
|
+
* @throws {@link ValidationException} (client fault)
|
|
54
|
+
* <p>The input fails to satisfy the constraints specified by an AWS service.</p>
|
|
55
|
+
*
|
|
56
|
+
*
|
|
32
57
|
*/
|
|
33
58
|
export declare class CreateWorkflowCommand extends $Command<CreateWorkflowCommandInput, CreateWorkflowCommandOutput, OmicsClientResolvedConfig> {
|
|
34
59
|
readonly input: CreateWorkflowCommandInput;
|
|
@@ -29,6 +29,25 @@ export interface DeleteAnnotationStoreCommandOutput extends DeleteAnnotationStor
|
|
|
29
29
|
* @see {@link DeleteAnnotationStoreCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link OmicsClientResolvedConfig | config} for OmicsClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link ConflictException} (client fault)
|
|
36
|
+
* <p>The request cannot be applied to the target resource in its current state.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link InternalServerException} (server fault)
|
|
39
|
+
* <p>An unexpected error occurred. Try the request again.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
42
|
+
* <p>The target resource was not found in the current Region.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
45
|
+
* <p>The request was denied due to request throttling.</p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link ValidationException} (client fault)
|
|
48
|
+
* <p>The input fails to satisfy the constraints specified by an AWS service.</p>
|
|
49
|
+
*
|
|
50
|
+
*
|
|
32
51
|
*/
|
|
33
52
|
export declare class DeleteAnnotationStoreCommand extends $Command<DeleteAnnotationStoreCommandInput, DeleteAnnotationStoreCommandOutput, OmicsClientResolvedConfig> {
|
|
34
53
|
readonly input: DeleteAnnotationStoreCommandInput;
|
|
@@ -29,6 +29,28 @@ export interface DeleteReferenceCommandOutput extends DeleteReferenceResponse, _
|
|
|
29
29
|
* @see {@link DeleteReferenceCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link OmicsClientResolvedConfig | config} for OmicsClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link ConflictException} (client fault)
|
|
36
|
+
* <p>The request cannot be applied to the target resource in its current state.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link InternalServerException} (server fault)
|
|
39
|
+
* <p>An unexpected error occurred. Try the request again.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link RequestTimeoutException} (client fault)
|
|
42
|
+
* <p>The request timed out.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
45
|
+
* <p>The target resource was not found in the current Region.</p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
48
|
+
* <p>The request was denied due to request throttling.</p>
|
|
49
|
+
*
|
|
50
|
+
* @throws {@link ValidationException} (client fault)
|
|
51
|
+
* <p>The input fails to satisfy the constraints specified by an AWS service.</p>
|
|
52
|
+
*
|
|
53
|
+
*
|
|
32
54
|
*/
|
|
33
55
|
export declare class DeleteReferenceCommand extends $Command<DeleteReferenceCommandInput, DeleteReferenceCommandOutput, OmicsClientResolvedConfig> {
|
|
34
56
|
readonly input: DeleteReferenceCommandInput;
|
|
@@ -29,6 +29,28 @@ export interface DeleteReferenceStoreCommandOutput extends DeleteReferenceStoreR
|
|
|
29
29
|
* @see {@link DeleteReferenceStoreCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link OmicsClientResolvedConfig | config} for OmicsClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link ConflictException} (client fault)
|
|
36
|
+
* <p>The request cannot be applied to the target resource in its current state.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link InternalServerException} (server fault)
|
|
39
|
+
* <p>An unexpected error occurred. Try the request again.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link RequestTimeoutException} (client fault)
|
|
42
|
+
* <p>The request timed out.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
45
|
+
* <p>The target resource was not found in the current Region.</p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
48
|
+
* <p>The request was denied due to request throttling.</p>
|
|
49
|
+
*
|
|
50
|
+
* @throws {@link ValidationException} (client fault)
|
|
51
|
+
* <p>The input fails to satisfy the constraints specified by an AWS service.</p>
|
|
52
|
+
*
|
|
53
|
+
*
|
|
32
54
|
*/
|
|
33
55
|
export declare class DeleteReferenceStoreCommand extends $Command<DeleteReferenceStoreCommandInput, DeleteReferenceStoreCommandOutput, OmicsClientResolvedConfig> {
|
|
34
56
|
readonly input: DeleteReferenceStoreCommandInput;
|
|
@@ -29,6 +29,31 @@ export interface DeleteRunCommandOutput extends __MetadataBearer {
|
|
|
29
29
|
* @see {@link DeleteRunCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link OmicsClientResolvedConfig | config} for OmicsClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link ConflictException} (client fault)
|
|
36
|
+
* <p>The request cannot be applied to the target resource in its current state.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link InternalServerException} (server fault)
|
|
39
|
+
* <p>An unexpected error occurred. Try the request again.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link RequestTimeoutException} (client fault)
|
|
42
|
+
* <p>The request timed out.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
45
|
+
* <p>The target resource was not found in the current Region.</p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link ServiceQuotaExceededException} (client fault)
|
|
48
|
+
* <p>The request exceeds a service quota.</p>
|
|
49
|
+
*
|
|
50
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
51
|
+
* <p>The request was denied due to request throttling.</p>
|
|
52
|
+
*
|
|
53
|
+
* @throws {@link ValidationException} (client fault)
|
|
54
|
+
* <p>The input fails to satisfy the constraints specified by an AWS service.</p>
|
|
55
|
+
*
|
|
56
|
+
*
|
|
32
57
|
*/
|
|
33
58
|
export declare class DeleteRunCommand extends $Command<DeleteRunCommandInput, DeleteRunCommandOutput, OmicsClientResolvedConfig> {
|
|
34
59
|
readonly input: DeleteRunCommandInput;
|
|
@@ -29,6 +29,31 @@ export interface DeleteRunGroupCommandOutput extends __MetadataBearer {
|
|
|
29
29
|
* @see {@link DeleteRunGroupCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link OmicsClientResolvedConfig | config} for OmicsClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link ConflictException} (client fault)
|
|
36
|
+
* <p>The request cannot be applied to the target resource in its current state.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link InternalServerException} (server fault)
|
|
39
|
+
* <p>An unexpected error occurred. Try the request again.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link RequestTimeoutException} (client fault)
|
|
42
|
+
* <p>The request timed out.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
45
|
+
* <p>The target resource was not found in the current Region.</p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link ServiceQuotaExceededException} (client fault)
|
|
48
|
+
* <p>The request exceeds a service quota.</p>
|
|
49
|
+
*
|
|
50
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
51
|
+
* <p>The request was denied due to request throttling.</p>
|
|
52
|
+
*
|
|
53
|
+
* @throws {@link ValidationException} (client fault)
|
|
54
|
+
* <p>The input fails to satisfy the constraints specified by an AWS service.</p>
|
|
55
|
+
*
|
|
56
|
+
*
|
|
32
57
|
*/
|
|
33
58
|
export declare class DeleteRunGroupCommand extends $Command<DeleteRunGroupCommandInput, DeleteRunGroupCommandOutput, OmicsClientResolvedConfig> {
|
|
34
59
|
readonly input: DeleteRunGroupCommandInput;
|
|
@@ -29,6 +29,28 @@ export interface DeleteSequenceStoreCommandOutput extends DeleteSequenceStoreRes
|
|
|
29
29
|
* @see {@link DeleteSequenceStoreCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link OmicsClientResolvedConfig | config} for OmicsClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link ConflictException} (client fault)
|
|
36
|
+
* <p>The request cannot be applied to the target resource in its current state.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link InternalServerException} (server fault)
|
|
39
|
+
* <p>An unexpected error occurred. Try the request again.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link RequestTimeoutException} (client fault)
|
|
42
|
+
* <p>The request timed out.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
45
|
+
* <p>The target resource was not found in the current Region.</p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
48
|
+
* <p>The request was denied due to request throttling.</p>
|
|
49
|
+
*
|
|
50
|
+
* @throws {@link ValidationException} (client fault)
|
|
51
|
+
* <p>The input fails to satisfy the constraints specified by an AWS service.</p>
|
|
52
|
+
*
|
|
53
|
+
*
|
|
32
54
|
*/
|
|
33
55
|
export declare class DeleteSequenceStoreCommand extends $Command<DeleteSequenceStoreCommandInput, DeleteSequenceStoreCommandOutput, OmicsClientResolvedConfig> {
|
|
34
56
|
readonly input: DeleteSequenceStoreCommandInput;
|
|
@@ -29,6 +29,25 @@ export interface DeleteVariantStoreCommandOutput extends DeleteVariantStoreRespo
|
|
|
29
29
|
* @see {@link DeleteVariantStoreCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link OmicsClientResolvedConfig | config} for OmicsClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link ConflictException} (client fault)
|
|
36
|
+
* <p>The request cannot be applied to the target resource in its current state.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link InternalServerException} (server fault)
|
|
39
|
+
* <p>An unexpected error occurred. Try the request again.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
42
|
+
* <p>The target resource was not found in the current Region.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
45
|
+
* <p>The request was denied due to request throttling.</p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link ValidationException} (client fault)
|
|
48
|
+
* <p>The input fails to satisfy the constraints specified by an AWS service.</p>
|
|
49
|
+
*
|
|
50
|
+
*
|
|
32
51
|
*/
|
|
33
52
|
export declare class DeleteVariantStoreCommand extends $Command<DeleteVariantStoreCommandInput, DeleteVariantStoreCommandOutput, OmicsClientResolvedConfig> {
|
|
34
53
|
readonly input: DeleteVariantStoreCommandInput;
|
|
@@ -29,6 +29,31 @@ export interface DeleteWorkflowCommandOutput extends __MetadataBearer {
|
|
|
29
29
|
* @see {@link DeleteWorkflowCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link OmicsClientResolvedConfig | config} for OmicsClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link ConflictException} (client fault)
|
|
36
|
+
* <p>The request cannot be applied to the target resource in its current state.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link InternalServerException} (server fault)
|
|
39
|
+
* <p>An unexpected error occurred. Try the request again.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link RequestTimeoutException} (client fault)
|
|
42
|
+
* <p>The request timed out.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
45
|
+
* <p>The target resource was not found in the current Region.</p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link ServiceQuotaExceededException} (client fault)
|
|
48
|
+
* <p>The request exceeds a service quota.</p>
|
|
49
|
+
*
|
|
50
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
51
|
+
* <p>The request was denied due to request throttling.</p>
|
|
52
|
+
*
|
|
53
|
+
* @throws {@link ValidationException} (client fault)
|
|
54
|
+
* <p>The input fails to satisfy the constraints specified by an AWS service.</p>
|
|
55
|
+
*
|
|
56
|
+
*
|
|
32
57
|
*/
|
|
33
58
|
export declare class DeleteWorkflowCommand extends $Command<DeleteWorkflowCommandInput, DeleteWorkflowCommandOutput, OmicsClientResolvedConfig> {
|
|
34
59
|
readonly input: DeleteWorkflowCommandInput;
|
|
@@ -29,6 +29,22 @@ export interface GetAnnotationImportJobCommandOutput extends GetAnnotationImport
|
|
|
29
29
|
* @see {@link GetAnnotationImportJobCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link OmicsClientResolvedConfig | config} for OmicsClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link InternalServerException} (server fault)
|
|
36
|
+
* <p>An unexpected error occurred. Try the request again.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
39
|
+
* <p>The target resource was not found in the current Region.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
42
|
+
* <p>The request was denied due to request throttling.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ValidationException} (client fault)
|
|
45
|
+
* <p>The input fails to satisfy the constraints specified by an AWS service.</p>
|
|
46
|
+
*
|
|
47
|
+
*
|
|
32
48
|
*/
|
|
33
49
|
export declare class GetAnnotationImportJobCommand extends $Command<GetAnnotationImportJobCommandInput, GetAnnotationImportJobCommandOutput, OmicsClientResolvedConfig> {
|
|
34
50
|
readonly input: GetAnnotationImportJobCommandInput;
|
|
@@ -29,6 +29,22 @@ export interface GetAnnotationStoreCommandOutput extends GetAnnotationStoreRespo
|
|
|
29
29
|
* @see {@link GetAnnotationStoreCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link OmicsClientResolvedConfig | config} for OmicsClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link InternalServerException} (server fault)
|
|
36
|
+
* <p>An unexpected error occurred. Try the request again.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
39
|
+
* <p>The target resource was not found in the current Region.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
42
|
+
* <p>The request was denied due to request throttling.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ValidationException} (client fault)
|
|
45
|
+
* <p>The input fails to satisfy the constraints specified by an AWS service.</p>
|
|
46
|
+
*
|
|
47
|
+
*
|
|
32
48
|
*/
|
|
33
49
|
export declare class GetAnnotationStoreCommand extends $Command<GetAnnotationStoreCommandInput, GetAnnotationStoreCommandOutput, OmicsClientResolvedConfig> {
|
|
34
50
|
readonly input: GetAnnotationStoreCommandInput;
|
|
@@ -29,6 +29,25 @@ export interface GetReadSetActivationJobCommandOutput extends GetReadSetActivati
|
|
|
29
29
|
* @see {@link GetReadSetActivationJobCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link OmicsClientResolvedConfig | config} for OmicsClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link InternalServerException} (server fault)
|
|
36
|
+
* <p>An unexpected error occurred. Try the request again.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link RequestTimeoutException} (client fault)
|
|
39
|
+
* <p>The request timed out.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
42
|
+
* <p>The target resource was not found in the current Region.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
45
|
+
* <p>The request was denied due to request throttling.</p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link ValidationException} (client fault)
|
|
48
|
+
* <p>The input fails to satisfy the constraints specified by an AWS service.</p>
|
|
49
|
+
*
|
|
50
|
+
*
|
|
32
51
|
*/
|
|
33
52
|
export declare class GetReadSetActivationJobCommand extends $Command<GetReadSetActivationJobCommandInput, GetReadSetActivationJobCommandOutput, OmicsClientResolvedConfig> {
|
|
34
53
|
readonly input: GetReadSetActivationJobCommandInput;
|
|
@@ -29,6 +29,31 @@ export interface GetReadSetCommandOutput extends __WithSdkStreamMixin<GetReadSet
|
|
|
29
29
|
* @see {@link GetReadSetCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link OmicsClientResolvedConfig | config} for OmicsClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link ConflictException} (client fault)
|
|
36
|
+
* <p>The request cannot be applied to the target resource in its current state.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link InternalServerException} (server fault)
|
|
39
|
+
* <p>An unexpected error occurred. Try the request again.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link RangeNotSatisfiableException} (client fault)
|
|
42
|
+
* <p>The ranges specified in the request are not valid.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link RequestTimeoutException} (client fault)
|
|
45
|
+
* <p>The request timed out.</p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
48
|
+
* <p>The target resource was not found in the current Region.</p>
|
|
49
|
+
*
|
|
50
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
51
|
+
* <p>The request was denied due to request throttling.</p>
|
|
52
|
+
*
|
|
53
|
+
* @throws {@link ValidationException} (client fault)
|
|
54
|
+
* <p>The input fails to satisfy the constraints specified by an AWS service.</p>
|
|
55
|
+
*
|
|
56
|
+
*
|
|
32
57
|
*/
|
|
33
58
|
export declare class GetReadSetCommand extends $Command<GetReadSetCommandInput, GetReadSetCommandOutput, OmicsClientResolvedConfig> {
|
|
34
59
|
readonly input: GetReadSetCommandInput;
|