From 62f2f92ae8517b60bcfbcdbe58a94a9b72b9cc1e Mon Sep 17 00:00:00 2001 From: Eric Lippmann Date: Wed, 31 Aug 2016 13:01:19 +0200 Subject: [PATCH] Add name property to the delete downtime command refs #11398 --- .../Command/Object/DeleteDowntimeCommand.php | 36 +++++++++++++++++++ 1 file changed, 36 insertions(+) diff --git a/modules/monitoring/library/Monitoring/Command/Object/DeleteDowntimeCommand.php b/modules/monitoring/library/Monitoring/Command/Object/DeleteDowntimeCommand.php index ded5cc5e2..63f4bbce3 100644 --- a/modules/monitoring/library/Monitoring/Command/Object/DeleteDowntimeCommand.php +++ b/modules/monitoring/library/Monitoring/Command/Object/DeleteDowntimeCommand.php @@ -17,6 +17,15 @@ class DeleteDowntimeCommand extends IcingaCommand */ protected $downtimeId; + /** + * Name of the downtime (Icinga 2.4+) + * + * Required for removing the downtime via Icinga 2's API. + * + * @var string + */ + protected $downtimeName; + /** * Whether the command affects a service downtime * @@ -47,6 +56,33 @@ class DeleteDowntimeCommand extends IcingaCommand return $this; } + /** + * Get the name of the downtime (Icinga 2.4+) + * + * Required for removing the downtime via Icinga 2's API. + * + * @return string + */ + public function getDowntimeName() + { + return $this->downtimeName; + } + + /** + * Set the name of the downtime (Icinga 2.4+) + * + * Required for removing the downtime via Icinga 2's API. + * + * @param string $downtimeName + * + * @return $this + */ + public function setDowntimeName($downtimeName) + { + $this->downtimeName = $downtimeName; + return $this; + } + /** * Get whether the command affects a service *