/**
  * Domains for a specific acl resource
  *
  * @method get
  * @route /aclresource/[i:id]/domain
  */
 public function domainForAclresourceAction()
 {
     parent::getRelations(static::$relationMap['aclresource_domains']);
 }
 /**
  * Get host template for a specific host template
  *
  * @method get
  * @route /hosttemplate/[i:id]/hosttemplate
  */
 public function hostTemplateForHostTemplateAction()
 {
     parent::getRelations(static::$relationMap['host_hosttemplates']);
 }
 /**
  * Commands for specific resource
  *
  * @method get
  * @route /resource/[i:id]/poller
  */
 public function commandsForResourceAction()
 {
     parent::getRelations(static::$relationMap['resource_pollers']);
 }
 /**
  * Users for a specific usergroup
  *
  * @method get
  * @route /usergroup/[i:id]/user
  */
 public function userForAclgroupAction()
 {
     parent::getRelations(static::$relationMap['usergroup_users']);
 }
Beispiel #5
0
 /**
  * Trap for a specific service
  *
  * @method get
  * @route /service/[i:id]/trap
  */
 public function trapForServiceAction()
 {
     parent::getRelations(static::$relationMap['service_traps']);
 }
 /**
  * Get host template for a specific host
  *
  * @method get
  * @route /businessactivity/[i:id]/poller
  */
 public function pollerForBaAction()
 {
     parent::getRelations(static::$relationMap['ba_pollers']);
 }
 /**
  * Get the list of service tags for a rule
  * 
  * @method get
  * @route /notification-rule/[i:id]/service/tag
  */
 public function getTagServiceAction()
 {
     parent::getRelations(static::$relationMap['notification_rules_tags_services']);
 }
 /**
  * Service templates for specific trap
  *
  * @method get
  * @route /trap/[i:id]/servicetemplate
  */
 public function servicetemplateForTrapAction()
 {
     parent::getRelations(static::$relationMap['trap_servicetemplates']);
 }
 /**
  * Get contact group for a specific contact template
  *
  * @method get
  * @route /contacttemplate/[i:id]/contactgroup
  */
 public function contactGroupForContactAction()
 {
     parent::getRelations(static::$relationMap['contact_contactgroups']);
 }
 /**
  * Get list of timezones for a specific user
  * 
  * @method get
  * @route /user/[i:id]/timezonesForUser
  */
 public function timezonesForUserAction()
 {
     parent::getRelations(static::$relationMap['user_timezone']);
 }