aws-sdk-omics 1.3.0 → 1.4.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-omics/client.rb +1089 -697
- data/lib/aws-sdk-omics/client_api.rb +687 -302
- data/lib/aws-sdk-omics/endpoints.rb +84 -0
- data/lib/aws-sdk-omics/errors.rb +16 -0
- data/lib/aws-sdk-omics/plugins/endpoints.rb +12 -0
- data/lib/aws-sdk-omics/types.rb +2067 -1432
- data/lib/aws-sdk-omics.rb +2 -2
- metadata +2 -2
@@ -11,6 +11,20 @@
|
|
11
11
|
module Aws::Omics
|
12
12
|
module Endpoints
|
13
13
|
|
14
|
+
class AbortMultipartReadSetUpload
|
15
|
+
def self.build(context)
|
16
|
+
unless context.config.regional_endpoint
|
17
|
+
endpoint = context.config.endpoint.to_s
|
18
|
+
end
|
19
|
+
Aws::Omics::EndpointParameters.new(
|
20
|
+
region: context.config.region,
|
21
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
22
|
+
use_fips: context.config.use_fips_endpoint,
|
23
|
+
endpoint: endpoint,
|
24
|
+
)
|
25
|
+
end
|
26
|
+
end
|
27
|
+
|
14
28
|
class BatchDeleteReadSet
|
15
29
|
def self.build(context)
|
16
30
|
unless context.config.regional_endpoint
|
@@ -67,6 +81,20 @@ module Aws::Omics
|
|
67
81
|
end
|
68
82
|
end
|
69
83
|
|
84
|
+
class CompleteMultipartReadSetUpload
|
85
|
+
def self.build(context)
|
86
|
+
unless context.config.regional_endpoint
|
87
|
+
endpoint = context.config.endpoint.to_s
|
88
|
+
end
|
89
|
+
Aws::Omics::EndpointParameters.new(
|
90
|
+
region: context.config.region,
|
91
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
92
|
+
use_fips: context.config.use_fips_endpoint,
|
93
|
+
endpoint: endpoint,
|
94
|
+
)
|
95
|
+
end
|
96
|
+
end
|
97
|
+
|
70
98
|
class CreateAnnotationStore
|
71
99
|
def self.build(context)
|
72
100
|
unless context.config.regional_endpoint
|
@@ -81,6 +109,20 @@ module Aws::Omics
|
|
81
109
|
end
|
82
110
|
end
|
83
111
|
|
112
|
+
class CreateMultipartReadSetUpload
|
113
|
+
def self.build(context)
|
114
|
+
unless context.config.regional_endpoint
|
115
|
+
endpoint = context.config.endpoint.to_s
|
116
|
+
end
|
117
|
+
Aws::Omics::EndpointParameters.new(
|
118
|
+
region: context.config.region,
|
119
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
120
|
+
use_fips: context.config.use_fips_endpoint,
|
121
|
+
endpoint: endpoint,
|
122
|
+
)
|
123
|
+
end
|
124
|
+
end
|
125
|
+
|
84
126
|
class CreateReferenceStore
|
85
127
|
def self.build(context)
|
86
128
|
unless context.config.regional_endpoint
|
@@ -543,6 +585,20 @@ module Aws::Omics
|
|
543
585
|
end
|
544
586
|
end
|
545
587
|
|
588
|
+
class ListMultipartReadSetUploads
|
589
|
+
def self.build(context)
|
590
|
+
unless context.config.regional_endpoint
|
591
|
+
endpoint = context.config.endpoint.to_s
|
592
|
+
end
|
593
|
+
Aws::Omics::EndpointParameters.new(
|
594
|
+
region: context.config.region,
|
595
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
596
|
+
use_fips: context.config.use_fips_endpoint,
|
597
|
+
endpoint: endpoint,
|
598
|
+
)
|
599
|
+
end
|
600
|
+
end
|
601
|
+
|
546
602
|
class ListReadSetActivationJobs
|
547
603
|
def self.build(context)
|
548
604
|
unless context.config.regional_endpoint
|
@@ -585,6 +641,20 @@ module Aws::Omics
|
|
585
641
|
end
|
586
642
|
end
|
587
643
|
|
644
|
+
class ListReadSetUploadParts
|
645
|
+
def self.build(context)
|
646
|
+
unless context.config.regional_endpoint
|
647
|
+
endpoint = context.config.endpoint.to_s
|
648
|
+
end
|
649
|
+
Aws::Omics::EndpointParameters.new(
|
650
|
+
region: context.config.region,
|
651
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
652
|
+
use_fips: context.config.use_fips_endpoint,
|
653
|
+
endpoint: endpoint,
|
654
|
+
)
|
655
|
+
end
|
656
|
+
end
|
657
|
+
|
588
658
|
class ListReadSets
|
589
659
|
def self.build(context)
|
590
660
|
unless context.config.regional_endpoint
|
@@ -935,5 +1005,19 @@ module Aws::Omics
|
|
935
1005
|
end
|
936
1006
|
end
|
937
1007
|
|
1008
|
+
class UploadReadSetPart
|
1009
|
+
def self.build(context)
|
1010
|
+
unless context.config.regional_endpoint
|
1011
|
+
endpoint = context.config.endpoint.to_s
|
1012
|
+
end
|
1013
|
+
Aws::Omics::EndpointParameters.new(
|
1014
|
+
region: context.config.region,
|
1015
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
1016
|
+
use_fips: context.config.use_fips_endpoint,
|
1017
|
+
endpoint: endpoint,
|
1018
|
+
)
|
1019
|
+
end
|
1020
|
+
end
|
1021
|
+
|
938
1022
|
end
|
939
1023
|
end
|
data/lib/aws-sdk-omics/errors.rb
CHANGED
@@ -30,6 +30,7 @@ module Aws::Omics
|
|
30
30
|
# * {AccessDeniedException}
|
31
31
|
# * {ConflictException}
|
32
32
|
# * {InternalServerException}
|
33
|
+
# * {NotSupportedOperationException}
|
33
34
|
# * {RangeNotSatisfiableException}
|
34
35
|
# * {RequestTimeoutException}
|
35
36
|
# * {ResourceNotFoundException}
|
@@ -92,6 +93,21 @@ module Aws::Omics
|
|
92
93
|
end
|
93
94
|
end
|
94
95
|
|
96
|
+
class NotSupportedOperationException < ServiceError
|
97
|
+
|
98
|
+
# @param [Seahorse::Client::RequestContext] context
|
99
|
+
# @param [String] message
|
100
|
+
# @param [Aws::Omics::Types::NotSupportedOperationException] data
|
101
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
102
|
+
super(context, message, data)
|
103
|
+
end
|
104
|
+
|
105
|
+
# @return [String]
|
106
|
+
def message
|
107
|
+
@message || @data[:message]
|
108
|
+
end
|
109
|
+
end
|
110
|
+
|
95
111
|
class RangeNotSatisfiableException < ServiceError
|
96
112
|
|
97
113
|
# @param [Seahorse::Client::RequestContext] context
|
@@ -56,6 +56,8 @@ module Aws::Omics
|
|
56
56
|
|
57
57
|
def parameters_for_operation(context)
|
58
58
|
case context.operation_name
|
59
|
+
when :abort_multipart_read_set_upload
|
60
|
+
Aws::Omics::Endpoints::AbortMultipartReadSetUpload.build(context)
|
59
61
|
when :batch_delete_read_set
|
60
62
|
Aws::Omics::Endpoints::BatchDeleteReadSet.build(context)
|
61
63
|
when :cancel_annotation_import_job
|
@@ -64,8 +66,12 @@ module Aws::Omics
|
|
64
66
|
Aws::Omics::Endpoints::CancelRun.build(context)
|
65
67
|
when :cancel_variant_import_job
|
66
68
|
Aws::Omics::Endpoints::CancelVariantImportJob.build(context)
|
69
|
+
when :complete_multipart_read_set_upload
|
70
|
+
Aws::Omics::Endpoints::CompleteMultipartReadSetUpload.build(context)
|
67
71
|
when :create_annotation_store
|
68
72
|
Aws::Omics::Endpoints::CreateAnnotationStore.build(context)
|
73
|
+
when :create_multipart_read_set_upload
|
74
|
+
Aws::Omics::Endpoints::CreateMultipartReadSetUpload.build(context)
|
69
75
|
when :create_reference_store
|
70
76
|
Aws::Omics::Endpoints::CreateReferenceStore.build(context)
|
71
77
|
when :create_run_group
|
@@ -132,12 +138,16 @@ module Aws::Omics
|
|
132
138
|
Aws::Omics::Endpoints::ListAnnotationImportJobs.build(context)
|
133
139
|
when :list_annotation_stores
|
134
140
|
Aws::Omics::Endpoints::ListAnnotationStores.build(context)
|
141
|
+
when :list_multipart_read_set_uploads
|
142
|
+
Aws::Omics::Endpoints::ListMultipartReadSetUploads.build(context)
|
135
143
|
when :list_read_set_activation_jobs
|
136
144
|
Aws::Omics::Endpoints::ListReadSetActivationJobs.build(context)
|
137
145
|
when :list_read_set_export_jobs
|
138
146
|
Aws::Omics::Endpoints::ListReadSetExportJobs.build(context)
|
139
147
|
when :list_read_set_import_jobs
|
140
148
|
Aws::Omics::Endpoints::ListReadSetImportJobs.build(context)
|
149
|
+
when :list_read_set_upload_parts
|
150
|
+
Aws::Omics::Endpoints::ListReadSetUploadParts.build(context)
|
141
151
|
when :list_read_sets
|
142
152
|
Aws::Omics::Endpoints::ListReadSets.build(context)
|
143
153
|
when :list_reference_import_jobs
|
@@ -188,6 +198,8 @@ module Aws::Omics
|
|
188
198
|
Aws::Omics::Endpoints::UpdateVariantStore.build(context)
|
189
199
|
when :update_workflow
|
190
200
|
Aws::Omics::Endpoints::UpdateWorkflow.build(context)
|
201
|
+
when :upload_read_set_part
|
202
|
+
Aws::Omics::Endpoints::UploadReadSetPart.build(context)
|
191
203
|
end
|
192
204
|
end
|
193
205
|
end
|