cx_sdk/
client.rs

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
// Copyright 2024 Coralogix Ltd.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//     https://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

/// This module contains the client for the Actions API.
pub mod actions;

/// This module contains the client for the Alerts API.
pub mod alerts;

/// This module contains the client for the Alerts Scheduler API.
pub mod alerts_scheduler;

/// This module contains the client for the API Keys API.
pub mod apikeys;

/// This module contains the client for the Archive Logs API.
pub mod archive_logs;

/// This module contains the client for the Archive Metrics API.
pub mod archive_metrics;

/// This module contains the client for the Archive Retentions API.
pub mod archive_retentions;

/// This module contains the client for the Dashboards API.
pub mod dashboards;

/// This module contains the client for the Dataprime Query API.
pub mod dataprime_query;

/// This module contains the client for the datasets API.
pub mod datasets;

/// This module contains the client for the Enrichments API.
pub mod enrichments;

/// This module contains the client for the Events API.
pub mod events2metrics;

/// This module contains the client for the SLOs API.
pub mod slos;

/// This module contains the client for the TCO Policies API.
pub mod tco_policies;

/// This module contains the client for the Teams API.
pub mod teams;

/// This module contains the client for the outgoing webhooks API.
pub mod webhooks;

/// This module contains the client for the Scopes API.
pub mod scopes;

/// This module contains the client for the Groups API.
pub mod groups;

/// This module contains the client for the SCIM API.
pub mod users;

/// This module contains the client for the integrations API.
pub mod integrations;

/// This module contains the client for the dashboard folders API.
pub mod dashboard_folders;

/// This module contains the client for the recording rule groups API.
pub mod recording_rule_group_sets;

/// This module contains the client for the SAML Configuration API.
pub mod saml;

/// This module contains the client for the Notification Center API.
pub mod notifications;

/// This module contains the client for the Data Usage API.
pub mod data_usage;