mirror of https://github.com/Icinga/icinga2.git
23 lines
368 B
Plaintext
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;
|
||
|
};
|
||
|
|
||
|
}
|