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
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
open Core
open Async
let json_arg = Command.Arg_type.create Yojson.Safe.from_string
let call ?endpoint_url ?profile ?region f m result_to_json error_to_json =
let region =
match region with
| Some region -> Some (Awso.Region.of_string region)
| None -> None in
(Awso_async.Cfg.get_exn ?profile ?region ()) >>=
(fun cfg ->
(f ?endpoint_url ?cfg:(Some cfg) m) >>=
(fun result ->
match result with
| Error err ->
(match error_to_json with
| None ->
failwithf
"endpoint error, but no error values defined in boto"
()
| Some to_json ->
let s = (err |> to_json) |> Yojson.Safe.to_string in
failwithf "AWS error: %s" s ())
| Ok result ->
((match result_to_json with
| None -> print_endline "ok response from endpoint"
| Some to_json ->
((result |> to_json) |> Yojson.Safe.to_string) |>
print_endline);
return ())))
let activate_pipeline =
Command.async ~summary:""
([%map_open.Command
let cli_profile =
flag "-cli-profile" (optional string) ~doc:"NAME aws profile to use"
and cli_region =
flag "-cli-region" (optional string) ~doc:"REGION override region"
and endpoint_url =
flag "-endpoint-url" (optional string)
~doc:"URL override endpoint url"
and parameterValues =
flag "parameter-values" (optional json_arg)
~doc:"JSON ParameterValueList"
and startTimestamp =
flag "start-timestamp" (optional json_arg) ~doc:"JSON timestamp"
and pipelineId = flag "pipeline-id" (required string) ~doc:"STRING id" in
fun () ->
call ?endpoint_url ?profile:cli_profile ?region:cli_region
Io.activate_pipeline
(Values.ActivatePipelineInput.make
?parameterValues:(Option.map
~f:Values.ParameterValueList.of_json
parameterValues)
?startTimestamp:(Option.map ~f:Values.Timestamp.of_json
startTimestamp) ~pipelineId ())
(Some Values.ActivatePipelineOutput.to_json)
(Some Values.ActivatePipelineOutput.error_to_json)])
let add_tags =
Command.async ~summary:""
([%map_open.Command
let cli_profile =
flag "-cli-profile" (optional string) ~doc:"NAME aws profile to use"
and cli_region =
flag "-cli-region" (optional string) ~doc:"REGION override region"
and endpoint_url =
flag "-endpoint-url" (optional string)
~doc:"URL override endpoint url"
and pipelineId = flag "pipeline-id" (required string) ~doc:"STRING id"
and tags = flag "tags" (required json_arg) ~doc:"JSON tagList" in
fun () ->
call ?endpoint_url ?profile:cli_profile ?region:cli_region
Io.add_tags
(Values.AddTagsInput.make ~pipelineId
~tags:(Values.TagList.of_json tags) ())
(Some Values.AddTagsOutput.to_json)
(Some Values.AddTagsOutput.error_to_json)])
let create_pipeline =
Command.async ~summary:""
([%map_open.Command
let cli_profile =
flag "-cli-profile" (optional string) ~doc:"NAME aws profile to use"
and cli_region =
flag "-cli-region" (optional string) ~doc:"REGION override region"
and endpoint_url =
flag "-endpoint-url" (optional string)
~doc:"URL override endpoint url"
and description =
flag "description" (optional string) ~doc:"STRING string"
and tags = flag "tags" (optional json_arg) ~doc:"JSON tagList"
and name = flag "name" (required string) ~doc:"STRING id"
and uniqueId = flag "unique-id" (required string) ~doc:"STRING id" in
fun () ->
call ?endpoint_url ?profile:cli_profile ?region:cli_region
Io.create_pipeline
(Values.CreatePipelineInput.make ?description
?tags:(Option.map ~f:Values.TagList.of_json tags) ~name
~uniqueId ()) (Some Values.CreatePipelineOutput.to_json)
(Some Values.CreatePipelineOutput.error_to_json)])
let deactivate_pipeline =
Command.async ~summary:""
([%map_open.Command
let cli_profile =
flag "-cli-profile" (optional string) ~doc:"NAME aws profile to use"
and cli_region =
flag "-cli-region" (optional string) ~doc:"REGION override region"
and endpoint_url =
flag "-endpoint-url" (optional string)
~doc:"URL override endpoint url"
and cancelActive =
flag "cancel-active" (optional bool) ~doc:"BOOL cancelActive"
and pipelineId = flag "pipeline-id" (required string) ~doc:"STRING id" in
fun () ->
call ?endpoint_url ?profile:cli_profile ?region:cli_region
Io.deactivate_pipeline
(Values.DeactivatePipelineInput.make ?cancelActive ~pipelineId ())
(Some Values.DeactivatePipelineOutput.to_json)
(Some Values.DeactivatePipelineOutput.error_to_json)])
let delete_pipeline =
Command.async ~summary:""
([%map_open.Command
let cli_profile =
flag "-cli-profile" (optional string) ~doc:"NAME aws profile to use"
and cli_region =
flag "-cli-region" (optional string) ~doc:"REGION override region"
and endpoint_url =
flag "-endpoint-url" (optional string)
~doc:"URL override endpoint url"
and pipelineId = flag "pipeline-id" (required string) ~doc:"STRING id" in
fun () ->
call ?endpoint_url ?profile:cli_profile ?region:cli_region
Io.delete_pipeline
(Values.DeletePipelineInput.make ~pipelineId ()) None None])
let describe_objects =
Command.async ~summary:""
([%map_open.Command
let cli_profile =
flag "-cli-profile" (optional string) ~doc:"NAME aws profile to use"
and cli_region =
flag "-cli-region" (optional string) ~doc:"REGION override region"
and endpoint_url =
flag "-endpoint-url" (optional string)
~doc:"URL override endpoint url"
and evaluateExpressions =
flag "evaluate-expressions" (optional bool) ~doc:"BOOL boolean"
and marker = flag "marker" (optional string) ~doc:"STRING string"
and pipelineId = flag "pipeline-id" (required string) ~doc:"STRING id"
and objectIds =
flag "object-ids" (required json_arg) ~doc:"JSON idList" in
fun () ->
call ?endpoint_url ?profile:cli_profile ?region:cli_region
Io.describe_objects
(Values.DescribeObjectsInput.make ?evaluateExpressions ?marker
~pipelineId ~objectIds:(Values.IdList.of_json objectIds) ())
(Some Values.DescribeObjectsOutput.to_json)
(Some Values.DescribeObjectsOutput.error_to_json)])
let describe_pipelines =
Command.async ~summary:""
([%map_open.Command
let cli_profile =
flag "-cli-profile" (optional string) ~doc:"NAME aws profile to use"
and cli_region =
flag "-cli-region" (optional string) ~doc:"REGION override region"
and endpoint_url =
flag "-endpoint-url" (optional string)
~doc:"URL override endpoint url"
and pipelineIds =
flag "pipeline-ids" (required json_arg) ~doc:"JSON idList" in
fun () ->
call ?endpoint_url ?profile:cli_profile ?region:cli_region
Io.describe_pipelines
(Values.DescribePipelinesInput.make
~pipelineIds:(Values.IdList.of_json pipelineIds) ())
(Some Values.DescribePipelinesOutput.to_json)
(Some Values.DescribePipelinesOutput.error_to_json)])
let evaluate_expression =
Command.async ~summary:""
([%map_open.Command
let cli_profile =
flag "-cli-profile" (optional string) ~doc:"NAME aws profile to use"
and cli_region =
flag "-cli-region" (optional string) ~doc:"REGION override region"
and endpoint_url =
flag "-endpoint-url" (optional string)
~doc:"URL override endpoint url"
and pipelineId = flag "pipeline-id" (required string) ~doc:"STRING id"
and objectId = flag "object-id" (required string) ~doc:"STRING id"
and expression =
flag "expression" (required string) ~doc:"STRING longString" in
fun () ->
call ?endpoint_url ?profile:cli_profile ?region:cli_region
Io.evaluate_expression
(Values.EvaluateExpressionInput.make ~pipelineId ~objectId
~expression ()) (Some Values.EvaluateExpressionOutput.to_json)
(Some Values.EvaluateExpressionOutput.error_to_json)])
let get_pipeline_definition =
Command.async ~summary:""
([%map_open.Command
let cli_profile =
flag "-cli-profile" (optional string) ~doc:"NAME aws profile to use"
and cli_region =
flag "-cli-region" (optional string) ~doc:"REGION override region"
and endpoint_url =
flag "-endpoint-url" (optional string)
~doc:"URL override endpoint url"
and version = flag "version" (optional string) ~doc:"STRING string"
and pipelineId = flag "pipeline-id" (required string) ~doc:"STRING id" in
fun () ->
call ?endpoint_url ?profile:cli_profile ?region:cli_region
Io.get_pipeline_definition
(Values.GetPipelineDefinitionInput.make ?version ~pipelineId ())
(Some Values.GetPipelineDefinitionOutput.to_json)
(Some Values.GetPipelineDefinitionOutput.error_to_json)])
let list_pipelines =
Command.async ~summary:""
([%map_open.Command
let cli_profile =
flag "-cli-profile" (optional string) ~doc:"NAME aws profile to use"
and cli_region =
flag "-cli-region" (optional string) ~doc:"REGION override region"
and endpoint_url =
flag "-endpoint-url" (optional string)
~doc:"URL override endpoint url"
and marker = flag "marker" (optional string) ~doc:"STRING string" in
fun () ->
call ?endpoint_url ?profile:cli_profile ?region:cli_region
Io.list_pipelines (Values.ListPipelinesInput.make ?marker ())
(Some Values.ListPipelinesOutput.to_json)
(Some Values.ListPipelinesOutput.error_to_json)])
let poll_for_task =
Command.async ~summary:""
([%map_open.Command
let cli_profile =
flag "-cli-profile" (optional string) ~doc:"NAME aws profile to use"
and cli_region =
flag "-cli-region" (optional string) ~doc:"REGION override region"
and endpoint_url =
flag "-endpoint-url" (optional string)
~doc:"URL override endpoint url"
and hostname = flag "hostname" (optional string) ~doc:"STRING id"
and instanceIdentity =
flag "instance-identity" (optional json_arg)
~doc:"JSON InstanceIdentity"
and workerGroup =
flag "worker-group" (required string) ~doc:"STRING string" in
fun () ->
call ?endpoint_url ?profile:cli_profile ?region:cli_region
Io.poll_for_task
(Values.PollForTaskInput.make ?hostname
?instanceIdentity:(Option.map
~f:Values.InstanceIdentity.of_json
instanceIdentity) ~workerGroup ())
(Some Values.PollForTaskOutput.to_json)
(Some Values.PollForTaskOutput.error_to_json)])
let put_pipeline_definition =
Command.async ~summary:""
([%map_open.Command
let cli_profile =
flag "-cli-profile" (optional string) ~doc:"NAME aws profile to use"
and cli_region =
flag "-cli-region" (optional string) ~doc:"REGION override region"
and endpoint_url =
flag "-endpoint-url" (optional string)
~doc:"URL override endpoint url"
and parameterObjects =
flag "parameter-objects" (optional json_arg)
~doc:"JSON ParameterObjectList"
and parameterValues =
flag "parameter-values" (optional json_arg)
~doc:"JSON ParameterValueList"
and pipelineId = flag "pipeline-id" (required string) ~doc:"STRING id"
and pipelineObjects =
flag "pipeline-objects" (required json_arg)
~doc:"JSON PipelineObjectList" in
fun () ->
call ?endpoint_url ?profile:cli_profile ?region:cli_region
Io.put_pipeline_definition
(Values.PutPipelineDefinitionInput.make
?parameterObjects:(Option.map
~f:Values.ParameterObjectList.of_json
parameterObjects)
?parameterValues:(Option.map
~f:Values.ParameterValueList.of_json
parameterValues) ~pipelineId
~pipelineObjects:(Values.PipelineObjectList.of_json
pipelineObjects) ())
(Some Values.PutPipelineDefinitionOutput.to_json)
(Some Values.PutPipelineDefinitionOutput.error_to_json)])
let query_objects =
Command.async ~summary:""
([%map_open.Command
let cli_profile =
flag "-cli-profile" (optional string) ~doc:"NAME aws profile to use"
and cli_region =
flag "-cli-region" (optional string) ~doc:"REGION override region"
and endpoint_url =
flag "-endpoint-url" (optional string)
~doc:"URL override endpoint url"
and query = flag "query" (optional json_arg) ~doc:"JSON Query"
and marker = flag "marker" (optional string) ~doc:"STRING string"
and limit = flag "limit" (optional int) ~doc:"INT int"
and pipelineId = flag "pipeline-id" (required string) ~doc:"STRING id"
and sphere = flag "sphere" (required string) ~doc:"STRING string" in
fun () ->
call ?endpoint_url ?profile:cli_profile ?region:cli_region
Io.query_objects
(Values.QueryObjectsInput.make
?query:(Option.map ~f:Values.Query.of_json query) ?marker
?limit ~pipelineId ~sphere ())
(Some Values.QueryObjectsOutput.to_json)
(Some Values.QueryObjectsOutput.error_to_json)])
let remove_tags =
Command.async ~summary:""
([%map_open.Command
let cli_profile =
flag "-cli-profile" (optional string) ~doc:"NAME aws profile to use"
and cli_region =
flag "-cli-region" (optional string) ~doc:"REGION override region"
and endpoint_url =
flag "-endpoint-url" (optional string)
~doc:"URL override endpoint url"
and pipelineId = flag "pipeline-id" (required string) ~doc:"STRING id"
and tagKeys =
flag "tag-keys" (required json_arg) ~doc:"JSON stringList" in
fun () ->
call ?endpoint_url ?profile:cli_profile ?region:cli_region
Io.remove_tags
(Values.RemoveTagsInput.make ~pipelineId
~tagKeys:(Values.StringList.of_json tagKeys) ())
(Some Values.RemoveTagsOutput.to_json)
(Some Values.RemoveTagsOutput.error_to_json)])
let report_task_progress =
Command.async ~summary:""
([%map_open.Command
let cli_profile =
flag "-cli-profile" (optional string) ~doc:"NAME aws profile to use"
and cli_region =
flag "-cli-region" (optional string) ~doc:"REGION override region"
and endpoint_url =
flag "-endpoint-url" (optional string)
~doc:"URL override endpoint url"
and fields = flag "fields" (optional json_arg) ~doc:"JSON fieldList"
and taskId = flag "task-id" (required string) ~doc:"STRING taskId" in
fun () ->
call ?endpoint_url ?profile:cli_profile ?region:cli_region
Io.report_task_progress
(Values.ReportTaskProgressInput.make
?fields:(Option.map ~f:Values.FieldList.of_json fields) ~taskId
()) (Some Values.ReportTaskProgressOutput.to_json)
(Some Values.ReportTaskProgressOutput.error_to_json)])
let report_task_runner_heartbeat =
Command.async ~summary:""
([%map_open.Command
let cli_profile =
flag "-cli-profile" (optional string) ~doc:"NAME aws profile to use"
and cli_region =
flag "-cli-region" (optional string) ~doc:"REGION override region"
and endpoint_url =
flag "-endpoint-url" (optional string)
~doc:"URL override endpoint url"
and workerGroup =
flag "worker-group" (optional string) ~doc:"STRING string"
and hostname = flag "hostname" (optional string) ~doc:"STRING id"
and taskrunnerId =
flag "taskrunner-id" (required string) ~doc:"STRING id" in
fun () ->
call ?endpoint_url ?profile:cli_profile ?region:cli_region
Io.report_task_runner_heartbeat
(Values.ReportTaskRunnerHeartbeatInput.make ?workerGroup ?hostname
~taskrunnerId ())
(Some Values.ReportTaskRunnerHeartbeatOutput.to_json)
(Some Values.ReportTaskRunnerHeartbeatOutput.error_to_json)])
let set_status =
Command.async ~summary:""
([%map_open.Command
let cli_profile =
flag "-cli-profile" (optional string) ~doc:"NAME aws profile to use"
and cli_region =
flag "-cli-region" (optional string) ~doc:"REGION override region"
and endpoint_url =
flag "-endpoint-url" (optional string)
~doc:"URL override endpoint url"
and pipelineId = flag "pipeline-id" (required string) ~doc:"STRING id"
and objectIds =
flag "object-ids" (required json_arg) ~doc:"JSON idList"
and status = flag "status" (required string) ~doc:"STRING string" in
fun () ->
call ?endpoint_url ?profile:cli_profile ?region:cli_region
Io.set_status
(Values.SetStatusInput.make ~pipelineId
~objectIds:(Values.IdList.of_json objectIds) ~status ()) None
None])
let set_task_status =
Command.async ~summary:""
([%map_open.Command
let cli_profile =
flag "-cli-profile" (optional string) ~doc:"NAME aws profile to use"
and cli_region =
flag "-cli-region" (optional string) ~doc:"REGION override region"
and endpoint_url =
flag "-endpoint-url" (optional string)
~doc:"URL override endpoint url"
and errorId = flag "error-id" (optional string) ~doc:"STRING string"
and errorMessage =
flag "error-message" (optional string) ~doc:"STRING errorMessage"
and errorStackTrace =
flag "error-stack-trace" (optional string) ~doc:"STRING string"
and taskId = flag "task-id" (required string) ~doc:"STRING taskId"
and taskStatus =
flag "task-status" (required json_arg) ~doc:"JSON TaskStatus" in
fun () ->
call ?endpoint_url ?profile:cli_profile ?region:cli_region
Io.set_task_status
(Values.SetTaskStatusInput.make ?errorId ?errorMessage
?errorStackTrace ~taskId
~taskStatus:(Values.TaskStatus.of_json taskStatus) ())
(Some Values.SetTaskStatusOutput.to_json)
(Some Values.SetTaskStatusOutput.error_to_json)])
let validate_pipeline_definition =
Command.async ~summary:""
([%map_open.Command
let cli_profile =
flag "-cli-profile" (optional string) ~doc:"NAME aws profile to use"
and cli_region =
flag "-cli-region" (optional string) ~doc:"REGION override region"
and endpoint_url =
flag "-endpoint-url" (optional string)
~doc:"URL override endpoint url"
and parameterObjects =
flag "parameter-objects" (optional json_arg)
~doc:"JSON ParameterObjectList"
and parameterValues =
flag "parameter-values" (optional json_arg)
~doc:"JSON ParameterValueList"
and pipelineId = flag "pipeline-id" (required string) ~doc:"STRING id"
and pipelineObjects =
flag "pipeline-objects" (required json_arg)
~doc:"JSON PipelineObjectList" in
fun () ->
call ?endpoint_url ?profile:cli_profile ?region:cli_region
Io.validate_pipeline_definition
(Values.ValidatePipelineDefinitionInput.make
?parameterObjects:(Option.map
~f:Values.ParameterObjectList.of_json
parameterObjects)
?parameterValues:(Option.map
~f:Values.ParameterValueList.of_json
parameterValues) ~pipelineId
~pipelineObjects:(Values.PipelineObjectList.of_json
pipelineObjects) ())
(Some Values.ValidatePipelineDefinitionOutput.to_json)
(Some Values.ValidatePipelineDefinitionOutput.error_to_json)])
let main =
Command.group
~summary:((Awso.Service.to_string Values.service) ^ " commands")
[("activate-pipeline", activate_pipeline);
("add-tags", add_tags);
("create-pipeline", create_pipeline);
("deactivate-pipeline", deactivate_pipeline);
("delete-pipeline", delete_pipeline);
("describe-objects", describe_objects);
("describe-pipelines", describe_pipelines);
("evaluate-expression", evaluate_expression);
("get-pipeline-definition", get_pipeline_definition);
("list-pipelines", list_pipelines);
("poll-for-task", poll_for_task);
("put-pipeline-definition", put_pipeline_definition);
("query-objects", query_objects);
("remove-tags", remove_tags);
("report-task-progress", report_task_progress);
("report-task-runner-heartbeat", report_task_runner_heartbeat);
("set-status", set_status);
("set-task-status", set_task_status);
("validate-pipeline-definition", validate_pipeline_definition)]