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
open Awso_bcm_pricing_calculator
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 batch_create_bill_scenario_commitment_modification ?endpoint_url ?cfg
input =
eval ?endpoint_url ?cfg
Endpoints.BatchCreateBillScenarioCommitmentModification input
let batch_create_bill_scenario_usage_modification ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.BatchCreateBillScenarioUsageModification
input
let batch_create_workload_estimate_usage ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.BatchCreateWorkloadEstimateUsage input
let batch_delete_bill_scenario_commitment_modification ?endpoint_url ?cfg
input =
eval ?endpoint_url ?cfg
Endpoints.BatchDeleteBillScenarioCommitmentModification input
let batch_delete_bill_scenario_usage_modification ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.BatchDeleteBillScenarioUsageModification
input
let batch_delete_workload_estimate_usage ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.BatchDeleteWorkloadEstimateUsage input
let batch_update_bill_scenario_commitment_modification ?endpoint_url ?cfg
input =
eval ?endpoint_url ?cfg
Endpoints.BatchUpdateBillScenarioCommitmentModification input
let batch_update_bill_scenario_usage_modification ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.BatchUpdateBillScenarioUsageModification
input
let batch_update_workload_estimate_usage ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.BatchUpdateWorkloadEstimateUsage input
let create_bill_estimate ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateBillEstimate input
let create_bill_scenario ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateBillScenario input
let create_workload_estimate ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateWorkloadEstimate input
let delete_bill_estimate ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteBillEstimate input
let delete_bill_scenario ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteBillScenario input
let delete_workload_estimate ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteWorkloadEstimate input
let get_bill_estimate ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetBillEstimate input
let get_bill_scenario ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetBillScenario input
let get_preferences ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetPreferences input
let get_workload_estimate ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetWorkloadEstimate input
let list_bill_estimate_commitments ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListBillEstimateCommitments input
let list_bill_estimate_input_commitment_modifications ?endpoint_url ?cfg
input =
eval ?endpoint_url ?cfg
Endpoints.ListBillEstimateInputCommitmentModifications input
let list_bill_estimate_input_usage_modifications ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListBillEstimateInputUsageModifications
input
let list_bill_estimate_line_items ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListBillEstimateLineItems input
let list_bill_estimates ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListBillEstimates input
let list_bill_scenario_commitment_modifications ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListBillScenarioCommitmentModifications
input
let list_bill_scenario_usage_modifications ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListBillScenarioUsageModifications input
let list_bill_scenarios ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListBillScenarios input
let list_tags_for_resource ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListTagsForResource input
let list_workload_estimate_usage ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListWorkloadEstimateUsage input
let list_workload_estimates ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListWorkloadEstimates 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_bill_estimate ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateBillEstimate input
let update_bill_scenario ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateBillScenario input
let update_preferences ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdatePreferences input
let update_workload_estimate ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateWorkloadEstimate input