File: ApiScheduleHostDowntimeCommand.php

package info (click to toggle)
icingaweb2 2.12.6-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 15,124 kB
  • sloc: php: 73,980; javascript: 5,009; sql: 333; xml: 75; sh: 72; makefile: 5
file content (40 lines) | stat: -rw-r--r-- 1,069 bytes parent folder | download | duplicates (3)
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;
    }
}