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
101
102
103
open Awso_observabilityadmin
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 create_centralization_rule_for_organization ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateCentralizationRuleForOrganization
input
let create_s3_table_integration ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateS3TableIntegration input
let create_telemetry_pipeline ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateTelemetryPipeline input
let create_telemetry_rule ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateTelemetryRule input
let create_telemetry_rule_for_organization ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.CreateTelemetryRuleForOrganization input
let delete_centralization_rule_for_organization ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteCentralizationRuleForOrganization
input
let delete_s3_table_integration ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteS3TableIntegration input
let delete_telemetry_pipeline ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteTelemetryPipeline input
let delete_telemetry_rule ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteTelemetryRule input
let delete_telemetry_rule_for_organization ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.DeleteTelemetryRuleForOrganization input
let get_centralization_rule_for_organization ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetCentralizationRuleForOrganization
input
let get_s3_table_integration ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetS3TableIntegration input
let get_telemetry_enrichment_status ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetTelemetryEnrichmentStatus input
let get_telemetry_evaluation_status ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetTelemetryEvaluationStatus input
let get_telemetry_evaluation_status_for_organization ?endpoint_url ?cfg input
=
eval ?endpoint_url ?cfg
Endpoints.GetTelemetryEvaluationStatusForOrganization input
let get_telemetry_pipeline ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetTelemetryPipeline input
let get_telemetry_rule ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetTelemetryRule input
let get_telemetry_rule_for_organization ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.GetTelemetryRuleForOrganization input
let list_centralization_rules_for_organization ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListCentralizationRulesForOrganization
input
let list_resource_telemetry ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListResourceTelemetry input
let list_resource_telemetry_for_organization ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListResourceTelemetryForOrganization
input
let list_s3_table_integrations ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListS3TableIntegrations input
let list_tags_for_resource ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListTagsForResource input
let list_telemetry_pipelines ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListTelemetryPipelines input
let list_telemetry_rules ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListTelemetryRules input
let list_telemetry_rules_for_organization ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ListTelemetryRulesForOrganization input
let start_telemetry_enrichment ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.StartTelemetryEnrichment input
let start_telemetry_evaluation ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.StartTelemetryEvaluation input
let start_telemetry_evaluation_for_organization ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.StartTelemetryEvaluationForOrganization
input
let stop_telemetry_enrichment ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.StopTelemetryEnrichment input
let stop_telemetry_evaluation ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.StopTelemetryEvaluation input
let stop_telemetry_evaluation_for_organization ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.StopTelemetryEvaluationForOrganization
input
let tag_resource ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.TagResource input
let test_telemetry_pipeline ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.TestTelemetryPipeline input
let untag_resource ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UntagResource input
let update_centralization_rule_for_organization ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateCentralizationRuleForOrganization
input
let update_telemetry_pipeline ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateTelemetryPipeline input
let update_telemetry_rule ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateTelemetryRule input
let update_telemetry_rule_for_organization ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.UpdateTelemetryRuleForOrganization input
let validate_telemetry_pipeline_configuration ?endpoint_url ?cfg input =
eval ?endpoint_url ?cfg Endpoints.ValidateTelemetryPipelineConfiguration
input