1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
|
<?php
/* Icinga Web 2 | (c) 2021 Icinga GmbH | GPLv2+ */
namespace Icinga\Module\Monitoring\Command\Object;
/**
* Schedule host downtime command for API command transport and Icinga >= 2.11.0 that
* sends all_services and child_options in a single request
*/
class ApiScheduleHostDowntimeCommand extends ScheduleHostDowntimeCommand
{
/** @var int Whether no, triggered, or non-triggered child downtimes should be scheduled */
protected $childOptions;
protected $forAllServicesNative = true;
/**
* Get child options, i.e. whether no, triggered, or non-triggered child downtimes should be scheduled
*
* @return int
*/
public function getChildOptions()
{
return $this->childOptions;
}
/**
* Set child options, i.e. whether no, triggered, or non-triggered child downtimes should be scheduled
*
* @param int $childOptions
*
* @return $this
*/
public function setChildOptions($childOptions)
{
$this->childOptions = $childOptions;
return $this;
}
}
|