aws-sdk-omics 1.22.0 → 1.24.0

Sign up to get free protection for your applications and to get access to all the features.
data/sig/client.rbs ADDED
@@ -0,0 +1,1586 @@
1
+ # WARNING ABOUT GENERATED CODE
2
+ #
3
+ # This file is generated. See the contributing guide for more information:
4
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
5
+ #
6
+ # WARNING ABOUT GENERATED CODE
7
+
8
+ module Aws
9
+ module Omics
10
+ class Client < ::Seahorse::Client::Base
11
+ include ::Aws::ClientStubs
12
+
13
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#initialize-instance_method
14
+ def self.new: (
15
+ ?credentials: untyped,
16
+ ?region: String,
17
+ ?access_key_id: String,
18
+ ?active_endpoint_cache: bool,
19
+ ?adaptive_retry_wait_to_fill: bool,
20
+ ?client_side_monitoring: bool,
21
+ ?client_side_monitoring_client_id: String,
22
+ ?client_side_monitoring_host: String,
23
+ ?client_side_monitoring_port: Integer,
24
+ ?client_side_monitoring_publisher: untyped,
25
+ ?convert_params: bool,
26
+ ?correct_clock_skew: bool,
27
+ ?defaults_mode: String,
28
+ ?disable_host_prefix_injection: bool,
29
+ ?disable_request_compression: bool,
30
+ ?endpoint: String,
31
+ ?endpoint_cache_max_entries: Integer,
32
+ ?endpoint_cache_max_threads: Integer,
33
+ ?endpoint_cache_poll_interval: Integer,
34
+ ?endpoint_discovery: bool,
35
+ ?ignore_configured_endpoint_urls: bool,
36
+ ?log_formatter: untyped,
37
+ ?log_level: Symbol,
38
+ ?logger: untyped,
39
+ ?max_attempts: Integer,
40
+ ?profile: String,
41
+ ?request_min_compression_size_bytes: Integer,
42
+ ?retry_backoff: Proc,
43
+ ?retry_base_delay: Float,
44
+ ?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
45
+ ?retry_limit: Integer,
46
+ ?retry_max_delay: Integer,
47
+ ?retry_mode: ("legacy" | "standard" | "adaptive"),
48
+ ?sdk_ua_app_id: String,
49
+ ?secret_access_key: String,
50
+ ?session_token: String,
51
+ ?stub_responses: untyped,
52
+ ?token_provider: untyped,
53
+ ?use_dualstack_endpoint: bool,
54
+ ?use_fips_endpoint: bool,
55
+ ?validate_params: bool,
56
+ ?endpoint_provider: untyped,
57
+ ?http_proxy: String,
58
+ ?http_open_timeout: (Float | Integer),
59
+ ?http_read_timeout: (Float | Integer),
60
+ ?http_idle_timeout: (Float | Integer),
61
+ ?http_continue_timeout: (Float | Integer),
62
+ ?ssl_timeout: (Float | Integer | nil),
63
+ ?http_wire_trace: bool,
64
+ ?ssl_verify_peer: bool,
65
+ ?ssl_ca_bundle: String,
66
+ ?ssl_ca_directory: String,
67
+ ?ssl_ca_store: String,
68
+ ?on_chunk_received: Proc,
69
+ ?on_chunk_sent: Proc,
70
+ ?raise_response_errors: bool
71
+ ) -> instance
72
+ | (?Hash[Symbol, untyped]) -> instance
73
+
74
+
75
+ interface _AbortMultipartReadSetUploadResponseSuccess
76
+ include ::Seahorse::Client::_ResponseSuccess[Types::AbortMultipartReadSetUploadResponse]
77
+ end
78
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#abort_multipart_read_set_upload-instance_method
79
+ def abort_multipart_read_set_upload: (
80
+ sequence_store_id: ::String,
81
+ upload_id: ::String
82
+ ) -> _AbortMultipartReadSetUploadResponseSuccess
83
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AbortMultipartReadSetUploadResponseSuccess
84
+
85
+ interface _AcceptShareResponseSuccess
86
+ include ::Seahorse::Client::_ResponseSuccess[Types::AcceptShareResponse]
87
+ def status: () -> ("PENDING" | "ACTIVATING" | "ACTIVE" | "DELETING" | "DELETED" | "FAILED")
88
+ end
89
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#accept_share-instance_method
90
+ def accept_share: (
91
+ share_id: ::String
92
+ ) -> _AcceptShareResponseSuccess
93
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AcceptShareResponseSuccess
94
+
95
+ interface _BatchDeleteReadSetResponseSuccess
96
+ include ::Seahorse::Client::_ResponseSuccess[Types::BatchDeleteReadSetResponse]
97
+ def errors: () -> ::Array[Types::ReadSetBatchError]
98
+ end
99
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#batch_delete_read_set-instance_method
100
+ def batch_delete_read_set: (
101
+ ids: Array[::String],
102
+ sequence_store_id: ::String
103
+ ) -> _BatchDeleteReadSetResponseSuccess
104
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _BatchDeleteReadSetResponseSuccess
105
+
106
+ interface _CancelAnnotationImportJobResponseSuccess
107
+ include ::Seahorse::Client::_ResponseSuccess[Types::CancelAnnotationImportResponse]
108
+ end
109
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#cancel_annotation_import_job-instance_method
110
+ def cancel_annotation_import_job: (
111
+ job_id: ::String
112
+ ) -> _CancelAnnotationImportJobResponseSuccess
113
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CancelAnnotationImportJobResponseSuccess
114
+
115
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#cancel_run-instance_method
116
+ def cancel_run: (
117
+ id: ::String
118
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
119
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
120
+
121
+ interface _CancelVariantImportJobResponseSuccess
122
+ include ::Seahorse::Client::_ResponseSuccess[Types::CancelVariantImportResponse]
123
+ end
124
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#cancel_variant_import_job-instance_method
125
+ def cancel_variant_import_job: (
126
+ job_id: ::String
127
+ ) -> _CancelVariantImportJobResponseSuccess
128
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CancelVariantImportJobResponseSuccess
129
+
130
+ interface _CompleteMultipartReadSetUploadResponseSuccess
131
+ include ::Seahorse::Client::_ResponseSuccess[Types::CompleteMultipartReadSetUploadResponse]
132
+ def read_set_id: () -> ::String
133
+ end
134
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#complete_multipart_read_set_upload-instance_method
135
+ def complete_multipart_read_set_upload: (
136
+ sequence_store_id: ::String,
137
+ upload_id: ::String,
138
+ parts: Array[
139
+ {
140
+ part_number: ::Integer,
141
+ part_source: ("SOURCE1" | "SOURCE2"),
142
+ checksum: ::String
143
+ },
144
+ ]
145
+ ) -> _CompleteMultipartReadSetUploadResponseSuccess
146
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CompleteMultipartReadSetUploadResponseSuccess
147
+
148
+ interface _CreateAnnotationStoreResponseSuccess
149
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateAnnotationStoreResponse]
150
+ def id: () -> ::String
151
+ def reference: () -> Types::ReferenceItem
152
+ def store_format: () -> ("GFF" | "TSV" | "VCF")
153
+ def store_options: () -> Types::StoreOptions
154
+ def status: () -> ("CREATING" | "UPDATING" | "DELETING" | "ACTIVE" | "FAILED")
155
+ def name: () -> ::String
156
+ def version_name: () -> ::String
157
+ def creation_time: () -> ::Time
158
+ end
159
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#create_annotation_store-instance_method
160
+ def create_annotation_store: (
161
+ ?reference: {
162
+ reference_arn: ::String?
163
+ },
164
+ ?name: ::String,
165
+ ?description: ::String,
166
+ ?tags: Hash[::String, ::String],
167
+ ?version_name: ::String,
168
+ ?sse_config: {
169
+ type: ("KMS"),
170
+ key_arn: ::String?
171
+ },
172
+ store_format: ("GFF" | "TSV" | "VCF"),
173
+ ?store_options: {
174
+ tsv_store_options: {
175
+ annotation_type: ("GENERIC" | "CHR_POS" | "CHR_POS_REF_ALT" | "CHR_START_END_ONE_BASE" | "CHR_START_END_REF_ALT_ONE_BASE" | "CHR_START_END_ZERO_BASE" | "CHR_START_END_REF_ALT_ZERO_BASE")?,
176
+ format_to_header: Hash[("CHR" | "START" | "END" | "REF" | "ALT" | "POS"), ::String]?,
177
+ schema: Array[
178
+ Hash[::String, ("LONG" | "INT" | "STRING" | "FLOAT" | "DOUBLE" | "BOOLEAN")],
179
+ ]?
180
+ }?
181
+ }
182
+ ) -> _CreateAnnotationStoreResponseSuccess
183
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateAnnotationStoreResponseSuccess
184
+
185
+ interface _CreateAnnotationStoreVersionResponseSuccess
186
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateAnnotationStoreVersionResponse]
187
+ def id: () -> ::String
188
+ def version_name: () -> ::String
189
+ def store_id: () -> ::String
190
+ def version_options: () -> Types::VersionOptions
191
+ def name: () -> ::String
192
+ def status: () -> ("CREATING" | "UPDATING" | "DELETING" | "ACTIVE" | "FAILED")
193
+ def creation_time: () -> ::Time
194
+ end
195
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#create_annotation_store_version-instance_method
196
+ def create_annotation_store_version: (
197
+ name: ::String,
198
+ version_name: ::String,
199
+ ?description: ::String,
200
+ ?version_options: {
201
+ tsv_version_options: {
202
+ annotation_type: ("GENERIC" | "CHR_POS" | "CHR_POS_REF_ALT" | "CHR_START_END_ONE_BASE" | "CHR_START_END_REF_ALT_ONE_BASE" | "CHR_START_END_ZERO_BASE" | "CHR_START_END_REF_ALT_ZERO_BASE")?,
203
+ format_to_header: Hash[("CHR" | "START" | "END" | "REF" | "ALT" | "POS"), ::String]?,
204
+ schema: Array[
205
+ Hash[::String, ("LONG" | "INT" | "STRING" | "FLOAT" | "DOUBLE" | "BOOLEAN")],
206
+ ]?
207
+ }?
208
+ },
209
+ ?tags: Hash[::String, ::String]
210
+ ) -> _CreateAnnotationStoreVersionResponseSuccess
211
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateAnnotationStoreVersionResponseSuccess
212
+
213
+ interface _CreateMultipartReadSetUploadResponseSuccess
214
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateMultipartReadSetUploadResponse]
215
+ def sequence_store_id: () -> ::String
216
+ def upload_id: () -> ::String
217
+ def source_file_type: () -> ("FASTQ" | "BAM" | "CRAM" | "UBAM")
218
+ def subject_id: () -> ::String
219
+ def sample_id: () -> ::String
220
+ def generated_from: () -> ::String
221
+ def reference_arn: () -> ::String
222
+ def name: () -> ::String
223
+ def description: () -> ::String
224
+ def tags: () -> ::Hash[::String, ::String]
225
+ def creation_time: () -> ::Time
226
+ end
227
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#create_multipart_read_set_upload-instance_method
228
+ def create_multipart_read_set_upload: (
229
+ sequence_store_id: ::String,
230
+ ?client_token: ::String,
231
+ source_file_type: ("FASTQ" | "BAM" | "CRAM" | "UBAM"),
232
+ subject_id: ::String,
233
+ sample_id: ::String,
234
+ ?generated_from: ::String,
235
+ ?reference_arn: ::String,
236
+ name: ::String,
237
+ ?description: ::String,
238
+ ?tags: Hash[::String, ::String]
239
+ ) -> _CreateMultipartReadSetUploadResponseSuccess
240
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateMultipartReadSetUploadResponseSuccess
241
+
242
+ interface _CreateReferenceStoreResponseSuccess
243
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateReferenceStoreResponse]
244
+ def id: () -> ::String
245
+ def arn: () -> ::String
246
+ def name: () -> ::String
247
+ def description: () -> ::String
248
+ def sse_config: () -> Types::SseConfig
249
+ def creation_time: () -> ::Time
250
+ end
251
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#create_reference_store-instance_method
252
+ def create_reference_store: (
253
+ name: ::String,
254
+ ?description: ::String,
255
+ ?sse_config: {
256
+ type: ("KMS"),
257
+ key_arn: ::String?
258
+ },
259
+ ?tags: Hash[::String, ::String],
260
+ ?client_token: ::String
261
+ ) -> _CreateReferenceStoreResponseSuccess
262
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateReferenceStoreResponseSuccess
263
+
264
+ interface _CreateRunGroupResponseSuccess
265
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateRunGroupResponse]
266
+ def arn: () -> ::String
267
+ def id: () -> ::String
268
+ def tags: () -> ::Hash[::String, ::String]
269
+ end
270
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#create_run_group-instance_method
271
+ def create_run_group: (
272
+ ?name: ::String,
273
+ ?max_cpus: ::Integer,
274
+ ?max_runs: ::Integer,
275
+ ?max_duration: ::Integer,
276
+ ?tags: Hash[::String, ::String],
277
+ request_id: ::String,
278
+ ?max_gpus: ::Integer
279
+ ) -> _CreateRunGroupResponseSuccess
280
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateRunGroupResponseSuccess
281
+
282
+ interface _CreateSequenceStoreResponseSuccess
283
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateSequenceStoreResponse]
284
+ def id: () -> ::String
285
+ def arn: () -> ::String
286
+ def name: () -> ::String
287
+ def description: () -> ::String
288
+ def sse_config: () -> Types::SseConfig
289
+ def creation_time: () -> ::Time
290
+ def fallback_location: () -> ::String
291
+ def e_tag_algorithm_family: () -> ("MD5up" | "SHA256up" | "SHA512up")
292
+ end
293
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#create_sequence_store-instance_method
294
+ def create_sequence_store: (
295
+ name: ::String,
296
+ ?description: ::String,
297
+ ?sse_config: {
298
+ type: ("KMS"),
299
+ key_arn: ::String?
300
+ },
301
+ ?tags: Hash[::String, ::String],
302
+ ?client_token: ::String,
303
+ ?fallback_location: ::String,
304
+ ?e_tag_algorithm_family: ("MD5up" | "SHA256up" | "SHA512up")
305
+ ) -> _CreateSequenceStoreResponseSuccess
306
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateSequenceStoreResponseSuccess
307
+
308
+ interface _CreateShareResponseSuccess
309
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateShareResponse]
310
+ def share_id: () -> ::String
311
+ def status: () -> ("PENDING" | "ACTIVATING" | "ACTIVE" | "DELETING" | "DELETED" | "FAILED")
312
+ def share_name: () -> ::String
313
+ end
314
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#create_share-instance_method
315
+ def create_share: (
316
+ resource_arn: ::String,
317
+ principal_subscriber: ::String,
318
+ ?share_name: ::String
319
+ ) -> _CreateShareResponseSuccess
320
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateShareResponseSuccess
321
+
322
+ interface _CreateVariantStoreResponseSuccess
323
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateVariantStoreResponse]
324
+ def id: () -> ::String
325
+ def reference: () -> Types::ReferenceItem
326
+ def status: () -> ("CREATING" | "UPDATING" | "DELETING" | "ACTIVE" | "FAILED")
327
+ def name: () -> ::String
328
+ def creation_time: () -> ::Time
329
+ end
330
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#create_variant_store-instance_method
331
+ def create_variant_store: (
332
+ reference: {
333
+ reference_arn: ::String?
334
+ },
335
+ ?name: ::String,
336
+ ?description: ::String,
337
+ ?tags: Hash[::String, ::String],
338
+ ?sse_config: {
339
+ type: ("KMS"),
340
+ key_arn: ::String?
341
+ }
342
+ ) -> _CreateVariantStoreResponseSuccess
343
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateVariantStoreResponseSuccess
344
+
345
+ interface _CreateWorkflowResponseSuccess
346
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateWorkflowResponse]
347
+ def arn: () -> ::String
348
+ def id: () -> ::String
349
+ def status: () -> ("CREATING" | "ACTIVE" | "UPDATING" | "DELETED" | "FAILED" | "INACTIVE")
350
+ def tags: () -> ::Hash[::String, ::String]
351
+ end
352
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#create_workflow-instance_method
353
+ def create_workflow: (
354
+ ?name: ::String,
355
+ ?description: ::String,
356
+ ?engine: ("WDL" | "NEXTFLOW" | "CWL"),
357
+ ?definition_zip: ::String,
358
+ ?definition_uri: ::String,
359
+ ?main: ::String,
360
+ ?parameter_template: Hash[::String, {
361
+ description: ::String?,
362
+ optional: bool?
363
+ }],
364
+ ?storage_capacity: ::Integer,
365
+ ?tags: Hash[::String, ::String],
366
+ request_id: ::String,
367
+ ?accelerators: ("GPU")
368
+ ) -> _CreateWorkflowResponseSuccess
369
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateWorkflowResponseSuccess
370
+
371
+ interface _DeleteAnnotationStoreResponseSuccess
372
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteAnnotationStoreResponse]
373
+ def status: () -> ("CREATING" | "UPDATING" | "DELETING" | "ACTIVE" | "FAILED")
374
+ end
375
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#delete_annotation_store-instance_method
376
+ def delete_annotation_store: (
377
+ name: ::String,
378
+ ?force: bool
379
+ ) -> _DeleteAnnotationStoreResponseSuccess
380
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteAnnotationStoreResponseSuccess
381
+
382
+ interface _DeleteAnnotationStoreVersionsResponseSuccess
383
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteAnnotationStoreVersionsResponse]
384
+ def errors: () -> ::Array[Types::VersionDeleteError]
385
+ end
386
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#delete_annotation_store_versions-instance_method
387
+ def delete_annotation_store_versions: (
388
+ name: ::String,
389
+ versions: Array[::String],
390
+ ?force: bool
391
+ ) -> _DeleteAnnotationStoreVersionsResponseSuccess
392
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteAnnotationStoreVersionsResponseSuccess
393
+
394
+ interface _DeleteReferenceResponseSuccess
395
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteReferenceResponse]
396
+ end
397
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#delete_reference-instance_method
398
+ def delete_reference: (
399
+ id: ::String,
400
+ reference_store_id: ::String
401
+ ) -> _DeleteReferenceResponseSuccess
402
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteReferenceResponseSuccess
403
+
404
+ interface _DeleteReferenceStoreResponseSuccess
405
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteReferenceStoreResponse]
406
+ end
407
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#delete_reference_store-instance_method
408
+ def delete_reference_store: (
409
+ id: ::String
410
+ ) -> _DeleteReferenceStoreResponseSuccess
411
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteReferenceStoreResponseSuccess
412
+
413
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#delete_run-instance_method
414
+ def delete_run: (
415
+ id: ::String
416
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
417
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
418
+
419
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#delete_run_group-instance_method
420
+ def delete_run_group: (
421
+ id: ::String
422
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
423
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
424
+
425
+ interface _DeleteSequenceStoreResponseSuccess
426
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteSequenceStoreResponse]
427
+ end
428
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#delete_sequence_store-instance_method
429
+ def delete_sequence_store: (
430
+ id: ::String
431
+ ) -> _DeleteSequenceStoreResponseSuccess
432
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteSequenceStoreResponseSuccess
433
+
434
+ interface _DeleteShareResponseSuccess
435
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteShareResponse]
436
+ def status: () -> ("PENDING" | "ACTIVATING" | "ACTIVE" | "DELETING" | "DELETED" | "FAILED")
437
+ end
438
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#delete_share-instance_method
439
+ def delete_share: (
440
+ share_id: ::String
441
+ ) -> _DeleteShareResponseSuccess
442
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteShareResponseSuccess
443
+
444
+ interface _DeleteVariantStoreResponseSuccess
445
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteVariantStoreResponse]
446
+ def status: () -> ("CREATING" | "UPDATING" | "DELETING" | "ACTIVE" | "FAILED")
447
+ end
448
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#delete_variant_store-instance_method
449
+ def delete_variant_store: (
450
+ name: ::String,
451
+ ?force: bool
452
+ ) -> _DeleteVariantStoreResponseSuccess
453
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteVariantStoreResponseSuccess
454
+
455
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#delete_workflow-instance_method
456
+ def delete_workflow: (
457
+ id: ::String
458
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
459
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
460
+
461
+ interface _GetAnnotationImportJobResponseSuccess
462
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetAnnotationImportResponse]
463
+ def id: () -> ::String
464
+ def destination_name: () -> ::String
465
+ def version_name: () -> ::String
466
+ def role_arn: () -> ::String
467
+ def status: () -> ("SUBMITTED" | "IN_PROGRESS" | "CANCELLED" | "COMPLETED" | "FAILED" | "COMPLETED_WITH_FAILURES")
468
+ def status_message: () -> ::String
469
+ def creation_time: () -> ::Time
470
+ def update_time: () -> ::Time
471
+ def completion_time: () -> ::Time
472
+ def items: () -> ::Array[Types::AnnotationImportItemDetail]
473
+ def run_left_normalization: () -> bool
474
+ def format_options: () -> Types::FormatOptions
475
+ def annotation_fields: () -> ::Hash[::String, ::String]
476
+ end
477
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#get_annotation_import_job-instance_method
478
+ def get_annotation_import_job: (
479
+ job_id: ::String
480
+ ) -> _GetAnnotationImportJobResponseSuccess
481
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetAnnotationImportJobResponseSuccess
482
+
483
+ interface _GetAnnotationStoreResponseSuccess
484
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetAnnotationStoreResponse]
485
+ def id: () -> ::String
486
+ def reference: () -> Types::ReferenceItem
487
+ def status: () -> ("CREATING" | "UPDATING" | "DELETING" | "ACTIVE" | "FAILED")
488
+ def store_arn: () -> ::String
489
+ def name: () -> ::String
490
+ def description: () -> ::String
491
+ def sse_config: () -> Types::SseConfig
492
+ def creation_time: () -> ::Time
493
+ def update_time: () -> ::Time
494
+ def tags: () -> ::Hash[::String, ::String]
495
+ def store_options: () -> Types::StoreOptions
496
+ def store_format: () -> ("GFF" | "TSV" | "VCF")
497
+ def status_message: () -> ::String
498
+ def store_size_bytes: () -> ::Integer
499
+ def num_versions: () -> ::Integer
500
+ end
501
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#get_annotation_store-instance_method
502
+ def get_annotation_store: (
503
+ name: ::String
504
+ ) -> _GetAnnotationStoreResponseSuccess
505
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetAnnotationStoreResponseSuccess
506
+
507
+ interface _GetAnnotationStoreVersionResponseSuccess
508
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetAnnotationStoreVersionResponse]
509
+ def store_id: () -> ::String
510
+ def id: () -> ::String
511
+ def status: () -> ("CREATING" | "UPDATING" | "DELETING" | "ACTIVE" | "FAILED")
512
+ def version_arn: () -> ::String
513
+ def name: () -> ::String
514
+ def version_name: () -> ::String
515
+ def description: () -> ::String
516
+ def creation_time: () -> ::Time
517
+ def update_time: () -> ::Time
518
+ def tags: () -> ::Hash[::String, ::String]
519
+ def version_options: () -> Types::VersionOptions
520
+ def status_message: () -> ::String
521
+ def version_size_bytes: () -> ::Integer
522
+ end
523
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#get_annotation_store_version-instance_method
524
+ def get_annotation_store_version: (
525
+ name: ::String,
526
+ version_name: ::String
527
+ ) -> _GetAnnotationStoreVersionResponseSuccess
528
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetAnnotationStoreVersionResponseSuccess
529
+
530
+ interface _GetReadSetResponseSuccess
531
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetReadSetResponse]
532
+ def payload: () -> ::IO
533
+ end
534
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#get_read_set-instance_method
535
+ def get_read_set: (
536
+ id: ::String,
537
+ sequence_store_id: ::String,
538
+ ?file: ("SOURCE1" | "SOURCE2" | "INDEX"),
539
+ part_number: ::Integer
540
+ ) ?{ (*untyped) -> void } -> _GetReadSetResponseSuccess
541
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) ?{ (*untyped) -> void } -> _GetReadSetResponseSuccess
542
+
543
+ interface _GetReadSetActivationJobResponseSuccess
544
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetReadSetActivationJobResponse]
545
+ def id: () -> ::String
546
+ def sequence_store_id: () -> ::String
547
+ def status: () -> ("SUBMITTED" | "IN_PROGRESS" | "CANCELLING" | "CANCELLED" | "FAILED" | "COMPLETED" | "COMPLETED_WITH_FAILURES")
548
+ def status_message: () -> ::String
549
+ def creation_time: () -> ::Time
550
+ def completion_time: () -> ::Time
551
+ def sources: () -> ::Array[Types::ActivateReadSetSourceItem]
552
+ end
553
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#get_read_set_activation_job-instance_method
554
+ def get_read_set_activation_job: (
555
+ id: ::String,
556
+ sequence_store_id: ::String
557
+ ) -> _GetReadSetActivationJobResponseSuccess
558
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetReadSetActivationJobResponseSuccess
559
+
560
+ interface _GetReadSetExportJobResponseSuccess
561
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetReadSetExportJobResponse]
562
+ def id: () -> ::String
563
+ def sequence_store_id: () -> ::String
564
+ def destination: () -> ::String
565
+ def status: () -> ("SUBMITTED" | "IN_PROGRESS" | "CANCELLING" | "CANCELLED" | "FAILED" | "COMPLETED" | "COMPLETED_WITH_FAILURES")
566
+ def status_message: () -> ::String
567
+ def creation_time: () -> ::Time
568
+ def completion_time: () -> ::Time
569
+ def read_sets: () -> ::Array[Types::ExportReadSetDetail]
570
+ end
571
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#get_read_set_export_job-instance_method
572
+ def get_read_set_export_job: (
573
+ sequence_store_id: ::String,
574
+ id: ::String
575
+ ) -> _GetReadSetExportJobResponseSuccess
576
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetReadSetExportJobResponseSuccess
577
+
578
+ interface _GetReadSetImportJobResponseSuccess
579
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetReadSetImportJobResponse]
580
+ def id: () -> ::String
581
+ def sequence_store_id: () -> ::String
582
+ def role_arn: () -> ::String
583
+ def status: () -> ("SUBMITTED" | "IN_PROGRESS" | "CANCELLING" | "CANCELLED" | "FAILED" | "COMPLETED" | "COMPLETED_WITH_FAILURES")
584
+ def status_message: () -> ::String
585
+ def creation_time: () -> ::Time
586
+ def completion_time: () -> ::Time
587
+ def sources: () -> ::Array[Types::ImportReadSetSourceItem]
588
+ end
589
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#get_read_set_import_job-instance_method
590
+ def get_read_set_import_job: (
591
+ id: ::String,
592
+ sequence_store_id: ::String
593
+ ) -> _GetReadSetImportJobResponseSuccess
594
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetReadSetImportJobResponseSuccess
595
+
596
+ interface _GetReadSetMetadataResponseSuccess
597
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetReadSetMetadataResponse]
598
+ def id: () -> ::String
599
+ def arn: () -> ::String
600
+ def sequence_store_id: () -> ::String
601
+ def subject_id: () -> ::String
602
+ def sample_id: () -> ::String
603
+ def status: () -> ("ARCHIVED" | "ACTIVATING" | "ACTIVE" | "DELETING" | "DELETED" | "PROCESSING_UPLOAD" | "UPLOAD_FAILED")
604
+ def name: () -> ::String
605
+ def description: () -> ::String
606
+ def file_type: () -> ("FASTQ" | "BAM" | "CRAM" | "UBAM")
607
+ def creation_time: () -> ::Time
608
+ def sequence_information: () -> Types::SequenceInformation
609
+ def reference_arn: () -> ::String
610
+ def files: () -> Types::ReadSetFiles
611
+ def status_message: () -> ::String
612
+ def creation_type: () -> ("IMPORT" | "UPLOAD")
613
+ def etag: () -> Types::ETag
614
+ end
615
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#get_read_set_metadata-instance_method
616
+ def get_read_set_metadata: (
617
+ id: ::String,
618
+ sequence_store_id: ::String
619
+ ) -> _GetReadSetMetadataResponseSuccess
620
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetReadSetMetadataResponseSuccess
621
+
622
+ interface _GetReferenceResponseSuccess
623
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetReferenceResponse]
624
+ def payload: () -> ::IO
625
+ end
626
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#get_reference-instance_method
627
+ def get_reference: (
628
+ id: ::String,
629
+ reference_store_id: ::String,
630
+ ?range: ::String,
631
+ part_number: ::Integer,
632
+ ?file: ("SOURCE" | "INDEX")
633
+ ) ?{ (*untyped) -> void } -> _GetReferenceResponseSuccess
634
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) ?{ (*untyped) -> void } -> _GetReferenceResponseSuccess
635
+
636
+ interface _GetReferenceImportJobResponseSuccess
637
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetReferenceImportJobResponse]
638
+ def id: () -> ::String
639
+ def reference_store_id: () -> ::String
640
+ def role_arn: () -> ::String
641
+ def status: () -> ("SUBMITTED" | "IN_PROGRESS" | "CANCELLING" | "CANCELLED" | "FAILED" | "COMPLETED" | "COMPLETED_WITH_FAILURES")
642
+ def status_message: () -> ::String
643
+ def creation_time: () -> ::Time
644
+ def completion_time: () -> ::Time
645
+ def sources: () -> ::Array[Types::ImportReferenceSourceItem]
646
+ end
647
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#get_reference_import_job-instance_method
648
+ def get_reference_import_job: (
649
+ id: ::String,
650
+ reference_store_id: ::String
651
+ ) -> _GetReferenceImportJobResponseSuccess
652
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetReferenceImportJobResponseSuccess
653
+
654
+ interface _GetReferenceMetadataResponseSuccess
655
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetReferenceMetadataResponse]
656
+ def id: () -> ::String
657
+ def arn: () -> ::String
658
+ def reference_store_id: () -> ::String
659
+ def md5: () -> ::String
660
+ def status: () -> ("ACTIVE" | "DELETING" | "DELETED")
661
+ def name: () -> ::String
662
+ def description: () -> ::String
663
+ def creation_time: () -> ::Time
664
+ def update_time: () -> ::Time
665
+ def files: () -> Types::ReferenceFiles
666
+ end
667
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#get_reference_metadata-instance_method
668
+ def get_reference_metadata: (
669
+ id: ::String,
670
+ reference_store_id: ::String
671
+ ) -> _GetReferenceMetadataResponseSuccess
672
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetReferenceMetadataResponseSuccess
673
+
674
+ interface _GetReferenceStoreResponseSuccess
675
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetReferenceStoreResponse]
676
+ def id: () -> ::String
677
+ def arn: () -> ::String
678
+ def name: () -> ::String
679
+ def description: () -> ::String
680
+ def sse_config: () -> Types::SseConfig
681
+ def creation_time: () -> ::Time
682
+ end
683
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#get_reference_store-instance_method
684
+ def get_reference_store: (
685
+ id: ::String
686
+ ) -> _GetReferenceStoreResponseSuccess
687
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetReferenceStoreResponseSuccess
688
+
689
+ interface _GetRunResponseSuccess
690
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetRunResponse]
691
+ def arn: () -> ::String
692
+ def id: () -> ::String
693
+ def status: () -> ("PENDING" | "STARTING" | "RUNNING" | "STOPPING" | "COMPLETED" | "DELETED" | "CANCELLED" | "FAILED")
694
+ def workflow_id: () -> ::String
695
+ def workflow_type: () -> ("PRIVATE" | "READY2RUN")
696
+ def run_id: () -> ::String
697
+ def role_arn: () -> ::String
698
+ def name: () -> ::String
699
+ def run_group_id: () -> ::String
700
+ def priority: () -> ::Integer
701
+ def definition: () -> ::String
702
+ def digest: () -> ::String
703
+ def parameters: () -> untyped
704
+ def storage_capacity: () -> ::Integer
705
+ def output_uri: () -> ::String
706
+ def log_level: () -> ("OFF" | "FATAL" | "ERROR" | "ALL")
707
+ def resource_digests: () -> ::Hash[::String, ::String]
708
+ def started_by: () -> ::String
709
+ def creation_time: () -> ::Time
710
+ def start_time: () -> ::Time
711
+ def stop_time: () -> ::Time
712
+ def status_message: () -> ::String
713
+ def tags: () -> ::Hash[::String, ::String]
714
+ def accelerators: () -> ("GPU")
715
+ def retention_mode: () -> ("RETAIN" | "REMOVE")
716
+ def failure_reason: () -> ::String
717
+ def log_location: () -> Types::RunLogLocation
718
+ def uuid: () -> ::String
719
+ def run_output_uri: () -> ::String
720
+ end
721
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#get_run-instance_method
722
+ def get_run: (
723
+ id: ::String,
724
+ ?export: Array[("DEFINITION")]
725
+ ) -> _GetRunResponseSuccess
726
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetRunResponseSuccess
727
+
728
+ interface _GetRunGroupResponseSuccess
729
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetRunGroupResponse]
730
+ def arn: () -> ::String
731
+ def id: () -> ::String
732
+ def name: () -> ::String
733
+ def max_cpus: () -> ::Integer
734
+ def max_runs: () -> ::Integer
735
+ def max_duration: () -> ::Integer
736
+ def creation_time: () -> ::Time
737
+ def tags: () -> ::Hash[::String, ::String]
738
+ def max_gpus: () -> ::Integer
739
+ end
740
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#get_run_group-instance_method
741
+ def get_run_group: (
742
+ id: ::String
743
+ ) -> _GetRunGroupResponseSuccess
744
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetRunGroupResponseSuccess
745
+
746
+ interface _GetRunTaskResponseSuccess
747
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetRunTaskResponse]
748
+ def task_id: () -> ::String
749
+ def status: () -> ("PENDING" | "STARTING" | "RUNNING" | "STOPPING" | "COMPLETED" | "CANCELLED" | "FAILED")
750
+ def name: () -> ::String
751
+ def cpus: () -> ::Integer
752
+ def memory: () -> ::Integer
753
+ def creation_time: () -> ::Time
754
+ def start_time: () -> ::Time
755
+ def stop_time: () -> ::Time
756
+ def status_message: () -> ::String
757
+ def log_stream: () -> ::String
758
+ def gpus: () -> ::Integer
759
+ def instance_type: () -> ::String
760
+ def failure_reason: () -> ::String
761
+ end
762
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#get_run_task-instance_method
763
+ def get_run_task: (
764
+ id: ::String,
765
+ task_id: ::String
766
+ ) -> _GetRunTaskResponseSuccess
767
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetRunTaskResponseSuccess
768
+
769
+ interface _GetSequenceStoreResponseSuccess
770
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetSequenceStoreResponse]
771
+ def id: () -> ::String
772
+ def arn: () -> ::String
773
+ def name: () -> ::String
774
+ def description: () -> ::String
775
+ def sse_config: () -> Types::SseConfig
776
+ def creation_time: () -> ::Time
777
+ def fallback_location: () -> ::String
778
+ def s3_access: () -> Types::SequenceStoreS3Access
779
+ def e_tag_algorithm_family: () -> ("MD5up" | "SHA256up" | "SHA512up")
780
+ end
781
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#get_sequence_store-instance_method
782
+ def get_sequence_store: (
783
+ id: ::String
784
+ ) -> _GetSequenceStoreResponseSuccess
785
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetSequenceStoreResponseSuccess
786
+
787
+ interface _GetShareResponseSuccess
788
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetShareResponse]
789
+ def share: () -> Types::ShareDetails
790
+ end
791
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#get_share-instance_method
792
+ def get_share: (
793
+ share_id: ::String
794
+ ) -> _GetShareResponseSuccess
795
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetShareResponseSuccess
796
+
797
+ interface _GetVariantImportJobResponseSuccess
798
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetVariantImportResponse]
799
+ def id: () -> ::String
800
+ def destination_name: () -> ::String
801
+ def role_arn: () -> ::String
802
+ def status: () -> ("SUBMITTED" | "IN_PROGRESS" | "CANCELLED" | "COMPLETED" | "FAILED" | "COMPLETED_WITH_FAILURES")
803
+ def status_message: () -> ::String
804
+ def creation_time: () -> ::Time
805
+ def update_time: () -> ::Time
806
+ def completion_time: () -> ::Time
807
+ def items: () -> ::Array[Types::VariantImportItemDetail]
808
+ def run_left_normalization: () -> bool
809
+ def annotation_fields: () -> ::Hash[::String, ::String]
810
+ end
811
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#get_variant_import_job-instance_method
812
+ def get_variant_import_job: (
813
+ job_id: ::String
814
+ ) -> _GetVariantImportJobResponseSuccess
815
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetVariantImportJobResponseSuccess
816
+
817
+ interface _GetVariantStoreResponseSuccess
818
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetVariantStoreResponse]
819
+ def id: () -> ::String
820
+ def reference: () -> Types::ReferenceItem
821
+ def status: () -> ("CREATING" | "UPDATING" | "DELETING" | "ACTIVE" | "FAILED")
822
+ def store_arn: () -> ::String
823
+ def name: () -> ::String
824
+ def description: () -> ::String
825
+ def sse_config: () -> Types::SseConfig
826
+ def creation_time: () -> ::Time
827
+ def update_time: () -> ::Time
828
+ def tags: () -> ::Hash[::String, ::String]
829
+ def status_message: () -> ::String
830
+ def store_size_bytes: () -> ::Integer
831
+ end
832
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#get_variant_store-instance_method
833
+ def get_variant_store: (
834
+ name: ::String
835
+ ) -> _GetVariantStoreResponseSuccess
836
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetVariantStoreResponseSuccess
837
+
838
+ interface _GetWorkflowResponseSuccess
839
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetWorkflowResponse]
840
+ def arn: () -> ::String
841
+ def id: () -> ::String
842
+ def status: () -> ("CREATING" | "ACTIVE" | "UPDATING" | "DELETED" | "FAILED" | "INACTIVE")
843
+ def type: () -> ("PRIVATE" | "READY2RUN")
844
+ def name: () -> ::String
845
+ def description: () -> ::String
846
+ def engine: () -> ("WDL" | "NEXTFLOW" | "CWL")
847
+ def definition: () -> ::String
848
+ def main: () -> ::String
849
+ def digest: () -> ::String
850
+ def parameter_template: () -> ::Hash[::String, Types::WorkflowParameter]
851
+ def storage_capacity: () -> ::Integer
852
+ def creation_time: () -> ::Time
853
+ def status_message: () -> ::String
854
+ def tags: () -> ::Hash[::String, ::String]
855
+ def metadata: () -> ::Hash[::String, ::String]
856
+ def accelerators: () -> ("GPU")
857
+ end
858
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#get_workflow-instance_method
859
+ def get_workflow: (
860
+ id: ::String,
861
+ ?type: ("PRIVATE" | "READY2RUN"),
862
+ ?export: Array[("DEFINITION")]
863
+ ) -> _GetWorkflowResponseSuccess
864
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetWorkflowResponseSuccess
865
+
866
+ interface _ListAnnotationImportJobsResponseSuccess
867
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListAnnotationImportJobsResponse]
868
+ def annotation_import_jobs: () -> ::Array[Types::AnnotationImportJobItem]
869
+ def next_token: () -> ::String
870
+ end
871
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#list_annotation_import_jobs-instance_method
872
+ def list_annotation_import_jobs: (
873
+ ?max_results: ::Integer,
874
+ ?ids: Array[::String],
875
+ ?next_token: ::String,
876
+ ?filter: {
877
+ status: ("SUBMITTED" | "IN_PROGRESS" | "CANCELLED" | "COMPLETED" | "FAILED" | "COMPLETED_WITH_FAILURES")?,
878
+ store_name: ::String?
879
+ }
880
+ ) -> _ListAnnotationImportJobsResponseSuccess
881
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListAnnotationImportJobsResponseSuccess
882
+
883
+ interface _ListAnnotationStoreVersionsResponseSuccess
884
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListAnnotationStoreVersionsResponse]
885
+ def annotation_store_versions: () -> ::Array[Types::AnnotationStoreVersionItem]
886
+ def next_token: () -> ::String
887
+ end
888
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#list_annotation_store_versions-instance_method
889
+ def list_annotation_store_versions: (
890
+ name: ::String,
891
+ ?max_results: ::Integer,
892
+ ?next_token: ::String,
893
+ ?filter: {
894
+ status: ("CREATING" | "UPDATING" | "DELETING" | "ACTIVE" | "FAILED")?
895
+ }
896
+ ) -> _ListAnnotationStoreVersionsResponseSuccess
897
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListAnnotationStoreVersionsResponseSuccess
898
+
899
+ interface _ListAnnotationStoresResponseSuccess
900
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListAnnotationStoresResponse]
901
+ def annotation_stores: () -> ::Array[Types::AnnotationStoreItem]
902
+ def next_token: () -> ::String
903
+ end
904
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#list_annotation_stores-instance_method
905
+ def list_annotation_stores: (
906
+ ?ids: Array[::String],
907
+ ?max_results: ::Integer,
908
+ ?next_token: ::String,
909
+ ?filter: {
910
+ status: ("CREATING" | "UPDATING" | "DELETING" | "ACTIVE" | "FAILED")?
911
+ }
912
+ ) -> _ListAnnotationStoresResponseSuccess
913
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListAnnotationStoresResponseSuccess
914
+
915
+ interface _ListMultipartReadSetUploadsResponseSuccess
916
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListMultipartReadSetUploadsResponse]
917
+ def next_token: () -> ::String
918
+ def uploads: () -> ::Array[Types::MultipartReadSetUploadListItem]
919
+ end
920
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#list_multipart_read_set_uploads-instance_method
921
+ def list_multipart_read_set_uploads: (
922
+ sequence_store_id: ::String,
923
+ ?max_results: ::Integer,
924
+ ?next_token: ::String
925
+ ) -> _ListMultipartReadSetUploadsResponseSuccess
926
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListMultipartReadSetUploadsResponseSuccess
927
+
928
+ interface _ListReadSetActivationJobsResponseSuccess
929
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListReadSetActivationJobsResponse]
930
+ def next_token: () -> ::String
931
+ def activation_jobs: () -> ::Array[Types::ActivateReadSetJobItem]
932
+ end
933
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#list_read_set_activation_jobs-instance_method
934
+ def list_read_set_activation_jobs: (
935
+ sequence_store_id: ::String,
936
+ ?max_results: ::Integer,
937
+ ?next_token: ::String,
938
+ ?filter: {
939
+ status: ("SUBMITTED" | "IN_PROGRESS" | "CANCELLING" | "CANCELLED" | "FAILED" | "COMPLETED" | "COMPLETED_WITH_FAILURES")?,
940
+ created_after: ::Time?,
941
+ created_before: ::Time?
942
+ }
943
+ ) -> _ListReadSetActivationJobsResponseSuccess
944
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListReadSetActivationJobsResponseSuccess
945
+
946
+ interface _ListReadSetExportJobsResponseSuccess
947
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListReadSetExportJobsResponse]
948
+ def next_token: () -> ::String
949
+ def export_jobs: () -> ::Array[Types::ExportReadSetJobDetail]
950
+ end
951
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#list_read_set_export_jobs-instance_method
952
+ def list_read_set_export_jobs: (
953
+ sequence_store_id: ::String,
954
+ ?max_results: ::Integer,
955
+ ?next_token: ::String,
956
+ ?filter: {
957
+ status: ("SUBMITTED" | "IN_PROGRESS" | "CANCELLING" | "CANCELLED" | "FAILED" | "COMPLETED" | "COMPLETED_WITH_FAILURES")?,
958
+ created_after: ::Time?,
959
+ created_before: ::Time?
960
+ }
961
+ ) -> _ListReadSetExportJobsResponseSuccess
962
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListReadSetExportJobsResponseSuccess
963
+
964
+ interface _ListReadSetImportJobsResponseSuccess
965
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListReadSetImportJobsResponse]
966
+ def next_token: () -> ::String
967
+ def import_jobs: () -> ::Array[Types::ImportReadSetJobItem]
968
+ end
969
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#list_read_set_import_jobs-instance_method
970
+ def list_read_set_import_jobs: (
971
+ ?max_results: ::Integer,
972
+ ?next_token: ::String,
973
+ sequence_store_id: ::String,
974
+ ?filter: {
975
+ status: ("SUBMITTED" | "IN_PROGRESS" | "CANCELLING" | "CANCELLED" | "FAILED" | "COMPLETED" | "COMPLETED_WITH_FAILURES")?,
976
+ created_after: ::Time?,
977
+ created_before: ::Time?
978
+ }
979
+ ) -> _ListReadSetImportJobsResponseSuccess
980
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListReadSetImportJobsResponseSuccess
981
+
982
+ interface _ListReadSetUploadPartsResponseSuccess
983
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListReadSetUploadPartsResponse]
984
+ def next_token: () -> ::String
985
+ def parts: () -> ::Array[Types::ReadSetUploadPartListItem]
986
+ end
987
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#list_read_set_upload_parts-instance_method
988
+ def list_read_set_upload_parts: (
989
+ sequence_store_id: ::String,
990
+ upload_id: ::String,
991
+ part_source: ("SOURCE1" | "SOURCE2"),
992
+ ?max_results: ::Integer,
993
+ ?next_token: ::String,
994
+ ?filter: {
995
+ created_after: ::Time?,
996
+ created_before: ::Time?
997
+ }
998
+ ) -> _ListReadSetUploadPartsResponseSuccess
999
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListReadSetUploadPartsResponseSuccess
1000
+
1001
+ interface _ListReadSetsResponseSuccess
1002
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListReadSetsResponse]
1003
+ def next_token: () -> ::String
1004
+ def read_sets: () -> ::Array[Types::ReadSetListItem]
1005
+ end
1006
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#list_read_sets-instance_method
1007
+ def list_read_sets: (
1008
+ sequence_store_id: ::String,
1009
+ ?max_results: ::Integer,
1010
+ ?next_token: ::String,
1011
+ ?filter: {
1012
+ name: ::String?,
1013
+ status: ("ARCHIVED" | "ACTIVATING" | "ACTIVE" | "DELETING" | "DELETED" | "PROCESSING_UPLOAD" | "UPLOAD_FAILED")?,
1014
+ reference_arn: ::String?,
1015
+ created_after: ::Time?,
1016
+ created_before: ::Time?,
1017
+ sample_id: ::String?,
1018
+ subject_id: ::String?,
1019
+ generated_from: ::String?,
1020
+ creation_type: ("IMPORT" | "UPLOAD")?
1021
+ }
1022
+ ) -> _ListReadSetsResponseSuccess
1023
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListReadSetsResponseSuccess
1024
+
1025
+ interface _ListReferenceImportJobsResponseSuccess
1026
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListReferenceImportJobsResponse]
1027
+ def next_token: () -> ::String
1028
+ def import_jobs: () -> ::Array[Types::ImportReferenceJobItem]
1029
+ end
1030
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#list_reference_import_jobs-instance_method
1031
+ def list_reference_import_jobs: (
1032
+ ?max_results: ::Integer,
1033
+ ?next_token: ::String,
1034
+ reference_store_id: ::String,
1035
+ ?filter: {
1036
+ status: ("SUBMITTED" | "IN_PROGRESS" | "CANCELLING" | "CANCELLED" | "FAILED" | "COMPLETED" | "COMPLETED_WITH_FAILURES")?,
1037
+ created_after: ::Time?,
1038
+ created_before: ::Time?
1039
+ }
1040
+ ) -> _ListReferenceImportJobsResponseSuccess
1041
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListReferenceImportJobsResponseSuccess
1042
+
1043
+ interface _ListReferenceStoresResponseSuccess
1044
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListReferenceStoresResponse]
1045
+ def next_token: () -> ::String
1046
+ def reference_stores: () -> ::Array[Types::ReferenceStoreDetail]
1047
+ end
1048
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#list_reference_stores-instance_method
1049
+ def list_reference_stores: (
1050
+ ?max_results: ::Integer,
1051
+ ?next_token: ::String,
1052
+ ?filter: {
1053
+ name: ::String?,
1054
+ created_after: ::Time?,
1055
+ created_before: ::Time?
1056
+ }
1057
+ ) -> _ListReferenceStoresResponseSuccess
1058
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListReferenceStoresResponseSuccess
1059
+
1060
+ interface _ListReferencesResponseSuccess
1061
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListReferencesResponse]
1062
+ def next_token: () -> ::String
1063
+ def references: () -> ::Array[Types::ReferenceListItem]
1064
+ end
1065
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#list_references-instance_method
1066
+ def list_references: (
1067
+ reference_store_id: ::String,
1068
+ ?max_results: ::Integer,
1069
+ ?next_token: ::String,
1070
+ ?filter: {
1071
+ name: ::String?,
1072
+ md5: ::String?,
1073
+ created_after: ::Time?,
1074
+ created_before: ::Time?
1075
+ }
1076
+ ) -> _ListReferencesResponseSuccess
1077
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListReferencesResponseSuccess
1078
+
1079
+ interface _ListRunGroupsResponseSuccess
1080
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListRunGroupsResponse]
1081
+ def items: () -> ::Array[Types::RunGroupListItem]
1082
+ def next_token: () -> ::String
1083
+ end
1084
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#list_run_groups-instance_method
1085
+ def list_run_groups: (
1086
+ ?name: ::String,
1087
+ ?starting_token: ::String,
1088
+ ?max_results: ::Integer
1089
+ ) -> _ListRunGroupsResponseSuccess
1090
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListRunGroupsResponseSuccess
1091
+
1092
+ interface _ListRunTasksResponseSuccess
1093
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListRunTasksResponse]
1094
+ def items: () -> ::Array[Types::TaskListItem]
1095
+ def next_token: () -> ::String
1096
+ end
1097
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#list_run_tasks-instance_method
1098
+ def list_run_tasks: (
1099
+ id: ::String,
1100
+ ?status: ("PENDING" | "STARTING" | "RUNNING" | "STOPPING" | "COMPLETED" | "CANCELLED" | "FAILED"),
1101
+ ?starting_token: ::String,
1102
+ ?max_results: ::Integer
1103
+ ) -> _ListRunTasksResponseSuccess
1104
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListRunTasksResponseSuccess
1105
+
1106
+ interface _ListRunsResponseSuccess
1107
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListRunsResponse]
1108
+ def items: () -> ::Array[Types::RunListItem]
1109
+ def next_token: () -> ::String
1110
+ end
1111
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#list_runs-instance_method
1112
+ def list_runs: (
1113
+ ?name: ::String,
1114
+ ?run_group_id: ::String,
1115
+ ?starting_token: ::String,
1116
+ ?max_results: ::Integer,
1117
+ ?status: ("PENDING" | "STARTING" | "RUNNING" | "STOPPING" | "COMPLETED" | "DELETED" | "CANCELLED" | "FAILED")
1118
+ ) -> _ListRunsResponseSuccess
1119
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListRunsResponseSuccess
1120
+
1121
+ interface _ListSequenceStoresResponseSuccess
1122
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListSequenceStoresResponse]
1123
+ def next_token: () -> ::String
1124
+ def sequence_stores: () -> ::Array[Types::SequenceStoreDetail]
1125
+ end
1126
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#list_sequence_stores-instance_method
1127
+ def list_sequence_stores: (
1128
+ ?max_results: ::Integer,
1129
+ ?next_token: ::String,
1130
+ ?filter: {
1131
+ name: ::String?,
1132
+ created_after: ::Time?,
1133
+ created_before: ::Time?
1134
+ }
1135
+ ) -> _ListSequenceStoresResponseSuccess
1136
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListSequenceStoresResponseSuccess
1137
+
1138
+ interface _ListSharesResponseSuccess
1139
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListSharesResponse]
1140
+ def shares: () -> ::Array[Types::ShareDetails]
1141
+ def next_token: () -> ::String
1142
+ end
1143
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#list_shares-instance_method
1144
+ def list_shares: (
1145
+ resource_owner: ("SELF" | "OTHER"),
1146
+ ?filter: {
1147
+ resource_arns: Array[::String]?,
1148
+ status: Array[("PENDING" | "ACTIVATING" | "ACTIVE" | "DELETING" | "DELETED" | "FAILED")]?
1149
+ },
1150
+ ?next_token: ::String,
1151
+ ?max_results: ::Integer
1152
+ ) -> _ListSharesResponseSuccess
1153
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListSharesResponseSuccess
1154
+
1155
+ interface _ListTagsForResourceResponseSuccess
1156
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListTagsForResourceResponse]
1157
+ def tags: () -> ::Hash[::String, ::String]
1158
+ end
1159
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#list_tags_for_resource-instance_method
1160
+ def list_tags_for_resource: (
1161
+ resource_arn: ::String
1162
+ ) -> _ListTagsForResourceResponseSuccess
1163
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTagsForResourceResponseSuccess
1164
+
1165
+ interface _ListVariantImportJobsResponseSuccess
1166
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListVariantImportJobsResponse]
1167
+ def variant_import_jobs: () -> ::Array[Types::VariantImportJobItem]
1168
+ def next_token: () -> ::String
1169
+ end
1170
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#list_variant_import_jobs-instance_method
1171
+ def list_variant_import_jobs: (
1172
+ ?max_results: ::Integer,
1173
+ ?ids: Array[::String],
1174
+ ?next_token: ::String,
1175
+ ?filter: {
1176
+ status: ("SUBMITTED" | "IN_PROGRESS" | "CANCELLED" | "COMPLETED" | "FAILED" | "COMPLETED_WITH_FAILURES")?,
1177
+ store_name: ::String?
1178
+ }
1179
+ ) -> _ListVariantImportJobsResponseSuccess
1180
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListVariantImportJobsResponseSuccess
1181
+
1182
+ interface _ListVariantStoresResponseSuccess
1183
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListVariantStoresResponse]
1184
+ def variant_stores: () -> ::Array[Types::VariantStoreItem]
1185
+ def next_token: () -> ::String
1186
+ end
1187
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#list_variant_stores-instance_method
1188
+ def list_variant_stores: (
1189
+ ?max_results: ::Integer,
1190
+ ?ids: Array[::String],
1191
+ ?next_token: ::String,
1192
+ ?filter: {
1193
+ status: ("CREATING" | "UPDATING" | "DELETING" | "ACTIVE" | "FAILED")?
1194
+ }
1195
+ ) -> _ListVariantStoresResponseSuccess
1196
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListVariantStoresResponseSuccess
1197
+
1198
+ interface _ListWorkflowsResponseSuccess
1199
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListWorkflowsResponse]
1200
+ def items: () -> ::Array[Types::WorkflowListItem]
1201
+ def next_token: () -> ::String
1202
+ end
1203
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#list_workflows-instance_method
1204
+ def list_workflows: (
1205
+ ?type: ("PRIVATE" | "READY2RUN"),
1206
+ ?name: ::String,
1207
+ ?starting_token: ::String,
1208
+ ?max_results: ::Integer
1209
+ ) -> _ListWorkflowsResponseSuccess
1210
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListWorkflowsResponseSuccess
1211
+
1212
+ interface _StartAnnotationImportJobResponseSuccess
1213
+ include ::Seahorse::Client::_ResponseSuccess[Types::StartAnnotationImportResponse]
1214
+ def job_id: () -> ::String
1215
+ end
1216
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#start_annotation_import_job-instance_method
1217
+ def start_annotation_import_job: (
1218
+ destination_name: ::String,
1219
+ role_arn: ::String,
1220
+ items: Array[
1221
+ {
1222
+ source: ::String
1223
+ },
1224
+ ],
1225
+ ?version_name: ::String,
1226
+ ?format_options: {
1227
+ tsv_options: {
1228
+ read_options: {
1229
+ sep: ::String?,
1230
+ encoding: ::String?,
1231
+ quote: ::String?,
1232
+ quote_all: bool?,
1233
+ escape: ::String?,
1234
+ escape_quotes: bool?,
1235
+ comment: ::String?,
1236
+ header: bool?,
1237
+ line_sep: ::String?
1238
+ }?
1239
+ }?,
1240
+ vcf_options: {
1241
+ ignore_qual_field: bool?,
1242
+ ignore_filter_field: bool?
1243
+ }?
1244
+ },
1245
+ ?run_left_normalization: bool,
1246
+ ?annotation_fields: Hash[::String, ::String]
1247
+ ) -> _StartAnnotationImportJobResponseSuccess
1248
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartAnnotationImportJobResponseSuccess
1249
+
1250
+ interface _StartReadSetActivationJobResponseSuccess
1251
+ include ::Seahorse::Client::_ResponseSuccess[Types::StartReadSetActivationJobResponse]
1252
+ def id: () -> ::String
1253
+ def sequence_store_id: () -> ::String
1254
+ def status: () -> ("SUBMITTED" | "IN_PROGRESS" | "CANCELLING" | "CANCELLED" | "FAILED" | "COMPLETED" | "COMPLETED_WITH_FAILURES")
1255
+ def creation_time: () -> ::Time
1256
+ end
1257
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#start_read_set_activation_job-instance_method
1258
+ def start_read_set_activation_job: (
1259
+ sequence_store_id: ::String,
1260
+ ?client_token: ::String,
1261
+ sources: Array[
1262
+ {
1263
+ read_set_id: ::String
1264
+ },
1265
+ ]
1266
+ ) -> _StartReadSetActivationJobResponseSuccess
1267
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartReadSetActivationJobResponseSuccess
1268
+
1269
+ interface _StartReadSetExportJobResponseSuccess
1270
+ include ::Seahorse::Client::_ResponseSuccess[Types::StartReadSetExportJobResponse]
1271
+ def id: () -> ::String
1272
+ def sequence_store_id: () -> ::String
1273
+ def destination: () -> ::String
1274
+ def status: () -> ("SUBMITTED" | "IN_PROGRESS" | "CANCELLING" | "CANCELLED" | "FAILED" | "COMPLETED" | "COMPLETED_WITH_FAILURES")
1275
+ def creation_time: () -> ::Time
1276
+ end
1277
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#start_read_set_export_job-instance_method
1278
+ def start_read_set_export_job: (
1279
+ sequence_store_id: ::String,
1280
+ destination: ::String,
1281
+ role_arn: ::String,
1282
+ ?client_token: ::String,
1283
+ sources: Array[
1284
+ {
1285
+ read_set_id: ::String
1286
+ },
1287
+ ]
1288
+ ) -> _StartReadSetExportJobResponseSuccess
1289
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartReadSetExportJobResponseSuccess
1290
+
1291
+ interface _StartReadSetImportJobResponseSuccess
1292
+ include ::Seahorse::Client::_ResponseSuccess[Types::StartReadSetImportJobResponse]
1293
+ def id: () -> ::String
1294
+ def sequence_store_id: () -> ::String
1295
+ def role_arn: () -> ::String
1296
+ def status: () -> ("SUBMITTED" | "IN_PROGRESS" | "CANCELLING" | "CANCELLED" | "FAILED" | "COMPLETED" | "COMPLETED_WITH_FAILURES")
1297
+ def creation_time: () -> ::Time
1298
+ end
1299
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#start_read_set_import_job-instance_method
1300
+ def start_read_set_import_job: (
1301
+ sequence_store_id: ::String,
1302
+ role_arn: ::String,
1303
+ ?client_token: ::String,
1304
+ sources: Array[
1305
+ {
1306
+ source_files: {
1307
+ source1: ::String,
1308
+ source2: ::String?
1309
+ },
1310
+ source_file_type: ("FASTQ" | "BAM" | "CRAM" | "UBAM"),
1311
+ subject_id: ::String,
1312
+ sample_id: ::String,
1313
+ generated_from: ::String?,
1314
+ reference_arn: ::String?,
1315
+ name: ::String?,
1316
+ description: ::String?,
1317
+ tags: Hash[::String, ::String]?
1318
+ },
1319
+ ]
1320
+ ) -> _StartReadSetImportJobResponseSuccess
1321
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartReadSetImportJobResponseSuccess
1322
+
1323
+ interface _StartReferenceImportJobResponseSuccess
1324
+ include ::Seahorse::Client::_ResponseSuccess[Types::StartReferenceImportJobResponse]
1325
+ def id: () -> ::String
1326
+ def reference_store_id: () -> ::String
1327
+ def role_arn: () -> ::String
1328
+ def status: () -> ("SUBMITTED" | "IN_PROGRESS" | "CANCELLING" | "CANCELLED" | "FAILED" | "COMPLETED" | "COMPLETED_WITH_FAILURES")
1329
+ def creation_time: () -> ::Time
1330
+ end
1331
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#start_reference_import_job-instance_method
1332
+ def start_reference_import_job: (
1333
+ reference_store_id: ::String,
1334
+ role_arn: ::String,
1335
+ ?client_token: ::String,
1336
+ sources: Array[
1337
+ {
1338
+ source_file: ::String,
1339
+ name: ::String,
1340
+ description: ::String?,
1341
+ tags: Hash[::String, ::String]?
1342
+ },
1343
+ ]
1344
+ ) -> _StartReferenceImportJobResponseSuccess
1345
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartReferenceImportJobResponseSuccess
1346
+
1347
+ interface _StartRunResponseSuccess
1348
+ include ::Seahorse::Client::_ResponseSuccess[Types::StartRunResponse]
1349
+ def arn: () -> ::String
1350
+ def id: () -> ::String
1351
+ def status: () -> ("PENDING" | "STARTING" | "RUNNING" | "STOPPING" | "COMPLETED" | "DELETED" | "CANCELLED" | "FAILED")
1352
+ def tags: () -> ::Hash[::String, ::String]
1353
+ def uuid: () -> ::String
1354
+ def run_output_uri: () -> ::String
1355
+ end
1356
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#start_run-instance_method
1357
+ def start_run: (
1358
+ ?workflow_id: ::String,
1359
+ ?workflow_type: ("PRIVATE" | "READY2RUN"),
1360
+ ?run_id: ::String,
1361
+ role_arn: ::String,
1362
+ ?name: ::String,
1363
+ ?run_group_id: ::String,
1364
+ ?priority: ::Integer,
1365
+ ?parameters: {
1366
+ },
1367
+ ?storage_capacity: ::Integer,
1368
+ ?output_uri: ::String,
1369
+ ?log_level: ("OFF" | "FATAL" | "ERROR" | "ALL"),
1370
+ ?tags: Hash[::String, ::String],
1371
+ request_id: ::String,
1372
+ ?retention_mode: ("RETAIN" | "REMOVE")
1373
+ ) -> _StartRunResponseSuccess
1374
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartRunResponseSuccess
1375
+
1376
+ interface _StartVariantImportJobResponseSuccess
1377
+ include ::Seahorse::Client::_ResponseSuccess[Types::StartVariantImportResponse]
1378
+ def job_id: () -> ::String
1379
+ end
1380
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#start_variant_import_job-instance_method
1381
+ def start_variant_import_job: (
1382
+ destination_name: ::String,
1383
+ role_arn: ::String,
1384
+ items: Array[
1385
+ {
1386
+ source: ::String
1387
+ },
1388
+ ],
1389
+ ?run_left_normalization: bool,
1390
+ ?annotation_fields: Hash[::String, ::String]
1391
+ ) -> _StartVariantImportJobResponseSuccess
1392
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartVariantImportJobResponseSuccess
1393
+
1394
+ interface _TagResourceResponseSuccess
1395
+ include ::Seahorse::Client::_ResponseSuccess[Types::TagResourceResponse]
1396
+ end
1397
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#tag_resource-instance_method
1398
+ def tag_resource: (
1399
+ resource_arn: ::String,
1400
+ tags: Hash[::String, ::String]
1401
+ ) -> _TagResourceResponseSuccess
1402
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _TagResourceResponseSuccess
1403
+
1404
+ interface _UntagResourceResponseSuccess
1405
+ include ::Seahorse::Client::_ResponseSuccess[Types::UntagResourceResponse]
1406
+ end
1407
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#untag_resource-instance_method
1408
+ def untag_resource: (
1409
+ resource_arn: ::String,
1410
+ tag_keys: Array[::String]
1411
+ ) -> _UntagResourceResponseSuccess
1412
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UntagResourceResponseSuccess
1413
+
1414
+ interface _UpdateAnnotationStoreResponseSuccess
1415
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateAnnotationStoreResponse]
1416
+ def id: () -> ::String
1417
+ def reference: () -> Types::ReferenceItem
1418
+ def status: () -> ("CREATING" | "UPDATING" | "DELETING" | "ACTIVE" | "FAILED")
1419
+ def name: () -> ::String
1420
+ def description: () -> ::String
1421
+ def creation_time: () -> ::Time
1422
+ def update_time: () -> ::Time
1423
+ def store_options: () -> Types::StoreOptions
1424
+ def store_format: () -> ("GFF" | "TSV" | "VCF")
1425
+ end
1426
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#update_annotation_store-instance_method
1427
+ def update_annotation_store: (
1428
+ name: ::String,
1429
+ ?description: ::String
1430
+ ) -> _UpdateAnnotationStoreResponseSuccess
1431
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateAnnotationStoreResponseSuccess
1432
+
1433
+ interface _UpdateAnnotationStoreVersionResponseSuccess
1434
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateAnnotationStoreVersionResponse]
1435
+ def store_id: () -> ::String
1436
+ def id: () -> ::String
1437
+ def status: () -> ("CREATING" | "UPDATING" | "DELETING" | "ACTIVE" | "FAILED")
1438
+ def name: () -> ::String
1439
+ def version_name: () -> ::String
1440
+ def description: () -> ::String
1441
+ def creation_time: () -> ::Time
1442
+ def update_time: () -> ::Time
1443
+ end
1444
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#update_annotation_store_version-instance_method
1445
+ def update_annotation_store_version: (
1446
+ name: ::String,
1447
+ version_name: ::String,
1448
+ ?description: ::String
1449
+ ) -> _UpdateAnnotationStoreVersionResponseSuccess
1450
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateAnnotationStoreVersionResponseSuccess
1451
+
1452
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#update_run_group-instance_method
1453
+ def update_run_group: (
1454
+ id: ::String,
1455
+ ?name: ::String,
1456
+ ?max_cpus: ::Integer,
1457
+ ?max_runs: ::Integer,
1458
+ ?max_duration: ::Integer,
1459
+ ?max_gpus: ::Integer
1460
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1461
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1462
+
1463
+ interface _UpdateVariantStoreResponseSuccess
1464
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateVariantStoreResponse]
1465
+ def id: () -> ::String
1466
+ def reference: () -> Types::ReferenceItem
1467
+ def status: () -> ("CREATING" | "UPDATING" | "DELETING" | "ACTIVE" | "FAILED")
1468
+ def name: () -> ::String
1469
+ def description: () -> ::String
1470
+ def creation_time: () -> ::Time
1471
+ def update_time: () -> ::Time
1472
+ end
1473
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#update_variant_store-instance_method
1474
+ def update_variant_store: (
1475
+ name: ::String,
1476
+ ?description: ::String
1477
+ ) -> _UpdateVariantStoreResponseSuccess
1478
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateVariantStoreResponseSuccess
1479
+
1480
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#update_workflow-instance_method
1481
+ def update_workflow: (
1482
+ id: ::String,
1483
+ ?name: ::String,
1484
+ ?description: ::String
1485
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1486
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1487
+
1488
+ interface _UploadReadSetPartResponseSuccess
1489
+ include ::Seahorse::Client::_ResponseSuccess[Types::UploadReadSetPartResponse]
1490
+ def checksum: () -> ::String
1491
+ end
1492
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#upload_read_set_part-instance_method
1493
+ def upload_read_set_part: (
1494
+ sequence_store_id: ::String,
1495
+ upload_id: ::String,
1496
+ part_source: ("SOURCE1" | "SOURCE2"),
1497
+ part_number: ::Integer,
1498
+ payload: ::String
1499
+ ) -> _UploadReadSetPartResponseSuccess
1500
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UploadReadSetPartResponseSuccess
1501
+
1502
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#wait_until-instance_method
1503
+ def wait_until: (:annotation_import_job_created waiter_name,
1504
+ job_id: ::String
1505
+ ) -> Client::_GetAnnotationImportJobResponseSuccess
1506
+ | (:annotation_import_job_created waiter_name, Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> Client::_GetAnnotationImportJobResponseSuccess
1507
+ | (:annotation_store_created waiter_name,
1508
+ name: ::String
1509
+ ) -> Client::_GetAnnotationStoreResponseSuccess
1510
+ | (:annotation_store_created waiter_name, Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> Client::_GetAnnotationStoreResponseSuccess
1511
+ | (:annotation_store_deleted waiter_name,
1512
+ name: ::String
1513
+ ) -> Client::_GetAnnotationStoreResponseSuccess
1514
+ | (:annotation_store_deleted waiter_name, Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> Client::_GetAnnotationStoreResponseSuccess
1515
+ | (:annotation_store_version_created waiter_name,
1516
+ name: ::String,
1517
+ version_name: ::String
1518
+ ) -> Client::_GetAnnotationStoreVersionResponseSuccess
1519
+ | (:annotation_store_version_created waiter_name, Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> Client::_GetAnnotationStoreVersionResponseSuccess
1520
+ | (:annotation_store_version_deleted waiter_name,
1521
+ name: ::String,
1522
+ version_name: ::String
1523
+ ) -> Client::_GetAnnotationStoreVersionResponseSuccess
1524
+ | (:annotation_store_version_deleted waiter_name, Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> Client::_GetAnnotationStoreVersionResponseSuccess
1525
+ | (:read_set_activation_job_completed waiter_name,
1526
+ id: ::String,
1527
+ sequence_store_id: ::String
1528
+ ) -> Client::_GetReadSetActivationJobResponseSuccess
1529
+ | (:read_set_activation_job_completed waiter_name, Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> Client::_GetReadSetActivationJobResponseSuccess
1530
+ | (:read_set_export_job_completed waiter_name,
1531
+ sequence_store_id: ::String,
1532
+ id: ::String
1533
+ ) -> Client::_GetReadSetExportJobResponseSuccess
1534
+ | (:read_set_export_job_completed waiter_name, Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> Client::_GetReadSetExportJobResponseSuccess
1535
+ | (:read_set_import_job_completed waiter_name,
1536
+ id: ::String,
1537
+ sequence_store_id: ::String
1538
+ ) -> Client::_GetReadSetImportJobResponseSuccess
1539
+ | (:read_set_import_job_completed waiter_name, Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> Client::_GetReadSetImportJobResponseSuccess
1540
+ | (:reference_import_job_completed waiter_name,
1541
+ id: ::String,
1542
+ reference_store_id: ::String
1543
+ ) -> Client::_GetReferenceImportJobResponseSuccess
1544
+ | (:reference_import_job_completed waiter_name, Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> Client::_GetReferenceImportJobResponseSuccess
1545
+ | (:run_completed waiter_name,
1546
+ id: ::String,
1547
+ ?export: Array[("DEFINITION")]
1548
+ ) -> Client::_GetRunResponseSuccess
1549
+ | (:run_completed waiter_name, Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> Client::_GetRunResponseSuccess
1550
+ | (:run_running waiter_name,
1551
+ id: ::String,
1552
+ ?export: Array[("DEFINITION")]
1553
+ ) -> Client::_GetRunResponseSuccess
1554
+ | (:run_running waiter_name, Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> Client::_GetRunResponseSuccess
1555
+ | (:task_completed waiter_name,
1556
+ id: ::String,
1557
+ task_id: ::String
1558
+ ) -> Client::_GetRunTaskResponseSuccess
1559
+ | (:task_completed waiter_name, Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> Client::_GetRunTaskResponseSuccess
1560
+ | (:task_running waiter_name,
1561
+ id: ::String,
1562
+ task_id: ::String
1563
+ ) -> Client::_GetRunTaskResponseSuccess
1564
+ | (:task_running waiter_name, Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> Client::_GetRunTaskResponseSuccess
1565
+ | (:variant_import_job_created waiter_name,
1566
+ job_id: ::String
1567
+ ) -> Client::_GetVariantImportJobResponseSuccess
1568
+ | (:variant_import_job_created waiter_name, Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> Client::_GetVariantImportJobResponseSuccess
1569
+ | (:variant_store_created waiter_name,
1570
+ name: ::String
1571
+ ) -> Client::_GetVariantStoreResponseSuccess
1572
+ | (:variant_store_created waiter_name, Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> Client::_GetVariantStoreResponseSuccess
1573
+ | (:variant_store_deleted waiter_name,
1574
+ name: ::String
1575
+ ) -> Client::_GetVariantStoreResponseSuccess
1576
+ | (:variant_store_deleted waiter_name, Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> Client::_GetVariantStoreResponseSuccess
1577
+ | (:workflow_active waiter_name,
1578
+ id: ::String,
1579
+ ?type: ("PRIVATE" | "READY2RUN"),
1580
+ ?export: Array[("DEFINITION")]
1581
+ ) -> Client::_GetWorkflowResponseSuccess
1582
+ | (:workflow_active waiter_name, Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> Client::_GetWorkflowResponseSuccess
1583
+ end
1584
+ end
1585
+ end
1586
+