diff options
Diffstat (limited to 'application/clicommands/ServicesetsCommand.php')
-rw-r--r-- | application/clicommands/ServicesetsCommand.php | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/application/clicommands/ServicesetsCommand.php b/application/clicommands/ServicesetsCommand.php new file mode 100644 index 0000000..54669d5 --- /dev/null +++ b/application/clicommands/ServicesetsCommand.php @@ -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'; +} |