aws-sdk-omics 1.22.0 → 1.23.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,1582 @@
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
+ end
292
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#create_sequence_store-instance_method
293
+ def create_sequence_store: (
294
+ name: ::String,
295
+ ?description: ::String,
296
+ ?sse_config: {
297
+ type: ("KMS"),
298
+ key_arn: ::String?
299
+ },
300
+ ?tags: Hash[::String, ::String],
301
+ ?client_token: ::String,
302
+ ?fallback_location: ::String
303
+ ) -> _CreateSequenceStoreResponseSuccess
304
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateSequenceStoreResponseSuccess
305
+
306
+ interface _CreateShareResponseSuccess
307
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateShareResponse]
308
+ def share_id: () -> ::String
309
+ def status: () -> ("PENDING" | "ACTIVATING" | "ACTIVE" | "DELETING" | "DELETED" | "FAILED")
310
+ def share_name: () -> ::String
311
+ end
312
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#create_share-instance_method
313
+ def create_share: (
314
+ resource_arn: ::String,
315
+ principal_subscriber: ::String,
316
+ ?share_name: ::String
317
+ ) -> _CreateShareResponseSuccess
318
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateShareResponseSuccess
319
+
320
+ interface _CreateVariantStoreResponseSuccess
321
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateVariantStoreResponse]
322
+ def id: () -> ::String
323
+ def reference: () -> Types::ReferenceItem
324
+ def status: () -> ("CREATING" | "UPDATING" | "DELETING" | "ACTIVE" | "FAILED")
325
+ def name: () -> ::String
326
+ def creation_time: () -> ::Time
327
+ end
328
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#create_variant_store-instance_method
329
+ def create_variant_store: (
330
+ reference: {
331
+ reference_arn: ::String?
332
+ },
333
+ ?name: ::String,
334
+ ?description: ::String,
335
+ ?tags: Hash[::String, ::String],
336
+ ?sse_config: {
337
+ type: ("KMS"),
338
+ key_arn: ::String?
339
+ }
340
+ ) -> _CreateVariantStoreResponseSuccess
341
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateVariantStoreResponseSuccess
342
+
343
+ interface _CreateWorkflowResponseSuccess
344
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateWorkflowResponse]
345
+ def arn: () -> ::String
346
+ def id: () -> ::String
347
+ def status: () -> ("CREATING" | "ACTIVE" | "UPDATING" | "DELETED" | "FAILED" | "INACTIVE")
348
+ def tags: () -> ::Hash[::String, ::String]
349
+ end
350
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#create_workflow-instance_method
351
+ def create_workflow: (
352
+ ?name: ::String,
353
+ ?description: ::String,
354
+ ?engine: ("WDL" | "NEXTFLOW" | "CWL"),
355
+ ?definition_zip: ::String,
356
+ ?definition_uri: ::String,
357
+ ?main: ::String,
358
+ ?parameter_template: Hash[::String, {
359
+ description: ::String?,
360
+ optional: bool?
361
+ }],
362
+ ?storage_capacity: ::Integer,
363
+ ?tags: Hash[::String, ::String],
364
+ request_id: ::String,
365
+ ?accelerators: ("GPU")
366
+ ) -> _CreateWorkflowResponseSuccess
367
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateWorkflowResponseSuccess
368
+
369
+ interface _DeleteAnnotationStoreResponseSuccess
370
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteAnnotationStoreResponse]
371
+ def status: () -> ("CREATING" | "UPDATING" | "DELETING" | "ACTIVE" | "FAILED")
372
+ end
373
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#delete_annotation_store-instance_method
374
+ def delete_annotation_store: (
375
+ name: ::String,
376
+ ?force: bool
377
+ ) -> _DeleteAnnotationStoreResponseSuccess
378
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteAnnotationStoreResponseSuccess
379
+
380
+ interface _DeleteAnnotationStoreVersionsResponseSuccess
381
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteAnnotationStoreVersionsResponse]
382
+ def errors: () -> ::Array[Types::VersionDeleteError]
383
+ end
384
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#delete_annotation_store_versions-instance_method
385
+ def delete_annotation_store_versions: (
386
+ name: ::String,
387
+ versions: Array[::String],
388
+ ?force: bool
389
+ ) -> _DeleteAnnotationStoreVersionsResponseSuccess
390
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteAnnotationStoreVersionsResponseSuccess
391
+
392
+ interface _DeleteReferenceResponseSuccess
393
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteReferenceResponse]
394
+ end
395
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#delete_reference-instance_method
396
+ def delete_reference: (
397
+ id: ::String,
398
+ reference_store_id: ::String
399
+ ) -> _DeleteReferenceResponseSuccess
400
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteReferenceResponseSuccess
401
+
402
+ interface _DeleteReferenceStoreResponseSuccess
403
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteReferenceStoreResponse]
404
+ end
405
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#delete_reference_store-instance_method
406
+ def delete_reference_store: (
407
+ id: ::String
408
+ ) -> _DeleteReferenceStoreResponseSuccess
409
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteReferenceStoreResponseSuccess
410
+
411
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#delete_run-instance_method
412
+ def delete_run: (
413
+ id: ::String
414
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
415
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
416
+
417
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#delete_run_group-instance_method
418
+ def delete_run_group: (
419
+ id: ::String
420
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
421
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
422
+
423
+ interface _DeleteSequenceStoreResponseSuccess
424
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteSequenceStoreResponse]
425
+ end
426
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#delete_sequence_store-instance_method
427
+ def delete_sequence_store: (
428
+ id: ::String
429
+ ) -> _DeleteSequenceStoreResponseSuccess
430
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteSequenceStoreResponseSuccess
431
+
432
+ interface _DeleteShareResponseSuccess
433
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteShareResponse]
434
+ def status: () -> ("PENDING" | "ACTIVATING" | "ACTIVE" | "DELETING" | "DELETED" | "FAILED")
435
+ end
436
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#delete_share-instance_method
437
+ def delete_share: (
438
+ share_id: ::String
439
+ ) -> _DeleteShareResponseSuccess
440
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteShareResponseSuccess
441
+
442
+ interface _DeleteVariantStoreResponseSuccess
443
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteVariantStoreResponse]
444
+ def status: () -> ("CREATING" | "UPDATING" | "DELETING" | "ACTIVE" | "FAILED")
445
+ end
446
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#delete_variant_store-instance_method
447
+ def delete_variant_store: (
448
+ name: ::String,
449
+ ?force: bool
450
+ ) -> _DeleteVariantStoreResponseSuccess
451
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteVariantStoreResponseSuccess
452
+
453
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#delete_workflow-instance_method
454
+ def delete_workflow: (
455
+ id: ::String
456
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
457
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
458
+
459
+ interface _GetAnnotationImportJobResponseSuccess
460
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetAnnotationImportResponse]
461
+ def id: () -> ::String
462
+ def destination_name: () -> ::String
463
+ def version_name: () -> ::String
464
+ def role_arn: () -> ::String
465
+ def status: () -> ("SUBMITTED" | "IN_PROGRESS" | "CANCELLED" | "COMPLETED" | "FAILED" | "COMPLETED_WITH_FAILURES")
466
+ def status_message: () -> ::String
467
+ def creation_time: () -> ::Time
468
+ def update_time: () -> ::Time
469
+ def completion_time: () -> ::Time
470
+ def items: () -> ::Array[Types::AnnotationImportItemDetail]
471
+ def run_left_normalization: () -> bool
472
+ def format_options: () -> Types::FormatOptions
473
+ def annotation_fields: () -> ::Hash[::String, ::String]
474
+ end
475
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#get_annotation_import_job-instance_method
476
+ def get_annotation_import_job: (
477
+ job_id: ::String
478
+ ) -> _GetAnnotationImportJobResponseSuccess
479
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetAnnotationImportJobResponseSuccess
480
+
481
+ interface _GetAnnotationStoreResponseSuccess
482
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetAnnotationStoreResponse]
483
+ def id: () -> ::String
484
+ def reference: () -> Types::ReferenceItem
485
+ def status: () -> ("CREATING" | "UPDATING" | "DELETING" | "ACTIVE" | "FAILED")
486
+ def store_arn: () -> ::String
487
+ def name: () -> ::String
488
+ def description: () -> ::String
489
+ def sse_config: () -> Types::SseConfig
490
+ def creation_time: () -> ::Time
491
+ def update_time: () -> ::Time
492
+ def tags: () -> ::Hash[::String, ::String]
493
+ def store_options: () -> Types::StoreOptions
494
+ def store_format: () -> ("GFF" | "TSV" | "VCF")
495
+ def status_message: () -> ::String
496
+ def store_size_bytes: () -> ::Integer
497
+ def num_versions: () -> ::Integer
498
+ end
499
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#get_annotation_store-instance_method
500
+ def get_annotation_store: (
501
+ name: ::String
502
+ ) -> _GetAnnotationStoreResponseSuccess
503
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetAnnotationStoreResponseSuccess
504
+
505
+ interface _GetAnnotationStoreVersionResponseSuccess
506
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetAnnotationStoreVersionResponse]
507
+ def store_id: () -> ::String
508
+ def id: () -> ::String
509
+ def status: () -> ("CREATING" | "UPDATING" | "DELETING" | "ACTIVE" | "FAILED")
510
+ def version_arn: () -> ::String
511
+ def name: () -> ::String
512
+ def version_name: () -> ::String
513
+ def description: () -> ::String
514
+ def creation_time: () -> ::Time
515
+ def update_time: () -> ::Time
516
+ def tags: () -> ::Hash[::String, ::String]
517
+ def version_options: () -> Types::VersionOptions
518
+ def status_message: () -> ::String
519
+ def version_size_bytes: () -> ::Integer
520
+ end
521
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#get_annotation_store_version-instance_method
522
+ def get_annotation_store_version: (
523
+ name: ::String,
524
+ version_name: ::String
525
+ ) -> _GetAnnotationStoreVersionResponseSuccess
526
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetAnnotationStoreVersionResponseSuccess
527
+
528
+ interface _GetReadSetResponseSuccess
529
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetReadSetResponse]
530
+ def payload: () -> ::IO
531
+ end
532
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#get_read_set-instance_method
533
+ def get_read_set: (
534
+ id: ::String,
535
+ sequence_store_id: ::String,
536
+ ?file: ("SOURCE1" | "SOURCE2" | "INDEX"),
537
+ part_number: ::Integer
538
+ ) ?{ (*untyped) -> void } -> _GetReadSetResponseSuccess
539
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) ?{ (*untyped) -> void } -> _GetReadSetResponseSuccess
540
+
541
+ interface _GetReadSetActivationJobResponseSuccess
542
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetReadSetActivationJobResponse]
543
+ def id: () -> ::String
544
+ def sequence_store_id: () -> ::String
545
+ def status: () -> ("SUBMITTED" | "IN_PROGRESS" | "CANCELLING" | "CANCELLED" | "FAILED" | "COMPLETED" | "COMPLETED_WITH_FAILURES")
546
+ def status_message: () -> ::String
547
+ def creation_time: () -> ::Time
548
+ def completion_time: () -> ::Time
549
+ def sources: () -> ::Array[Types::ActivateReadSetSourceItem]
550
+ end
551
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#get_read_set_activation_job-instance_method
552
+ def get_read_set_activation_job: (
553
+ id: ::String,
554
+ sequence_store_id: ::String
555
+ ) -> _GetReadSetActivationJobResponseSuccess
556
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetReadSetActivationJobResponseSuccess
557
+
558
+ interface _GetReadSetExportJobResponseSuccess
559
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetReadSetExportJobResponse]
560
+ def id: () -> ::String
561
+ def sequence_store_id: () -> ::String
562
+ def destination: () -> ::String
563
+ def status: () -> ("SUBMITTED" | "IN_PROGRESS" | "CANCELLING" | "CANCELLED" | "FAILED" | "COMPLETED" | "COMPLETED_WITH_FAILURES")
564
+ def status_message: () -> ::String
565
+ def creation_time: () -> ::Time
566
+ def completion_time: () -> ::Time
567
+ def read_sets: () -> ::Array[Types::ExportReadSetDetail]
568
+ end
569
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#get_read_set_export_job-instance_method
570
+ def get_read_set_export_job: (
571
+ sequence_store_id: ::String,
572
+ id: ::String
573
+ ) -> _GetReadSetExportJobResponseSuccess
574
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetReadSetExportJobResponseSuccess
575
+
576
+ interface _GetReadSetImportJobResponseSuccess
577
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetReadSetImportJobResponse]
578
+ def id: () -> ::String
579
+ def sequence_store_id: () -> ::String
580
+ def role_arn: () -> ::String
581
+ def status: () -> ("SUBMITTED" | "IN_PROGRESS" | "CANCELLING" | "CANCELLED" | "FAILED" | "COMPLETED" | "COMPLETED_WITH_FAILURES")
582
+ def status_message: () -> ::String
583
+ def creation_time: () -> ::Time
584
+ def completion_time: () -> ::Time
585
+ def sources: () -> ::Array[Types::ImportReadSetSourceItem]
586
+ end
587
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#get_read_set_import_job-instance_method
588
+ def get_read_set_import_job: (
589
+ id: ::String,
590
+ sequence_store_id: ::String
591
+ ) -> _GetReadSetImportJobResponseSuccess
592
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetReadSetImportJobResponseSuccess
593
+
594
+ interface _GetReadSetMetadataResponseSuccess
595
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetReadSetMetadataResponse]
596
+ def id: () -> ::String
597
+ def arn: () -> ::String
598
+ def sequence_store_id: () -> ::String
599
+ def subject_id: () -> ::String
600
+ def sample_id: () -> ::String
601
+ def status: () -> ("ARCHIVED" | "ACTIVATING" | "ACTIVE" | "DELETING" | "DELETED" | "PROCESSING_UPLOAD" | "UPLOAD_FAILED")
602
+ def name: () -> ::String
603
+ def description: () -> ::String
604
+ def file_type: () -> ("FASTQ" | "BAM" | "CRAM" | "UBAM")
605
+ def creation_time: () -> ::Time
606
+ def sequence_information: () -> Types::SequenceInformation
607
+ def reference_arn: () -> ::String
608
+ def files: () -> Types::ReadSetFiles
609
+ def status_message: () -> ::String
610
+ def creation_type: () -> ("IMPORT" | "UPLOAD")
611
+ def etag: () -> Types::ETag
612
+ end
613
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#get_read_set_metadata-instance_method
614
+ def get_read_set_metadata: (
615
+ id: ::String,
616
+ sequence_store_id: ::String
617
+ ) -> _GetReadSetMetadataResponseSuccess
618
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetReadSetMetadataResponseSuccess
619
+
620
+ interface _GetReferenceResponseSuccess
621
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetReferenceResponse]
622
+ def payload: () -> ::IO
623
+ end
624
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#get_reference-instance_method
625
+ def get_reference: (
626
+ id: ::String,
627
+ reference_store_id: ::String,
628
+ ?range: ::String,
629
+ part_number: ::Integer,
630
+ ?file: ("SOURCE" | "INDEX")
631
+ ) ?{ (*untyped) -> void } -> _GetReferenceResponseSuccess
632
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) ?{ (*untyped) -> void } -> _GetReferenceResponseSuccess
633
+
634
+ interface _GetReferenceImportJobResponseSuccess
635
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetReferenceImportJobResponse]
636
+ def id: () -> ::String
637
+ def reference_store_id: () -> ::String
638
+ def role_arn: () -> ::String
639
+ def status: () -> ("SUBMITTED" | "IN_PROGRESS" | "CANCELLING" | "CANCELLED" | "FAILED" | "COMPLETED" | "COMPLETED_WITH_FAILURES")
640
+ def status_message: () -> ::String
641
+ def creation_time: () -> ::Time
642
+ def completion_time: () -> ::Time
643
+ def sources: () -> ::Array[Types::ImportReferenceSourceItem]
644
+ end
645
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#get_reference_import_job-instance_method
646
+ def get_reference_import_job: (
647
+ id: ::String,
648
+ reference_store_id: ::String
649
+ ) -> _GetReferenceImportJobResponseSuccess
650
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetReferenceImportJobResponseSuccess
651
+
652
+ interface _GetReferenceMetadataResponseSuccess
653
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetReferenceMetadataResponse]
654
+ def id: () -> ::String
655
+ def arn: () -> ::String
656
+ def reference_store_id: () -> ::String
657
+ def md5: () -> ::String
658
+ def status: () -> ("ACTIVE" | "DELETING" | "DELETED")
659
+ def name: () -> ::String
660
+ def description: () -> ::String
661
+ def creation_time: () -> ::Time
662
+ def update_time: () -> ::Time
663
+ def files: () -> Types::ReferenceFiles
664
+ end
665
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#get_reference_metadata-instance_method
666
+ def get_reference_metadata: (
667
+ id: ::String,
668
+ reference_store_id: ::String
669
+ ) -> _GetReferenceMetadataResponseSuccess
670
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetReferenceMetadataResponseSuccess
671
+
672
+ interface _GetReferenceStoreResponseSuccess
673
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetReferenceStoreResponse]
674
+ def id: () -> ::String
675
+ def arn: () -> ::String
676
+ def name: () -> ::String
677
+ def description: () -> ::String
678
+ def sse_config: () -> Types::SseConfig
679
+ def creation_time: () -> ::Time
680
+ end
681
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#get_reference_store-instance_method
682
+ def get_reference_store: (
683
+ id: ::String
684
+ ) -> _GetReferenceStoreResponseSuccess
685
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetReferenceStoreResponseSuccess
686
+
687
+ interface _GetRunResponseSuccess
688
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetRunResponse]
689
+ def arn: () -> ::String
690
+ def id: () -> ::String
691
+ def status: () -> ("PENDING" | "STARTING" | "RUNNING" | "STOPPING" | "COMPLETED" | "DELETED" | "CANCELLED" | "FAILED")
692
+ def workflow_id: () -> ::String
693
+ def workflow_type: () -> ("PRIVATE" | "READY2RUN")
694
+ def run_id: () -> ::String
695
+ def role_arn: () -> ::String
696
+ def name: () -> ::String
697
+ def run_group_id: () -> ::String
698
+ def priority: () -> ::Integer
699
+ def definition: () -> ::String
700
+ def digest: () -> ::String
701
+ def parameters: () -> untyped
702
+ def storage_capacity: () -> ::Integer
703
+ def output_uri: () -> ::String
704
+ def log_level: () -> ("OFF" | "FATAL" | "ERROR" | "ALL")
705
+ def resource_digests: () -> ::Hash[::String, ::String]
706
+ def started_by: () -> ::String
707
+ def creation_time: () -> ::Time
708
+ def start_time: () -> ::Time
709
+ def stop_time: () -> ::Time
710
+ def status_message: () -> ::String
711
+ def tags: () -> ::Hash[::String, ::String]
712
+ def accelerators: () -> ("GPU")
713
+ def retention_mode: () -> ("RETAIN" | "REMOVE")
714
+ def failure_reason: () -> ::String
715
+ def log_location: () -> Types::RunLogLocation
716
+ def uuid: () -> ::String
717
+ def run_output_uri: () -> ::String
718
+ end
719
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#get_run-instance_method
720
+ def get_run: (
721
+ id: ::String,
722
+ ?export: Array[("DEFINITION")]
723
+ ) -> _GetRunResponseSuccess
724
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetRunResponseSuccess
725
+
726
+ interface _GetRunGroupResponseSuccess
727
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetRunGroupResponse]
728
+ def arn: () -> ::String
729
+ def id: () -> ::String
730
+ def name: () -> ::String
731
+ def max_cpus: () -> ::Integer
732
+ def max_runs: () -> ::Integer
733
+ def max_duration: () -> ::Integer
734
+ def creation_time: () -> ::Time
735
+ def tags: () -> ::Hash[::String, ::String]
736
+ def max_gpus: () -> ::Integer
737
+ end
738
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#get_run_group-instance_method
739
+ def get_run_group: (
740
+ id: ::String
741
+ ) -> _GetRunGroupResponseSuccess
742
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetRunGroupResponseSuccess
743
+
744
+ interface _GetRunTaskResponseSuccess
745
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetRunTaskResponse]
746
+ def task_id: () -> ::String
747
+ def status: () -> ("PENDING" | "STARTING" | "RUNNING" | "STOPPING" | "COMPLETED" | "CANCELLED" | "FAILED")
748
+ def name: () -> ::String
749
+ def cpus: () -> ::Integer
750
+ def memory: () -> ::Integer
751
+ def creation_time: () -> ::Time
752
+ def start_time: () -> ::Time
753
+ def stop_time: () -> ::Time
754
+ def status_message: () -> ::String
755
+ def log_stream: () -> ::String
756
+ def gpus: () -> ::Integer
757
+ def instance_type: () -> ::String
758
+ def failure_reason: () -> ::String
759
+ end
760
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#get_run_task-instance_method
761
+ def get_run_task: (
762
+ id: ::String,
763
+ task_id: ::String
764
+ ) -> _GetRunTaskResponseSuccess
765
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetRunTaskResponseSuccess
766
+
767
+ interface _GetSequenceStoreResponseSuccess
768
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetSequenceStoreResponse]
769
+ def id: () -> ::String
770
+ def arn: () -> ::String
771
+ def name: () -> ::String
772
+ def description: () -> ::String
773
+ def sse_config: () -> Types::SseConfig
774
+ def creation_time: () -> ::Time
775
+ def fallback_location: () -> ::String
776
+ end
777
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#get_sequence_store-instance_method
778
+ def get_sequence_store: (
779
+ id: ::String
780
+ ) -> _GetSequenceStoreResponseSuccess
781
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetSequenceStoreResponseSuccess
782
+
783
+ interface _GetShareResponseSuccess
784
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetShareResponse]
785
+ def share: () -> Types::ShareDetails
786
+ end
787
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#get_share-instance_method
788
+ def get_share: (
789
+ share_id: ::String
790
+ ) -> _GetShareResponseSuccess
791
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetShareResponseSuccess
792
+
793
+ interface _GetVariantImportJobResponseSuccess
794
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetVariantImportResponse]
795
+ def id: () -> ::String
796
+ def destination_name: () -> ::String
797
+ def role_arn: () -> ::String
798
+ def status: () -> ("SUBMITTED" | "IN_PROGRESS" | "CANCELLED" | "COMPLETED" | "FAILED" | "COMPLETED_WITH_FAILURES")
799
+ def status_message: () -> ::String
800
+ def creation_time: () -> ::Time
801
+ def update_time: () -> ::Time
802
+ def completion_time: () -> ::Time
803
+ def items: () -> ::Array[Types::VariantImportItemDetail]
804
+ def run_left_normalization: () -> bool
805
+ def annotation_fields: () -> ::Hash[::String, ::String]
806
+ end
807
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#get_variant_import_job-instance_method
808
+ def get_variant_import_job: (
809
+ job_id: ::String
810
+ ) -> _GetVariantImportJobResponseSuccess
811
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetVariantImportJobResponseSuccess
812
+
813
+ interface _GetVariantStoreResponseSuccess
814
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetVariantStoreResponse]
815
+ def id: () -> ::String
816
+ def reference: () -> Types::ReferenceItem
817
+ def status: () -> ("CREATING" | "UPDATING" | "DELETING" | "ACTIVE" | "FAILED")
818
+ def store_arn: () -> ::String
819
+ def name: () -> ::String
820
+ def description: () -> ::String
821
+ def sse_config: () -> Types::SseConfig
822
+ def creation_time: () -> ::Time
823
+ def update_time: () -> ::Time
824
+ def tags: () -> ::Hash[::String, ::String]
825
+ def status_message: () -> ::String
826
+ def store_size_bytes: () -> ::Integer
827
+ end
828
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#get_variant_store-instance_method
829
+ def get_variant_store: (
830
+ name: ::String
831
+ ) -> _GetVariantStoreResponseSuccess
832
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetVariantStoreResponseSuccess
833
+
834
+ interface _GetWorkflowResponseSuccess
835
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetWorkflowResponse]
836
+ def arn: () -> ::String
837
+ def id: () -> ::String
838
+ def status: () -> ("CREATING" | "ACTIVE" | "UPDATING" | "DELETED" | "FAILED" | "INACTIVE")
839
+ def type: () -> ("PRIVATE" | "READY2RUN")
840
+ def name: () -> ::String
841
+ def description: () -> ::String
842
+ def engine: () -> ("WDL" | "NEXTFLOW" | "CWL")
843
+ def definition: () -> ::String
844
+ def main: () -> ::String
845
+ def digest: () -> ::String
846
+ def parameter_template: () -> ::Hash[::String, Types::WorkflowParameter]
847
+ def storage_capacity: () -> ::Integer
848
+ def creation_time: () -> ::Time
849
+ def status_message: () -> ::String
850
+ def tags: () -> ::Hash[::String, ::String]
851
+ def metadata: () -> ::Hash[::String, ::String]
852
+ def accelerators: () -> ("GPU")
853
+ end
854
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#get_workflow-instance_method
855
+ def get_workflow: (
856
+ id: ::String,
857
+ ?type: ("PRIVATE" | "READY2RUN"),
858
+ ?export: Array[("DEFINITION")]
859
+ ) -> _GetWorkflowResponseSuccess
860
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetWorkflowResponseSuccess
861
+
862
+ interface _ListAnnotationImportJobsResponseSuccess
863
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListAnnotationImportJobsResponse]
864
+ def annotation_import_jobs: () -> ::Array[Types::AnnotationImportJobItem]
865
+ def next_token: () -> ::String
866
+ end
867
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#list_annotation_import_jobs-instance_method
868
+ def list_annotation_import_jobs: (
869
+ ?max_results: ::Integer,
870
+ ?ids: Array[::String],
871
+ ?next_token: ::String,
872
+ ?filter: {
873
+ status: ("SUBMITTED" | "IN_PROGRESS" | "CANCELLED" | "COMPLETED" | "FAILED" | "COMPLETED_WITH_FAILURES")?,
874
+ store_name: ::String?
875
+ }
876
+ ) -> _ListAnnotationImportJobsResponseSuccess
877
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListAnnotationImportJobsResponseSuccess
878
+
879
+ interface _ListAnnotationStoreVersionsResponseSuccess
880
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListAnnotationStoreVersionsResponse]
881
+ def annotation_store_versions: () -> ::Array[Types::AnnotationStoreVersionItem]
882
+ def next_token: () -> ::String
883
+ end
884
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#list_annotation_store_versions-instance_method
885
+ def list_annotation_store_versions: (
886
+ name: ::String,
887
+ ?max_results: ::Integer,
888
+ ?next_token: ::String,
889
+ ?filter: {
890
+ status: ("CREATING" | "UPDATING" | "DELETING" | "ACTIVE" | "FAILED")?
891
+ }
892
+ ) -> _ListAnnotationStoreVersionsResponseSuccess
893
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListAnnotationStoreVersionsResponseSuccess
894
+
895
+ interface _ListAnnotationStoresResponseSuccess
896
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListAnnotationStoresResponse]
897
+ def annotation_stores: () -> ::Array[Types::AnnotationStoreItem]
898
+ def next_token: () -> ::String
899
+ end
900
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#list_annotation_stores-instance_method
901
+ def list_annotation_stores: (
902
+ ?ids: Array[::String],
903
+ ?max_results: ::Integer,
904
+ ?next_token: ::String,
905
+ ?filter: {
906
+ status: ("CREATING" | "UPDATING" | "DELETING" | "ACTIVE" | "FAILED")?
907
+ }
908
+ ) -> _ListAnnotationStoresResponseSuccess
909
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListAnnotationStoresResponseSuccess
910
+
911
+ interface _ListMultipartReadSetUploadsResponseSuccess
912
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListMultipartReadSetUploadsResponse]
913
+ def next_token: () -> ::String
914
+ def uploads: () -> ::Array[Types::MultipartReadSetUploadListItem]
915
+ end
916
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#list_multipart_read_set_uploads-instance_method
917
+ def list_multipart_read_set_uploads: (
918
+ sequence_store_id: ::String,
919
+ ?max_results: ::Integer,
920
+ ?next_token: ::String
921
+ ) -> _ListMultipartReadSetUploadsResponseSuccess
922
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListMultipartReadSetUploadsResponseSuccess
923
+
924
+ interface _ListReadSetActivationJobsResponseSuccess
925
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListReadSetActivationJobsResponse]
926
+ def next_token: () -> ::String
927
+ def activation_jobs: () -> ::Array[Types::ActivateReadSetJobItem]
928
+ end
929
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#list_read_set_activation_jobs-instance_method
930
+ def list_read_set_activation_jobs: (
931
+ sequence_store_id: ::String,
932
+ ?max_results: ::Integer,
933
+ ?next_token: ::String,
934
+ ?filter: {
935
+ status: ("SUBMITTED" | "IN_PROGRESS" | "CANCELLING" | "CANCELLED" | "FAILED" | "COMPLETED" | "COMPLETED_WITH_FAILURES")?,
936
+ created_after: ::Time?,
937
+ created_before: ::Time?
938
+ }
939
+ ) -> _ListReadSetActivationJobsResponseSuccess
940
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListReadSetActivationJobsResponseSuccess
941
+
942
+ interface _ListReadSetExportJobsResponseSuccess
943
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListReadSetExportJobsResponse]
944
+ def next_token: () -> ::String
945
+ def export_jobs: () -> ::Array[Types::ExportReadSetJobDetail]
946
+ end
947
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#list_read_set_export_jobs-instance_method
948
+ def list_read_set_export_jobs: (
949
+ sequence_store_id: ::String,
950
+ ?max_results: ::Integer,
951
+ ?next_token: ::String,
952
+ ?filter: {
953
+ status: ("SUBMITTED" | "IN_PROGRESS" | "CANCELLING" | "CANCELLED" | "FAILED" | "COMPLETED" | "COMPLETED_WITH_FAILURES")?,
954
+ created_after: ::Time?,
955
+ created_before: ::Time?
956
+ }
957
+ ) -> _ListReadSetExportJobsResponseSuccess
958
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListReadSetExportJobsResponseSuccess
959
+
960
+ interface _ListReadSetImportJobsResponseSuccess
961
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListReadSetImportJobsResponse]
962
+ def next_token: () -> ::String
963
+ def import_jobs: () -> ::Array[Types::ImportReadSetJobItem]
964
+ end
965
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#list_read_set_import_jobs-instance_method
966
+ def list_read_set_import_jobs: (
967
+ ?max_results: ::Integer,
968
+ ?next_token: ::String,
969
+ sequence_store_id: ::String,
970
+ ?filter: {
971
+ status: ("SUBMITTED" | "IN_PROGRESS" | "CANCELLING" | "CANCELLED" | "FAILED" | "COMPLETED" | "COMPLETED_WITH_FAILURES")?,
972
+ created_after: ::Time?,
973
+ created_before: ::Time?
974
+ }
975
+ ) -> _ListReadSetImportJobsResponseSuccess
976
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListReadSetImportJobsResponseSuccess
977
+
978
+ interface _ListReadSetUploadPartsResponseSuccess
979
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListReadSetUploadPartsResponse]
980
+ def next_token: () -> ::String
981
+ def parts: () -> ::Array[Types::ReadSetUploadPartListItem]
982
+ end
983
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#list_read_set_upload_parts-instance_method
984
+ def list_read_set_upload_parts: (
985
+ sequence_store_id: ::String,
986
+ upload_id: ::String,
987
+ part_source: ("SOURCE1" | "SOURCE2"),
988
+ ?max_results: ::Integer,
989
+ ?next_token: ::String,
990
+ ?filter: {
991
+ created_after: ::Time?,
992
+ created_before: ::Time?
993
+ }
994
+ ) -> _ListReadSetUploadPartsResponseSuccess
995
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListReadSetUploadPartsResponseSuccess
996
+
997
+ interface _ListReadSetsResponseSuccess
998
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListReadSetsResponse]
999
+ def next_token: () -> ::String
1000
+ def read_sets: () -> ::Array[Types::ReadSetListItem]
1001
+ end
1002
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#list_read_sets-instance_method
1003
+ def list_read_sets: (
1004
+ sequence_store_id: ::String,
1005
+ ?max_results: ::Integer,
1006
+ ?next_token: ::String,
1007
+ ?filter: {
1008
+ name: ::String?,
1009
+ status: ("ARCHIVED" | "ACTIVATING" | "ACTIVE" | "DELETING" | "DELETED" | "PROCESSING_UPLOAD" | "UPLOAD_FAILED")?,
1010
+ reference_arn: ::String?,
1011
+ created_after: ::Time?,
1012
+ created_before: ::Time?,
1013
+ sample_id: ::String?,
1014
+ subject_id: ::String?,
1015
+ generated_from: ::String?,
1016
+ creation_type: ("IMPORT" | "UPLOAD")?
1017
+ }
1018
+ ) -> _ListReadSetsResponseSuccess
1019
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListReadSetsResponseSuccess
1020
+
1021
+ interface _ListReferenceImportJobsResponseSuccess
1022
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListReferenceImportJobsResponse]
1023
+ def next_token: () -> ::String
1024
+ def import_jobs: () -> ::Array[Types::ImportReferenceJobItem]
1025
+ end
1026
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#list_reference_import_jobs-instance_method
1027
+ def list_reference_import_jobs: (
1028
+ ?max_results: ::Integer,
1029
+ ?next_token: ::String,
1030
+ reference_store_id: ::String,
1031
+ ?filter: {
1032
+ status: ("SUBMITTED" | "IN_PROGRESS" | "CANCELLING" | "CANCELLED" | "FAILED" | "COMPLETED" | "COMPLETED_WITH_FAILURES")?,
1033
+ created_after: ::Time?,
1034
+ created_before: ::Time?
1035
+ }
1036
+ ) -> _ListReferenceImportJobsResponseSuccess
1037
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListReferenceImportJobsResponseSuccess
1038
+
1039
+ interface _ListReferenceStoresResponseSuccess
1040
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListReferenceStoresResponse]
1041
+ def next_token: () -> ::String
1042
+ def reference_stores: () -> ::Array[Types::ReferenceStoreDetail]
1043
+ end
1044
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#list_reference_stores-instance_method
1045
+ def list_reference_stores: (
1046
+ ?max_results: ::Integer,
1047
+ ?next_token: ::String,
1048
+ ?filter: {
1049
+ name: ::String?,
1050
+ created_after: ::Time?,
1051
+ created_before: ::Time?
1052
+ }
1053
+ ) -> _ListReferenceStoresResponseSuccess
1054
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListReferenceStoresResponseSuccess
1055
+
1056
+ interface _ListReferencesResponseSuccess
1057
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListReferencesResponse]
1058
+ def next_token: () -> ::String
1059
+ def references: () -> ::Array[Types::ReferenceListItem]
1060
+ end
1061
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#list_references-instance_method
1062
+ def list_references: (
1063
+ reference_store_id: ::String,
1064
+ ?max_results: ::Integer,
1065
+ ?next_token: ::String,
1066
+ ?filter: {
1067
+ name: ::String?,
1068
+ md5: ::String?,
1069
+ created_after: ::Time?,
1070
+ created_before: ::Time?
1071
+ }
1072
+ ) -> _ListReferencesResponseSuccess
1073
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListReferencesResponseSuccess
1074
+
1075
+ interface _ListRunGroupsResponseSuccess
1076
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListRunGroupsResponse]
1077
+ def items: () -> ::Array[Types::RunGroupListItem]
1078
+ def next_token: () -> ::String
1079
+ end
1080
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#list_run_groups-instance_method
1081
+ def list_run_groups: (
1082
+ ?name: ::String,
1083
+ ?starting_token: ::String,
1084
+ ?max_results: ::Integer
1085
+ ) -> _ListRunGroupsResponseSuccess
1086
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListRunGroupsResponseSuccess
1087
+
1088
+ interface _ListRunTasksResponseSuccess
1089
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListRunTasksResponse]
1090
+ def items: () -> ::Array[Types::TaskListItem]
1091
+ def next_token: () -> ::String
1092
+ end
1093
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#list_run_tasks-instance_method
1094
+ def list_run_tasks: (
1095
+ id: ::String,
1096
+ ?status: ("PENDING" | "STARTING" | "RUNNING" | "STOPPING" | "COMPLETED" | "CANCELLED" | "FAILED"),
1097
+ ?starting_token: ::String,
1098
+ ?max_results: ::Integer
1099
+ ) -> _ListRunTasksResponseSuccess
1100
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListRunTasksResponseSuccess
1101
+
1102
+ interface _ListRunsResponseSuccess
1103
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListRunsResponse]
1104
+ def items: () -> ::Array[Types::RunListItem]
1105
+ def next_token: () -> ::String
1106
+ end
1107
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#list_runs-instance_method
1108
+ def list_runs: (
1109
+ ?name: ::String,
1110
+ ?run_group_id: ::String,
1111
+ ?starting_token: ::String,
1112
+ ?max_results: ::Integer,
1113
+ ?status: ("PENDING" | "STARTING" | "RUNNING" | "STOPPING" | "COMPLETED" | "DELETED" | "CANCELLED" | "FAILED")
1114
+ ) -> _ListRunsResponseSuccess
1115
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListRunsResponseSuccess
1116
+
1117
+ interface _ListSequenceStoresResponseSuccess
1118
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListSequenceStoresResponse]
1119
+ def next_token: () -> ::String
1120
+ def sequence_stores: () -> ::Array[Types::SequenceStoreDetail]
1121
+ end
1122
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#list_sequence_stores-instance_method
1123
+ def list_sequence_stores: (
1124
+ ?max_results: ::Integer,
1125
+ ?next_token: ::String,
1126
+ ?filter: {
1127
+ name: ::String?,
1128
+ created_after: ::Time?,
1129
+ created_before: ::Time?
1130
+ }
1131
+ ) -> _ListSequenceStoresResponseSuccess
1132
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListSequenceStoresResponseSuccess
1133
+
1134
+ interface _ListSharesResponseSuccess
1135
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListSharesResponse]
1136
+ def shares: () -> ::Array[Types::ShareDetails]
1137
+ def next_token: () -> ::String
1138
+ end
1139
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#list_shares-instance_method
1140
+ def list_shares: (
1141
+ resource_owner: ("SELF" | "OTHER"),
1142
+ ?filter: {
1143
+ resource_arns: Array[::String]?,
1144
+ status: Array[("PENDING" | "ACTIVATING" | "ACTIVE" | "DELETING" | "DELETED" | "FAILED")]?
1145
+ },
1146
+ ?next_token: ::String,
1147
+ ?max_results: ::Integer
1148
+ ) -> _ListSharesResponseSuccess
1149
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListSharesResponseSuccess
1150
+
1151
+ interface _ListTagsForResourceResponseSuccess
1152
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListTagsForResourceResponse]
1153
+ def tags: () -> ::Hash[::String, ::String]
1154
+ end
1155
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#list_tags_for_resource-instance_method
1156
+ def list_tags_for_resource: (
1157
+ resource_arn: ::String
1158
+ ) -> _ListTagsForResourceResponseSuccess
1159
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTagsForResourceResponseSuccess
1160
+
1161
+ interface _ListVariantImportJobsResponseSuccess
1162
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListVariantImportJobsResponse]
1163
+ def variant_import_jobs: () -> ::Array[Types::VariantImportJobItem]
1164
+ def next_token: () -> ::String
1165
+ end
1166
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#list_variant_import_jobs-instance_method
1167
+ def list_variant_import_jobs: (
1168
+ ?max_results: ::Integer,
1169
+ ?ids: Array[::String],
1170
+ ?next_token: ::String,
1171
+ ?filter: {
1172
+ status: ("SUBMITTED" | "IN_PROGRESS" | "CANCELLED" | "COMPLETED" | "FAILED" | "COMPLETED_WITH_FAILURES")?,
1173
+ store_name: ::String?
1174
+ }
1175
+ ) -> _ListVariantImportJobsResponseSuccess
1176
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListVariantImportJobsResponseSuccess
1177
+
1178
+ interface _ListVariantStoresResponseSuccess
1179
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListVariantStoresResponse]
1180
+ def variant_stores: () -> ::Array[Types::VariantStoreItem]
1181
+ def next_token: () -> ::String
1182
+ end
1183
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#list_variant_stores-instance_method
1184
+ def list_variant_stores: (
1185
+ ?max_results: ::Integer,
1186
+ ?ids: Array[::String],
1187
+ ?next_token: ::String,
1188
+ ?filter: {
1189
+ status: ("CREATING" | "UPDATING" | "DELETING" | "ACTIVE" | "FAILED")?
1190
+ }
1191
+ ) -> _ListVariantStoresResponseSuccess
1192
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListVariantStoresResponseSuccess
1193
+
1194
+ interface _ListWorkflowsResponseSuccess
1195
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListWorkflowsResponse]
1196
+ def items: () -> ::Array[Types::WorkflowListItem]
1197
+ def next_token: () -> ::String
1198
+ end
1199
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#list_workflows-instance_method
1200
+ def list_workflows: (
1201
+ ?type: ("PRIVATE" | "READY2RUN"),
1202
+ ?name: ::String,
1203
+ ?starting_token: ::String,
1204
+ ?max_results: ::Integer
1205
+ ) -> _ListWorkflowsResponseSuccess
1206
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListWorkflowsResponseSuccess
1207
+
1208
+ interface _StartAnnotationImportJobResponseSuccess
1209
+ include ::Seahorse::Client::_ResponseSuccess[Types::StartAnnotationImportResponse]
1210
+ def job_id: () -> ::String
1211
+ end
1212
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#start_annotation_import_job-instance_method
1213
+ def start_annotation_import_job: (
1214
+ destination_name: ::String,
1215
+ role_arn: ::String,
1216
+ items: Array[
1217
+ {
1218
+ source: ::String
1219
+ },
1220
+ ],
1221
+ ?version_name: ::String,
1222
+ ?format_options: {
1223
+ tsv_options: {
1224
+ read_options: {
1225
+ sep: ::String?,
1226
+ encoding: ::String?,
1227
+ quote: ::String?,
1228
+ quote_all: bool?,
1229
+ escape: ::String?,
1230
+ escape_quotes: bool?,
1231
+ comment: ::String?,
1232
+ header: bool?,
1233
+ line_sep: ::String?
1234
+ }?
1235
+ }?,
1236
+ vcf_options: {
1237
+ ignore_qual_field: bool?,
1238
+ ignore_filter_field: bool?
1239
+ }?
1240
+ },
1241
+ ?run_left_normalization: bool,
1242
+ ?annotation_fields: Hash[::String, ::String]
1243
+ ) -> _StartAnnotationImportJobResponseSuccess
1244
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartAnnotationImportJobResponseSuccess
1245
+
1246
+ interface _StartReadSetActivationJobResponseSuccess
1247
+ include ::Seahorse::Client::_ResponseSuccess[Types::StartReadSetActivationJobResponse]
1248
+ def id: () -> ::String
1249
+ def sequence_store_id: () -> ::String
1250
+ def status: () -> ("SUBMITTED" | "IN_PROGRESS" | "CANCELLING" | "CANCELLED" | "FAILED" | "COMPLETED" | "COMPLETED_WITH_FAILURES")
1251
+ def creation_time: () -> ::Time
1252
+ end
1253
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#start_read_set_activation_job-instance_method
1254
+ def start_read_set_activation_job: (
1255
+ sequence_store_id: ::String,
1256
+ ?client_token: ::String,
1257
+ sources: Array[
1258
+ {
1259
+ read_set_id: ::String
1260
+ },
1261
+ ]
1262
+ ) -> _StartReadSetActivationJobResponseSuccess
1263
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartReadSetActivationJobResponseSuccess
1264
+
1265
+ interface _StartReadSetExportJobResponseSuccess
1266
+ include ::Seahorse::Client::_ResponseSuccess[Types::StartReadSetExportJobResponse]
1267
+ def id: () -> ::String
1268
+ def sequence_store_id: () -> ::String
1269
+ def destination: () -> ::String
1270
+ def status: () -> ("SUBMITTED" | "IN_PROGRESS" | "CANCELLING" | "CANCELLED" | "FAILED" | "COMPLETED" | "COMPLETED_WITH_FAILURES")
1271
+ def creation_time: () -> ::Time
1272
+ end
1273
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#start_read_set_export_job-instance_method
1274
+ def start_read_set_export_job: (
1275
+ sequence_store_id: ::String,
1276
+ destination: ::String,
1277
+ role_arn: ::String,
1278
+ ?client_token: ::String,
1279
+ sources: Array[
1280
+ {
1281
+ read_set_id: ::String
1282
+ },
1283
+ ]
1284
+ ) -> _StartReadSetExportJobResponseSuccess
1285
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartReadSetExportJobResponseSuccess
1286
+
1287
+ interface _StartReadSetImportJobResponseSuccess
1288
+ include ::Seahorse::Client::_ResponseSuccess[Types::StartReadSetImportJobResponse]
1289
+ def id: () -> ::String
1290
+ def sequence_store_id: () -> ::String
1291
+ def role_arn: () -> ::String
1292
+ def status: () -> ("SUBMITTED" | "IN_PROGRESS" | "CANCELLING" | "CANCELLED" | "FAILED" | "COMPLETED" | "COMPLETED_WITH_FAILURES")
1293
+ def creation_time: () -> ::Time
1294
+ end
1295
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#start_read_set_import_job-instance_method
1296
+ def start_read_set_import_job: (
1297
+ sequence_store_id: ::String,
1298
+ role_arn: ::String,
1299
+ ?client_token: ::String,
1300
+ sources: Array[
1301
+ {
1302
+ source_files: {
1303
+ source1: ::String,
1304
+ source2: ::String?
1305
+ },
1306
+ source_file_type: ("FASTQ" | "BAM" | "CRAM" | "UBAM"),
1307
+ subject_id: ::String,
1308
+ sample_id: ::String,
1309
+ generated_from: ::String?,
1310
+ reference_arn: ::String?,
1311
+ name: ::String?,
1312
+ description: ::String?,
1313
+ tags: Hash[::String, ::String]?
1314
+ },
1315
+ ]
1316
+ ) -> _StartReadSetImportJobResponseSuccess
1317
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartReadSetImportJobResponseSuccess
1318
+
1319
+ interface _StartReferenceImportJobResponseSuccess
1320
+ include ::Seahorse::Client::_ResponseSuccess[Types::StartReferenceImportJobResponse]
1321
+ def id: () -> ::String
1322
+ def reference_store_id: () -> ::String
1323
+ def role_arn: () -> ::String
1324
+ def status: () -> ("SUBMITTED" | "IN_PROGRESS" | "CANCELLING" | "CANCELLED" | "FAILED" | "COMPLETED" | "COMPLETED_WITH_FAILURES")
1325
+ def creation_time: () -> ::Time
1326
+ end
1327
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#start_reference_import_job-instance_method
1328
+ def start_reference_import_job: (
1329
+ reference_store_id: ::String,
1330
+ role_arn: ::String,
1331
+ ?client_token: ::String,
1332
+ sources: Array[
1333
+ {
1334
+ source_file: ::String,
1335
+ name: ::String,
1336
+ description: ::String?,
1337
+ tags: Hash[::String, ::String]?
1338
+ },
1339
+ ]
1340
+ ) -> _StartReferenceImportJobResponseSuccess
1341
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartReferenceImportJobResponseSuccess
1342
+
1343
+ interface _StartRunResponseSuccess
1344
+ include ::Seahorse::Client::_ResponseSuccess[Types::StartRunResponse]
1345
+ def arn: () -> ::String
1346
+ def id: () -> ::String
1347
+ def status: () -> ("PENDING" | "STARTING" | "RUNNING" | "STOPPING" | "COMPLETED" | "DELETED" | "CANCELLED" | "FAILED")
1348
+ def tags: () -> ::Hash[::String, ::String]
1349
+ def uuid: () -> ::String
1350
+ def run_output_uri: () -> ::String
1351
+ end
1352
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#start_run-instance_method
1353
+ def start_run: (
1354
+ ?workflow_id: ::String,
1355
+ ?workflow_type: ("PRIVATE" | "READY2RUN"),
1356
+ ?run_id: ::String,
1357
+ role_arn: ::String,
1358
+ ?name: ::String,
1359
+ ?run_group_id: ::String,
1360
+ ?priority: ::Integer,
1361
+ ?parameters: {
1362
+ },
1363
+ ?storage_capacity: ::Integer,
1364
+ ?output_uri: ::String,
1365
+ ?log_level: ("OFF" | "FATAL" | "ERROR" | "ALL"),
1366
+ ?tags: Hash[::String, ::String],
1367
+ request_id: ::String,
1368
+ ?retention_mode: ("RETAIN" | "REMOVE")
1369
+ ) -> _StartRunResponseSuccess
1370
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartRunResponseSuccess
1371
+
1372
+ interface _StartVariantImportJobResponseSuccess
1373
+ include ::Seahorse::Client::_ResponseSuccess[Types::StartVariantImportResponse]
1374
+ def job_id: () -> ::String
1375
+ end
1376
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#start_variant_import_job-instance_method
1377
+ def start_variant_import_job: (
1378
+ destination_name: ::String,
1379
+ role_arn: ::String,
1380
+ items: Array[
1381
+ {
1382
+ source: ::String
1383
+ },
1384
+ ],
1385
+ ?run_left_normalization: bool,
1386
+ ?annotation_fields: Hash[::String, ::String]
1387
+ ) -> _StartVariantImportJobResponseSuccess
1388
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartVariantImportJobResponseSuccess
1389
+
1390
+ interface _TagResourceResponseSuccess
1391
+ include ::Seahorse::Client::_ResponseSuccess[Types::TagResourceResponse]
1392
+ end
1393
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#tag_resource-instance_method
1394
+ def tag_resource: (
1395
+ resource_arn: ::String,
1396
+ tags: Hash[::String, ::String]
1397
+ ) -> _TagResourceResponseSuccess
1398
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _TagResourceResponseSuccess
1399
+
1400
+ interface _UntagResourceResponseSuccess
1401
+ include ::Seahorse::Client::_ResponseSuccess[Types::UntagResourceResponse]
1402
+ end
1403
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#untag_resource-instance_method
1404
+ def untag_resource: (
1405
+ resource_arn: ::String,
1406
+ tag_keys: Array[::String]
1407
+ ) -> _UntagResourceResponseSuccess
1408
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UntagResourceResponseSuccess
1409
+
1410
+ interface _UpdateAnnotationStoreResponseSuccess
1411
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateAnnotationStoreResponse]
1412
+ def id: () -> ::String
1413
+ def reference: () -> Types::ReferenceItem
1414
+ def status: () -> ("CREATING" | "UPDATING" | "DELETING" | "ACTIVE" | "FAILED")
1415
+ def name: () -> ::String
1416
+ def description: () -> ::String
1417
+ def creation_time: () -> ::Time
1418
+ def update_time: () -> ::Time
1419
+ def store_options: () -> Types::StoreOptions
1420
+ def store_format: () -> ("GFF" | "TSV" | "VCF")
1421
+ end
1422
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#update_annotation_store-instance_method
1423
+ def update_annotation_store: (
1424
+ name: ::String,
1425
+ ?description: ::String
1426
+ ) -> _UpdateAnnotationStoreResponseSuccess
1427
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateAnnotationStoreResponseSuccess
1428
+
1429
+ interface _UpdateAnnotationStoreVersionResponseSuccess
1430
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateAnnotationStoreVersionResponse]
1431
+ def store_id: () -> ::String
1432
+ def id: () -> ::String
1433
+ def status: () -> ("CREATING" | "UPDATING" | "DELETING" | "ACTIVE" | "FAILED")
1434
+ def name: () -> ::String
1435
+ def version_name: () -> ::String
1436
+ def description: () -> ::String
1437
+ def creation_time: () -> ::Time
1438
+ def update_time: () -> ::Time
1439
+ end
1440
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#update_annotation_store_version-instance_method
1441
+ def update_annotation_store_version: (
1442
+ name: ::String,
1443
+ version_name: ::String,
1444
+ ?description: ::String
1445
+ ) -> _UpdateAnnotationStoreVersionResponseSuccess
1446
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateAnnotationStoreVersionResponseSuccess
1447
+
1448
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#update_run_group-instance_method
1449
+ def update_run_group: (
1450
+ id: ::String,
1451
+ ?name: ::String,
1452
+ ?max_cpus: ::Integer,
1453
+ ?max_runs: ::Integer,
1454
+ ?max_duration: ::Integer,
1455
+ ?max_gpus: ::Integer
1456
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1457
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1458
+
1459
+ interface _UpdateVariantStoreResponseSuccess
1460
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateVariantStoreResponse]
1461
+ def id: () -> ::String
1462
+ def reference: () -> Types::ReferenceItem
1463
+ def status: () -> ("CREATING" | "UPDATING" | "DELETING" | "ACTIVE" | "FAILED")
1464
+ def name: () -> ::String
1465
+ def description: () -> ::String
1466
+ def creation_time: () -> ::Time
1467
+ def update_time: () -> ::Time
1468
+ end
1469
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#update_variant_store-instance_method
1470
+ def update_variant_store: (
1471
+ name: ::String,
1472
+ ?description: ::String
1473
+ ) -> _UpdateVariantStoreResponseSuccess
1474
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateVariantStoreResponseSuccess
1475
+
1476
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#update_workflow-instance_method
1477
+ def update_workflow: (
1478
+ id: ::String,
1479
+ ?name: ::String,
1480
+ ?description: ::String
1481
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1482
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1483
+
1484
+ interface _UploadReadSetPartResponseSuccess
1485
+ include ::Seahorse::Client::_ResponseSuccess[Types::UploadReadSetPartResponse]
1486
+ def checksum: () -> ::String
1487
+ end
1488
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#upload_read_set_part-instance_method
1489
+ def upload_read_set_part: (
1490
+ sequence_store_id: ::String,
1491
+ upload_id: ::String,
1492
+ part_source: ("SOURCE1" | "SOURCE2"),
1493
+ part_number: ::Integer,
1494
+ payload: ::String
1495
+ ) -> _UploadReadSetPartResponseSuccess
1496
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UploadReadSetPartResponseSuccess
1497
+
1498
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#wait_until-instance_method
1499
+ def wait_until: (:annotation_import_job_created waiter_name,
1500
+ job_id: ::String
1501
+ ) -> Client::_GetAnnotationImportJobResponseSuccess
1502
+ | (:annotation_import_job_created waiter_name, Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> Client::_GetAnnotationImportJobResponseSuccess
1503
+ | (:annotation_store_created waiter_name,
1504
+ name: ::String
1505
+ ) -> Client::_GetAnnotationStoreResponseSuccess
1506
+ | (:annotation_store_created waiter_name, Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> Client::_GetAnnotationStoreResponseSuccess
1507
+ | (:annotation_store_deleted waiter_name,
1508
+ name: ::String
1509
+ ) -> Client::_GetAnnotationStoreResponseSuccess
1510
+ | (:annotation_store_deleted waiter_name, Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> Client::_GetAnnotationStoreResponseSuccess
1511
+ | (:annotation_store_version_created waiter_name,
1512
+ name: ::String,
1513
+ version_name: ::String
1514
+ ) -> Client::_GetAnnotationStoreVersionResponseSuccess
1515
+ | (:annotation_store_version_created waiter_name, Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> Client::_GetAnnotationStoreVersionResponseSuccess
1516
+ | (:annotation_store_version_deleted waiter_name,
1517
+ name: ::String,
1518
+ version_name: ::String
1519
+ ) -> Client::_GetAnnotationStoreVersionResponseSuccess
1520
+ | (:annotation_store_version_deleted waiter_name, Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> Client::_GetAnnotationStoreVersionResponseSuccess
1521
+ | (:read_set_activation_job_completed waiter_name,
1522
+ id: ::String,
1523
+ sequence_store_id: ::String
1524
+ ) -> Client::_GetReadSetActivationJobResponseSuccess
1525
+ | (:read_set_activation_job_completed waiter_name, Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> Client::_GetReadSetActivationJobResponseSuccess
1526
+ | (:read_set_export_job_completed waiter_name,
1527
+ sequence_store_id: ::String,
1528
+ id: ::String
1529
+ ) -> Client::_GetReadSetExportJobResponseSuccess
1530
+ | (:read_set_export_job_completed waiter_name, Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> Client::_GetReadSetExportJobResponseSuccess
1531
+ | (:read_set_import_job_completed waiter_name,
1532
+ id: ::String,
1533
+ sequence_store_id: ::String
1534
+ ) -> Client::_GetReadSetImportJobResponseSuccess
1535
+ | (:read_set_import_job_completed waiter_name, Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> Client::_GetReadSetImportJobResponseSuccess
1536
+ | (:reference_import_job_completed waiter_name,
1537
+ id: ::String,
1538
+ reference_store_id: ::String
1539
+ ) -> Client::_GetReferenceImportJobResponseSuccess
1540
+ | (:reference_import_job_completed waiter_name, Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> Client::_GetReferenceImportJobResponseSuccess
1541
+ | (:run_completed waiter_name,
1542
+ id: ::String,
1543
+ ?export: Array[("DEFINITION")]
1544
+ ) -> Client::_GetRunResponseSuccess
1545
+ | (:run_completed waiter_name, Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> Client::_GetRunResponseSuccess
1546
+ | (:run_running waiter_name,
1547
+ id: ::String,
1548
+ ?export: Array[("DEFINITION")]
1549
+ ) -> Client::_GetRunResponseSuccess
1550
+ | (:run_running waiter_name, Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> Client::_GetRunResponseSuccess
1551
+ | (:task_completed waiter_name,
1552
+ id: ::String,
1553
+ task_id: ::String
1554
+ ) -> Client::_GetRunTaskResponseSuccess
1555
+ | (:task_completed waiter_name, Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> Client::_GetRunTaskResponseSuccess
1556
+ | (:task_running waiter_name,
1557
+ id: ::String,
1558
+ task_id: ::String
1559
+ ) -> Client::_GetRunTaskResponseSuccess
1560
+ | (:task_running waiter_name, Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> Client::_GetRunTaskResponseSuccess
1561
+ | (:variant_import_job_created waiter_name,
1562
+ job_id: ::String
1563
+ ) -> Client::_GetVariantImportJobResponseSuccess
1564
+ | (:variant_import_job_created waiter_name, Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> Client::_GetVariantImportJobResponseSuccess
1565
+ | (:variant_store_created waiter_name,
1566
+ name: ::String
1567
+ ) -> Client::_GetVariantStoreResponseSuccess
1568
+ | (:variant_store_created waiter_name, Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> Client::_GetVariantStoreResponseSuccess
1569
+ | (:variant_store_deleted waiter_name,
1570
+ name: ::String
1571
+ ) -> Client::_GetVariantStoreResponseSuccess
1572
+ | (:variant_store_deleted waiter_name, Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> Client::_GetVariantStoreResponseSuccess
1573
+ | (:workflow_active waiter_name,
1574
+ id: ::String,
1575
+ ?type: ("PRIVATE" | "READY2RUN"),
1576
+ ?export: Array[("DEFINITION")]
1577
+ ) -> Client::_GetWorkflowResponseSuccess
1578
+ | (:workflow_active waiter_name, Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> Client::_GetWorkflowResponseSuccess
1579
+ end
1580
+ end
1581
+ end
1582
+