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_efs
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_access_point ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateAccessPoint input
let create_file_system ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateFileSystem input
let create_mount_target ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateMountTarget input
let create_replication_configuration ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateReplicationConfiguration input
let create_tags ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateTags input
let delete_access_point ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteAccessPoint input
let delete_file_system ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteFileSystem input
let delete_file_system_policy ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteFileSystemPolicy input
let delete_mount_target ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteMountTarget input
let delete_replication_configuration ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteReplicationConfiguration input
let delete_tags ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteTags input
let describe_access_points ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DescribeAccessPoints input
let describe_account_preferences ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DescribeAccountPreferences input
let describe_backup_policy ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DescribeBackupPolicy input
let describe_file_system_policy ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DescribeFileSystemPolicy input
let describe_file_systems ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DescribeFileSystems input
let describe_lifecycle_configuration ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DescribeLifecycleConfiguration input
let describe_mount_target_security_groups ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DescribeMountTargetSecurityGroups input
let describe_mount_targets ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DescribeMountTargets input
let describe_replication_configurations ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DescribeReplicationConfigurations input
let describe_tags ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DescribeTags input
let list_tags_for_resource ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListTagsForResource input
let modify_mount_target_security_groups ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ModifyMountTargetSecurityGroups input
let put_account_preferences ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.PutAccountPreferences input
let put_backup_policy ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.PutBackupPolicy input
let put_file_system_policy ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.PutFileSystemPolicy input
let put_lifecycle_configuration ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.PutLifecycleConfiguration 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_file_system ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateFileSystem input
let update_file_system_protection ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateFileSystemProtection input