cx_sdk/client.rs
1// Copyright 2024 Coralogix Ltd.
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7// https://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
15/// This module contains the client for the Actions API.
16pub mod actions;
17
18/// This module contains the client for the Alerts API.
19pub mod alerts;
20
21/// This module contains the client for the Alerts Scheduler API.
22pub mod alerts_scheduler;
23
24/// This module contains the client for the API Keys API.
25pub mod apikeys;
26
27/// This module contains the client for the Archive Logs API.
28pub mod archive_logs;
29
30/// This module contains the client for the Archive Metrics API.
31pub mod archive_metrics;
32
33/// This module contains the client for the Archive Retentions API.
34pub mod archive_retentions;
35
36/// This module contains the client for the Dashboards API.
37pub mod dashboards;
38
39/// This module contains the client for the datasets API.
40pub mod datasets;
41
42/// This module contains the client for the Enrichments API.
43pub mod enrichments;
44
45/// This module contains the client for the Events API.
46pub mod events2metrics;
47
48/// This module contains the client for the SLOs API.
49pub mod slos;
50
51/// This module contains the client for the TCO Policies API.
52pub mod tco_policies;
53
54/// This module contains the client for the Teams API.
55pub mod teams;
56
57/// This module contains the client for the outgoing webhooks API.
58pub mod webhooks;
59
60/// This module contains the client for the Scopes API.
61pub mod scopes;
62
63/// This module contains the client for the Groups API.
64pub mod groups;
65
66/// This module contains the client for the SCIM API.
67pub mod users;
68
69/// This module contains the client for the integrations API.
70pub mod integrations;
71
72/// This module contains the client for the dashboard folders API.
73pub mod dashboard_folders;
74
75/// This module contains the client for the recording rule groups API.
76pub mod recording_rule_group_sets;
77
78/// This module contains the client for the SAML Configuration API.
79pub mod saml;
80
81/// This module contains the client for the Notification Center API.
82pub mod notifications;
83
84/// This module contains the client for the Data Usage API.
85pub mod data_usage;
86
87/// This module contains the client for the Contextual Data Integrations API.
88pub mod contextual_data_integrations;
89
90/// This module contains the client for the Incidents API.
91pub mod incidents;
92
93/// This module contains the client for the Events API.
94pub mod events;
95
96/// This module contains the client for the Views API.
97pub mod views;
98
99/// This module contains the client for the Views Folders API.
100pub mod views_folders;