@aws-sdk/client-omics 3.389.0 → 3.391.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 +80 -0
- package/dist-cjs/Omics.js +20 -0
- package/dist-cjs/commands/AcceptShareCommand.js +46 -0
- package/dist-cjs/commands/CreateAnnotationStoreVersionCommand.js +46 -0
- package/dist-cjs/commands/CreateShareCommand.js +46 -0
- package/dist-cjs/commands/DeleteAnnotationStoreVersionsCommand.js +46 -0
- package/dist-cjs/commands/DeleteShareCommand.js +46 -0
- package/dist-cjs/commands/GetAnnotationStoreVersionCommand.js +46 -0
- package/dist-cjs/commands/GetShareCommand.js +46 -0
- package/dist-cjs/commands/ListAnnotationStoreVersionsCommand.js +46 -0
- package/dist-cjs/commands/ListSharesCommand.js +46 -0
- package/dist-cjs/commands/UpdateAnnotationStoreVersionCommand.js +46 -0
- package/dist-cjs/commands/index.js +10 -0
- package/dist-cjs/models/models_0.js +42 -14
- package/dist-cjs/pagination/ListAnnotationStoreVersionsPaginator.js +29 -0
- package/dist-cjs/pagination/ListSharesPaginator.js +29 -0
- package/dist-cjs/pagination/index.js +2 -0
- package/dist-cjs/protocols/Aws_restJson1.js +909 -38
- package/dist-cjs/waiters/index.js +2 -0
- package/dist-cjs/waiters/waitForAnnotationStoreVersionCreated.js +63 -0
- package/dist-cjs/waiters/waitForAnnotationStoreVersionDeleted.js +48 -0
- package/dist-es/Omics.js +20 -0
- package/dist-es/commands/AcceptShareCommand.js +42 -0
- package/dist-es/commands/CreateAnnotationStoreVersionCommand.js +42 -0
- package/dist-es/commands/CreateShareCommand.js +42 -0
- package/dist-es/commands/DeleteAnnotationStoreVersionsCommand.js +42 -0
- package/dist-es/commands/DeleteShareCommand.js +42 -0
- package/dist-es/commands/GetAnnotationStoreVersionCommand.js +42 -0
- package/dist-es/commands/GetShareCommand.js +42 -0
- package/dist-es/commands/ListAnnotationStoreVersionsCommand.js +42 -0
- package/dist-es/commands/ListSharesCommand.js +42 -0
- package/dist-es/commands/UpdateAnnotationStoreVersionCommand.js +42 -0
- package/dist-es/commands/index.js +10 -0
- package/dist-es/models/models_0.js +39 -12
- package/dist-es/pagination/ListAnnotationStoreVersionsPaginator.js +25 -0
- package/dist-es/pagination/ListSharesPaginator.js +25 -0
- package/dist-es/pagination/index.js +2 -0
- package/dist-es/protocols/Aws_restJson1.js +884 -34
- package/dist-es/waiters/index.js +2 -0
- package/dist-es/waiters/waitForAnnotationStoreVersionCreated.js +58 -0
- package/dist-es/waiters/waitForAnnotationStoreVersionDeleted.js +43 -0
- package/dist-types/Omics.d.ts +70 -0
- package/dist-types/OmicsClient.d.ts +12 -2
- package/dist-types/commands/AcceptShareCommand.d.ts +96 -0
- package/dist-types/commands/CreateAnnotationStoreCommand.d.ts +2 -0
- package/dist-types/commands/CreateAnnotationStoreVersionCommand.d.ts +132 -0
- package/dist-types/commands/CreateShareCommand.d.ts +100 -0
- package/dist-types/commands/DeleteAnnotationStoreVersionsCommand.d.ts +102 -0
- package/dist-types/commands/DeleteShareCommand.d.ts +96 -0
- package/dist-types/commands/GetAnnotationImportJobCommand.d.ts +1 -0
- package/dist-types/commands/GetAnnotationStoreCommand.d.ts +1 -0
- package/dist-types/commands/GetAnnotationStoreVersionCommand.d.ts +117 -0
- package/dist-types/commands/GetShareCommand.d.ts +106 -0
- package/dist-types/commands/ListAnnotationImportJobsCommand.d.ts +1 -0
- package/dist-types/commands/ListAnnotationStoreVersionsCommand.d.ts +110 -0
- package/dist-types/commands/ListSharesCommand.d.ts +119 -0
- package/dist-types/commands/StartAnnotationImportJobCommand.d.ts +1 -0
- package/dist-types/commands/UpdateAnnotationStoreVersionCommand.d.ts +99 -0
- package/dist-types/commands/index.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +1011 -48
- package/dist-types/pagination/ListAnnotationStoreVersionsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListSharesPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +2 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +90 -0
- package/dist-types/ts3.4/Omics.d.ts +170 -0
- package/dist-types/ts3.4/OmicsClient.d.ts +60 -0
- package/dist-types/ts3.4/commands/AcceptShareCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/CreateAnnotationStoreVersionCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/CreateShareCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/DeleteAnnotationStoreVersionsCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/DeleteShareCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/GetAnnotationStoreVersionCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/GetShareCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/ListAnnotationStoreVersionsCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/ListSharesCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/UpdateAnnotationStoreVersionCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/index.d.ts +10 -0
- package/dist-types/ts3.4/models/models_0.d.ts +197 -5
- package/dist-types/ts3.4/pagination/ListAnnotationStoreVersionsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListSharesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +2 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +120 -0
- package/dist-types/ts3.4/waiters/index.d.ts +2 -0
- package/dist-types/ts3.4/waiters/waitForAnnotationStoreVersionCreated.d.ts +11 -0
- package/dist-types/ts3.4/waiters/waitForAnnotationStoreVersionDeleted.d.ts +11 -0
- package/dist-types/waiters/index.d.ts +2 -0
- package/dist-types/waiters/waitForAnnotationStoreVersionCreated.d.ts +14 -0
- package/dist-types/waiters/waitForAnnotationStoreVersionDeleted.d.ts +14 -0
- package/package.json +30 -30
|
@@ -48,6 +48,7 @@ export interface ListAnnotationImportJobsCommandOutput extends ListAnnotationImp
|
|
|
48
48
|
* // { // AnnotationImportJobItem
|
|
49
49
|
* // id: "STRING_VALUE", // required
|
|
50
50
|
* // destinationName: "STRING_VALUE", // required
|
|
51
|
+
* // versionName: "STRING_VALUE", // required
|
|
51
52
|
* // roleArn: "STRING_VALUE", // required
|
|
52
53
|
* // status: "STRING_VALUE", // required
|
|
53
54
|
* // creationTime: new Date("TIMESTAMP"), // required
|
|
@@ -0,0 +1,110 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
|
|
4
|
+
import { ListAnnotationStoreVersionsRequest, ListAnnotationStoreVersionsResponse } from "../models/models_0";
|
|
5
|
+
import { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient";
|
|
6
|
+
/**
|
|
7
|
+
* @public
|
|
8
|
+
*/
|
|
9
|
+
export { __MetadataBearer, $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link ListAnnotationStoreVersionsCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface ListAnnotationStoreVersionsCommandInput extends ListAnnotationStoreVersionsRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link ListAnnotationStoreVersionsCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface ListAnnotationStoreVersionsCommandOutput extends ListAnnotationStoreVersionsResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
/**
|
|
25
|
+
* @public
|
|
26
|
+
* <p>
|
|
27
|
+
* Lists the versions of an annotation store.
|
|
28
|
+
* </p>
|
|
29
|
+
* @example
|
|
30
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
31
|
+
* ```javascript
|
|
32
|
+
* import { OmicsClient, ListAnnotationStoreVersionsCommand } from "@aws-sdk/client-omics"; // ES Modules import
|
|
33
|
+
* // const { OmicsClient, ListAnnotationStoreVersionsCommand } = require("@aws-sdk/client-omics"); // CommonJS import
|
|
34
|
+
* const client = new OmicsClient(config);
|
|
35
|
+
* const input = { // ListAnnotationStoreVersionsRequest
|
|
36
|
+
* name: "STRING_VALUE", // required
|
|
37
|
+
* maxResults: Number("int"),
|
|
38
|
+
* nextToken: "STRING_VALUE",
|
|
39
|
+
* filter: { // ListAnnotationStoreVersionsFilter
|
|
40
|
+
* status: "STRING_VALUE",
|
|
41
|
+
* },
|
|
42
|
+
* };
|
|
43
|
+
* const command = new ListAnnotationStoreVersionsCommand(input);
|
|
44
|
+
* const response = await client.send(command);
|
|
45
|
+
* // { // ListAnnotationStoreVersionsResponse
|
|
46
|
+
* // annotationStoreVersions: [ // AnnotationStoreVersionItems
|
|
47
|
+
* // { // AnnotationStoreVersionItem
|
|
48
|
+
* // storeId: "STRING_VALUE", // required
|
|
49
|
+
* // id: "STRING_VALUE", // required
|
|
50
|
+
* // status: "STRING_VALUE", // required
|
|
51
|
+
* // versionArn: "STRING_VALUE", // required
|
|
52
|
+
* // name: "STRING_VALUE", // required
|
|
53
|
+
* // versionName: "STRING_VALUE", // required
|
|
54
|
+
* // description: "STRING_VALUE", // required
|
|
55
|
+
* // creationTime: new Date("TIMESTAMP"), // required
|
|
56
|
+
* // updateTime: new Date("TIMESTAMP"), // required
|
|
57
|
+
* // statusMessage: "STRING_VALUE", // required
|
|
58
|
+
* // versionSizeBytes: Number("long"), // required
|
|
59
|
+
* // },
|
|
60
|
+
* // ],
|
|
61
|
+
* // nextToken: "STRING_VALUE",
|
|
62
|
+
* // };
|
|
63
|
+
*
|
|
64
|
+
* ```
|
|
65
|
+
*
|
|
66
|
+
* @param ListAnnotationStoreVersionsCommandInput - {@link ListAnnotationStoreVersionsCommandInput}
|
|
67
|
+
* @returns {@link ListAnnotationStoreVersionsCommandOutput}
|
|
68
|
+
* @see {@link ListAnnotationStoreVersionsCommandInput} for command's `input` shape.
|
|
69
|
+
* @see {@link ListAnnotationStoreVersionsCommandOutput} for command's `response` shape.
|
|
70
|
+
* @see {@link OmicsClientResolvedConfig | config} for OmicsClient's `config` shape.
|
|
71
|
+
*
|
|
72
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
73
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
74
|
+
*
|
|
75
|
+
* @throws {@link InternalServerException} (server fault)
|
|
76
|
+
* <p>An unexpected error occurred. Try the request again.</p>
|
|
77
|
+
*
|
|
78
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
79
|
+
* <p>The target resource was not found in the current Region.</p>
|
|
80
|
+
*
|
|
81
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
82
|
+
* <p>The request was denied due to request throttling.</p>
|
|
83
|
+
*
|
|
84
|
+
* @throws {@link ValidationException} (client fault)
|
|
85
|
+
* <p>The input fails to satisfy the constraints specified by an AWS service.</p>
|
|
86
|
+
*
|
|
87
|
+
* @throws {@link OmicsServiceException}
|
|
88
|
+
* <p>Base exception class for all service exceptions from Omics service.</p>
|
|
89
|
+
*
|
|
90
|
+
*/
|
|
91
|
+
export declare class ListAnnotationStoreVersionsCommand extends $Command<ListAnnotationStoreVersionsCommandInput, ListAnnotationStoreVersionsCommandOutput, OmicsClientResolvedConfig> {
|
|
92
|
+
readonly input: ListAnnotationStoreVersionsCommandInput;
|
|
93
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
94
|
+
/**
|
|
95
|
+
* @public
|
|
96
|
+
*/
|
|
97
|
+
constructor(input: ListAnnotationStoreVersionsCommandInput);
|
|
98
|
+
/**
|
|
99
|
+
* @internal
|
|
100
|
+
*/
|
|
101
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: OmicsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListAnnotationStoreVersionsCommandInput, ListAnnotationStoreVersionsCommandOutput>;
|
|
102
|
+
/**
|
|
103
|
+
* @internal
|
|
104
|
+
*/
|
|
105
|
+
private serialize;
|
|
106
|
+
/**
|
|
107
|
+
* @internal
|
|
108
|
+
*/
|
|
109
|
+
private deserialize;
|
|
110
|
+
}
|
|
@@ -0,0 +1,119 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
|
|
4
|
+
import { ListSharesRequest, ListSharesResponse } from "../models/models_0";
|
|
5
|
+
import { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient";
|
|
6
|
+
/**
|
|
7
|
+
* @public
|
|
8
|
+
*/
|
|
9
|
+
export { __MetadataBearer, $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link ListSharesCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface ListSharesCommandInput extends ListSharesRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link ListSharesCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface ListSharesCommandOutput extends ListSharesResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
/**
|
|
25
|
+
* @public
|
|
26
|
+
* <p>
|
|
27
|
+
* Lists all shares associated with an account.
|
|
28
|
+
* </p>
|
|
29
|
+
* @example
|
|
30
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
31
|
+
* ```javascript
|
|
32
|
+
* import { OmicsClient, ListSharesCommand } from "@aws-sdk/client-omics"; // ES Modules import
|
|
33
|
+
* // const { OmicsClient, ListSharesCommand } = require("@aws-sdk/client-omics"); // CommonJS import
|
|
34
|
+
* const client = new OmicsClient(config);
|
|
35
|
+
* const input = { // ListSharesRequest
|
|
36
|
+
* resourceOwner: "STRING_VALUE", // required
|
|
37
|
+
* filter: { // Filter
|
|
38
|
+
* resourceArns: [ // ArnList
|
|
39
|
+
* "STRING_VALUE",
|
|
40
|
+
* ],
|
|
41
|
+
* status: [ // StatusList
|
|
42
|
+
* "STRING_VALUE",
|
|
43
|
+
* ],
|
|
44
|
+
* },
|
|
45
|
+
* nextToken: "STRING_VALUE",
|
|
46
|
+
* maxResults: Number("int"),
|
|
47
|
+
* };
|
|
48
|
+
* const command = new ListSharesCommand(input);
|
|
49
|
+
* const response = await client.send(command);
|
|
50
|
+
* // { // ListSharesResponse
|
|
51
|
+
* // shares: [ // ShareDetailsList // required
|
|
52
|
+
* // { // ShareDetails
|
|
53
|
+
* // shareId: "STRING_VALUE",
|
|
54
|
+
* // resourceArn: "STRING_VALUE",
|
|
55
|
+
* // principalSubscriber: "STRING_VALUE",
|
|
56
|
+
* // ownerId: "STRING_VALUE",
|
|
57
|
+
* // status: "STRING_VALUE",
|
|
58
|
+
* // statusMessage: "STRING_VALUE",
|
|
59
|
+
* // shareName: "STRING_VALUE",
|
|
60
|
+
* // creationTime: new Date("TIMESTAMP"),
|
|
61
|
+
* // updateTime: new Date("TIMESTAMP"),
|
|
62
|
+
* // },
|
|
63
|
+
* // ],
|
|
64
|
+
* // nextToken: "STRING_VALUE",
|
|
65
|
+
* // };
|
|
66
|
+
*
|
|
67
|
+
* ```
|
|
68
|
+
*
|
|
69
|
+
* @param ListSharesCommandInput - {@link ListSharesCommandInput}
|
|
70
|
+
* @returns {@link ListSharesCommandOutput}
|
|
71
|
+
* @see {@link ListSharesCommandInput} for command's `input` shape.
|
|
72
|
+
* @see {@link ListSharesCommandOutput} for command's `response` shape.
|
|
73
|
+
* @see {@link OmicsClientResolvedConfig | config} for OmicsClient's `config` shape.
|
|
74
|
+
*
|
|
75
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
76
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
77
|
+
*
|
|
78
|
+
* @throws {@link ConflictException} (client fault)
|
|
79
|
+
* <p>The request cannot be applied to the target resource in its current state.</p>
|
|
80
|
+
*
|
|
81
|
+
* @throws {@link InternalServerException} (server fault)
|
|
82
|
+
* <p>An unexpected error occurred. Try the request again.</p>
|
|
83
|
+
*
|
|
84
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
85
|
+
* <p>The target resource was not found in the current Region.</p>
|
|
86
|
+
*
|
|
87
|
+
* @throws {@link ServiceQuotaExceededException} (client fault)
|
|
88
|
+
* <p>The request exceeds a service quota.</p>
|
|
89
|
+
*
|
|
90
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
91
|
+
* <p>The request was denied due to request throttling.</p>
|
|
92
|
+
*
|
|
93
|
+
* @throws {@link ValidationException} (client fault)
|
|
94
|
+
* <p>The input fails to satisfy the constraints specified by an AWS service.</p>
|
|
95
|
+
*
|
|
96
|
+
* @throws {@link OmicsServiceException}
|
|
97
|
+
* <p>Base exception class for all service exceptions from Omics service.</p>
|
|
98
|
+
*
|
|
99
|
+
*/
|
|
100
|
+
export declare class ListSharesCommand extends $Command<ListSharesCommandInput, ListSharesCommandOutput, OmicsClientResolvedConfig> {
|
|
101
|
+
readonly input: ListSharesCommandInput;
|
|
102
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
103
|
+
/**
|
|
104
|
+
* @public
|
|
105
|
+
*/
|
|
106
|
+
constructor(input: ListSharesCommandInput);
|
|
107
|
+
/**
|
|
108
|
+
* @internal
|
|
109
|
+
*/
|
|
110
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: OmicsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListSharesCommandInput, ListSharesCommandOutput>;
|
|
111
|
+
/**
|
|
112
|
+
* @internal
|
|
113
|
+
*/
|
|
114
|
+
private serialize;
|
|
115
|
+
/**
|
|
116
|
+
* @internal
|
|
117
|
+
*/
|
|
118
|
+
private deserialize;
|
|
119
|
+
}
|
|
@@ -38,6 +38,7 @@ export interface StartAnnotationImportJobCommandOutput extends StartAnnotationIm
|
|
|
38
38
|
* source: "STRING_VALUE", // required
|
|
39
39
|
* },
|
|
40
40
|
* ],
|
|
41
|
+
* versionName: "STRING_VALUE",
|
|
41
42
|
* formatOptions: { // FormatOptions Union: only one key present
|
|
42
43
|
* tsvOptions: { // TsvOptions
|
|
43
44
|
* readOptions: { // ReadOptions
|
|
@@ -0,0 +1,99 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
|
|
4
|
+
import { UpdateAnnotationStoreVersionRequest, UpdateAnnotationStoreVersionResponse } from "../models/models_0";
|
|
5
|
+
import { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient";
|
|
6
|
+
/**
|
|
7
|
+
* @public
|
|
8
|
+
*/
|
|
9
|
+
export { __MetadataBearer, $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link UpdateAnnotationStoreVersionCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface UpdateAnnotationStoreVersionCommandInput extends UpdateAnnotationStoreVersionRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link UpdateAnnotationStoreVersionCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface UpdateAnnotationStoreVersionCommandOutput extends UpdateAnnotationStoreVersionResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
/**
|
|
25
|
+
* @public
|
|
26
|
+
* <p>
|
|
27
|
+
* Updates the description of an annotation store version.
|
|
28
|
+
* </p>
|
|
29
|
+
* @example
|
|
30
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
31
|
+
* ```javascript
|
|
32
|
+
* import { OmicsClient, UpdateAnnotationStoreVersionCommand } from "@aws-sdk/client-omics"; // ES Modules import
|
|
33
|
+
* // const { OmicsClient, UpdateAnnotationStoreVersionCommand } = require("@aws-sdk/client-omics"); // CommonJS import
|
|
34
|
+
* const client = new OmicsClient(config);
|
|
35
|
+
* const input = { // UpdateAnnotationStoreVersionRequest
|
|
36
|
+
* name: "STRING_VALUE", // required
|
|
37
|
+
* versionName: "STRING_VALUE", // required
|
|
38
|
+
* description: "STRING_VALUE",
|
|
39
|
+
* };
|
|
40
|
+
* const command = new UpdateAnnotationStoreVersionCommand(input);
|
|
41
|
+
* const response = await client.send(command);
|
|
42
|
+
* // { // UpdateAnnotationStoreVersionResponse
|
|
43
|
+
* // storeId: "STRING_VALUE", // required
|
|
44
|
+
* // id: "STRING_VALUE", // required
|
|
45
|
+
* // status: "STRING_VALUE", // required
|
|
46
|
+
* // name: "STRING_VALUE", // required
|
|
47
|
+
* // versionName: "STRING_VALUE", // required
|
|
48
|
+
* // description: "STRING_VALUE", // required
|
|
49
|
+
* // creationTime: new Date("TIMESTAMP"), // required
|
|
50
|
+
* // updateTime: new Date("TIMESTAMP"), // required
|
|
51
|
+
* // };
|
|
52
|
+
*
|
|
53
|
+
* ```
|
|
54
|
+
*
|
|
55
|
+
* @param UpdateAnnotationStoreVersionCommandInput - {@link UpdateAnnotationStoreVersionCommandInput}
|
|
56
|
+
* @returns {@link UpdateAnnotationStoreVersionCommandOutput}
|
|
57
|
+
* @see {@link UpdateAnnotationStoreVersionCommandInput} for command's `input` shape.
|
|
58
|
+
* @see {@link UpdateAnnotationStoreVersionCommandOutput} for command's `response` shape.
|
|
59
|
+
* @see {@link OmicsClientResolvedConfig | config} for OmicsClient's `config` shape.
|
|
60
|
+
*
|
|
61
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
62
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
63
|
+
*
|
|
64
|
+
* @throws {@link InternalServerException} (server fault)
|
|
65
|
+
* <p>An unexpected error occurred. Try the request again.</p>
|
|
66
|
+
*
|
|
67
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
68
|
+
* <p>The target resource was not found in the current Region.</p>
|
|
69
|
+
*
|
|
70
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
71
|
+
* <p>The request was denied due to request throttling.</p>
|
|
72
|
+
*
|
|
73
|
+
* @throws {@link ValidationException} (client fault)
|
|
74
|
+
* <p>The input fails to satisfy the constraints specified by an AWS service.</p>
|
|
75
|
+
*
|
|
76
|
+
* @throws {@link OmicsServiceException}
|
|
77
|
+
* <p>Base exception class for all service exceptions from Omics service.</p>
|
|
78
|
+
*
|
|
79
|
+
*/
|
|
80
|
+
export declare class UpdateAnnotationStoreVersionCommand extends $Command<UpdateAnnotationStoreVersionCommandInput, UpdateAnnotationStoreVersionCommandOutput, OmicsClientResolvedConfig> {
|
|
81
|
+
readonly input: UpdateAnnotationStoreVersionCommandInput;
|
|
82
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
83
|
+
/**
|
|
84
|
+
* @public
|
|
85
|
+
*/
|
|
86
|
+
constructor(input: UpdateAnnotationStoreVersionCommandInput);
|
|
87
|
+
/**
|
|
88
|
+
* @internal
|
|
89
|
+
*/
|
|
90
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: OmicsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateAnnotationStoreVersionCommandInput, UpdateAnnotationStoreVersionCommandOutput>;
|
|
91
|
+
/**
|
|
92
|
+
* @internal
|
|
93
|
+
*/
|
|
94
|
+
private serialize;
|
|
95
|
+
/**
|
|
96
|
+
* @internal
|
|
97
|
+
*/
|
|
98
|
+
private deserialize;
|
|
99
|
+
}
|
|
@@ -1,26 +1,32 @@
|
|
|
1
1
|
export * from "./AbortMultipartReadSetUploadCommand";
|
|
2
|
+
export * from "./AcceptShareCommand";
|
|
2
3
|
export * from "./BatchDeleteReadSetCommand";
|
|
3
4
|
export * from "./CancelAnnotationImportJobCommand";
|
|
4
5
|
export * from "./CancelRunCommand";
|
|
5
6
|
export * from "./CancelVariantImportJobCommand";
|
|
6
7
|
export * from "./CompleteMultipartReadSetUploadCommand";
|
|
7
8
|
export * from "./CreateAnnotationStoreCommand";
|
|
9
|
+
export * from "./CreateAnnotationStoreVersionCommand";
|
|
8
10
|
export * from "./CreateMultipartReadSetUploadCommand";
|
|
9
11
|
export * from "./CreateReferenceStoreCommand";
|
|
10
12
|
export * from "./CreateRunGroupCommand";
|
|
11
13
|
export * from "./CreateSequenceStoreCommand";
|
|
14
|
+
export * from "./CreateShareCommand";
|
|
12
15
|
export * from "./CreateVariantStoreCommand";
|
|
13
16
|
export * from "./CreateWorkflowCommand";
|
|
14
17
|
export * from "./DeleteAnnotationStoreCommand";
|
|
18
|
+
export * from "./DeleteAnnotationStoreVersionsCommand";
|
|
15
19
|
export * from "./DeleteReferenceCommand";
|
|
16
20
|
export * from "./DeleteReferenceStoreCommand";
|
|
17
21
|
export * from "./DeleteRunCommand";
|
|
18
22
|
export * from "./DeleteRunGroupCommand";
|
|
19
23
|
export * from "./DeleteSequenceStoreCommand";
|
|
24
|
+
export * from "./DeleteShareCommand";
|
|
20
25
|
export * from "./DeleteVariantStoreCommand";
|
|
21
26
|
export * from "./DeleteWorkflowCommand";
|
|
22
27
|
export * from "./GetAnnotationImportJobCommand";
|
|
23
28
|
export * from "./GetAnnotationStoreCommand";
|
|
29
|
+
export * from "./GetAnnotationStoreVersionCommand";
|
|
24
30
|
export * from "./GetReadSetActivationJobCommand";
|
|
25
31
|
export * from "./GetReadSetCommand";
|
|
26
32
|
export * from "./GetReadSetExportJobCommand";
|
|
@@ -34,10 +40,12 @@ export * from "./GetRunCommand";
|
|
|
34
40
|
export * from "./GetRunGroupCommand";
|
|
35
41
|
export * from "./GetRunTaskCommand";
|
|
36
42
|
export * from "./GetSequenceStoreCommand";
|
|
43
|
+
export * from "./GetShareCommand";
|
|
37
44
|
export * from "./GetVariantImportJobCommand";
|
|
38
45
|
export * from "./GetVariantStoreCommand";
|
|
39
46
|
export * from "./GetWorkflowCommand";
|
|
40
47
|
export * from "./ListAnnotationImportJobsCommand";
|
|
48
|
+
export * from "./ListAnnotationStoreVersionsCommand";
|
|
41
49
|
export * from "./ListAnnotationStoresCommand";
|
|
42
50
|
export * from "./ListMultipartReadSetUploadsCommand";
|
|
43
51
|
export * from "./ListReadSetActivationJobsCommand";
|
|
@@ -52,6 +60,7 @@ export * from "./ListRunGroupsCommand";
|
|
|
52
60
|
export * from "./ListRunTasksCommand";
|
|
53
61
|
export * from "./ListRunsCommand";
|
|
54
62
|
export * from "./ListSequenceStoresCommand";
|
|
63
|
+
export * from "./ListSharesCommand";
|
|
55
64
|
export * from "./ListTagsForResourceCommand";
|
|
56
65
|
export * from "./ListVariantImportJobsCommand";
|
|
57
66
|
export * from "./ListVariantStoresCommand";
|
|
@@ -66,6 +75,7 @@ export * from "./StartVariantImportJobCommand";
|
|
|
66
75
|
export * from "./TagResourceCommand";
|
|
67
76
|
export * from "./UntagResourceCommand";
|
|
68
77
|
export * from "./UpdateAnnotationStoreCommand";
|
|
78
|
+
export * from "./UpdateAnnotationStoreVersionCommand";
|
|
69
79
|
export * from "./UpdateRunGroupCommand";
|
|
70
80
|
export * from "./UpdateVariantStoreCommand";
|
|
71
81
|
export * from "./UpdateWorkflowCommand";
|