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
89
90
91
92
93
94
95
96
97
98
(* 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_neptunedata
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 cancel_gremlin_query ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CancelGremlinQuery input
let cancel_loader_job ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CancelLoaderJob input
let cancel_m_l_data_processing_job ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CancelMLDataProcessingJob input
let cancel_m_l_model_training_job ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CancelMLModelTrainingJob input
let cancel_m_l_model_transform_job ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CancelMLModelTransformJob input
let cancel_open_cypher_query ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CancelOpenCypherQuery input
let create_m_l_endpoint ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.CreateMLEndpoint input
let delete_m_l_endpoint ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteMLEndpoint input
let delete_propertygraph_statistics ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeletePropertygraphStatistics input
let delete_sparql_statistics ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.DeleteSparqlStatistics input
let execute_fast_reset ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ExecuteFastReset input
let execute_gremlin_explain_query ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ExecuteGremlinExplainQuery input
let execute_gremlin_profile_query ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ExecuteGremlinProfileQuery input
let execute_gremlin_query ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ExecuteGremlinQuery input
let execute_open_cypher_explain_query ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ExecuteOpenCypherExplainQuery input
let execute_open_cypher_query ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ExecuteOpenCypherQuery input
let get_engine_status ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.GetEngineStatus input
let get_gremlin_query_status ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.GetGremlinQueryStatus input
let get_loader_job_status ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.GetLoaderJobStatus input
let get_m_l_data_processing_job ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.GetMLDataProcessingJob input
let get_m_l_endpoint ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.GetMLEndpoint input
let get_m_l_model_training_job ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.GetMLModelTrainingJob input
let get_m_l_model_transform_job ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.GetMLModelTransformJob input
let get_open_cypher_query_status ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.GetOpenCypherQueryStatus input
let get_propertygraph_statistics ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.GetPropertygraphStatistics input
let get_propertygraph_stream ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.GetPropertygraphStream input
let get_propertygraph_summary ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.GetPropertygraphSummary input
let get_r_d_f_graph_summary ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.GetRDFGraphSummary input
let get_sparql_statistics ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.GetSparqlStatistics input
let get_sparql_stream ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.GetSparqlStream input
let list_gremlin_queries ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ListGremlinQueries input
let list_loader_jobs ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ListLoaderJobs input
let list_m_l_data_processing_jobs ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ListMLDataProcessingJobs input
let list_m_l_endpoints ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ListMLEndpoints input
let list_m_l_model_training_jobs ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ListMLModelTrainingJobs input
let list_m_l_model_transform_jobs ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ListMLModelTransformJobs input
let list_open_cypher_queries ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ListOpenCypherQueries input
let manage_propertygraph_statistics ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ManagePropertygraphStatistics input
let manage_sparql_statistics ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.ManageSparqlStatistics input
let start_loader_job ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.StartLoaderJob input
let start_m_l_data_processing_job ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.StartMLDataProcessingJob input
let start_m_l_model_training_job ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.StartMLModelTrainingJob input
let start_m_l_model_transform_job ?endpoint_url ?cfg input =
  eval ?endpoint_url ?cfg Endpoints.StartMLModelTransformJob input