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
open Awso_route53_recovery_readiness
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 create_cell ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateCell input
let create_cross_account_authorization ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateCrossAccountAuthorization input
let create_readiness_check ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateReadinessCheck input
let create_recovery_group ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateRecoveryGroup input
let create_resource_set ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateResourceSet input
let delete_cell ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteCell input
let delete_cross_account_authorization ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteCrossAccountAuthorization input
let delete_readiness_check ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteReadinessCheck input
let delete_recovery_group ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteRecoveryGroup input
let delete_resource_set ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteResourceSet input
let get_architecture_recommendations ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetArchitectureRecommendations input
let get_cell ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetCell input
let get_cell_readiness_summary ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetCellReadinessSummary input
let get_readiness_check ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetReadinessCheck input
let get_readiness_check_resource_status ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetReadinessCheckResourceStatus input
let get_readiness_check_status ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetReadinessCheckStatus input
let get_recovery_group ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetRecoveryGroup input
let get_recovery_group_readiness_summary ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetRecoveryGroupReadinessSummary input
let get_resource_set ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetResourceSet input
let list_cells ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListCells input
let list_cross_account_authorizations ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListCrossAccountAuthorizations input
let list_readiness_checks ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListReadinessChecks input
let list_recovery_groups ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListRecoveryGroups input
let list_resource_sets ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListResourceSets input
let list_rules ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListRules input
let list_tags_for_resources ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListTagsForResources 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_cell ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateCell input
let update_readiness_check ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateReadinessCheck input
let update_recovery_group ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateRecoveryGroup input
let update_resource_set ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateResourceSet input