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_service_quotas
open Awso_sync
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_service_quota_template ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.AssociateServiceQuotaTemplate input
let create_support_case ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateSupportCase input
let delete_service_quota_increase_request_from_template ?endpoint_url ?cfg
input =
eval ?endpoint_url ?cfg
Endpoints.DeleteServiceQuotaIncreaseRequestFromTemplate input
let disassociate_service_quota_template ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DisassociateServiceQuotaTemplate input
let get_a_w_s_default_service_quota ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetAWSDefaultServiceQuota input
let get_association_for_service_quota_template ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetAssociationForServiceQuotaTemplate
input
let get_auto_management_configuration ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetAutoManagementConfiguration input
let get_quota_utilization_report ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetQuotaUtilizationReport input
let get_requested_service_quota_change ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetRequestedServiceQuotaChange input
let get_service_quota ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetServiceQuota input
let get_service_quota_increase_request_from_template ?endpoint_url ?cfg input
=
eval ?endpoint_url ?cfg
Endpoints.GetServiceQuotaIncreaseRequestFromTemplate input
let list_a_w_s_default_service_quotas ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListAWSDefaultServiceQuotas input
let list_requested_service_quota_change_history ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListRequestedServiceQuotaChangeHistory
input
let list_requested_service_quota_change_history_by_quota ?endpoint_url ?cfg
input =
eval ?endpoint_url ?cfg
Endpoints.ListRequestedServiceQuotaChangeHistoryByQuota input
let list_service_quota_increase_requests_in_template ?endpoint_url ?cfg input
=
eval ?endpoint_url ?cfg
Endpoints.ListServiceQuotaIncreaseRequestsInTemplate input
let list_service_quotas ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListServiceQuotas input
let list_services ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListServices input
let list_tags_for_resource ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListTagsForResource input
let put_service_quota_increase_request_into_template ?endpoint_url ?cfg input
=
eval ?endpoint_url ?cfg
Endpoints.PutServiceQuotaIncreaseRequestIntoTemplate input
let request_service_quota_increase ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.RequestServiceQuotaIncrease input
let start_auto_management ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.StartAutoManagement input
let start_quota_utilization_report ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.StartQuotaUtilizationReport input
let stop_auto_management ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.StopAutoManagement 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_auto_management ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateAutoManagement input