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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
open Awso_odb
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 accept_marketplace_registration ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.AcceptMarketplaceRegistration input
let associate_iam_role_to_resource ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.AssociateIamRoleToResource input
let create_cloud_autonomous_vm_cluster ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateCloudAutonomousVmCluster input
let create_cloud_exadata_infrastructure ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateCloudExadataInfrastructure input
let create_cloud_vm_cluster ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateCloudVmCluster input
let create_odb_network ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateOdbNetwork input
let create_odb_peering_connection ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateOdbPeeringConnection input
let delete_cloud_autonomous_vm_cluster ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteCloudAutonomousVmCluster input
let delete_cloud_exadata_infrastructure ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteCloudExadataInfrastructure input
let delete_cloud_vm_cluster ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteCloudVmCluster input
let delete_odb_network ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteOdbNetwork input
let delete_odb_peering_connection ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteOdbPeeringConnection input
let disassociate_iam_role_from_resource ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DisassociateIamRoleFromResource input
let get_cloud_autonomous_vm_cluster ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetCloudAutonomousVmCluster input
let get_cloud_exadata_infrastructure ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetCloudExadataInfrastructure input
let get_cloud_exadata_infrastructure_unallocated_resources ?endpoint_url ?cfg
input =
eval ?endpoint_url ?cfg
Endpoints.GetCloudExadataInfrastructureUnallocatedResources input
let get_cloud_vm_cluster ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetCloudVmCluster input
let get_db_node ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetDbNode input
let get_db_server ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetDbServer input
let get_oci_onboarding_status ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetOciOnboardingStatus input
let get_odb_network ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetOdbNetwork input
let get_odb_peering_connection ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetOdbPeeringConnection input
let initialize_service ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.InitializeService input
let list_autonomous_virtual_machines ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListAutonomousVirtualMachines input
let list_cloud_autonomous_vm_clusters ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListCloudAutonomousVmClusters input
let list_cloud_exadata_infrastructures ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListCloudExadataInfrastructures input
let list_cloud_vm_clusters ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListCloudVmClusters input
let list_db_nodes ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListDbNodes input
let list_db_servers ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListDbServers input
let list_db_system_shapes ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListDbSystemShapes input
let list_gi_versions ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListGiVersions input
let list_odb_networks ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListOdbNetworks input
let list_odb_peering_connections ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListOdbPeeringConnections input
let list_system_versions ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListSystemVersions input
let list_tags_for_resource ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListTagsForResource input
let reboot_db_node ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.RebootDbNode input
let start_db_node ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.StartDbNode input
let stop_db_node ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.StopDbNode 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_cloud_exadata_infrastructure ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateCloudExadataInfrastructure input
let update_odb_network ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateOdbNetwork input
let update_odb_peering_connection ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateOdbPeeringConnection input