2019-02-25 14:48:22 +01:00
|
|
|
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
|
2014-10-17 19:44:31 +02:00
|
|
|
|
2014-05-25 16:23:35 +02:00
|
|
|
#include "icinga/customvarobject.hpp"
|
2015-01-21 08:47:45 +01:00
|
|
|
#include "base/function.hpp"
|
2013-10-26 09:41:45 +02:00
|
|
|
|
2015-08-04 14:47:44 +02:00
|
|
|
library icinga;
|
|
|
|
|
2013-10-26 09:41:45 +02:00
|
|
|
namespace icinga
|
|
|
|
{
|
|
|
|
|
2014-05-12 16:45:25 +02:00
|
|
|
abstract class Command : CustomVarObject
|
2013-10-26 09:41:45 +02:00
|
|
|
{
|
2013-10-30 19:32:15 +01:00
|
|
|
[config] Value command (CommandLine);
|
2014-04-26 13:16:08 +02:00
|
|
|
[config] Value arguments;
|
2014-11-30 23:32:13 +01:00
|
|
|
[config] int timeout {
|
2014-05-19 13:09:26 +02:00
|
|
|
default {{{ return 60; }}}
|
2013-10-26 09:41:45 +02:00
|
|
|
};
|
2014-04-04 22:57:56 +02:00
|
|
|
[config] Dictionary::Ptr env;
|
2014-11-30 23:32:13 +01:00
|
|
|
[config, required] Function::Ptr execute;
|
|
|
|
};
|
|
|
|
|
|
|
|
validator Command {
|
|
|
|
String command;
|
|
|
|
Function command;
|
|
|
|
Array command {
|
|
|
|
String "*";
|
|
|
|
Function "*";
|
|
|
|
};
|
|
|
|
|
|
|
|
Dictionary arguments {
|
|
|
|
String "*";
|
2015-06-18 08:13:40 +02:00
|
|
|
Function "*";
|
2014-11-30 23:32:13 +01:00
|
|
|
Dictionary "*" {
|
|
|
|
String key;
|
|
|
|
String value;
|
|
|
|
Function value;
|
|
|
|
String description;
|
|
|
|
Number "required";
|
|
|
|
Number skip_key;
|
|
|
|
Number repeat_key;
|
|
|
|
String set_if;
|
|
|
|
Function set_if;
|
|
|
|
Number order;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
Dictionary env {
|
|
|
|
String "*";
|
|
|
|
Function "*";
|
|
|
|
};
|
2013-10-26 09:41:45 +02:00
|
|
|
};
|
|
|
|
|
2013-10-30 19:32:15 +01:00
|
|
|
}
|