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
open Awso_route53domains
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 accept_domain_transfer_from_another_aws_account ?endpoint_url ?cfg input
=
eval ?endpoint_url ?cfg Endpoints.AcceptDomainTransferFromAnotherAwsAccount
input
let associate_delegation_signer_to_domain ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.AssociateDelegationSignerToDomain input
let cancel_domain_transfer_to_another_aws_account ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CancelDomainTransferToAnotherAwsAccount
input
let check_domain_availability ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CheckDomainAvailability input
let check_domain_transferability ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CheckDomainTransferability input
let delete_domain ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteDomain input
let delete_tags_for_domain ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteTagsForDomain input
let disable_domain_auto_renew ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DisableDomainAutoRenew input
let disable_domain_transfer_lock ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DisableDomainTransferLock input
let disassociate_delegation_signer_from_domain ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DisassociateDelegationSignerFromDomain
input
let enable_domain_auto_renew ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.EnableDomainAutoRenew input
let enable_domain_transfer_lock ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.EnableDomainTransferLock input
let get_contact_reachability_status ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetContactReachabilityStatus input
let get_domain_detail ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetDomainDetail input
let get_domain_suggestions ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetDomainSuggestions input
let get_operation_detail ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetOperationDetail input
let list_domains ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListDomains input
let list_operations ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListOperations input
let list_prices ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListPrices input
let list_tags_for_domain ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListTagsForDomain input
let push_domain ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.PushDomain input
let register_domain ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.RegisterDomain input
let reject_domain_transfer_from_another_aws_account ?endpoint_url ?cfg input
=
eval ?endpoint_url ?cfg Endpoints.RejectDomainTransferFromAnotherAwsAccount
input
let renew_domain ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.RenewDomain input
let resend_contact_reachability_email ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ResendContactReachabilityEmail input
let resend_operation_authorization ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ResendOperationAuthorization input
let retrieve_domain_auth_code ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.RetrieveDomainAuthCode input
let transfer_domain ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.TransferDomain input
let transfer_domain_to_another_aws_account ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.TransferDomainToAnotherAwsAccount input
let update_domain_contact ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateDomainContact input
let update_domain_contact_privacy ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateDomainContactPrivacy input
let update_domain_nameservers ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateDomainNameservers input
let update_tags_for_domain ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateTagsForDomain input
let view_billing ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ViewBilling input