icinga2/lib/icinga/scheduleddowntime.ti

23 lines
355 B
Plaintext
Raw Normal View History

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