Source file io.ml

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
(* generated by: awso-codegen generate-all --botocore-data vendor/botocore/botocore/data -o aws --runtime-dir lib/runtime/awso --cli-dir awso-cli *)
open Awso_mediaconvert
open Awso_async
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 associate_certificate ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.AssociateCertificate input
let cancel_job ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CancelJob input
let create_job ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateJob input
let create_job_template ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateJobTemplate input
let create_preset ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreatePreset input
let create_queue ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateQueue input
let create_resource_share ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateResourceShare input
let delete_job_template ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteJobTemplate input
let delete_policy ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeletePolicy input
let delete_preset ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeletePreset input
let delete_queue ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteQueue input
let describe_endpoints ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DescribeEndpoints input
let disassociate_certificate ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DisassociateCertificate input
let get_job ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.GetJob input
let get_job_template ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.GetJobTemplate input
let get_jobs_query_results ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.GetJobsQueryResults input
let get_policy ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.GetPolicy input
let get_preset ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.GetPreset input
let get_queue ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.GetQueue input
let list_job_templates ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ListJobTemplates input
let list_jobs ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ListJobs input
let list_presets ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ListPresets input
let list_queues ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ListQueues input
let list_tags_for_resource ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ListTagsForResource input
let list_versions ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ListVersions input
let probe ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.Probe input
let put_policy ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.PutPolicy input
let search_jobs ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.SearchJobs input
let start_jobs_query ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.StartJobsQuery 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_job_template ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.UpdateJobTemplate input
let update_preset ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.UpdatePreset input
let update_queue ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.UpdateQueue input