icinga2/lib/icinga/command.ti

55 lines
906 B
Text
Raw Permalink Normal View History

/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
2014-05-25 10:23:35 -04:00
#include "icinga/customvarobject.hpp"
#include "base/function.hpp"
2013-10-26 03:41:45 -04:00
library icinga;
2013-10-26 03:41:45 -04:00
namespace icinga
{
abstract class Command : CustomVarObject
2013-10-26 03:41:45 -04:00
{
2013-10-30 14:32:15 -04:00
[config] Value command (CommandLine);
[config, signal_with_old_value] Value arguments;
[config] int timeout {
2014-05-19 07:09:26 -04:00
default {{{ return 60; }}}
2013-10-26 03:41:45 -04:00
};
[config, signal_with_old_value] Dictionary::Ptr env;
[config, required] Function::Ptr execute;
};
validator Command {
String command;
Function command;
Array command {
String "*";
Function "*";
};
Dictionary arguments {
String "*";
Function "*";
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;
String separator;
};
};
Dictionary env {
String "*";
Function "*";
};
2013-10-26 03:41:45 -04:00
};
2013-10-30 14:32:15 -04:00
}