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
open Awso_partnercentral_account
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_connection_invitation ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.AcceptConnectionInvitation input
let associate_aws_training_certification_email_domain ?endpoint_url ?cfg
input =
eval ?endpoint_url ?cfg
Endpoints.AssociateAwsTrainingCertificationEmailDomain input
let cancel_connection ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CancelConnection input
let cancel_connection_invitation ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CancelConnectionInvitation input
let cancel_profile_update_task ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CancelProfileUpdateTask input
let create_connection_invitation ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateConnectionInvitation input
let create_partner ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreatePartner input
let disassociate_aws_training_certification_email_domain ?endpoint_url ?cfg
input =
eval ?endpoint_url ?cfg
Endpoints.DisassociateAwsTrainingCertificationEmailDomain input
let get_alliance_lead_contact ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetAllianceLeadContact input
let get_connection ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetConnection input
let get_connection_invitation ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetConnectionInvitation input
let get_connection_preferences ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetConnectionPreferences input
let get_partner ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetPartner input
let get_profile_update_task ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetProfileUpdateTask input
let get_profile_visibility ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetProfileVisibility input
let get_verification ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetVerification input
let list_connection_invitations ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListConnectionInvitations input
let list_connections ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListConnections input
let list_partners ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListPartners input
let list_tags_for_resource ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListTagsForResource input
let put_alliance_lead_contact ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.PutAllianceLeadContact input
let put_profile_visibility ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.PutProfileVisibility input
let reject_connection_invitation ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.RejectConnectionInvitation input
let send_email_verification_code ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.SendEmailVerificationCode input
let start_profile_update_task ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.StartProfileUpdateTask input
let start_verification ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.StartVerification 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_connection_preferences ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateConnectionPreferences input