@aws-sdk/client-omics 3.787.0 → 3.796.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 +41 -2
- package/dist-cjs/index.js +413 -12
- package/dist-es/Omics.js +10 -0
- package/dist-es/commands/CreateWorkflowVersionCommand.js +22 -0
- package/dist-es/commands/DeleteWorkflowVersionCommand.js +22 -0
- package/dist-es/commands/GetWorkflowVersionCommand.js +22 -0
- package/dist-es/commands/ListWorkflowVersionsCommand.js +22 -0
- package/dist-es/commands/UpdateWorkflowVersionCommand.js +22 -0
- package/dist-es/commands/index.js +5 -0
- package/dist-es/models/index.js +1 -0
- package/dist-es/models/models_0.js +4 -4
- package/dist-es/models/models_1.js +1 -0
- package/dist-es/pagination/ListWorkflowVersionsPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_restJson1.js +241 -0
- package/dist-es/waiters/index.js +1 -0
- package/dist-es/waiters/waitForWorkflowVersionActive.js +58 -0
- package/dist-types/Omics.d.ts +36 -2
- package/dist-types/OmicsClient.d.ts +8 -4
- package/dist-types/commands/AbortMultipartReadSetUploadCommand.d.ts +1 -3
- package/dist-types/commands/CompleteMultipartReadSetUploadCommand.d.ts +1 -3
- package/dist-types/commands/CreateAnnotationStoreVersionCommand.d.ts +1 -3
- package/dist-types/commands/CreateMultipartReadSetUploadCommand.d.ts +1 -3
- package/dist-types/commands/CreateRunCacheCommand.d.ts +1 -5
- package/dist-types/commands/CreateShareCommand.d.ts +1 -14
- package/dist-types/commands/CreateWorkflowCommand.d.ts +3 -1
- package/dist-types/commands/CreateWorkflowVersionCommand.d.ts +123 -0
- package/dist-types/commands/DeleteAnnotationStoreVersionsCommand.d.ts +1 -3
- package/dist-types/commands/DeleteRunCacheCommand.d.ts +1 -6
- package/dist-types/commands/DeleteS3AccessPolicyCommand.d.ts +1 -3
- package/dist-types/commands/DeleteShareCommand.d.ts +1 -2
- package/dist-types/commands/DeleteWorkflowVersionCommand.d.ts +95 -0
- package/dist-types/commands/GetAnnotationStoreVersionCommand.d.ts +1 -3
- package/dist-types/commands/GetRunCacheCommand.d.ts +1 -2
- package/dist-types/commands/GetRunCommand.d.ts +3 -6
- package/dist-types/commands/GetS3AccessPolicyCommand.d.ts +1 -3
- package/dist-types/commands/GetWorkflowCommand.d.ts +3 -2
- package/dist-types/commands/GetWorkflowVersionCommand.d.ts +130 -0
- package/dist-types/commands/ListAnnotationStoreVersionsCommand.d.ts +1 -3
- package/dist-types/commands/ListMultipartReadSetUploadsCommand.d.ts +2 -5
- package/dist-types/commands/ListReadSetUploadPartsCommand.d.ts +1 -3
- package/dist-types/commands/ListRunsCommand.d.ts +2 -5
- package/dist-types/commands/ListSharesCommand.d.ts +1 -2
- package/dist-types/commands/ListWorkflowVersionsCommand.d.ts +115 -0
- package/dist-types/commands/PutS3AccessPolicyCommand.d.ts +1 -3
- package/dist-types/commands/StartReadSetActivationJobCommand.d.ts +1 -2
- package/dist-types/commands/StartRunCommand.d.ts +2 -12
- package/dist-types/commands/StartVariantImportJobCommand.d.ts +1 -1
- package/dist-types/commands/UntagResourceCommand.d.ts +1 -1
- package/dist-types/commands/UpdateAnnotationStoreVersionCommand.d.ts +1 -3
- package/dist-types/commands/UpdateVariantStoreCommand.d.ts +1 -1
- package/dist-types/commands/UpdateWorkflowCommand.d.ts +4 -2
- package/dist-types/commands/UpdateWorkflowVersionCommand.d.ts +98 -0
- package/dist-types/commands/UploadReadSetPartCommand.d.ts +2 -5
- package/dist-types/commands/index.d.ts +5 -0
- package/dist-types/index.d.ts +1 -2
- package/dist-types/models/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +555 -578
- package/dist-types/models/models_1.d.ts +187 -0
- package/dist-types/pagination/ListWorkflowVersionsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +45 -0
- package/dist-types/ts3.4/Omics.d.ts +85 -0
- package/dist-types/ts3.4/OmicsClient.d.ts +30 -0
- package/dist-types/ts3.4/commands/CreateWorkflowVersionCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteWorkflowVersionCommand.d.ts +46 -0
- package/dist-types/ts3.4/commands/GetWorkflowVersionCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListWorkflowVersionsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/StartVariantImportJobCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateVariantStoreCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateWorkflowCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateWorkflowVersionCommand.d.ts +46 -0
- package/dist-types/ts3.4/commands/index.d.ts +5 -0
- package/dist-types/ts3.4/models/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +92 -41
- package/dist-types/ts3.4/models/models_1.d.ts +46 -0
- package/dist-types/ts3.4/pagination/ListWorkflowVersionsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +60 -0
- package/dist-types/ts3.4/waiters/index.d.ts +1 -0
- package/dist-types/ts3.4/waiters/waitForWorkflowVersionActive.d.ts +11 -0
- package/dist-types/waiters/index.d.ts +1 -0
- package/dist-types/waiters/waitForWorkflowVersionActive.d.ts +14 -0
- package/package.json +5 -5
|
@@ -0,0 +1,98 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { UpdateWorkflowVersionRequest } from "../models/models_1";
|
|
4
|
+
import { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link UpdateWorkflowVersionCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface UpdateWorkflowVersionCommandInput extends UpdateWorkflowVersionRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link UpdateWorkflowVersionCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface UpdateWorkflowVersionCommandOutput extends __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const UpdateWorkflowVersionCommand_base: {
|
|
25
|
+
new (input: UpdateWorkflowVersionCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateWorkflowVersionCommandInput, UpdateWorkflowVersionCommandOutput, OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (__0_0: UpdateWorkflowVersionCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateWorkflowVersionCommandInput, UpdateWorkflowVersionCommandOutput, OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* <p>Updates information about the workflow version. For more information, see <a href="https://docs.aws.amazon.com/omics/latest/dev/workflow-versions.html">Workflow versioning in Amazon Web Services HealthOmics</a> in the Amazon Web Services HealthOmics User Guide.</p>
|
|
31
|
+
* @example
|
|
32
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
33
|
+
* ```javascript
|
|
34
|
+
* import { OmicsClient, UpdateWorkflowVersionCommand } from "@aws-sdk/client-omics"; // ES Modules import
|
|
35
|
+
* // const { OmicsClient, UpdateWorkflowVersionCommand } = require("@aws-sdk/client-omics"); // CommonJS import
|
|
36
|
+
* const client = new OmicsClient(config);
|
|
37
|
+
* const input = { // UpdateWorkflowVersionRequest
|
|
38
|
+
* workflowId: "STRING_VALUE", // required
|
|
39
|
+
* versionName: "STRING_VALUE", // required
|
|
40
|
+
* description: "STRING_VALUE",
|
|
41
|
+
* storageType: "STRING_VALUE",
|
|
42
|
+
* storageCapacity: Number("int"),
|
|
43
|
+
* };
|
|
44
|
+
* const command = new UpdateWorkflowVersionCommand(input);
|
|
45
|
+
* const response = await client.send(command);
|
|
46
|
+
* // {};
|
|
47
|
+
*
|
|
48
|
+
* ```
|
|
49
|
+
*
|
|
50
|
+
* @param UpdateWorkflowVersionCommandInput - {@link UpdateWorkflowVersionCommandInput}
|
|
51
|
+
* @returns {@link UpdateWorkflowVersionCommandOutput}
|
|
52
|
+
* @see {@link UpdateWorkflowVersionCommandInput} for command's `input` shape.
|
|
53
|
+
* @see {@link UpdateWorkflowVersionCommandOutput} for command's `response` shape.
|
|
54
|
+
* @see {@link OmicsClientResolvedConfig | config} for OmicsClient's `config` shape.
|
|
55
|
+
*
|
|
56
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
57
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
58
|
+
*
|
|
59
|
+
* @throws {@link ConflictException} (client fault)
|
|
60
|
+
* <p>The request cannot be applied to the target resource in its current state.</p>
|
|
61
|
+
*
|
|
62
|
+
* @throws {@link InternalServerException} (server fault)
|
|
63
|
+
* <p>An unexpected error occurred. Try the request again.</p>
|
|
64
|
+
*
|
|
65
|
+
* @throws {@link RequestTimeoutException} (client fault)
|
|
66
|
+
* <p>The request timed out.</p>
|
|
67
|
+
*
|
|
68
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
69
|
+
* <p>The target resource was not found in the current Region.</p>
|
|
70
|
+
*
|
|
71
|
+
* @throws {@link ServiceQuotaExceededException} (client fault)
|
|
72
|
+
* <p>The request exceeds a service quota.</p>
|
|
73
|
+
*
|
|
74
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
75
|
+
* <p>The request was denied due to request throttling.</p>
|
|
76
|
+
*
|
|
77
|
+
* @throws {@link ValidationException} (client fault)
|
|
78
|
+
* <p>The input fails to satisfy the constraints specified by an AWS service.</p>
|
|
79
|
+
*
|
|
80
|
+
* @throws {@link OmicsServiceException}
|
|
81
|
+
* <p>Base exception class for all service exceptions from Omics service.</p>
|
|
82
|
+
*
|
|
83
|
+
*
|
|
84
|
+
* @public
|
|
85
|
+
*/
|
|
86
|
+
export declare class UpdateWorkflowVersionCommand extends UpdateWorkflowVersionCommand_base {
|
|
87
|
+
/** @internal type navigation helper, not in runtime. */
|
|
88
|
+
protected static __types: {
|
|
89
|
+
api: {
|
|
90
|
+
input: UpdateWorkflowVersionRequest;
|
|
91
|
+
output: {};
|
|
92
|
+
};
|
|
93
|
+
sdk: {
|
|
94
|
+
input: UpdateWorkflowVersionCommandInput;
|
|
95
|
+
output: UpdateWorkflowVersionCommandOutput;
|
|
96
|
+
};
|
|
97
|
+
};
|
|
98
|
+
}
|
|
@@ -28,8 +28,7 @@ declare const UploadReadSetPartCommand_base: {
|
|
|
28
28
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
29
|
};
|
|
30
30
|
/**
|
|
31
|
-
* <p>This operation uploads a specific part of a read set. If you upload a new part using a previously used part number,
|
|
32
|
-
* the previously uploaded part will be overwritten.</p>
|
|
31
|
+
* <p>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.</p>
|
|
33
32
|
* @example
|
|
34
33
|
* Use a bare-bones client and the command you need to make an API call.
|
|
35
34
|
* ```javascript
|
|
@@ -64,9 +63,7 @@ declare const UploadReadSetPartCommand_base: {
|
|
|
64
63
|
* <p>An unexpected error occurred. Try the request again.</p>
|
|
65
64
|
*
|
|
66
65
|
* @throws {@link NotSupportedOperationException} (client fault)
|
|
67
|
-
* <p>
|
|
68
|
-
* The operation is not supported by Amazon Omics, or the API does not exist.
|
|
69
|
-
* </p>
|
|
66
|
+
* <p> The operation is not supported by Amazon Omics, or the API does not exist. </p>
|
|
70
67
|
*
|
|
71
68
|
* @throws {@link RequestTimeoutException} (client fault)
|
|
72
69
|
* <p>The request timed out.</p>
|
|
@@ -15,6 +15,7 @@ export * from "./CreateSequenceStoreCommand";
|
|
|
15
15
|
export * from "./CreateShareCommand";
|
|
16
16
|
export * from "./CreateVariantStoreCommand";
|
|
17
17
|
export * from "./CreateWorkflowCommand";
|
|
18
|
+
export * from "./CreateWorkflowVersionCommand";
|
|
18
19
|
export * from "./DeleteAnnotationStoreCommand";
|
|
19
20
|
export * from "./DeleteAnnotationStoreVersionsCommand";
|
|
20
21
|
export * from "./DeleteReferenceCommand";
|
|
@@ -27,6 +28,7 @@ export * from "./DeleteSequenceStoreCommand";
|
|
|
27
28
|
export * from "./DeleteShareCommand";
|
|
28
29
|
export * from "./DeleteVariantStoreCommand";
|
|
29
30
|
export * from "./DeleteWorkflowCommand";
|
|
31
|
+
export * from "./DeleteWorkflowVersionCommand";
|
|
30
32
|
export * from "./GetAnnotationImportJobCommand";
|
|
31
33
|
export * from "./GetAnnotationStoreCommand";
|
|
32
34
|
export * from "./GetAnnotationStoreVersionCommand";
|
|
@@ -49,6 +51,7 @@ export * from "./GetShareCommand";
|
|
|
49
51
|
export * from "./GetVariantImportJobCommand";
|
|
50
52
|
export * from "./GetVariantStoreCommand";
|
|
51
53
|
export * from "./GetWorkflowCommand";
|
|
54
|
+
export * from "./GetWorkflowVersionCommand";
|
|
52
55
|
export * from "./ListAnnotationImportJobsCommand";
|
|
53
56
|
export * from "./ListAnnotationStoreVersionsCommand";
|
|
54
57
|
export * from "./ListAnnotationStoresCommand";
|
|
@@ -70,6 +73,7 @@ export * from "./ListSharesCommand";
|
|
|
70
73
|
export * from "./ListTagsForResourceCommand";
|
|
71
74
|
export * from "./ListVariantImportJobsCommand";
|
|
72
75
|
export * from "./ListVariantStoresCommand";
|
|
76
|
+
export * from "./ListWorkflowVersionsCommand";
|
|
73
77
|
export * from "./ListWorkflowsCommand";
|
|
74
78
|
export * from "./PutS3AccessPolicyCommand";
|
|
75
79
|
export * from "./StartAnnotationImportJobCommand";
|
|
@@ -88,4 +92,5 @@ export * from "./UpdateRunGroupCommand";
|
|
|
88
92
|
export * from "./UpdateSequenceStoreCommand";
|
|
89
93
|
export * from "./UpdateVariantStoreCommand";
|
|
90
94
|
export * from "./UpdateWorkflowCommand";
|
|
95
|
+
export * from "./UpdateWorkflowVersionCommand";
|
|
91
96
|
export * from "./UploadReadSetPartCommand";
|
package/dist-types/index.d.ts
CHANGED
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* <p>This is the <i>AWS HealthOmics API Reference</i>. For an introduction to the service, see <a href="https://docs.aws.amazon.com/omics/latest/dev/">What is AWS HealthOmics?</a> in the
|
|
3
|
-
* <i>AWS HealthOmics User Guide</i>.</p>
|
|
2
|
+
* <p>This is the <i>AWS HealthOmics API Reference</i>. For an introduction to the service, see <a href="https://docs.aws.amazon.com/omics/latest/dev/">What is AWS HealthOmics?</a> in the <i>AWS HealthOmics User Guide</i>.</p>
|
|
4
3
|
*
|
|
5
4
|
* @packageDocumentation
|
|
6
5
|
*/
|