@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,95 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { DeleteWorkflowVersionRequest } from "../models/models_0";
|
|
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 DeleteWorkflowVersionCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface DeleteWorkflowVersionCommandInput extends DeleteWorkflowVersionRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link DeleteWorkflowVersionCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface DeleteWorkflowVersionCommandOutput extends __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const DeleteWorkflowVersionCommand_base: {
|
|
25
|
+
new (input: DeleteWorkflowVersionCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteWorkflowVersionCommandInput, DeleteWorkflowVersionCommandOutput, OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (__0_0: DeleteWorkflowVersionCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteWorkflowVersionCommandInput, DeleteWorkflowVersionCommandOutput, OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* <p>Deletes a workflow version. Deleting a workflow version doesn't affect any ongoing runs that are using the workflow version.</p> <p>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, DeleteWorkflowVersionCommand } from "@aws-sdk/client-omics"; // ES Modules import
|
|
35
|
+
* // const { OmicsClient, DeleteWorkflowVersionCommand } = require("@aws-sdk/client-omics"); // CommonJS import
|
|
36
|
+
* const client = new OmicsClient(config);
|
|
37
|
+
* const input = { // DeleteWorkflowVersionRequest
|
|
38
|
+
* workflowId: "STRING_VALUE", // required
|
|
39
|
+
* versionName: "STRING_VALUE", // required
|
|
40
|
+
* };
|
|
41
|
+
* const command = new DeleteWorkflowVersionCommand(input);
|
|
42
|
+
* const response = await client.send(command);
|
|
43
|
+
* // {};
|
|
44
|
+
*
|
|
45
|
+
* ```
|
|
46
|
+
*
|
|
47
|
+
* @param DeleteWorkflowVersionCommandInput - {@link DeleteWorkflowVersionCommandInput}
|
|
48
|
+
* @returns {@link DeleteWorkflowVersionCommandOutput}
|
|
49
|
+
* @see {@link DeleteWorkflowVersionCommandInput} for command's `input` shape.
|
|
50
|
+
* @see {@link DeleteWorkflowVersionCommandOutput} for command's `response` shape.
|
|
51
|
+
* @see {@link OmicsClientResolvedConfig | config} for OmicsClient's `config` shape.
|
|
52
|
+
*
|
|
53
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
54
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
55
|
+
*
|
|
56
|
+
* @throws {@link ConflictException} (client fault)
|
|
57
|
+
* <p>The request cannot be applied to the target resource in its current state.</p>
|
|
58
|
+
*
|
|
59
|
+
* @throws {@link InternalServerException} (server fault)
|
|
60
|
+
* <p>An unexpected error occurred. Try the request again.</p>
|
|
61
|
+
*
|
|
62
|
+
* @throws {@link RequestTimeoutException} (client fault)
|
|
63
|
+
* <p>The request timed out.</p>
|
|
64
|
+
*
|
|
65
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
66
|
+
* <p>The target resource was not found in the current Region.</p>
|
|
67
|
+
*
|
|
68
|
+
* @throws {@link ServiceQuotaExceededException} (client fault)
|
|
69
|
+
* <p>The request exceeds a service quota.</p>
|
|
70
|
+
*
|
|
71
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
72
|
+
* <p>The request was denied due to request throttling.</p>
|
|
73
|
+
*
|
|
74
|
+
* @throws {@link ValidationException} (client fault)
|
|
75
|
+
* <p>The input fails to satisfy the constraints specified by an AWS service.</p>
|
|
76
|
+
*
|
|
77
|
+
* @throws {@link OmicsServiceException}
|
|
78
|
+
* <p>Base exception class for all service exceptions from Omics service.</p>
|
|
79
|
+
*
|
|
80
|
+
*
|
|
81
|
+
* @public
|
|
82
|
+
*/
|
|
83
|
+
export declare class DeleteWorkflowVersionCommand extends DeleteWorkflowVersionCommand_base {
|
|
84
|
+
/** @internal type navigation helper, not in runtime. */
|
|
85
|
+
protected static __types: {
|
|
86
|
+
api: {
|
|
87
|
+
input: DeleteWorkflowVersionRequest;
|
|
88
|
+
output: {};
|
|
89
|
+
};
|
|
90
|
+
sdk: {
|
|
91
|
+
input: DeleteWorkflowVersionCommandInput;
|
|
92
|
+
output: DeleteWorkflowVersionCommandOutput;
|
|
93
|
+
};
|
|
94
|
+
};
|
|
95
|
+
}
|
|
@@ -27,9 +27,7 @@ declare const GetAnnotationStoreVersionCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
* <p>
|
|
31
|
-
* Retrieves the metadata for an annotation store version.
|
|
32
|
-
* </p>
|
|
30
|
+
* <p> Retrieves the metadata for an annotation store version. </p>
|
|
33
31
|
* @example
|
|
34
32
|
* Use a bare-bones client and the command you need to make an API call.
|
|
35
33
|
* ```javascript
|
|
@@ -27,8 +27,7 @@ declare const GetRunCacheCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
* <p>Retrieve the details for the specified run cache.</p>
|
|
31
|
-
* <p>For more information, see <a href="https://docs.aws.amazon.com/omics/latest/dev/workflow-call-caching.html">Call caching for HealthOmics runs</a> in the AWS HealthOmics User Guide.</p>
|
|
30
|
+
* <p>Retrieve the details for the specified run cache.</p> <p>For more information, see <a href="https://docs.aws.amazon.com/omics/latest/dev/workflow-call-caching.html">Call caching for Amazon Web Services HealthOmics runs</a> in the Amazon Web Services HealthOmics User Guide.</p>
|
|
32
31
|
* @example
|
|
33
32
|
* Use a bare-bones client and the command you need to make an API call.
|
|
34
33
|
* ```javascript
|
|
@@ -27,12 +27,7 @@ declare const GetRunCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
* <p>Gets information about a workflow run.</p>
|
|
31
|
-
* <p>If a workflow is shared with you, you cannot export information about the run.</p>
|
|
32
|
-
* <p>HealthOmics stores a fixed number of runs that are available to the console and API. If
|
|
33
|
-
* GetRun doesn't return the requested run, you can find run logs
|
|
34
|
-
* for all runs in the CloudWatch logs. For more information about viewing the run logs, see <a href="https://docs.aws.amazon.com/omics/latest/dev/cloudwatch-logs.html">CloudWatch logs</a>
|
|
35
|
-
* in the <i>AWS HealthOmics User Guide</i>.</p>
|
|
30
|
+
* <p>Gets information about a workflow run.</p> <p>If a workflow is shared with you, you cannot export information about the run.</p> <p>Amazon Web Services HealthOmics stores a fixed number of runs that are available to the console and API. If GetRun doesn't return the requested run, you can find run logs for all runs in the CloudWatch logs. For more information about viewing the run logs, see <a href="https://docs.aws.amazon.com/omics/latest/dev/cloudwatch-logs.html">CloudWatch logs</a> in the <i>in the Amazon Web Services HealthOmics User Guide</i>.</p>
|
|
36
31
|
* @example
|
|
37
32
|
* Use a bare-bones client and the command you need to make an API call.
|
|
38
33
|
* ```javascript
|
|
@@ -89,6 +84,8 @@ declare const GetRunCommand_base: {
|
|
|
89
84
|
* // runOutputUri: "STRING_VALUE",
|
|
90
85
|
* // storageType: "STRING_VALUE",
|
|
91
86
|
* // workflowOwnerId: "STRING_VALUE",
|
|
87
|
+
* // workflowVersionName: "STRING_VALUE",
|
|
88
|
+
* // workflowUuid: "STRING_VALUE",
|
|
92
89
|
* // };
|
|
93
90
|
*
|
|
94
91
|
* ```
|
|
@@ -62,9 +62,7 @@ declare const GetS3AccessPolicyCommand_base: {
|
|
|
62
62
|
* <p>An unexpected error occurred. Try the request again.</p>
|
|
63
63
|
*
|
|
64
64
|
* @throws {@link NotSupportedOperationException} (client fault)
|
|
65
|
-
* <p>
|
|
66
|
-
* The operation is not supported by Amazon Omics, or the API does not exist.
|
|
67
|
-
* </p>
|
|
65
|
+
* <p> The operation is not supported by Amazon Omics, or the API does not exist. </p>
|
|
68
66
|
*
|
|
69
67
|
* @throws {@link RequestTimeoutException} (client fault)
|
|
70
68
|
* <p>The request timed out.</p>
|
|
@@ -27,8 +27,7 @@ declare const GetWorkflowCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
* <p>Gets information about a workflow.</p>
|
|
31
|
-
* <p>If a workflow is shared with you, you cannot export the workflow.</p>
|
|
30
|
+
* <p>Gets information about a workflow.</p> <p>If a workflow is shared with you, you cannot export the workflow.</p>
|
|
32
31
|
* @example
|
|
33
32
|
* Use a bare-bones client and the command you need to make an API call.
|
|
34
33
|
* ```javascript
|
|
@@ -72,6 +71,8 @@ declare const GetWorkflowCommand_base: {
|
|
|
72
71
|
* // "<keys>": "STRING_VALUE",
|
|
73
72
|
* // },
|
|
74
73
|
* // accelerators: "STRING_VALUE",
|
|
74
|
+
* // storageType: "STRING_VALUE",
|
|
75
|
+
* // uuid: "STRING_VALUE",
|
|
75
76
|
* // };
|
|
76
77
|
*
|
|
77
78
|
* ```
|
|
@@ -0,0 +1,130 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { GetWorkflowVersionRequest, GetWorkflowVersionResponse } from "../models/models_0";
|
|
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 GetWorkflowVersionCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface GetWorkflowVersionCommandInput extends GetWorkflowVersionRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link GetWorkflowVersionCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface GetWorkflowVersionCommandOutput extends GetWorkflowVersionResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const GetWorkflowVersionCommand_base: {
|
|
25
|
+
new (input: GetWorkflowVersionCommandInput): import("@smithy/smithy-client").CommandImpl<GetWorkflowVersionCommandInput, GetWorkflowVersionCommandOutput, OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (__0_0: GetWorkflowVersionCommandInput): import("@smithy/smithy-client").CommandImpl<GetWorkflowVersionCommandInput, GetWorkflowVersionCommandOutput, OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* <p>Gets information about a 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, GetWorkflowVersionCommand } from "@aws-sdk/client-omics"; // ES Modules import
|
|
35
|
+
* // const { OmicsClient, GetWorkflowVersionCommand } = require("@aws-sdk/client-omics"); // CommonJS import
|
|
36
|
+
* const client = new OmicsClient(config);
|
|
37
|
+
* const input = { // GetWorkflowVersionRequest
|
|
38
|
+
* workflowId: "STRING_VALUE", // required
|
|
39
|
+
* versionName: "STRING_VALUE", // required
|
|
40
|
+
* type: "STRING_VALUE",
|
|
41
|
+
* export: [ // WorkflowExportList
|
|
42
|
+
* "STRING_VALUE",
|
|
43
|
+
* ],
|
|
44
|
+
* workflowOwnerId: "STRING_VALUE",
|
|
45
|
+
* };
|
|
46
|
+
* const command = new GetWorkflowVersionCommand(input);
|
|
47
|
+
* const response = await client.send(command);
|
|
48
|
+
* // { // GetWorkflowVersionResponse
|
|
49
|
+
* // arn: "STRING_VALUE",
|
|
50
|
+
* // workflowId: "STRING_VALUE",
|
|
51
|
+
* // versionName: "STRING_VALUE",
|
|
52
|
+
* // accelerators: "STRING_VALUE",
|
|
53
|
+
* // creationTime: new Date("TIMESTAMP"),
|
|
54
|
+
* // description: "STRING_VALUE",
|
|
55
|
+
* // definition: "STRING_VALUE",
|
|
56
|
+
* // digest: "STRING_VALUE",
|
|
57
|
+
* // engine: "STRING_VALUE",
|
|
58
|
+
* // main: "STRING_VALUE",
|
|
59
|
+
* // metadata: { // WorkflowMetadata
|
|
60
|
+
* // "<keys>": "STRING_VALUE",
|
|
61
|
+
* // },
|
|
62
|
+
* // parameterTemplate: { // WorkflowParameterTemplate
|
|
63
|
+
* // "<keys>": { // WorkflowParameter
|
|
64
|
+
* // description: "STRING_VALUE",
|
|
65
|
+
* // optional: true || false,
|
|
66
|
+
* // },
|
|
67
|
+
* // },
|
|
68
|
+
* // status: "STRING_VALUE",
|
|
69
|
+
* // statusMessage: "STRING_VALUE",
|
|
70
|
+
* // storageType: "STRING_VALUE",
|
|
71
|
+
* // storageCapacity: Number("int"),
|
|
72
|
+
* // type: "STRING_VALUE",
|
|
73
|
+
* // tags: { // TagMap
|
|
74
|
+
* // "<keys>": "STRING_VALUE",
|
|
75
|
+
* // },
|
|
76
|
+
* // uuid: "STRING_VALUE",
|
|
77
|
+
* // workflowBucketOwnerId: "STRING_VALUE",
|
|
78
|
+
* // };
|
|
79
|
+
*
|
|
80
|
+
* ```
|
|
81
|
+
*
|
|
82
|
+
* @param GetWorkflowVersionCommandInput - {@link GetWorkflowVersionCommandInput}
|
|
83
|
+
* @returns {@link GetWorkflowVersionCommandOutput}
|
|
84
|
+
* @see {@link GetWorkflowVersionCommandInput} for command's `input` shape.
|
|
85
|
+
* @see {@link GetWorkflowVersionCommandOutput} for command's `response` shape.
|
|
86
|
+
* @see {@link OmicsClientResolvedConfig | config} for OmicsClient's `config` shape.
|
|
87
|
+
*
|
|
88
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
89
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
90
|
+
*
|
|
91
|
+
* @throws {@link ConflictException} (client fault)
|
|
92
|
+
* <p>The request cannot be applied to the target resource in its current state.</p>
|
|
93
|
+
*
|
|
94
|
+
* @throws {@link InternalServerException} (server fault)
|
|
95
|
+
* <p>An unexpected error occurred. Try the request again.</p>
|
|
96
|
+
*
|
|
97
|
+
* @throws {@link RequestTimeoutException} (client fault)
|
|
98
|
+
* <p>The request timed out.</p>
|
|
99
|
+
*
|
|
100
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
101
|
+
* <p>The target resource was not found in the current Region.</p>
|
|
102
|
+
*
|
|
103
|
+
* @throws {@link ServiceQuotaExceededException} (client fault)
|
|
104
|
+
* <p>The request exceeds a service quota.</p>
|
|
105
|
+
*
|
|
106
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
107
|
+
* <p>The request was denied due to request throttling.</p>
|
|
108
|
+
*
|
|
109
|
+
* @throws {@link ValidationException} (client fault)
|
|
110
|
+
* <p>The input fails to satisfy the constraints specified by an AWS service.</p>
|
|
111
|
+
*
|
|
112
|
+
* @throws {@link OmicsServiceException}
|
|
113
|
+
* <p>Base exception class for all service exceptions from Omics service.</p>
|
|
114
|
+
*
|
|
115
|
+
*
|
|
116
|
+
* @public
|
|
117
|
+
*/
|
|
118
|
+
export declare class GetWorkflowVersionCommand extends GetWorkflowVersionCommand_base {
|
|
119
|
+
/** @internal type navigation helper, not in runtime. */
|
|
120
|
+
protected static __types: {
|
|
121
|
+
api: {
|
|
122
|
+
input: GetWorkflowVersionRequest;
|
|
123
|
+
output: GetWorkflowVersionResponse;
|
|
124
|
+
};
|
|
125
|
+
sdk: {
|
|
126
|
+
input: GetWorkflowVersionCommandInput;
|
|
127
|
+
output: GetWorkflowVersionCommandOutput;
|
|
128
|
+
};
|
|
129
|
+
};
|
|
130
|
+
}
|
|
@@ -27,9 +27,7 @@ declare const ListAnnotationStoreVersionsCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
* <p>
|
|
31
|
-
* Lists the versions of an annotation store.
|
|
32
|
-
* </p>
|
|
30
|
+
* <p> Lists the versions of an annotation store. </p>
|
|
33
31
|
* @example
|
|
34
32
|
* Use a bare-bones client and the command you need to make an API call.
|
|
35
33
|
* ```javascript
|
|
@@ -27,8 +27,7 @@ declare const ListMultipartReadSetUploadsCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
* <p>Lists multipart read set uploads and for in progress uploads.
|
|
31
|
-
* Once the upload is completed, a read set is created and the upload will no longer be returned in the response.</p>
|
|
30
|
+
* <p>Lists multipart read set uploads and for in progress uploads. Once the upload is completed, a read set is created and the upload will no longer be returned in the response.</p>
|
|
32
31
|
* @example
|
|
33
32
|
* Use a bare-bones client and the command you need to make an API call.
|
|
34
33
|
* ```javascript
|
|
@@ -78,9 +77,7 @@ declare const ListMultipartReadSetUploadsCommand_base: {
|
|
|
78
77
|
* <p>An unexpected error occurred. Try the request again.</p>
|
|
79
78
|
*
|
|
80
79
|
* @throws {@link NotSupportedOperationException} (client fault)
|
|
81
|
-
* <p>
|
|
82
|
-
* The operation is not supported by Amazon Omics, or the API does not exist.
|
|
83
|
-
* </p>
|
|
80
|
+
* <p> The operation is not supported by Amazon Omics, or the API does not exist. </p>
|
|
84
81
|
*
|
|
85
82
|
* @throws {@link RequestTimeoutException} (client fault)
|
|
86
83
|
* <p>The request timed out.</p>
|
|
@@ -76,9 +76,7 @@ declare const ListReadSetUploadPartsCommand_base: {
|
|
|
76
76
|
* <p>An unexpected error occurred. Try the request again.</p>
|
|
77
77
|
*
|
|
78
78
|
* @throws {@link NotSupportedOperationException} (client fault)
|
|
79
|
-
* <p>
|
|
80
|
-
* The operation is not supported by Amazon Omics, or the API does not exist.
|
|
81
|
-
* </p>
|
|
79
|
+
* <p> The operation is not supported by Amazon Omics, or the API does not exist. </p>
|
|
82
80
|
*
|
|
83
81
|
* @throws {@link RequestTimeoutException} (client fault)
|
|
84
82
|
* <p>The request timed out.</p>
|
|
@@ -27,11 +27,7 @@ declare const ListRunsCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
* <p>Retrieves a list of runs.</p>
|
|
31
|
-
* <p>HealthOmics stores a fixed number of runs that are available to the console and API. If
|
|
32
|
-
* the ListRuns response doesn't include specific runs that you expected, you can find run logs
|
|
33
|
-
* for all runs in the CloudWatch logs. For more information about viewing the run logs, see <a href="https://docs.aws.amazon.com/omics/latest/dev/cloudwatch-logs.html">CloudWatch logs</a>
|
|
34
|
-
* in the <i>AWS HealthOmics User Guide</i>.</p>
|
|
30
|
+
* <p>Retrieves a list of runs.</p> <p>Amazon Web Services HealthOmics stores a fixed number of runs that are available to the console and API. If the ListRuns response doesn't include specific runs that you expected, you can find run logs for all runs in the CloudWatch logs. For more information about viewing the run logs, see <a href="https://docs.aws.amazon.com/omics/latest/dev/cloudwatch-logs.html">CloudWatch logs</a> in the <i>Amazon Web Services HealthOmics User Guide</i>.</p>
|
|
35
31
|
* @example
|
|
36
32
|
* Use a bare-bones client and the command you need to make an API call.
|
|
37
33
|
* ```javascript
|
|
@@ -61,6 +57,7 @@ declare const ListRunsCommand_base: {
|
|
|
61
57
|
* // startTime: new Date("TIMESTAMP"),
|
|
62
58
|
* // stopTime: new Date("TIMESTAMP"),
|
|
63
59
|
* // storageType: "STRING_VALUE",
|
|
60
|
+
* // workflowVersionName: "STRING_VALUE",
|
|
64
61
|
* // },
|
|
65
62
|
* // ],
|
|
66
63
|
* // nextToken: "STRING_VALUE",
|
|
@@ -27,8 +27,7 @@ declare const ListSharesCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
* <p>Retrieves the resource shares associated with an account. Use the filter parameter to
|
|
31
|
-
* retrieve a specific subset of the shares.</p>
|
|
30
|
+
* <p>Retrieves the resource shares associated with an account. Use the filter parameter to retrieve a specific subset of the shares.</p>
|
|
32
31
|
* @example
|
|
33
32
|
* Use a bare-bones client and the command you need to make an API call.
|
|
34
33
|
* ```javascript
|
|
@@ -0,0 +1,115 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { ListWorkflowVersionsRequest, ListWorkflowVersionsResponse } from "../models/models_0";
|
|
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 ListWorkflowVersionsCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface ListWorkflowVersionsCommandInput extends ListWorkflowVersionsRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link ListWorkflowVersionsCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface ListWorkflowVersionsCommandOutput extends ListWorkflowVersionsResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const ListWorkflowVersionsCommand_base: {
|
|
25
|
+
new (input: ListWorkflowVersionsCommandInput): import("@smithy/smithy-client").CommandImpl<ListWorkflowVersionsCommandInput, ListWorkflowVersionsCommandOutput, OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (__0_0: ListWorkflowVersionsCommandInput): import("@smithy/smithy-client").CommandImpl<ListWorkflowVersionsCommandInput, ListWorkflowVersionsCommandOutput, OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* <p>Lists the workflow versions for the specified workflow. 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, ListWorkflowVersionsCommand } from "@aws-sdk/client-omics"; // ES Modules import
|
|
35
|
+
* // const { OmicsClient, ListWorkflowVersionsCommand } = require("@aws-sdk/client-omics"); // CommonJS import
|
|
36
|
+
* const client = new OmicsClient(config);
|
|
37
|
+
* const input = { // ListWorkflowVersionsRequest
|
|
38
|
+
* workflowId: "STRING_VALUE", // required
|
|
39
|
+
* type: "STRING_VALUE",
|
|
40
|
+
* workflowOwnerId: "STRING_VALUE",
|
|
41
|
+
* startingToken: "STRING_VALUE",
|
|
42
|
+
* maxResults: Number("int"),
|
|
43
|
+
* };
|
|
44
|
+
* const command = new ListWorkflowVersionsCommand(input);
|
|
45
|
+
* const response = await client.send(command);
|
|
46
|
+
* // { // ListWorkflowVersionsResponse
|
|
47
|
+
* // items: [ // WorkflowVersionList
|
|
48
|
+
* // { // WorkflowVersionListItem
|
|
49
|
+
* // arn: "STRING_VALUE",
|
|
50
|
+
* // workflowId: "STRING_VALUE",
|
|
51
|
+
* // versionName: "STRING_VALUE",
|
|
52
|
+
* // description: "STRING_VALUE",
|
|
53
|
+
* // status: "STRING_VALUE",
|
|
54
|
+
* // type: "STRING_VALUE",
|
|
55
|
+
* // digest: "STRING_VALUE",
|
|
56
|
+
* // creationTime: new Date("TIMESTAMP"),
|
|
57
|
+
* // metadata: { // WorkflowMetadata
|
|
58
|
+
* // "<keys>": "STRING_VALUE",
|
|
59
|
+
* // },
|
|
60
|
+
* // },
|
|
61
|
+
* // ],
|
|
62
|
+
* // nextToken: "STRING_VALUE",
|
|
63
|
+
* // };
|
|
64
|
+
*
|
|
65
|
+
* ```
|
|
66
|
+
*
|
|
67
|
+
* @param ListWorkflowVersionsCommandInput - {@link ListWorkflowVersionsCommandInput}
|
|
68
|
+
* @returns {@link ListWorkflowVersionsCommandOutput}
|
|
69
|
+
* @see {@link ListWorkflowVersionsCommandInput} for command's `input` shape.
|
|
70
|
+
* @see {@link ListWorkflowVersionsCommandOutput} for command's `response` shape.
|
|
71
|
+
* @see {@link OmicsClientResolvedConfig | config} for OmicsClient's `config` shape.
|
|
72
|
+
*
|
|
73
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
74
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
75
|
+
*
|
|
76
|
+
* @throws {@link ConflictException} (client fault)
|
|
77
|
+
* <p>The request cannot be applied to the target resource in its current state.</p>
|
|
78
|
+
*
|
|
79
|
+
* @throws {@link InternalServerException} (server fault)
|
|
80
|
+
* <p>An unexpected error occurred. Try the request again.</p>
|
|
81
|
+
*
|
|
82
|
+
* @throws {@link RequestTimeoutException} (client fault)
|
|
83
|
+
* <p>The request timed out.</p>
|
|
84
|
+
*
|
|
85
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
86
|
+
* <p>The target resource was not found in the current Region.</p>
|
|
87
|
+
*
|
|
88
|
+
* @throws {@link ServiceQuotaExceededException} (client fault)
|
|
89
|
+
* <p>The request exceeds a service quota.</p>
|
|
90
|
+
*
|
|
91
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
92
|
+
* <p>The request was denied due to request throttling.</p>
|
|
93
|
+
*
|
|
94
|
+
* @throws {@link ValidationException} (client fault)
|
|
95
|
+
* <p>The input fails to satisfy the constraints specified by an AWS service.</p>
|
|
96
|
+
*
|
|
97
|
+
* @throws {@link OmicsServiceException}
|
|
98
|
+
* <p>Base exception class for all service exceptions from Omics service.</p>
|
|
99
|
+
*
|
|
100
|
+
*
|
|
101
|
+
* @public
|
|
102
|
+
*/
|
|
103
|
+
export declare class ListWorkflowVersionsCommand extends ListWorkflowVersionsCommand_base {
|
|
104
|
+
/** @internal type navigation helper, not in runtime. */
|
|
105
|
+
protected static __types: {
|
|
106
|
+
api: {
|
|
107
|
+
input: ListWorkflowVersionsRequest;
|
|
108
|
+
output: ListWorkflowVersionsResponse;
|
|
109
|
+
};
|
|
110
|
+
sdk: {
|
|
111
|
+
input: ListWorkflowVersionsCommandInput;
|
|
112
|
+
output: ListWorkflowVersionsCommandOutput;
|
|
113
|
+
};
|
|
114
|
+
};
|
|
115
|
+
}
|
|
@@ -61,9 +61,7 @@ declare const PutS3AccessPolicyCommand_base: {
|
|
|
61
61
|
* <p>An unexpected error occurred. Try the request again.</p>
|
|
62
62
|
*
|
|
63
63
|
* @throws {@link NotSupportedOperationException} (client fault)
|
|
64
|
-
* <p>
|
|
65
|
-
* The operation is not supported by Amazon Omics, or the API does not exist.
|
|
66
|
-
* </p>
|
|
64
|
+
* <p> The operation is not supported by Amazon Omics, or the API does not exist. </p>
|
|
67
65
|
*
|
|
68
66
|
* @throws {@link RequestTimeoutException} (client fault)
|
|
69
67
|
* <p>The request timed out.</p>
|
|
@@ -27,8 +27,7 @@ declare const StartReadSetActivationJobCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
* <p>Activates an archived read set. To reduce storage charges, Amazon Omics archives unused read
|
|
31
|
-
* sets after 30 days.</p>
|
|
30
|
+
* <p>Activates an archived read set. To reduce storage charges, Amazon Omics archives unused read sets after 30 days.</p>
|
|
32
31
|
* @example
|
|
33
32
|
* Use a bare-bones client and the command you need to make an API call.
|
|
34
33
|
* ```javascript
|
|
@@ -27,18 +27,7 @@ declare const StartRunCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
* <p>Starts a
|
|
31
|
-
* remaining parameters are copied from the previous run.</p>
|
|
32
|
-
* <p>StartRun will not support re-run for a workflow that is shared with you.</p>
|
|
33
|
-
* <p>HealthOmics stores a fixed number of runs that are available to the console and API.
|
|
34
|
-
* By default, HealthOmics doesn't any remove any runs. If HealthOmics reaches the maximum
|
|
35
|
-
* number of runs, you must manually remove runs. To have older runs removed automatically,
|
|
36
|
-
* set the retention mode to <code>REMOVE</code>.</p>
|
|
37
|
-
* <p>By default, the run uses STATIC storage. For STATIC storage, set the <code>storageCapacity</code> field.
|
|
38
|
-
* You can set the storage type to DYNAMIC. You do not set <code>storageCapacity</code>,
|
|
39
|
-
* because HealthOmics dynamically scales the storage up or down as required.
|
|
40
|
-
* For more information about static and dynamic storage, see <a href="https://docs.aws.amazon.com/omics/latest/dev/Using-workflows.html">Running workflows</a>
|
|
41
|
-
* in the <i>AWS HealthOmics User Guide</i>.</p>
|
|
30
|
+
* <p>Starts a new run or duplicates an existing run.</p> <p>For a new run, specify a unique <code>requestId</code>, the <code>workflowId</code>, and a role ARN. If you're using static run storage (the default), specify the required <code>storageCapacity</code>.</p> <p>You duplicate a run by specifing a unique <code>requestId</code>, the <code>runID</code> of the run to duplicate, and a role ARN.</p> <p>For more information about the optional parameters in the StartRun request, see <a href="https://docs.aws.amazon.com/omics/latest/dev/starting-a-run.html">Starting a run</a> in the <i>Amazon Web Services HealthOmics User Guide</i>.</p>
|
|
42
31
|
* @example
|
|
43
32
|
* Use a bare-bones client and the command you need to make an API call.
|
|
44
33
|
* ```javascript
|
|
@@ -66,6 +55,7 @@ declare const StartRunCommand_base: {
|
|
|
66
55
|
* retentionMode: "STRING_VALUE",
|
|
67
56
|
* storageType: "STRING_VALUE",
|
|
68
57
|
* workflowOwnerId: "STRING_VALUE",
|
|
58
|
+
* workflowVersionName: "STRING_VALUE",
|
|
69
59
|
* };
|
|
70
60
|
* const command = new StartRunCommand(input);
|
|
71
61
|
* const response = await client.send(command);
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import { StartVariantImportRequest, StartVariantImportResponse } from "../models/
|
|
3
|
+
import { StartVariantImportRequest, StartVariantImportResponse } from "../models/models_1";
|
|
4
4
|
import { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient";
|
|
5
5
|
/**
|
|
6
6
|
* @public
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import { UntagResourceRequest, UntagResourceResponse } from "../models/
|
|
3
|
+
import { UntagResourceRequest, UntagResourceResponse } from "../models/models_1";
|
|
4
4
|
import { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient";
|
|
5
5
|
/**
|
|
6
6
|
* @public
|
|
@@ -27,9 +27,7 @@ declare const UpdateAnnotationStoreVersionCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
* <p>
|
|
31
|
-
* Updates the description of an annotation store version.
|
|
32
|
-
* </p>
|
|
30
|
+
* <p> Updates the description of an annotation store version. </p>
|
|
33
31
|
* @example
|
|
34
32
|
* Use a bare-bones client and the command you need to make an API call.
|
|
35
33
|
* ```javascript
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import { UpdateVariantStoreRequest, UpdateVariantStoreResponse } from "../models/
|
|
3
|
+
import { UpdateVariantStoreRequest, UpdateVariantStoreResponse } from "../models/models_1";
|
|
4
4
|
import { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient";
|
|
5
5
|
/**
|
|
6
6
|
* @public
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import { UpdateWorkflowRequest } from "../models/
|
|
3
|
+
import { UpdateWorkflowRequest } from "../models/models_1";
|
|
4
4
|
import { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient";
|
|
5
5
|
/**
|
|
6
6
|
* @public
|
|
@@ -27,7 +27,7 @@ declare const UpdateWorkflowCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
* <p>Updates a workflow.</p>
|
|
30
|
+
* <p>Updates information about a workflow. For more information, see <a href="https://docs.aws.amazon.com/omics/latest/dev/update-private-workflow.html">Update a private workflow</a> in the Amazon Web Services HealthOmics User Guide.</p>
|
|
31
31
|
* @example
|
|
32
32
|
* Use a bare-bones client and the command you need to make an API call.
|
|
33
33
|
* ```javascript
|
|
@@ -38,6 +38,8 @@ declare const UpdateWorkflowCommand_base: {
|
|
|
38
38
|
* id: "STRING_VALUE", // required
|
|
39
39
|
* name: "STRING_VALUE",
|
|
40
40
|
* description: "STRING_VALUE",
|
|
41
|
+
* storageType: "STRING_VALUE",
|
|
42
|
+
* storageCapacity: Number("int"),
|
|
41
43
|
* };
|
|
42
44
|
* const command = new UpdateWorkflowCommand(input);
|
|
43
45
|
* const response = await client.send(command);
|