Class: HammerCLIForeman::DownloadCommand
Class Method Summary
collapse
Instance Method Summary
collapse
Methods inherited from Command
alias_name_for_resource, build_options, connection_name, create_option_builder, #customized_options, #dependency_resolver, dependency_resolver, #exception_handler_class, #get_identifier, #get_resource_id, #get_resource_ids, #request_params, resolver, #resolver, resource_alias_name_mapping, resource_config, resource_name_mapping, #searchables, searchables, #send_request, #transform_format
Class Method Details
.command_name(name = nil) ⇒ Object
724
725
726
|
# File 'lib/hammer_cli_foreman/commands.rb', line 724
def self.command_name(name = nil)
super(name) || "download"
end
|
Instance Method Details
#default_filename ⇒ Object
746
747
748
|
# File 'lib/hammer_cli_foreman/commands.rb', line 746
def default_filename
"Downloaded-#{Time.new.strftime("%Y-%m-%d")}.txt"
end
|
#execute ⇒ Object
735
736
737
738
739
740
741
742
743
744
|
# File 'lib/hammer_cli_foreman/commands.rb', line 735
def execute
response = send_request
if option_path
filepath = store_response(response)
print_message(_('The response has been saved to %{path}s.'), {:path => filepath})
else
puts response.body
end
return HammerCLI::EX_OK
end
|
#request_options ⇒ Object
728
729
730
|
# File 'lib/hammer_cli_foreman/commands.rb', line 728
def request_options
{ :response => :raw }
end
|