1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
//! Queries for monitoring objects
//!
//! [Official Documentation](https://icinga.com/docs/icinga-2/latest/doc/09-object-types/#monitoring-objects)

pub mod api_user;
pub mod check_command;
pub mod dependency;
pub mod endpoint;
pub mod event_command;
pub mod host;
pub mod host_group;
pub mod notification;
pub mod notification_command;
pub mod scheduled_downtime;
pub mod service;
pub mod service_group;
pub mod time_period;
pub mod user;
pub mod user_group;
pub mod zone;