2015-12-03 16:50:44 +01:00

25 lines
601 B
PHP

<?php
namespace Icinga\Module\Director\Objects;
class IcingaEndpoint extends IcingaObject
{
protected $table = 'icinga_endpoint';
protected $supportsImports = true;
protected $defaultProperties = array(
'id' => null,
'zone_id' => null,
'object_name' => null,
'address' => null,
'port' => null,
'log_duration' => null,
'object_type' => null,
);
protected $relations = array(
'zone' => 'IcingaZone',
);
}