mirror of https://github.com/Icinga/icinga2.git
24 lines
344 B
Plaintext
24 lines
344 B
Plaintext
#include "base/dynamicobject.h"
|
|
|
|
namespace icinga
|
|
{
|
|
|
|
class HostGroup : DynamicObject
|
|
{
|
|
[config] String display_name {
|
|
get {{{
|
|
if (m_DisplayName.IsEmpty())
|
|
return GetName();
|
|
else
|
|
return m_DisplayName;
|
|
}}}
|
|
};
|
|
|
|
[config] Array::Ptr groups;
|
|
[config] String notes;
|
|
[config] String notes_url;
|
|
[config] String action_url;
|
|
};
|
|
|
|
}
|