aws-sdk-omics 1.11.0 → 1.13.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-omics/client.rb +537 -25
- data/lib/aws-sdk-omics/client_api.rb +425 -15
- data/lib/aws-sdk-omics/endpoints.rb +140 -0
- data/lib/aws-sdk-omics/plugins/endpoints.rb +20 -0
- data/lib/aws-sdk-omics/types.rb +762 -6
- data/lib/aws-sdk-omics/waiters.rb +126 -17
- data/lib/aws-sdk-omics.rb +1 -1
- metadata +2 -2
@@ -26,6 +26,20 @@ module Aws::Omics
|
|
26
26
|
end
|
27
27
|
end
|
28
28
|
|
29
|
+
class AcceptShare
|
30
|
+
def self.build(context)
|
31
|
+
unless context.config.regional_endpoint
|
32
|
+
endpoint = context.config.endpoint.to_s
|
33
|
+
end
|
34
|
+
Aws::Omics::EndpointParameters.new(
|
35
|
+
region: context.config.region,
|
36
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
37
|
+
use_fips: context.config.use_fips_endpoint,
|
38
|
+
endpoint: endpoint,
|
39
|
+
)
|
40
|
+
end
|
41
|
+
end
|
42
|
+
|
29
43
|
class BatchDeleteReadSet
|
30
44
|
def self.build(context)
|
31
45
|
unless context.config.regional_endpoint
|
@@ -110,6 +124,20 @@ module Aws::Omics
|
|
110
124
|
end
|
111
125
|
end
|
112
126
|
|
127
|
+
class CreateAnnotationStoreVersion
|
128
|
+
def self.build(context)
|
129
|
+
unless context.config.regional_endpoint
|
130
|
+
endpoint = context.config.endpoint.to_s
|
131
|
+
end
|
132
|
+
Aws::Omics::EndpointParameters.new(
|
133
|
+
region: context.config.region,
|
134
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
135
|
+
use_fips: context.config.use_fips_endpoint,
|
136
|
+
endpoint: endpoint,
|
137
|
+
)
|
138
|
+
end
|
139
|
+
end
|
140
|
+
|
113
141
|
class CreateMultipartReadSetUpload
|
114
142
|
def self.build(context)
|
115
143
|
unless context.config.regional_endpoint
|
@@ -166,6 +194,20 @@ module Aws::Omics
|
|
166
194
|
end
|
167
195
|
end
|
168
196
|
|
197
|
+
class CreateShare
|
198
|
+
def self.build(context)
|
199
|
+
unless context.config.regional_endpoint
|
200
|
+
endpoint = context.config.endpoint.to_s
|
201
|
+
end
|
202
|
+
Aws::Omics::EndpointParameters.new(
|
203
|
+
region: context.config.region,
|
204
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
205
|
+
use_fips: context.config.use_fips_endpoint,
|
206
|
+
endpoint: endpoint,
|
207
|
+
)
|
208
|
+
end
|
209
|
+
end
|
210
|
+
|
169
211
|
class CreateVariantStore
|
170
212
|
def self.build(context)
|
171
213
|
unless context.config.regional_endpoint
|
@@ -208,6 +250,20 @@ module Aws::Omics
|
|
208
250
|
end
|
209
251
|
end
|
210
252
|
|
253
|
+
class DeleteAnnotationStoreVersions
|
254
|
+
def self.build(context)
|
255
|
+
unless context.config.regional_endpoint
|
256
|
+
endpoint = context.config.endpoint.to_s
|
257
|
+
end
|
258
|
+
Aws::Omics::EndpointParameters.new(
|
259
|
+
region: context.config.region,
|
260
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
261
|
+
use_fips: context.config.use_fips_endpoint,
|
262
|
+
endpoint: endpoint,
|
263
|
+
)
|
264
|
+
end
|
265
|
+
end
|
266
|
+
|
211
267
|
class DeleteReference
|
212
268
|
def self.build(context)
|
213
269
|
unless context.config.regional_endpoint
|
@@ -278,6 +334,20 @@ module Aws::Omics
|
|
278
334
|
end
|
279
335
|
end
|
280
336
|
|
337
|
+
class DeleteShare
|
338
|
+
def self.build(context)
|
339
|
+
unless context.config.regional_endpoint
|
340
|
+
endpoint = context.config.endpoint.to_s
|
341
|
+
end
|
342
|
+
Aws::Omics::EndpointParameters.new(
|
343
|
+
region: context.config.region,
|
344
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
345
|
+
use_fips: context.config.use_fips_endpoint,
|
346
|
+
endpoint: endpoint,
|
347
|
+
)
|
348
|
+
end
|
349
|
+
end
|
350
|
+
|
281
351
|
class DeleteVariantStore
|
282
352
|
def self.build(context)
|
283
353
|
unless context.config.regional_endpoint
|
@@ -334,6 +404,20 @@ module Aws::Omics
|
|
334
404
|
end
|
335
405
|
end
|
336
406
|
|
407
|
+
class GetAnnotationStoreVersion
|
408
|
+
def self.build(context)
|
409
|
+
unless context.config.regional_endpoint
|
410
|
+
endpoint = context.config.endpoint.to_s
|
411
|
+
end
|
412
|
+
Aws::Omics::EndpointParameters.new(
|
413
|
+
region: context.config.region,
|
414
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
415
|
+
use_fips: context.config.use_fips_endpoint,
|
416
|
+
endpoint: endpoint,
|
417
|
+
)
|
418
|
+
end
|
419
|
+
end
|
420
|
+
|
337
421
|
class GetReadSet
|
338
422
|
def self.build(context)
|
339
423
|
unless context.config.regional_endpoint
|
@@ -516,6 +600,20 @@ module Aws::Omics
|
|
516
600
|
end
|
517
601
|
end
|
518
602
|
|
603
|
+
class GetShare
|
604
|
+
def self.build(context)
|
605
|
+
unless context.config.regional_endpoint
|
606
|
+
endpoint = context.config.endpoint.to_s
|
607
|
+
end
|
608
|
+
Aws::Omics::EndpointParameters.new(
|
609
|
+
region: context.config.region,
|
610
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
611
|
+
use_fips: context.config.use_fips_endpoint,
|
612
|
+
endpoint: endpoint,
|
613
|
+
)
|
614
|
+
end
|
615
|
+
end
|
616
|
+
|
519
617
|
class GetVariantImportJob
|
520
618
|
def self.build(context)
|
521
619
|
unless context.config.regional_endpoint
|
@@ -572,6 +670,20 @@ module Aws::Omics
|
|
572
670
|
end
|
573
671
|
end
|
574
672
|
|
673
|
+
class ListAnnotationStoreVersions
|
674
|
+
def self.build(context)
|
675
|
+
unless context.config.regional_endpoint
|
676
|
+
endpoint = context.config.endpoint.to_s
|
677
|
+
end
|
678
|
+
Aws::Omics::EndpointParameters.new(
|
679
|
+
region: context.config.region,
|
680
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
681
|
+
use_fips: context.config.use_fips_endpoint,
|
682
|
+
endpoint: endpoint,
|
683
|
+
)
|
684
|
+
end
|
685
|
+
end
|
686
|
+
|
575
687
|
class ListAnnotationStores
|
576
688
|
def self.build(context)
|
577
689
|
unless context.config.regional_endpoint
|
@@ -768,6 +880,20 @@ module Aws::Omics
|
|
768
880
|
end
|
769
881
|
end
|
770
882
|
|
883
|
+
class ListShares
|
884
|
+
def self.build(context)
|
885
|
+
unless context.config.regional_endpoint
|
886
|
+
endpoint = context.config.endpoint.to_s
|
887
|
+
end
|
888
|
+
Aws::Omics::EndpointParameters.new(
|
889
|
+
region: context.config.region,
|
890
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
891
|
+
use_fips: context.config.use_fips_endpoint,
|
892
|
+
endpoint: endpoint,
|
893
|
+
)
|
894
|
+
end
|
895
|
+
end
|
896
|
+
|
771
897
|
class ListTagsForResource
|
772
898
|
def self.build(context)
|
773
899
|
unless context.config.regional_endpoint
|
@@ -964,6 +1090,20 @@ module Aws::Omics
|
|
964
1090
|
end
|
965
1091
|
end
|
966
1092
|
|
1093
|
+
class UpdateAnnotationStoreVersion
|
1094
|
+
def self.build(context)
|
1095
|
+
unless context.config.regional_endpoint
|
1096
|
+
endpoint = context.config.endpoint.to_s
|
1097
|
+
end
|
1098
|
+
Aws::Omics::EndpointParameters.new(
|
1099
|
+
region: context.config.region,
|
1100
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
1101
|
+
use_fips: context.config.use_fips_endpoint,
|
1102
|
+
endpoint: endpoint,
|
1103
|
+
)
|
1104
|
+
end
|
1105
|
+
end
|
1106
|
+
|
967
1107
|
class UpdateRunGroup
|
968
1108
|
def self.build(context)
|
969
1109
|
unless context.config.regional_endpoint
|
@@ -58,6 +58,8 @@ module Aws::Omics
|
|
58
58
|
case context.operation_name
|
59
59
|
when :abort_multipart_read_set_upload
|
60
60
|
Aws::Omics::Endpoints::AbortMultipartReadSetUpload.build(context)
|
61
|
+
when :accept_share
|
62
|
+
Aws::Omics::Endpoints::AcceptShare.build(context)
|
61
63
|
when :batch_delete_read_set
|
62
64
|
Aws::Omics::Endpoints::BatchDeleteReadSet.build(context)
|
63
65
|
when :cancel_annotation_import_job
|
@@ -70,6 +72,8 @@ module Aws::Omics
|
|
70
72
|
Aws::Omics::Endpoints::CompleteMultipartReadSetUpload.build(context)
|
71
73
|
when :create_annotation_store
|
72
74
|
Aws::Omics::Endpoints::CreateAnnotationStore.build(context)
|
75
|
+
when :create_annotation_store_version
|
76
|
+
Aws::Omics::Endpoints::CreateAnnotationStoreVersion.build(context)
|
73
77
|
when :create_multipart_read_set_upload
|
74
78
|
Aws::Omics::Endpoints::CreateMultipartReadSetUpload.build(context)
|
75
79
|
when :create_reference_store
|
@@ -78,12 +82,16 @@ module Aws::Omics
|
|
78
82
|
Aws::Omics::Endpoints::CreateRunGroup.build(context)
|
79
83
|
when :create_sequence_store
|
80
84
|
Aws::Omics::Endpoints::CreateSequenceStore.build(context)
|
85
|
+
when :create_share
|
86
|
+
Aws::Omics::Endpoints::CreateShare.build(context)
|
81
87
|
when :create_variant_store
|
82
88
|
Aws::Omics::Endpoints::CreateVariantStore.build(context)
|
83
89
|
when :create_workflow
|
84
90
|
Aws::Omics::Endpoints::CreateWorkflow.build(context)
|
85
91
|
when :delete_annotation_store
|
86
92
|
Aws::Omics::Endpoints::DeleteAnnotationStore.build(context)
|
93
|
+
when :delete_annotation_store_versions
|
94
|
+
Aws::Omics::Endpoints::DeleteAnnotationStoreVersions.build(context)
|
87
95
|
when :delete_reference
|
88
96
|
Aws::Omics::Endpoints::DeleteReference.build(context)
|
89
97
|
when :delete_reference_store
|
@@ -94,6 +102,8 @@ module Aws::Omics
|
|
94
102
|
Aws::Omics::Endpoints::DeleteRunGroup.build(context)
|
95
103
|
when :delete_sequence_store
|
96
104
|
Aws::Omics::Endpoints::DeleteSequenceStore.build(context)
|
105
|
+
when :delete_share
|
106
|
+
Aws::Omics::Endpoints::DeleteShare.build(context)
|
97
107
|
when :delete_variant_store
|
98
108
|
Aws::Omics::Endpoints::DeleteVariantStore.build(context)
|
99
109
|
when :delete_workflow
|
@@ -102,6 +112,8 @@ module Aws::Omics
|
|
102
112
|
Aws::Omics::Endpoints::GetAnnotationImportJob.build(context)
|
103
113
|
when :get_annotation_store
|
104
114
|
Aws::Omics::Endpoints::GetAnnotationStore.build(context)
|
115
|
+
when :get_annotation_store_version
|
116
|
+
Aws::Omics::Endpoints::GetAnnotationStoreVersion.build(context)
|
105
117
|
when :get_read_set
|
106
118
|
Aws::Omics::Endpoints::GetReadSet.build(context)
|
107
119
|
when :get_read_set_activation_job
|
@@ -128,6 +140,8 @@ module Aws::Omics
|
|
128
140
|
Aws::Omics::Endpoints::GetRunTask.build(context)
|
129
141
|
when :get_sequence_store
|
130
142
|
Aws::Omics::Endpoints::GetSequenceStore.build(context)
|
143
|
+
when :get_share
|
144
|
+
Aws::Omics::Endpoints::GetShare.build(context)
|
131
145
|
when :get_variant_import_job
|
132
146
|
Aws::Omics::Endpoints::GetVariantImportJob.build(context)
|
133
147
|
when :get_variant_store
|
@@ -136,6 +150,8 @@ module Aws::Omics
|
|
136
150
|
Aws::Omics::Endpoints::GetWorkflow.build(context)
|
137
151
|
when :list_annotation_import_jobs
|
138
152
|
Aws::Omics::Endpoints::ListAnnotationImportJobs.build(context)
|
153
|
+
when :list_annotation_store_versions
|
154
|
+
Aws::Omics::Endpoints::ListAnnotationStoreVersions.build(context)
|
139
155
|
when :list_annotation_stores
|
140
156
|
Aws::Omics::Endpoints::ListAnnotationStores.build(context)
|
141
157
|
when :list_multipart_read_set_uploads
|
@@ -164,6 +180,8 @@ module Aws::Omics
|
|
164
180
|
Aws::Omics::Endpoints::ListRuns.build(context)
|
165
181
|
when :list_sequence_stores
|
166
182
|
Aws::Omics::Endpoints::ListSequenceStores.build(context)
|
183
|
+
when :list_shares
|
184
|
+
Aws::Omics::Endpoints::ListShares.build(context)
|
167
185
|
when :list_tags_for_resource
|
168
186
|
Aws::Omics::Endpoints::ListTagsForResource.build(context)
|
169
187
|
when :list_variant_import_jobs
|
@@ -192,6 +210,8 @@ module Aws::Omics
|
|
192
210
|
Aws::Omics::Endpoints::UntagResource.build(context)
|
193
211
|
when :update_annotation_store
|
194
212
|
Aws::Omics::Endpoints::UpdateAnnotationStore.build(context)
|
213
|
+
when :update_annotation_store_version
|
214
|
+
Aws::Omics::Endpoints::UpdateAnnotationStoreVersion.build(context)
|
195
215
|
when :update_run_group
|
196
216
|
Aws::Omics::Endpoints::UpdateRunGroup.build(context)
|
197
217
|
when :update_variant_store
|