Class: HammerCLIForeman::Host::CreateCommand

Inherits:
CreateCommand show all
Includes:
HammerCLIForeman::Hosts::CommonUpdateHelp, HammerCLIForeman::Hosts::CommonUpdateOptions
Defined in:
lib/hammer_cli_foreman/host.rb

Instance Method Summary collapse

Methods included from HammerCLIForeman::Hosts::CommonUpdateHelp

included

Methods included from HammerCLIForeman::Hosts::CommonUpdateOptions

ask_password, included, #request_params

Methods inherited from CreateCommand

command_name

Methods inherited from Command

build_options, connection_name, create_option_builder, #customized_options, #dependency_resolver, dependency_resolver, #exception_handler_class, #get_identifier, #get_resource_id, #get_resource_ids, #option_sources, #request_params, #resolver, resolver, resource_config, resource_name_mapping, #searchables, searchables, #send_request, #transform_format

Instance Method Details

#validate_optionsObject



290
291
292
293
294
295
296
297
298
299
300
# File 'lib/hammer_cli_foreman/host.rb', line 290

def validate_options
  super
  unless validator.any(:option_hostgroup_id, :option_hostgroup_name, :option_hostgroup_title).exist?
    if option_managed
      validator.any(:option_architecture_name, :option_architecture_id).required
      validator.any(:option_domain_name, :option_domain_id).required
      validator.any(:option_operatingsystem_title, :option_operatingsystem_id).required
      validator.any(:option_ptable_name, :option_ptable_id).required
    end
  end
end