ServicesetsCommand: allow to list/fetch sets...

...on CLI

fixes #828
This commit is contained in:
Thomas Gelf 2017-03-02 15:48:42 +01:00
parent 29b917dd18
commit abc18ffd95
1 changed files with 15 additions and 0 deletions

View File

@ -0,0 +1,15 @@
<?php
namespace Icinga\Module\Director\Clicommands;
use Icinga\Module\Director\Cli\ObjectsCommand;
/**
* Manage Icinga Service Sets
*
* Use this command to list Icinga Service Set objects
*/
class ServicesetsCommand extends ObjectsCommand
{
protected $type = 'ServiceSet';
}