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
open Awso_iot_data
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 delete_connection ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteConnection input
let delete_thing_shadow ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteThingShadow input
let get_retained_message ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetRetainedMessage input
let get_thing_shadow ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetThingShadow input
let list_named_shadows_for_thing ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListNamedShadowsForThing input
let list_retained_messages ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListRetainedMessages input
let publish ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.Publish input
let update_thing_shadow ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateThingShadow input