@aws-sdk/client-omics 3.696.0 → 3.699.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 +72 -0
- package/dist-cjs/index.js +575 -5
- package/dist-es/Omics.js +18 -0
- package/dist-es/commands/CreateRunCacheCommand.js +22 -0
- package/dist-es/commands/DeleteRunCacheCommand.js +22 -0
- package/dist-es/commands/DeleteS3AccessPolicyCommand.js +22 -0
- package/dist-es/commands/GetRunCacheCommand.js +22 -0
- package/dist-es/commands/GetS3AccessPolicyCommand.js +22 -0
- package/dist-es/commands/ListRunCachesCommand.js +22 -0
- package/dist-es/commands/PutS3AccessPolicyCommand.js +22 -0
- package/dist-es/commands/UpdateRunCacheCommand.js +22 -0
- package/dist-es/commands/UpdateSequenceStoreCommand.js +22 -0
- package/dist-es/commands/index.js +9 -0
- package/dist-es/models/models_0.js +20 -0
- package/dist-es/pagination/ListRunCachesPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_restJson1.js +379 -2
- package/dist-types/Omics.d.ts +64 -0
- package/dist-types/OmicsClient.d.ts +11 -2
- package/dist-types/commands/CreateRunCacheCommand.d.ts +112 -0
- package/dist-types/commands/CreateSequenceStoreCommand.d.ts +16 -0
- package/dist-types/commands/DeleteRunCacheCommand.d.ts +98 -0
- package/dist-types/commands/DeleteS3AccessPolicyCommand.d.ts +92 -0
- package/dist-types/commands/GetRunCacheCommand.d.ts +107 -0
- package/dist-types/commands/GetRunCommand.d.ts +7 -0
- package/dist-types/commands/GetRunTaskCommand.d.ts +2 -0
- package/dist-types/commands/GetS3AccessPolicyCommand.d.ts +101 -0
- package/dist-types/commands/GetSequenceStoreCommand.d.ts +7 -0
- package/dist-types/commands/ListRunCachesCommand.d.ts +107 -0
- package/dist-types/commands/ListRunTasksCommand.d.ts +2 -0
- package/dist-types/commands/ListRunsCommand.d.ts +4 -0
- package/dist-types/commands/ListSequenceStoresCommand.d.ts +6 -0
- package/dist-types/commands/PutS3AccessPolicyCommand.d.ts +97 -0
- package/dist-types/commands/StartRunCommand.d.ts +6 -3
- package/dist-types/commands/UpdateRunCacheCommand.d.ts +96 -0
- package/dist-types/commands/UpdateSequenceStoreCommand.d.ts +123 -0
- package/dist-types/commands/index.d.ts +9 -0
- package/dist-types/models/models_0.d.ts +666 -12
- package/dist-types/pagination/ListRunCachesPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +81 -0
- package/dist-types/ts3.4/Omics.d.ts +154 -0
- package/dist-types/ts3.4/OmicsClient.d.ts +54 -0
- package/dist-types/ts3.4/commands/CreateRunCacheCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/DeleteRunCacheCommand.d.ts +45 -0
- package/dist-types/ts3.4/commands/DeleteS3AccessPolicyCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetRunCacheCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/GetS3AccessPolicyCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListRunCachesCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/PutS3AccessPolicyCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateRunCacheCommand.d.ts +45 -0
- package/dist-types/ts3.4/commands/UpdateSequenceStoreCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +9 -0
- package/dist-types/ts3.4/models/models_0.d.ts +166 -5
- package/dist-types/ts3.4/pagination/ListRunCachesPaginator.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 +108 -0
- package/package.json +4 -4
|
@@ -0,0 +1,123 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { UpdateSequenceStoreRequest, UpdateSequenceStoreResponse } 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 UpdateSequenceStoreCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface UpdateSequenceStoreCommandInput extends UpdateSequenceStoreRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link UpdateSequenceStoreCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface UpdateSequenceStoreCommandOutput extends UpdateSequenceStoreResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const UpdateSequenceStoreCommand_base: {
|
|
25
|
+
new (input: UpdateSequenceStoreCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateSequenceStoreCommandInput, UpdateSequenceStoreCommandOutput, OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (__0_0: UpdateSequenceStoreCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateSequenceStoreCommandInput, UpdateSequenceStoreCommandOutput, OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* <p>Update one or more parameters for the sequence store.</p>
|
|
31
|
+
* @example
|
|
32
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
33
|
+
* ```javascript
|
|
34
|
+
* import { OmicsClient, UpdateSequenceStoreCommand } from "@aws-sdk/client-omics"; // ES Modules import
|
|
35
|
+
* // const { OmicsClient, UpdateSequenceStoreCommand } = require("@aws-sdk/client-omics"); // CommonJS import
|
|
36
|
+
* const client = new OmicsClient(config);
|
|
37
|
+
* const input = { // UpdateSequenceStoreRequest
|
|
38
|
+
* id: "STRING_VALUE", // required
|
|
39
|
+
* name: "STRING_VALUE",
|
|
40
|
+
* description: "STRING_VALUE",
|
|
41
|
+
* clientToken: "STRING_VALUE",
|
|
42
|
+
* fallbackLocation: "STRING_VALUE",
|
|
43
|
+
* propagatedSetLevelTags: [ // PropagatedSetLevelTags
|
|
44
|
+
* "STRING_VALUE",
|
|
45
|
+
* ],
|
|
46
|
+
* s3AccessConfig: { // S3AccessConfig
|
|
47
|
+
* accessLogLocation: "STRING_VALUE",
|
|
48
|
+
* },
|
|
49
|
+
* };
|
|
50
|
+
* const command = new UpdateSequenceStoreCommand(input);
|
|
51
|
+
* const response = await client.send(command);
|
|
52
|
+
* // { // UpdateSequenceStoreResponse
|
|
53
|
+
* // id: "STRING_VALUE", // required
|
|
54
|
+
* // arn: "STRING_VALUE", // required
|
|
55
|
+
* // name: "STRING_VALUE",
|
|
56
|
+
* // description: "STRING_VALUE",
|
|
57
|
+
* // sseConfig: { // SseConfig
|
|
58
|
+
* // type: "STRING_VALUE", // required
|
|
59
|
+
* // keyArn: "STRING_VALUE",
|
|
60
|
+
* // },
|
|
61
|
+
* // creationTime: new Date("TIMESTAMP"), // required
|
|
62
|
+
* // updateTime: new Date("TIMESTAMP"),
|
|
63
|
+
* // propagatedSetLevelTags: [ // PropagatedSetLevelTags
|
|
64
|
+
* // "STRING_VALUE",
|
|
65
|
+
* // ],
|
|
66
|
+
* // status: "STRING_VALUE",
|
|
67
|
+
* // statusMessage: "STRING_VALUE",
|
|
68
|
+
* // fallbackLocation: "STRING_VALUE",
|
|
69
|
+
* // s3Access: { // SequenceStoreS3Access
|
|
70
|
+
* // s3Uri: "STRING_VALUE",
|
|
71
|
+
* // s3AccessPointArn: "STRING_VALUE",
|
|
72
|
+
* // accessLogLocation: "STRING_VALUE",
|
|
73
|
+
* // },
|
|
74
|
+
* // eTagAlgorithmFamily: "STRING_VALUE",
|
|
75
|
+
* // };
|
|
76
|
+
*
|
|
77
|
+
* ```
|
|
78
|
+
*
|
|
79
|
+
* @param UpdateSequenceStoreCommandInput - {@link UpdateSequenceStoreCommandInput}
|
|
80
|
+
* @returns {@link UpdateSequenceStoreCommandOutput}
|
|
81
|
+
* @see {@link UpdateSequenceStoreCommandInput} for command's `input` shape.
|
|
82
|
+
* @see {@link UpdateSequenceStoreCommandOutput} for command's `response` shape.
|
|
83
|
+
* @see {@link OmicsClientResolvedConfig | config} for OmicsClient's `config` shape.
|
|
84
|
+
*
|
|
85
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
86
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
87
|
+
*
|
|
88
|
+
* @throws {@link ConflictException} (client fault)
|
|
89
|
+
* <p>The request cannot be applied to the target resource in its current state.</p>
|
|
90
|
+
*
|
|
91
|
+
* @throws {@link InternalServerException} (server fault)
|
|
92
|
+
* <p>An unexpected error occurred. Try the request again.</p>
|
|
93
|
+
*
|
|
94
|
+
* @throws {@link RequestTimeoutException} (client fault)
|
|
95
|
+
* <p>The request timed out.</p>
|
|
96
|
+
*
|
|
97
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
98
|
+
* <p>The target resource was not found in the current Region.</p>
|
|
99
|
+
*
|
|
100
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
101
|
+
* <p>The request was denied due to request throttling.</p>
|
|
102
|
+
*
|
|
103
|
+
* @throws {@link ValidationException} (client fault)
|
|
104
|
+
* <p>The input fails to satisfy the constraints specified by an AWS service.</p>
|
|
105
|
+
*
|
|
106
|
+
* @throws {@link OmicsServiceException}
|
|
107
|
+
* <p>Base exception class for all service exceptions from Omics service.</p>
|
|
108
|
+
*
|
|
109
|
+
* @public
|
|
110
|
+
*/
|
|
111
|
+
export declare class UpdateSequenceStoreCommand extends UpdateSequenceStoreCommand_base {
|
|
112
|
+
/** @internal type navigation helper, not in runtime. */
|
|
113
|
+
protected static __types: {
|
|
114
|
+
api: {
|
|
115
|
+
input: UpdateSequenceStoreRequest;
|
|
116
|
+
output: UpdateSequenceStoreResponse;
|
|
117
|
+
};
|
|
118
|
+
sdk: {
|
|
119
|
+
input: UpdateSequenceStoreCommandInput;
|
|
120
|
+
output: UpdateSequenceStoreCommandOutput;
|
|
121
|
+
};
|
|
122
|
+
};
|
|
123
|
+
}
|
|
@@ -9,6 +9,7 @@ export * from "./CreateAnnotationStoreCommand";
|
|
|
9
9
|
export * from "./CreateAnnotationStoreVersionCommand";
|
|
10
10
|
export * from "./CreateMultipartReadSetUploadCommand";
|
|
11
11
|
export * from "./CreateReferenceStoreCommand";
|
|
12
|
+
export * from "./CreateRunCacheCommand";
|
|
12
13
|
export * from "./CreateRunGroupCommand";
|
|
13
14
|
export * from "./CreateSequenceStoreCommand";
|
|
14
15
|
export * from "./CreateShareCommand";
|
|
@@ -18,8 +19,10 @@ export * from "./DeleteAnnotationStoreCommand";
|
|
|
18
19
|
export * from "./DeleteAnnotationStoreVersionsCommand";
|
|
19
20
|
export * from "./DeleteReferenceCommand";
|
|
20
21
|
export * from "./DeleteReferenceStoreCommand";
|
|
22
|
+
export * from "./DeleteRunCacheCommand";
|
|
21
23
|
export * from "./DeleteRunCommand";
|
|
22
24
|
export * from "./DeleteRunGroupCommand";
|
|
25
|
+
export * from "./DeleteS3AccessPolicyCommand";
|
|
23
26
|
export * from "./DeleteSequenceStoreCommand";
|
|
24
27
|
export * from "./DeleteShareCommand";
|
|
25
28
|
export * from "./DeleteVariantStoreCommand";
|
|
@@ -36,9 +39,11 @@ export * from "./GetReferenceCommand";
|
|
|
36
39
|
export * from "./GetReferenceImportJobCommand";
|
|
37
40
|
export * from "./GetReferenceMetadataCommand";
|
|
38
41
|
export * from "./GetReferenceStoreCommand";
|
|
42
|
+
export * from "./GetRunCacheCommand";
|
|
39
43
|
export * from "./GetRunCommand";
|
|
40
44
|
export * from "./GetRunGroupCommand";
|
|
41
45
|
export * from "./GetRunTaskCommand";
|
|
46
|
+
export * from "./GetS3AccessPolicyCommand";
|
|
42
47
|
export * from "./GetSequenceStoreCommand";
|
|
43
48
|
export * from "./GetShareCommand";
|
|
44
49
|
export * from "./GetVariantImportJobCommand";
|
|
@@ -56,6 +61,7 @@ export * from "./ListReadSetsCommand";
|
|
|
56
61
|
export * from "./ListReferenceImportJobsCommand";
|
|
57
62
|
export * from "./ListReferenceStoresCommand";
|
|
58
63
|
export * from "./ListReferencesCommand";
|
|
64
|
+
export * from "./ListRunCachesCommand";
|
|
59
65
|
export * from "./ListRunGroupsCommand";
|
|
60
66
|
export * from "./ListRunTasksCommand";
|
|
61
67
|
export * from "./ListRunsCommand";
|
|
@@ -65,6 +71,7 @@ export * from "./ListTagsForResourceCommand";
|
|
|
65
71
|
export * from "./ListVariantImportJobsCommand";
|
|
66
72
|
export * from "./ListVariantStoresCommand";
|
|
67
73
|
export * from "./ListWorkflowsCommand";
|
|
74
|
+
export * from "./PutS3AccessPolicyCommand";
|
|
68
75
|
export * from "./StartAnnotationImportJobCommand";
|
|
69
76
|
export * from "./StartReadSetActivationJobCommand";
|
|
70
77
|
export * from "./StartReadSetExportJobCommand";
|
|
@@ -76,7 +83,9 @@ export * from "./TagResourceCommand";
|
|
|
76
83
|
export * from "./UntagResourceCommand";
|
|
77
84
|
export * from "./UpdateAnnotationStoreCommand";
|
|
78
85
|
export * from "./UpdateAnnotationStoreVersionCommand";
|
|
86
|
+
export * from "./UpdateRunCacheCommand";
|
|
79
87
|
export * from "./UpdateRunGroupCommand";
|
|
88
|
+
export * from "./UpdateSequenceStoreCommand";
|
|
80
89
|
export * from "./UpdateVariantStoreCommand";
|
|
81
90
|
export * from "./UpdateWorkflowCommand";
|
|
82
91
|
export * from "./UploadReadSetPartCommand";
|