icinga2_api/api/
action.rs

1//! Actions
2//!
3//! [Official Documentation](https://icinga.com/docs/icinga-2/latest/doc/12-icinga2-api/#actions)
4
5pub mod acknowledge_problem;
6pub mod add_comment;
7pub mod delay_notification;
8pub mod execute_command;
9pub mod generate_ticket;
10pub mod process_check_result;
11pub mod remove_acknowledgement;
12pub mod remove_comment;
13pub mod remove_downtime;
14pub mod reschedule_check;
15pub mod restart_process;
16pub mod schedule_downtime;
17pub mod send_custom_notification;
18pub mod shutdown_process;