mirror of https://github.com/Icinga/icinga2.git
17 lines
286 B
Plaintext
17 lines
286 B
Plaintext
#include "base/dynamicobject.h"
|
|
|
|
namespace icinga
|
|
{
|
|
|
|
class Command : DynamicObject
|
|
{
|
|
[config] Value command_line;
|
|
[config] Value timeout {
|
|
default {{{ return 300; }}}
|
|
};
|
|
[config] Dictionary::Ptr macros;
|
|
[config] Array::Ptr export_macros;
|
|
[config] Array::Ptr escape_macros;
|
|
};
|
|
|
|
} |