2026-01-27 09:06:40 -05:00
|
|
|
// SPDX-FileCopyrightText: 2012 Icinga GmbH <https://icinga.com>
|
|
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2014-10-13 12:09:58 -04:00
|
|
|
|
|
|
|
|
#ifndef FEATUREENABLECOMMAND_H
|
|
|
|
|
#define FEATUREENABLECOMMAND_H
|
|
|
|
|
|
2014-10-20 07:58:21 -04:00
|
|
|
#include "cli/clicommand.hpp"
|
2014-10-13 12:09:58 -04:00
|
|
|
|
|
|
|
|
namespace icinga
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
/**
|
2014-10-14 10:53:40 -04:00
|
|
|
* The "feature enable" command.
|
2014-10-13 12:09:58 -04:00
|
|
|
*
|
|
|
|
|
* @ingroup cli
|
|
|
|
|
*/
|
2018-01-04 00:11:04 -05:00
|
|
|
class FeatureEnableCommand final : public CLICommand
|
2014-10-13 12:09:58 -04:00
|
|
|
{
|
|
|
|
|
public:
|
2014-11-07 06:32:25 -05:00
|
|
|
DECLARE_PTR_TYPEDEFS(FeatureEnableCommand);
|
2014-10-13 12:09:58 -04:00
|
|
|
|
2018-01-03 23:12:56 -05:00
|
|
|
String GetDescription() const override;
|
|
|
|
|
String GetShortDescription() const override;
|
|
|
|
|
int GetMinArguments() const override;
|
|
|
|
|
int GetMaxArguments() const override;
|
|
|
|
|
std::vector<String> GetPositionalSuggestions(const String& word) const override;
|
|
|
|
|
ImpersonationLevel GetImpersonationLevel() const override;
|
|
|
|
|
int Run(const boost::program_options::variables_map& vm, const std::vector<std::string>& ap) const override;
|
2014-10-13 12:09:58 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endif /* FEATUREENABLECOMMAND_H */
|