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
open Awso_discovery
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_configuration_items_to_application ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.AssociateConfigurationItemsToApplication
input
let batch_delete_agents ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.BatchDeleteAgents input
let batch_delete_import_data ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.BatchDeleteImportData input
let create_application ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateApplication input
let create_tags ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateTags input
let delete_applications ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteApplications input
let delete_tags ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteTags input
let describe_agents ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DescribeAgents input
let describe_batch_delete_configuration_task ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DescribeBatchDeleteConfigurationTask
input
let describe_configurations ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DescribeConfigurations input
let describe_continuous_exports ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DescribeContinuousExports input
let describe_export_configurations ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DescribeExportConfigurations input
let describe_export_tasks ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DescribeExportTasks input
let describe_import_tasks ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DescribeImportTasks input
let describe_tags ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DescribeTags input
let disassociate_configuration_items_from_application ?endpoint_url ?cfg
input =
eval ?endpoint_url ?cfg
Endpoints.DisassociateConfigurationItemsFromApplication input
let export_configurations ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ExportConfigurations input
let get_discovery_summary ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetDiscoverySummary input
let list_configurations ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListConfigurations input
let list_server_neighbors ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListServerNeighbors input
let start_batch_delete_configuration_task ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.StartBatchDeleteConfigurationTask input
let start_continuous_export ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.StartContinuousExport input
let start_data_collection_by_agent_ids ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.StartDataCollectionByAgentIds input
let start_export_task ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.StartExportTask input
let start_import_task ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.StartImportTask input
let stop_continuous_export ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.StopContinuousExport input
let stop_data_collection_by_agent_ids ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.StopDataCollectionByAgentIds input
let update_application ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateApplication input