icinga2/lib/icinga/scheduleddowntime.ti

23 lines
368 B
Plaintext

#include "base/dynamicobject.h"
namespace icinga
{
class ScheduledDowntime : DynamicObject
{
[config, protected] String host (HostRaw);
[config, protected] String service (ServiceRaw);
[config] String author;
[config] String comment;
[config] double duration;
[config] bool fixed {
default {{{ return true; }}}
};
[config] Dictionary::Ptr ranges;
};
}