Sha256: 54c229f7634c3b952a003a558cb4f8d926252418dc2526279f59d5057f0a9f9c
Contents?: true
Size: 1.96 KB
Versions: 1
Compression:
Stored size: 1.96 KB
Contents
require 'hammer_cli' require 'foreman_api' require 'hammer_cli_foreman/smart_class_parameter' module HammerCLIForeman class Environment < HammerCLI::AbstractCommand class ListCommand < HammerCLIForeman::ListCommand resource ForemanApi::Resources::Environment, "index" output do from "environment" do field :id, "Id" field :name, "Name" end end apipie_options end class InfoCommand < HammerCLIForeman::InfoCommand resource ForemanApi::Resources::Environment, "show" output ListCommand.output_definition do from "environment" do field :created_at, "Created at", Fields::Date field :updated_at, "Updated at", Fields::Date end end end class CreateCommand < HammerCLIForeman::CreateCommand success_message "Environment created" failure_message "Could not create the environment" resource ForemanApi::Resources::Environment, "create" apipie_options end class UpdateCommand < HammerCLIForeman::UpdateCommand success_message "Environment updated" failure_message "Could not update the environment" resource ForemanApi::Resources::Environment, "update" apipie_options end class DeleteCommand < HammerCLIForeman::DeleteCommand success_message "Environment deleted" failure_message "Could not delete the environment" resource ForemanApi::Resources::Environment, "destroy" apipie_options end class SCParamsCommand < HammerCLIForeman::SmartClassParametersList apipie_options :without => [:host_id, :hostgroup_id, :puppetclass_id, :environment_id] option ['--id', '--name'], 'ENVIRONMENT_ID', 'environment id/name', :required => true, :attribute_name => :environment_id end autoload_subcommands end end HammerCLI::MainCommand.subcommand 'environment', "Manipulate Foreman's environments.", HammerCLIForeman::Environment
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
hammer_cli_foreman-0.0.11 | lib/hammer_cli_foreman/environment.rb |