@aws-sdk/client-omics 3.312.0 → 3.316.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/Omics.js +70 -924
- package/dist-cjs/protocols/Aws_restJson1.js +988 -2034
- package/dist-es/Omics.js +70 -924
- package/dist-es/protocols/Aws_restJson1.js +891 -1937
- package/dist-types/Omics.d.ts +74 -139
- package/dist-types/ts3.4/Omics.d.ts +2 -1
- package/package.json +6 -6
package/dist-types/Omics.d.ts
CHANGED
|
@@ -66,473 +66,408 @@ import { UpdateRunGroupCommandInput, UpdateRunGroupCommandOutput } from "./comma
|
|
|
66
66
|
import { UpdateVariantStoreCommandInput, UpdateVariantStoreCommandOutput } from "./commands/UpdateVariantStoreCommand";
|
|
67
67
|
import { UpdateWorkflowCommandInput, UpdateWorkflowCommandOutput } from "./commands/UpdateWorkflowCommand";
|
|
68
68
|
import { OmicsClient } from "./OmicsClient";
|
|
69
|
-
|
|
70
|
-
* @public
|
|
71
|
-
* <p>This is the <i>Amazon Omics API Reference</i>. For an introduction to the service, see <a href="https://docs.aws.amazon.com/omics/latest/dev/">What is Amazon Omics?</a> in the
|
|
72
|
-
* <i>Amazon Omics Developer Guide</i>.</p>
|
|
73
|
-
*/
|
|
74
|
-
export declare class Omics extends OmicsClient {
|
|
69
|
+
export interface Omics {
|
|
75
70
|
/**
|
|
76
|
-
* @
|
|
77
|
-
* <p>Deletes one or more read sets.</p>
|
|
71
|
+
* @see {@link BatchDeleteReadSetCommand}
|
|
78
72
|
*/
|
|
79
73
|
batchDeleteReadSet(args: BatchDeleteReadSetCommandInput, options?: __HttpHandlerOptions): Promise<BatchDeleteReadSetCommandOutput>;
|
|
80
74
|
batchDeleteReadSet(args: BatchDeleteReadSetCommandInput, cb: (err: any, data?: BatchDeleteReadSetCommandOutput) => void): void;
|
|
81
75
|
batchDeleteReadSet(args: BatchDeleteReadSetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: BatchDeleteReadSetCommandOutput) => void): void;
|
|
82
76
|
/**
|
|
83
|
-
* @
|
|
84
|
-
* <p>Cancels an annotation import job.</p>
|
|
77
|
+
* @see {@link CancelAnnotationImportJobCommand}
|
|
85
78
|
*/
|
|
86
79
|
cancelAnnotationImportJob(args: CancelAnnotationImportJobCommandInput, options?: __HttpHandlerOptions): Promise<CancelAnnotationImportJobCommandOutput>;
|
|
87
80
|
cancelAnnotationImportJob(args: CancelAnnotationImportJobCommandInput, cb: (err: any, data?: CancelAnnotationImportJobCommandOutput) => void): void;
|
|
88
81
|
cancelAnnotationImportJob(args: CancelAnnotationImportJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CancelAnnotationImportJobCommandOutput) => void): void;
|
|
89
82
|
/**
|
|
90
|
-
* @
|
|
91
|
-
* <p>Cancels a run.</p>
|
|
83
|
+
* @see {@link CancelRunCommand}
|
|
92
84
|
*/
|
|
93
85
|
cancelRun(args: CancelRunCommandInput, options?: __HttpHandlerOptions): Promise<CancelRunCommandOutput>;
|
|
94
86
|
cancelRun(args: CancelRunCommandInput, cb: (err: any, data?: CancelRunCommandOutput) => void): void;
|
|
95
87
|
cancelRun(args: CancelRunCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CancelRunCommandOutput) => void): void;
|
|
96
88
|
/**
|
|
97
|
-
* @
|
|
98
|
-
* <p>Cancels a variant import job.</p>
|
|
89
|
+
* @see {@link CancelVariantImportJobCommand}
|
|
99
90
|
*/
|
|
100
91
|
cancelVariantImportJob(args: CancelVariantImportJobCommandInput, options?: __HttpHandlerOptions): Promise<CancelVariantImportJobCommandOutput>;
|
|
101
92
|
cancelVariantImportJob(args: CancelVariantImportJobCommandInput, cb: (err: any, data?: CancelVariantImportJobCommandOutput) => void): void;
|
|
102
93
|
cancelVariantImportJob(args: CancelVariantImportJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CancelVariantImportJobCommandOutput) => void): void;
|
|
103
94
|
/**
|
|
104
|
-
* @
|
|
105
|
-
* <p>Creates an annotation store.</p>
|
|
95
|
+
* @see {@link CreateAnnotationStoreCommand}
|
|
106
96
|
*/
|
|
107
97
|
createAnnotationStore(args: CreateAnnotationStoreCommandInput, options?: __HttpHandlerOptions): Promise<CreateAnnotationStoreCommandOutput>;
|
|
108
98
|
createAnnotationStore(args: CreateAnnotationStoreCommandInput, cb: (err: any, data?: CreateAnnotationStoreCommandOutput) => void): void;
|
|
109
99
|
createAnnotationStore(args: CreateAnnotationStoreCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateAnnotationStoreCommandOutput) => void): void;
|
|
110
100
|
/**
|
|
111
|
-
* @
|
|
112
|
-
* <p>Creates a reference store.</p>
|
|
101
|
+
* @see {@link CreateReferenceStoreCommand}
|
|
113
102
|
*/
|
|
114
103
|
createReferenceStore(args: CreateReferenceStoreCommandInput, options?: __HttpHandlerOptions): Promise<CreateReferenceStoreCommandOutput>;
|
|
115
104
|
createReferenceStore(args: CreateReferenceStoreCommandInput, cb: (err: any, data?: CreateReferenceStoreCommandOutput) => void): void;
|
|
116
105
|
createReferenceStore(args: CreateReferenceStoreCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateReferenceStoreCommandOutput) => void): void;
|
|
117
106
|
/**
|
|
118
|
-
* @
|
|
119
|
-
* <p>Creates a run group.</p>
|
|
107
|
+
* @see {@link CreateRunGroupCommand}
|
|
120
108
|
*/
|
|
121
109
|
createRunGroup(args: CreateRunGroupCommandInput, options?: __HttpHandlerOptions): Promise<CreateRunGroupCommandOutput>;
|
|
122
110
|
createRunGroup(args: CreateRunGroupCommandInput, cb: (err: any, data?: CreateRunGroupCommandOutput) => void): void;
|
|
123
111
|
createRunGroup(args: CreateRunGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateRunGroupCommandOutput) => void): void;
|
|
124
112
|
/**
|
|
125
|
-
* @
|
|
126
|
-
* <p>Creates a sequence store.</p>
|
|
113
|
+
* @see {@link CreateSequenceStoreCommand}
|
|
127
114
|
*/
|
|
128
115
|
createSequenceStore(args: CreateSequenceStoreCommandInput, options?: __HttpHandlerOptions): Promise<CreateSequenceStoreCommandOutput>;
|
|
129
116
|
createSequenceStore(args: CreateSequenceStoreCommandInput, cb: (err: any, data?: CreateSequenceStoreCommandOutput) => void): void;
|
|
130
117
|
createSequenceStore(args: CreateSequenceStoreCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateSequenceStoreCommandOutput) => void): void;
|
|
131
118
|
/**
|
|
132
|
-
* @
|
|
133
|
-
* <p>Creates a variant store.</p>
|
|
119
|
+
* @see {@link CreateVariantStoreCommand}
|
|
134
120
|
*/
|
|
135
121
|
createVariantStore(args: CreateVariantStoreCommandInput, options?: __HttpHandlerOptions): Promise<CreateVariantStoreCommandOutput>;
|
|
136
122
|
createVariantStore(args: CreateVariantStoreCommandInput, cb: (err: any, data?: CreateVariantStoreCommandOutput) => void): void;
|
|
137
123
|
createVariantStore(args: CreateVariantStoreCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateVariantStoreCommandOutput) => void): void;
|
|
138
124
|
/**
|
|
139
|
-
* @
|
|
140
|
-
* <p>Creates a workflow.</p>
|
|
125
|
+
* @see {@link CreateWorkflowCommand}
|
|
141
126
|
*/
|
|
142
127
|
createWorkflow(args: CreateWorkflowCommandInput, options?: __HttpHandlerOptions): Promise<CreateWorkflowCommandOutput>;
|
|
143
128
|
createWorkflow(args: CreateWorkflowCommandInput, cb: (err: any, data?: CreateWorkflowCommandOutput) => void): void;
|
|
144
129
|
createWorkflow(args: CreateWorkflowCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateWorkflowCommandOutput) => void): void;
|
|
145
130
|
/**
|
|
146
|
-
* @
|
|
147
|
-
* <p>Deletes an annotation store.</p>
|
|
131
|
+
* @see {@link DeleteAnnotationStoreCommand}
|
|
148
132
|
*/
|
|
149
133
|
deleteAnnotationStore(args: DeleteAnnotationStoreCommandInput, options?: __HttpHandlerOptions): Promise<DeleteAnnotationStoreCommandOutput>;
|
|
150
134
|
deleteAnnotationStore(args: DeleteAnnotationStoreCommandInput, cb: (err: any, data?: DeleteAnnotationStoreCommandOutput) => void): void;
|
|
151
135
|
deleteAnnotationStore(args: DeleteAnnotationStoreCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteAnnotationStoreCommandOutput) => void): void;
|
|
152
136
|
/**
|
|
153
|
-
* @
|
|
154
|
-
* <p>Deletes a genome reference.</p>
|
|
137
|
+
* @see {@link DeleteReferenceCommand}
|
|
155
138
|
*/
|
|
156
139
|
deleteReference(args: DeleteReferenceCommandInput, options?: __HttpHandlerOptions): Promise<DeleteReferenceCommandOutput>;
|
|
157
140
|
deleteReference(args: DeleteReferenceCommandInput, cb: (err: any, data?: DeleteReferenceCommandOutput) => void): void;
|
|
158
141
|
deleteReference(args: DeleteReferenceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteReferenceCommandOutput) => void): void;
|
|
159
142
|
/**
|
|
160
|
-
* @
|
|
161
|
-
* <p>Deletes a genome reference store.</p>
|
|
143
|
+
* @see {@link DeleteReferenceStoreCommand}
|
|
162
144
|
*/
|
|
163
145
|
deleteReferenceStore(args: DeleteReferenceStoreCommandInput, options?: __HttpHandlerOptions): Promise<DeleteReferenceStoreCommandOutput>;
|
|
164
146
|
deleteReferenceStore(args: DeleteReferenceStoreCommandInput, cb: (err: any, data?: DeleteReferenceStoreCommandOutput) => void): void;
|
|
165
147
|
deleteReferenceStore(args: DeleteReferenceStoreCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteReferenceStoreCommandOutput) => void): void;
|
|
166
148
|
/**
|
|
167
|
-
* @
|
|
168
|
-
* <p>Deletes a workflow run.</p>
|
|
149
|
+
* @see {@link DeleteRunCommand}
|
|
169
150
|
*/
|
|
170
151
|
deleteRun(args: DeleteRunCommandInput, options?: __HttpHandlerOptions): Promise<DeleteRunCommandOutput>;
|
|
171
152
|
deleteRun(args: DeleteRunCommandInput, cb: (err: any, data?: DeleteRunCommandOutput) => void): void;
|
|
172
153
|
deleteRun(args: DeleteRunCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteRunCommandOutput) => void): void;
|
|
173
154
|
/**
|
|
174
|
-
* @
|
|
175
|
-
* <p>Deletes a workflow run group.</p>
|
|
155
|
+
* @see {@link DeleteRunGroupCommand}
|
|
176
156
|
*/
|
|
177
157
|
deleteRunGroup(args: DeleteRunGroupCommandInput, options?: __HttpHandlerOptions): Promise<DeleteRunGroupCommandOutput>;
|
|
178
158
|
deleteRunGroup(args: DeleteRunGroupCommandInput, cb: (err: any, data?: DeleteRunGroupCommandOutput) => void): void;
|
|
179
159
|
deleteRunGroup(args: DeleteRunGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteRunGroupCommandOutput) => void): void;
|
|
180
160
|
/**
|
|
181
|
-
* @
|
|
182
|
-
* <p>Deletes a sequence store.</p>
|
|
161
|
+
* @see {@link DeleteSequenceStoreCommand}
|
|
183
162
|
*/
|
|
184
163
|
deleteSequenceStore(args: DeleteSequenceStoreCommandInput, options?: __HttpHandlerOptions): Promise<DeleteSequenceStoreCommandOutput>;
|
|
185
164
|
deleteSequenceStore(args: DeleteSequenceStoreCommandInput, cb: (err: any, data?: DeleteSequenceStoreCommandOutput) => void): void;
|
|
186
165
|
deleteSequenceStore(args: DeleteSequenceStoreCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteSequenceStoreCommandOutput) => void): void;
|
|
187
166
|
/**
|
|
188
|
-
* @
|
|
189
|
-
* <p>Deletes a variant store.</p>
|
|
167
|
+
* @see {@link DeleteVariantStoreCommand}
|
|
190
168
|
*/
|
|
191
169
|
deleteVariantStore(args: DeleteVariantStoreCommandInput, options?: __HttpHandlerOptions): Promise<DeleteVariantStoreCommandOutput>;
|
|
192
170
|
deleteVariantStore(args: DeleteVariantStoreCommandInput, cb: (err: any, data?: DeleteVariantStoreCommandOutput) => void): void;
|
|
193
171
|
deleteVariantStore(args: DeleteVariantStoreCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteVariantStoreCommandOutput) => void): void;
|
|
194
172
|
/**
|
|
195
|
-
* @
|
|
196
|
-
* <p>Deletes a workflow.</p>
|
|
173
|
+
* @see {@link DeleteWorkflowCommand}
|
|
197
174
|
*/
|
|
198
175
|
deleteWorkflow(args: DeleteWorkflowCommandInput, options?: __HttpHandlerOptions): Promise<DeleteWorkflowCommandOutput>;
|
|
199
176
|
deleteWorkflow(args: DeleteWorkflowCommandInput, cb: (err: any, data?: DeleteWorkflowCommandOutput) => void): void;
|
|
200
177
|
deleteWorkflow(args: DeleteWorkflowCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteWorkflowCommandOutput) => void): void;
|
|
201
178
|
/**
|
|
202
|
-
* @
|
|
203
|
-
* <p>Gets information about an annotation import job.</p>
|
|
179
|
+
* @see {@link GetAnnotationImportJobCommand}
|
|
204
180
|
*/
|
|
205
181
|
getAnnotationImportJob(args: GetAnnotationImportJobCommandInput, options?: __HttpHandlerOptions): Promise<GetAnnotationImportJobCommandOutput>;
|
|
206
182
|
getAnnotationImportJob(args: GetAnnotationImportJobCommandInput, cb: (err: any, data?: GetAnnotationImportJobCommandOutput) => void): void;
|
|
207
183
|
getAnnotationImportJob(args: GetAnnotationImportJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetAnnotationImportJobCommandOutput) => void): void;
|
|
208
184
|
/**
|
|
209
|
-
* @
|
|
210
|
-
* <p>Gets information about an annotation store.</p>
|
|
185
|
+
* @see {@link GetAnnotationStoreCommand}
|
|
211
186
|
*/
|
|
212
187
|
getAnnotationStore(args: GetAnnotationStoreCommandInput, options?: __HttpHandlerOptions): Promise<GetAnnotationStoreCommandOutput>;
|
|
213
188
|
getAnnotationStore(args: GetAnnotationStoreCommandInput, cb: (err: any, data?: GetAnnotationStoreCommandOutput) => void): void;
|
|
214
189
|
getAnnotationStore(args: GetAnnotationStoreCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetAnnotationStoreCommandOutput) => void): void;
|
|
215
190
|
/**
|
|
216
|
-
* @
|
|
217
|
-
* <p>Gets a file from a read set.</p>
|
|
191
|
+
* @see {@link GetReadSetCommand}
|
|
218
192
|
*/
|
|
219
193
|
getReadSet(args: GetReadSetCommandInput, options?: __HttpHandlerOptions): Promise<GetReadSetCommandOutput>;
|
|
220
194
|
getReadSet(args: GetReadSetCommandInput, cb: (err: any, data?: GetReadSetCommandOutput) => void): void;
|
|
221
195
|
getReadSet(args: GetReadSetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetReadSetCommandOutput) => void): void;
|
|
222
196
|
/**
|
|
223
|
-
* @
|
|
224
|
-
* <p>Gets information about a read set activation job.</p>
|
|
197
|
+
* @see {@link GetReadSetActivationJobCommand}
|
|
225
198
|
*/
|
|
226
199
|
getReadSetActivationJob(args: GetReadSetActivationJobCommandInput, options?: __HttpHandlerOptions): Promise<GetReadSetActivationJobCommandOutput>;
|
|
227
200
|
getReadSetActivationJob(args: GetReadSetActivationJobCommandInput, cb: (err: any, data?: GetReadSetActivationJobCommandOutput) => void): void;
|
|
228
201
|
getReadSetActivationJob(args: GetReadSetActivationJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetReadSetActivationJobCommandOutput) => void): void;
|
|
229
202
|
/**
|
|
230
|
-
* @
|
|
231
|
-
* <p>Gets information about a read set export job.</p>
|
|
203
|
+
* @see {@link GetReadSetExportJobCommand}
|
|
232
204
|
*/
|
|
233
205
|
getReadSetExportJob(args: GetReadSetExportJobCommandInput, options?: __HttpHandlerOptions): Promise<GetReadSetExportJobCommandOutput>;
|
|
234
206
|
getReadSetExportJob(args: GetReadSetExportJobCommandInput, cb: (err: any, data?: GetReadSetExportJobCommandOutput) => void): void;
|
|
235
207
|
getReadSetExportJob(args: GetReadSetExportJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetReadSetExportJobCommandOutput) => void): void;
|
|
236
208
|
/**
|
|
237
|
-
* @
|
|
238
|
-
* <p>Gets information about a read set import job.</p>
|
|
209
|
+
* @see {@link GetReadSetImportJobCommand}
|
|
239
210
|
*/
|
|
240
211
|
getReadSetImportJob(args: GetReadSetImportJobCommandInput, options?: __HttpHandlerOptions): Promise<GetReadSetImportJobCommandOutput>;
|
|
241
212
|
getReadSetImportJob(args: GetReadSetImportJobCommandInput, cb: (err: any, data?: GetReadSetImportJobCommandOutput) => void): void;
|
|
242
213
|
getReadSetImportJob(args: GetReadSetImportJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetReadSetImportJobCommandOutput) => void): void;
|
|
243
214
|
/**
|
|
244
|
-
* @
|
|
245
|
-
* <p>Gets details about a read set.</p>
|
|
215
|
+
* @see {@link GetReadSetMetadataCommand}
|
|
246
216
|
*/
|
|
247
217
|
getReadSetMetadata(args: GetReadSetMetadataCommandInput, options?: __HttpHandlerOptions): Promise<GetReadSetMetadataCommandOutput>;
|
|
248
218
|
getReadSetMetadata(args: GetReadSetMetadataCommandInput, cb: (err: any, data?: GetReadSetMetadataCommandOutput) => void): void;
|
|
249
219
|
getReadSetMetadata(args: GetReadSetMetadataCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetReadSetMetadataCommandOutput) => void): void;
|
|
250
220
|
/**
|
|
251
|
-
* @
|
|
252
|
-
* <p>Gets a reference file.</p>
|
|
221
|
+
* @see {@link GetReferenceCommand}
|
|
253
222
|
*/
|
|
254
223
|
getReference(args: GetReferenceCommandInput, options?: __HttpHandlerOptions): Promise<GetReferenceCommandOutput>;
|
|
255
224
|
getReference(args: GetReferenceCommandInput, cb: (err: any, data?: GetReferenceCommandOutput) => void): void;
|
|
256
225
|
getReference(args: GetReferenceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetReferenceCommandOutput) => void): void;
|
|
257
226
|
/**
|
|
258
|
-
* @
|
|
259
|
-
* <p>Gets information about a reference import job.</p>
|
|
227
|
+
* @see {@link GetReferenceImportJobCommand}
|
|
260
228
|
*/
|
|
261
229
|
getReferenceImportJob(args: GetReferenceImportJobCommandInput, options?: __HttpHandlerOptions): Promise<GetReferenceImportJobCommandOutput>;
|
|
262
230
|
getReferenceImportJob(args: GetReferenceImportJobCommandInput, cb: (err: any, data?: GetReferenceImportJobCommandOutput) => void): void;
|
|
263
231
|
getReferenceImportJob(args: GetReferenceImportJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetReferenceImportJobCommandOutput) => void): void;
|
|
264
232
|
/**
|
|
265
|
-
* @
|
|
266
|
-
* <p>Gets information about a genome reference's metadata.</p>
|
|
233
|
+
* @see {@link GetReferenceMetadataCommand}
|
|
267
234
|
*/
|
|
268
235
|
getReferenceMetadata(args: GetReferenceMetadataCommandInput, options?: __HttpHandlerOptions): Promise<GetReferenceMetadataCommandOutput>;
|
|
269
236
|
getReferenceMetadata(args: GetReferenceMetadataCommandInput, cb: (err: any, data?: GetReferenceMetadataCommandOutput) => void): void;
|
|
270
237
|
getReferenceMetadata(args: GetReferenceMetadataCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetReferenceMetadataCommandOutput) => void): void;
|
|
271
238
|
/**
|
|
272
|
-
* @
|
|
273
|
-
* <p>Gets information about a reference store.</p>
|
|
239
|
+
* @see {@link GetReferenceStoreCommand}
|
|
274
240
|
*/
|
|
275
241
|
getReferenceStore(args: GetReferenceStoreCommandInput, options?: __HttpHandlerOptions): Promise<GetReferenceStoreCommandOutput>;
|
|
276
242
|
getReferenceStore(args: GetReferenceStoreCommandInput, cb: (err: any, data?: GetReferenceStoreCommandOutput) => void): void;
|
|
277
243
|
getReferenceStore(args: GetReferenceStoreCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetReferenceStoreCommandOutput) => void): void;
|
|
278
244
|
/**
|
|
279
|
-
* @
|
|
280
|
-
* <p>Gets information about a workflow run.</p>
|
|
245
|
+
* @see {@link GetRunCommand}
|
|
281
246
|
*/
|
|
282
247
|
getRun(args: GetRunCommandInput, options?: __HttpHandlerOptions): Promise<GetRunCommandOutput>;
|
|
283
248
|
getRun(args: GetRunCommandInput, cb: (err: any, data?: GetRunCommandOutput) => void): void;
|
|
284
249
|
getRun(args: GetRunCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetRunCommandOutput) => void): void;
|
|
285
250
|
/**
|
|
286
|
-
* @
|
|
287
|
-
* <p>Gets information about a workflow run group.</p>
|
|
251
|
+
* @see {@link GetRunGroupCommand}
|
|
288
252
|
*/
|
|
289
253
|
getRunGroup(args: GetRunGroupCommandInput, options?: __HttpHandlerOptions): Promise<GetRunGroupCommandOutput>;
|
|
290
254
|
getRunGroup(args: GetRunGroupCommandInput, cb: (err: any, data?: GetRunGroupCommandOutput) => void): void;
|
|
291
255
|
getRunGroup(args: GetRunGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetRunGroupCommandOutput) => void): void;
|
|
292
256
|
/**
|
|
293
|
-
* @
|
|
294
|
-
* <p>Gets information about a workflow run task.</p>
|
|
257
|
+
* @see {@link GetRunTaskCommand}
|
|
295
258
|
*/
|
|
296
259
|
getRunTask(args: GetRunTaskCommandInput, options?: __HttpHandlerOptions): Promise<GetRunTaskCommandOutput>;
|
|
297
260
|
getRunTask(args: GetRunTaskCommandInput, cb: (err: any, data?: GetRunTaskCommandOutput) => void): void;
|
|
298
261
|
getRunTask(args: GetRunTaskCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetRunTaskCommandOutput) => void): void;
|
|
299
262
|
/**
|
|
300
|
-
* @
|
|
301
|
-
* <p>Gets information about a sequence store.</p>
|
|
263
|
+
* @see {@link GetSequenceStoreCommand}
|
|
302
264
|
*/
|
|
303
265
|
getSequenceStore(args: GetSequenceStoreCommandInput, options?: __HttpHandlerOptions): Promise<GetSequenceStoreCommandOutput>;
|
|
304
266
|
getSequenceStore(args: GetSequenceStoreCommandInput, cb: (err: any, data?: GetSequenceStoreCommandOutput) => void): void;
|
|
305
267
|
getSequenceStore(args: GetSequenceStoreCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetSequenceStoreCommandOutput) => void): void;
|
|
306
268
|
/**
|
|
307
|
-
* @
|
|
308
|
-
* <p>Gets information about a variant import job.</p>
|
|
269
|
+
* @see {@link GetVariantImportJobCommand}
|
|
309
270
|
*/
|
|
310
271
|
getVariantImportJob(args: GetVariantImportJobCommandInput, options?: __HttpHandlerOptions): Promise<GetVariantImportJobCommandOutput>;
|
|
311
272
|
getVariantImportJob(args: GetVariantImportJobCommandInput, cb: (err: any, data?: GetVariantImportJobCommandOutput) => void): void;
|
|
312
273
|
getVariantImportJob(args: GetVariantImportJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetVariantImportJobCommandOutput) => void): void;
|
|
313
274
|
/**
|
|
314
|
-
* @
|
|
315
|
-
* <p>Gets information about a variant store.</p>
|
|
275
|
+
* @see {@link GetVariantStoreCommand}
|
|
316
276
|
*/
|
|
317
277
|
getVariantStore(args: GetVariantStoreCommandInput, options?: __HttpHandlerOptions): Promise<GetVariantStoreCommandOutput>;
|
|
318
278
|
getVariantStore(args: GetVariantStoreCommandInput, cb: (err: any, data?: GetVariantStoreCommandOutput) => void): void;
|
|
319
279
|
getVariantStore(args: GetVariantStoreCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetVariantStoreCommandOutput) => void): void;
|
|
320
280
|
/**
|
|
321
|
-
* @
|
|
322
|
-
* <p>Gets information about a workflow.</p>
|
|
281
|
+
* @see {@link GetWorkflowCommand}
|
|
323
282
|
*/
|
|
324
283
|
getWorkflow(args: GetWorkflowCommandInput, options?: __HttpHandlerOptions): Promise<GetWorkflowCommandOutput>;
|
|
325
284
|
getWorkflow(args: GetWorkflowCommandInput, cb: (err: any, data?: GetWorkflowCommandOutput) => void): void;
|
|
326
285
|
getWorkflow(args: GetWorkflowCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetWorkflowCommandOutput) => void): void;
|
|
327
286
|
/**
|
|
328
|
-
* @
|
|
329
|
-
* <p>Retrieves a list of annotation import jobs.</p>
|
|
287
|
+
* @see {@link ListAnnotationImportJobsCommand}
|
|
330
288
|
*/
|
|
331
289
|
listAnnotationImportJobs(args: ListAnnotationImportJobsCommandInput, options?: __HttpHandlerOptions): Promise<ListAnnotationImportJobsCommandOutput>;
|
|
332
290
|
listAnnotationImportJobs(args: ListAnnotationImportJobsCommandInput, cb: (err: any, data?: ListAnnotationImportJobsCommandOutput) => void): void;
|
|
333
291
|
listAnnotationImportJobs(args: ListAnnotationImportJobsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListAnnotationImportJobsCommandOutput) => void): void;
|
|
334
292
|
/**
|
|
335
|
-
* @
|
|
336
|
-
* <p>Retrieves a list of annotation stores.</p>
|
|
293
|
+
* @see {@link ListAnnotationStoresCommand}
|
|
337
294
|
*/
|
|
338
295
|
listAnnotationStores(args: ListAnnotationStoresCommandInput, options?: __HttpHandlerOptions): Promise<ListAnnotationStoresCommandOutput>;
|
|
339
296
|
listAnnotationStores(args: ListAnnotationStoresCommandInput, cb: (err: any, data?: ListAnnotationStoresCommandOutput) => void): void;
|
|
340
297
|
listAnnotationStores(args: ListAnnotationStoresCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListAnnotationStoresCommandOutput) => void): void;
|
|
341
298
|
/**
|
|
342
|
-
* @
|
|
343
|
-
* <p>Retrieves a list of read set activation jobs.</p>
|
|
299
|
+
* @see {@link ListReadSetActivationJobsCommand}
|
|
344
300
|
*/
|
|
345
301
|
listReadSetActivationJobs(args: ListReadSetActivationJobsCommandInput, options?: __HttpHandlerOptions): Promise<ListReadSetActivationJobsCommandOutput>;
|
|
346
302
|
listReadSetActivationJobs(args: ListReadSetActivationJobsCommandInput, cb: (err: any, data?: ListReadSetActivationJobsCommandOutput) => void): void;
|
|
347
303
|
listReadSetActivationJobs(args: ListReadSetActivationJobsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListReadSetActivationJobsCommandOutput) => void): void;
|
|
348
304
|
/**
|
|
349
|
-
* @
|
|
350
|
-
* <p>Retrieves a list of read set export jobs.</p>
|
|
305
|
+
* @see {@link ListReadSetExportJobsCommand}
|
|
351
306
|
*/
|
|
352
307
|
listReadSetExportJobs(args: ListReadSetExportJobsCommandInput, options?: __HttpHandlerOptions): Promise<ListReadSetExportJobsCommandOutput>;
|
|
353
308
|
listReadSetExportJobs(args: ListReadSetExportJobsCommandInput, cb: (err: any, data?: ListReadSetExportJobsCommandOutput) => void): void;
|
|
354
309
|
listReadSetExportJobs(args: ListReadSetExportJobsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListReadSetExportJobsCommandOutput) => void): void;
|
|
355
310
|
/**
|
|
356
|
-
* @
|
|
357
|
-
* <p>Retrieves a list of read set import jobs.</p>
|
|
311
|
+
* @see {@link ListReadSetImportJobsCommand}
|
|
358
312
|
*/
|
|
359
313
|
listReadSetImportJobs(args: ListReadSetImportJobsCommandInput, options?: __HttpHandlerOptions): Promise<ListReadSetImportJobsCommandOutput>;
|
|
360
314
|
listReadSetImportJobs(args: ListReadSetImportJobsCommandInput, cb: (err: any, data?: ListReadSetImportJobsCommandOutput) => void): void;
|
|
361
315
|
listReadSetImportJobs(args: ListReadSetImportJobsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListReadSetImportJobsCommandOutput) => void): void;
|
|
362
316
|
/**
|
|
363
|
-
* @
|
|
364
|
-
* <p>Retrieves a list of read sets.</p>
|
|
317
|
+
* @see {@link ListReadSetsCommand}
|
|
365
318
|
*/
|
|
366
319
|
listReadSets(args: ListReadSetsCommandInput, options?: __HttpHandlerOptions): Promise<ListReadSetsCommandOutput>;
|
|
367
320
|
listReadSets(args: ListReadSetsCommandInput, cb: (err: any, data?: ListReadSetsCommandOutput) => void): void;
|
|
368
321
|
listReadSets(args: ListReadSetsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListReadSetsCommandOutput) => void): void;
|
|
369
322
|
/**
|
|
370
|
-
* @
|
|
371
|
-
* <p>Retrieves a list of reference import jobs.</p>
|
|
323
|
+
* @see {@link ListReferenceImportJobsCommand}
|
|
372
324
|
*/
|
|
373
325
|
listReferenceImportJobs(args: ListReferenceImportJobsCommandInput, options?: __HttpHandlerOptions): Promise<ListReferenceImportJobsCommandOutput>;
|
|
374
326
|
listReferenceImportJobs(args: ListReferenceImportJobsCommandInput, cb: (err: any, data?: ListReferenceImportJobsCommandOutput) => void): void;
|
|
375
327
|
listReferenceImportJobs(args: ListReferenceImportJobsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListReferenceImportJobsCommandOutput) => void): void;
|
|
376
328
|
/**
|
|
377
|
-
* @
|
|
378
|
-
* <p>Retrieves a list of references.</p>
|
|
329
|
+
* @see {@link ListReferencesCommand}
|
|
379
330
|
*/
|
|
380
331
|
listReferences(args: ListReferencesCommandInput, options?: __HttpHandlerOptions): Promise<ListReferencesCommandOutput>;
|
|
381
332
|
listReferences(args: ListReferencesCommandInput, cb: (err: any, data?: ListReferencesCommandOutput) => void): void;
|
|
382
333
|
listReferences(args: ListReferencesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListReferencesCommandOutput) => void): void;
|
|
383
334
|
/**
|
|
384
|
-
* @
|
|
385
|
-
* <p>Retrieves a list of reference stores.</p>
|
|
335
|
+
* @see {@link ListReferenceStoresCommand}
|
|
386
336
|
*/
|
|
387
337
|
listReferenceStores(args: ListReferenceStoresCommandInput, options?: __HttpHandlerOptions): Promise<ListReferenceStoresCommandOutput>;
|
|
388
338
|
listReferenceStores(args: ListReferenceStoresCommandInput, cb: (err: any, data?: ListReferenceStoresCommandOutput) => void): void;
|
|
389
339
|
listReferenceStores(args: ListReferenceStoresCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListReferenceStoresCommandOutput) => void): void;
|
|
390
340
|
/**
|
|
391
|
-
* @
|
|
392
|
-
* <p>Retrieves a list of run groups.</p>
|
|
341
|
+
* @see {@link ListRunGroupsCommand}
|
|
393
342
|
*/
|
|
394
343
|
listRunGroups(args: ListRunGroupsCommandInput, options?: __HttpHandlerOptions): Promise<ListRunGroupsCommandOutput>;
|
|
395
344
|
listRunGroups(args: ListRunGroupsCommandInput, cb: (err: any, data?: ListRunGroupsCommandOutput) => void): void;
|
|
396
345
|
listRunGroups(args: ListRunGroupsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListRunGroupsCommandOutput) => void): void;
|
|
397
346
|
/**
|
|
398
|
-
* @
|
|
399
|
-
* <p>Retrieves a list of runs.</p>
|
|
347
|
+
* @see {@link ListRunsCommand}
|
|
400
348
|
*/
|
|
401
349
|
listRuns(args: ListRunsCommandInput, options?: __HttpHandlerOptions): Promise<ListRunsCommandOutput>;
|
|
402
350
|
listRuns(args: ListRunsCommandInput, cb: (err: any, data?: ListRunsCommandOutput) => void): void;
|
|
403
351
|
listRuns(args: ListRunsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListRunsCommandOutput) => void): void;
|
|
404
352
|
/**
|
|
405
|
-
* @
|
|
406
|
-
* <p>Retrieves a list of tasks for a run.</p>
|
|
353
|
+
* @see {@link ListRunTasksCommand}
|
|
407
354
|
*/
|
|
408
355
|
listRunTasks(args: ListRunTasksCommandInput, options?: __HttpHandlerOptions): Promise<ListRunTasksCommandOutput>;
|
|
409
356
|
listRunTasks(args: ListRunTasksCommandInput, cb: (err: any, data?: ListRunTasksCommandOutput) => void): void;
|
|
410
357
|
listRunTasks(args: ListRunTasksCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListRunTasksCommandOutput) => void): void;
|
|
411
358
|
/**
|
|
412
|
-
* @
|
|
413
|
-
* <p>Retrieves a list of sequence stores.</p>
|
|
359
|
+
* @see {@link ListSequenceStoresCommand}
|
|
414
360
|
*/
|
|
415
361
|
listSequenceStores(args: ListSequenceStoresCommandInput, options?: __HttpHandlerOptions): Promise<ListSequenceStoresCommandOutput>;
|
|
416
362
|
listSequenceStores(args: ListSequenceStoresCommandInput, cb: (err: any, data?: ListSequenceStoresCommandOutput) => void): void;
|
|
417
363
|
listSequenceStores(args: ListSequenceStoresCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListSequenceStoresCommandOutput) => void): void;
|
|
418
364
|
/**
|
|
419
|
-
* @
|
|
420
|
-
* <p>Retrieves a list of tags for a resource.</p>
|
|
365
|
+
* @see {@link ListTagsForResourceCommand}
|
|
421
366
|
*/
|
|
422
367
|
listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
|
|
423
368
|
listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
424
369
|
listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
425
370
|
/**
|
|
426
|
-
* @
|
|
427
|
-
* <p>Retrieves a list of variant import jobs.</p>
|
|
371
|
+
* @see {@link ListVariantImportJobsCommand}
|
|
428
372
|
*/
|
|
429
373
|
listVariantImportJobs(args: ListVariantImportJobsCommandInput, options?: __HttpHandlerOptions): Promise<ListVariantImportJobsCommandOutput>;
|
|
430
374
|
listVariantImportJobs(args: ListVariantImportJobsCommandInput, cb: (err: any, data?: ListVariantImportJobsCommandOutput) => void): void;
|
|
431
375
|
listVariantImportJobs(args: ListVariantImportJobsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListVariantImportJobsCommandOutput) => void): void;
|
|
432
376
|
/**
|
|
433
|
-
* @
|
|
434
|
-
* <p>Retrieves a list of variant stores.</p>
|
|
377
|
+
* @see {@link ListVariantStoresCommand}
|
|
435
378
|
*/
|
|
436
379
|
listVariantStores(args: ListVariantStoresCommandInput, options?: __HttpHandlerOptions): Promise<ListVariantStoresCommandOutput>;
|
|
437
380
|
listVariantStores(args: ListVariantStoresCommandInput, cb: (err: any, data?: ListVariantStoresCommandOutput) => void): void;
|
|
438
381
|
listVariantStores(args: ListVariantStoresCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListVariantStoresCommandOutput) => void): void;
|
|
439
382
|
/**
|
|
440
|
-
* @
|
|
441
|
-
* <p>Retrieves a list of workflows.</p>
|
|
383
|
+
* @see {@link ListWorkflowsCommand}
|
|
442
384
|
*/
|
|
443
385
|
listWorkflows(args: ListWorkflowsCommandInput, options?: __HttpHandlerOptions): Promise<ListWorkflowsCommandOutput>;
|
|
444
386
|
listWorkflows(args: ListWorkflowsCommandInput, cb: (err: any, data?: ListWorkflowsCommandOutput) => void): void;
|
|
445
387
|
listWorkflows(args: ListWorkflowsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListWorkflowsCommandOutput) => void): void;
|
|
446
388
|
/**
|
|
447
|
-
* @
|
|
448
|
-
* <p>Starts an annotation import job.</p>
|
|
389
|
+
* @see {@link StartAnnotationImportJobCommand}
|
|
449
390
|
*/
|
|
450
391
|
startAnnotationImportJob(args: StartAnnotationImportJobCommandInput, options?: __HttpHandlerOptions): Promise<StartAnnotationImportJobCommandOutput>;
|
|
451
392
|
startAnnotationImportJob(args: StartAnnotationImportJobCommandInput, cb: (err: any, data?: StartAnnotationImportJobCommandOutput) => void): void;
|
|
452
393
|
startAnnotationImportJob(args: StartAnnotationImportJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartAnnotationImportJobCommandOutput) => void): void;
|
|
453
394
|
/**
|
|
454
|
-
* @
|
|
455
|
-
* <p>Activates an archived read set. To reduce storage charges, Amazon Omics archives unused read
|
|
456
|
-
* sets after 30 days.</p>
|
|
395
|
+
* @see {@link StartReadSetActivationJobCommand}
|
|
457
396
|
*/
|
|
458
397
|
startReadSetActivationJob(args: StartReadSetActivationJobCommandInput, options?: __HttpHandlerOptions): Promise<StartReadSetActivationJobCommandOutput>;
|
|
459
398
|
startReadSetActivationJob(args: StartReadSetActivationJobCommandInput, cb: (err: any, data?: StartReadSetActivationJobCommandOutput) => void): void;
|
|
460
399
|
startReadSetActivationJob(args: StartReadSetActivationJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartReadSetActivationJobCommandOutput) => void): void;
|
|
461
400
|
/**
|
|
462
|
-
* @
|
|
463
|
-
* <p>Exports a read set to Amazon S3.</p>
|
|
401
|
+
* @see {@link StartReadSetExportJobCommand}
|
|
464
402
|
*/
|
|
465
403
|
startReadSetExportJob(args: StartReadSetExportJobCommandInput, options?: __HttpHandlerOptions): Promise<StartReadSetExportJobCommandOutput>;
|
|
466
404
|
startReadSetExportJob(args: StartReadSetExportJobCommandInput, cb: (err: any, data?: StartReadSetExportJobCommandOutput) => void): void;
|
|
467
405
|
startReadSetExportJob(args: StartReadSetExportJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartReadSetExportJobCommandOutput) => void): void;
|
|
468
406
|
/**
|
|
469
|
-
* @
|
|
470
|
-
* <p>Starts a read set import job.</p>
|
|
407
|
+
* @see {@link StartReadSetImportJobCommand}
|
|
471
408
|
*/
|
|
472
409
|
startReadSetImportJob(args: StartReadSetImportJobCommandInput, options?: __HttpHandlerOptions): Promise<StartReadSetImportJobCommandOutput>;
|
|
473
410
|
startReadSetImportJob(args: StartReadSetImportJobCommandInput, cb: (err: any, data?: StartReadSetImportJobCommandOutput) => void): void;
|
|
474
411
|
startReadSetImportJob(args: StartReadSetImportJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartReadSetImportJobCommandOutput) => void): void;
|
|
475
412
|
/**
|
|
476
|
-
* @
|
|
477
|
-
* <p>Starts a reference import job.</p>
|
|
413
|
+
* @see {@link StartReferenceImportJobCommand}
|
|
478
414
|
*/
|
|
479
415
|
startReferenceImportJob(args: StartReferenceImportJobCommandInput, options?: __HttpHandlerOptions): Promise<StartReferenceImportJobCommandOutput>;
|
|
480
416
|
startReferenceImportJob(args: StartReferenceImportJobCommandInput, cb: (err: any, data?: StartReferenceImportJobCommandOutput) => void): void;
|
|
481
417
|
startReferenceImportJob(args: StartReferenceImportJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartReferenceImportJobCommandOutput) => void): void;
|
|
482
418
|
/**
|
|
483
|
-
* @
|
|
484
|
-
* <p>Starts a run.</p>
|
|
419
|
+
* @see {@link StartRunCommand}
|
|
485
420
|
*/
|
|
486
421
|
startRun(args: StartRunCommandInput, options?: __HttpHandlerOptions): Promise<StartRunCommandOutput>;
|
|
487
422
|
startRun(args: StartRunCommandInput, cb: (err: any, data?: StartRunCommandOutput) => void): void;
|
|
488
423
|
startRun(args: StartRunCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartRunCommandOutput) => void): void;
|
|
489
424
|
/**
|
|
490
|
-
* @
|
|
491
|
-
* <p>Starts a variant import job.</p>
|
|
425
|
+
* @see {@link StartVariantImportJobCommand}
|
|
492
426
|
*/
|
|
493
427
|
startVariantImportJob(args: StartVariantImportJobCommandInput, options?: __HttpHandlerOptions): Promise<StartVariantImportJobCommandOutput>;
|
|
494
428
|
startVariantImportJob(args: StartVariantImportJobCommandInput, cb: (err: any, data?: StartVariantImportJobCommandOutput) => void): void;
|
|
495
429
|
startVariantImportJob(args: StartVariantImportJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartVariantImportJobCommandOutput) => void): void;
|
|
496
430
|
/**
|
|
497
|
-
* @
|
|
498
|
-
* <p>Tags a resource.</p>
|
|
431
|
+
* @see {@link TagResourceCommand}
|
|
499
432
|
*/
|
|
500
433
|
tagResource(args: TagResourceCommandInput, options?: __HttpHandlerOptions): Promise<TagResourceCommandOutput>;
|
|
501
434
|
tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
502
435
|
tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
503
436
|
/**
|
|
504
|
-
* @
|
|
505
|
-
* <p>Removes tags from a resource.</p>
|
|
437
|
+
* @see {@link UntagResourceCommand}
|
|
506
438
|
*/
|
|
507
439
|
untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
|
|
508
440
|
untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
509
441
|
untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
510
442
|
/**
|
|
511
|
-
* @
|
|
512
|
-
* <p>Updates an annotation store.</p>
|
|
443
|
+
* @see {@link UpdateAnnotationStoreCommand}
|
|
513
444
|
*/
|
|
514
445
|
updateAnnotationStore(args: UpdateAnnotationStoreCommandInput, options?: __HttpHandlerOptions): Promise<UpdateAnnotationStoreCommandOutput>;
|
|
515
446
|
updateAnnotationStore(args: UpdateAnnotationStoreCommandInput, cb: (err: any, data?: UpdateAnnotationStoreCommandOutput) => void): void;
|
|
516
447
|
updateAnnotationStore(args: UpdateAnnotationStoreCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateAnnotationStoreCommandOutput) => void): void;
|
|
517
448
|
/**
|
|
518
|
-
* @
|
|
519
|
-
* <p>Updates a run group.</p>
|
|
449
|
+
* @see {@link UpdateRunGroupCommand}
|
|
520
450
|
*/
|
|
521
451
|
updateRunGroup(args: UpdateRunGroupCommandInput, options?: __HttpHandlerOptions): Promise<UpdateRunGroupCommandOutput>;
|
|
522
452
|
updateRunGroup(args: UpdateRunGroupCommandInput, cb: (err: any, data?: UpdateRunGroupCommandOutput) => void): void;
|
|
523
453
|
updateRunGroup(args: UpdateRunGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateRunGroupCommandOutput) => void): void;
|
|
524
454
|
/**
|
|
525
|
-
* @
|
|
526
|
-
* <p>Updates a variant store.</p>
|
|
455
|
+
* @see {@link UpdateVariantStoreCommand}
|
|
527
456
|
*/
|
|
528
457
|
updateVariantStore(args: UpdateVariantStoreCommandInput, options?: __HttpHandlerOptions): Promise<UpdateVariantStoreCommandOutput>;
|
|
529
458
|
updateVariantStore(args: UpdateVariantStoreCommandInput, cb: (err: any, data?: UpdateVariantStoreCommandOutput) => void): void;
|
|
530
459
|
updateVariantStore(args: UpdateVariantStoreCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateVariantStoreCommandOutput) => void): void;
|
|
531
460
|
/**
|
|
532
|
-
* @
|
|
533
|
-
* <p>Updates a workflow.</p>
|
|
461
|
+
* @see {@link UpdateWorkflowCommand}
|
|
534
462
|
*/
|
|
535
463
|
updateWorkflow(args: UpdateWorkflowCommandInput, options?: __HttpHandlerOptions): Promise<UpdateWorkflowCommandOutput>;
|
|
536
464
|
updateWorkflow(args: UpdateWorkflowCommandInput, cb: (err: any, data?: UpdateWorkflowCommandOutput) => void): void;
|
|
537
465
|
updateWorkflow(args: UpdateWorkflowCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateWorkflowCommandOutput) => void): void;
|
|
538
466
|
}
|
|
467
|
+
/**
|
|
468
|
+
* @public
|
|
469
|
+
* <p>This is the <i>Amazon Omics API Reference</i>. For an introduction to the service, see <a href="https://docs.aws.amazon.com/omics/latest/dev/">What is Amazon Omics?</a> in the
|
|
470
|
+
* <i>Amazon Omics Developer Guide</i>.</p>
|
|
471
|
+
*/
|
|
472
|
+
export declare class Omics extends OmicsClient implements Omics {
|
|
473
|
+
}
|
|
@@ -264,7 +264,7 @@ import {
|
|
|
264
264
|
UpdateWorkflowCommandOutput,
|
|
265
265
|
} from "./commands/UpdateWorkflowCommand";
|
|
266
266
|
import { OmicsClient } from "./OmicsClient";
|
|
267
|
-
export
|
|
267
|
+
export interface Omics {
|
|
268
268
|
batchDeleteReadSet(
|
|
269
269
|
args: BatchDeleteReadSetCommandInput,
|
|
270
270
|
options?: __HttpHandlerOptions
|
|
@@ -1124,3 +1124,4 @@ export declare class Omics extends OmicsClient {
|
|
|
1124
1124
|
cb: (err: any, data?: UpdateWorkflowCommandOutput) => void
|
|
1125
1125
|
): void;
|
|
1126
1126
|
}
|
|
1127
|
+
export declare class Omics extends OmicsClient implements Omics {}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-omics",
|
|
3
3
|
"description": "AWS SDK for JavaScript Omics Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.316.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.316.0",
|
|
25
25
|
"@aws-sdk/config-resolver": "3.310.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.316.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.310.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.310.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.310.0",
|
|
@@ -40,14 +40,14 @@
|
|
|
40
40
|
"@aws-sdk/node-config-provider": "3.310.0",
|
|
41
41
|
"@aws-sdk/node-http-handler": "3.310.0",
|
|
42
42
|
"@aws-sdk/protocol-http": "3.310.0",
|
|
43
|
-
"@aws-sdk/smithy-client": "3.
|
|
43
|
+
"@aws-sdk/smithy-client": "3.316.0",
|
|
44
44
|
"@aws-sdk/types": "3.310.0",
|
|
45
45
|
"@aws-sdk/url-parser": "3.310.0",
|
|
46
46
|
"@aws-sdk/util-base64": "3.310.0",
|
|
47
47
|
"@aws-sdk/util-body-length-browser": "3.310.0",
|
|
48
48
|
"@aws-sdk/util-body-length-node": "3.310.0",
|
|
49
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
50
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
49
|
+
"@aws-sdk/util-defaults-mode-browser": "3.316.0",
|
|
50
|
+
"@aws-sdk/util-defaults-mode-node": "3.316.0",
|
|
51
51
|
"@aws-sdk/util-endpoints": "3.310.0",
|
|
52
52
|
"@aws-sdk/util-retry": "3.310.0",
|
|
53
53
|
"@aws-sdk/util-stream-browser": "3.310.0",
|