1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
open Awso_omics
open Awso_lwt
module Io = Http.Io
let eval ?endpoint_url ?cfg endpoint input =
Io.bind (Io.resolve_cfg cfg)
(fun cfg ->
let meth = Endpoints.method_of_endpoint endpoint in
let uri = Endpoints.uri_of_endpoint endpoint input in
Io.map
(Io.call ?endpoint_url ~cfg ~service:Values.service meth
(Endpoints.to_request endpoint input) uri)
(fun resp_result -> Endpoints.of_response endpoint resp_result))
let abort_multipart_read_set_upload ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.AbortMultipartReadSetUpload input
let accept_share ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.AcceptShare input
let batch_delete_read_set ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.BatchDeleteReadSet input
let cancel_annotation_import_job ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CancelAnnotationImportJob input
let cancel_run ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CancelRun input
let cancel_run_batch ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CancelRunBatch input
let cancel_variant_import_job ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CancelVariantImportJob input
let complete_multipart_read_set_upload ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CompleteMultipartReadSetUpload input
let create_annotation_store ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateAnnotationStore input
let create_annotation_store_version ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateAnnotationStoreVersion input
let create_configuration ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateConfiguration input
let create_multipart_read_set_upload ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateMultipartReadSetUpload input
let create_reference_store ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateReferenceStore input
let create_run_cache ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateRunCache input
let create_run_group ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateRunGroup input
let create_sequence_store ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateSequenceStore input
let create_share ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateShare input
let create_variant_store ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateVariantStore input
let create_workflow ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateWorkflow input
let create_workflow_version ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateWorkflowVersion input
let delete_annotation_store ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteAnnotationStore input
let delete_annotation_store_versions ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteAnnotationStoreVersions input
let delete_batch ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteBatch input
let delete_configuration ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteConfiguration input
let delete_reference ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteReference input
let delete_reference_store ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteReferenceStore input
let delete_run ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteRun input
let delete_run_batch ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteRunBatch input
let delete_run_cache ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteRunCache input
let delete_run_group ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteRunGroup input
let delete_s3_access_policy ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteS3AccessPolicy input
let delete_sequence_store ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteSequenceStore input
let delete_share ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteShare input
let delete_variant_store ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteVariantStore input
let delete_workflow ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteWorkflow input
let delete_workflow_version ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteWorkflowVersion input
let get_annotation_import_job ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetAnnotationImportJob input
let get_annotation_store ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetAnnotationStore input
let get_annotation_store_version ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetAnnotationStoreVersion input
let get_batch ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetBatch input
let get_configuration ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetConfiguration input
let get_read_set ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetReadSet input
let get_read_set_activation_job ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetReadSetActivationJob input
let get_read_set_export_job ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetReadSetExportJob input
let get_read_set_import_job ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetReadSetImportJob input
let get_read_set_metadata ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetReadSetMetadata input
let get_reference ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetReference input
let get_reference_import_job ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetReferenceImportJob input
let get_reference_metadata ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetReferenceMetadata input
let get_reference_store ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetReferenceStore input
let get_run ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetRun input
let get_run_cache ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetRunCache input
let get_run_group ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetRunGroup input
let get_run_task ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetRunTask input
let get_s3_access_policy ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetS3AccessPolicy input
let get_sequence_store ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetSequenceStore input
let get_share ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetShare input
let get_variant_import_job ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetVariantImportJob input
let get_variant_store ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetVariantStore input
let get_workflow ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetWorkflow input
let get_workflow_version ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetWorkflowVersion input
let list_annotation_import_jobs ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListAnnotationImportJobs input
let list_annotation_store_versions ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListAnnotationStoreVersions input
let list_annotation_stores ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListAnnotationStores input
let list_batch ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListBatch input
let list_configurations ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListConfigurations input
let list_multipart_read_set_uploads ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListMultipartReadSetUploads input
let list_read_set_activation_jobs ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListReadSetActivationJobs input
let list_read_set_export_jobs ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListReadSetExportJobs input
let list_read_set_import_jobs ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListReadSetImportJobs input
let list_read_set_upload_parts ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListReadSetUploadParts input
let list_read_sets ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListReadSets input
let list_reference_import_jobs ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListReferenceImportJobs input
let list_reference_stores ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListReferenceStores input
let list_references ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListReferences input
let list_run_caches ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListRunCaches input
let list_run_groups ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListRunGroups input
let list_run_tasks ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListRunTasks input
let list_runs ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListRuns input
let list_runs_in_batch ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListRunsInBatch input
let list_sequence_stores ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListSequenceStores input
let list_shares ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListShares input
let list_tags_for_resource ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListTagsForResource input
let list_variant_import_jobs ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListVariantImportJobs input
let list_variant_stores ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListVariantStores input
let list_workflow_versions ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListWorkflowVersions input
let list_workflows ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListWorkflows input
let put_s3_access_policy ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.PutS3AccessPolicy input
let start_annotation_import_job ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.StartAnnotationImportJob input
let start_read_set_activation_job ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.StartReadSetActivationJob input
let start_read_set_export_job ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.StartReadSetExportJob input
let start_read_set_import_job ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.StartReadSetImportJob input
let start_reference_import_job ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.StartReferenceImportJob input
let start_run ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.StartRun input
let start_run_batch ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.StartRunBatch input
let start_variant_import_job ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.StartVariantImportJob input
let tag_resource ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.TagResource input
let untag_resource ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UntagResource input
let update_annotation_store ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateAnnotationStore input
let update_annotation_store_version ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateAnnotationStoreVersion input
let update_run_cache ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateRunCache input
let update_run_group ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateRunGroup input
let update_sequence_store ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateSequenceStore input
let update_variant_store ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateVariantStore input
let update_workflow ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateWorkflow input
let update_workflow_version ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateWorkflowVersion input
let upload_read_set_part ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UploadReadSetPart input