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
81
82
83
84
85
86
87
88
(* 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_entityresolution
open Awso_sync
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 add_policy_statement ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.AddPolicyStatement input
let batch_delete_unique_id ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.BatchDeleteUniqueId input
let create_id_mapping_workflow ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateIdMappingWorkflow input
let create_id_namespace ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateIdNamespace input
let create_matching_workflow ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateMatchingWorkflow input
let create_schema_mapping ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateSchemaMapping input
let delete_id_mapping_workflow ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteIdMappingWorkflow input
let delete_id_namespace ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteIdNamespace input
let delete_matching_workflow ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteMatchingWorkflow input
let delete_policy_statement ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeletePolicyStatement input
let delete_schema_mapping ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteSchemaMapping input
let generate_match_id ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.GenerateMatchId input
let get_id_mapping_job ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.GetIdMappingJob input
let get_id_mapping_workflow ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.GetIdMappingWorkflow input
let get_id_namespace ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.GetIdNamespace input
let get_match_id ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.GetMatchId input
let get_matching_job ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.GetMatchingJob input
let get_matching_workflow ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.GetMatchingWorkflow input
let get_policy ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.GetPolicy input
let get_provider_service ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.GetProviderService input
let get_schema_mapping ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.GetSchemaMapping input
let list_id_mapping_jobs ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ListIdMappingJobs input
let list_id_mapping_workflows ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ListIdMappingWorkflows input
let list_id_namespaces ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ListIdNamespaces input
let list_matching_jobs ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ListMatchingJobs input
let list_matching_workflows ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ListMatchingWorkflows input
let list_provider_services ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ListProviderServices input
let list_schema_mappings ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ListSchemaMappings input
let list_tags_for_resource ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ListTagsForResource input
let put_policy ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.PutPolicy input
let start_id_mapping_job ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.StartIdMappingJob input
let start_matching_job ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.StartMatchingJob 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_id_mapping_workflow ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.UpdateIdMappingWorkflow input
let update_id_namespace ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.UpdateIdNamespace input
let update_matching_workflow ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.UpdateMatchingWorkflow input
let update_schema_mapping ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.UpdateSchemaMapping input