# File lib/aeolus_cli/command/config_parser.rb, line 220
      def importOptions
        OptionParser.new do |opts|
          opts.banner = "Usage: aeolus-image import [command options]"
          opts.separator ""
          opts.separator "Options:"
          opts.on('-d', '--id ID', 'id for a given object') do |id|
            @options[:id] = id
          end
          opts.on('-r', '--description NAME', @value, 'description (e.g. "<image><name>MyImage</name></image>" or "/home/user/myImage.xml")') do |description|
            @options[:description] = description
          end
          opts.on('-A', '--account NAME,NAME', Array, 'name of specific account to import to') do |name|
            @options[:provider_account] = name
          end
          opts.on('-E', '--environment ENVIRONMENT', @value, 'environment to import into') do |environment|
            @options[:environment] =  environment
          end
          opts.on( '-h', '--help', 'Get usage information for this command')

          opts.separator ""
          opts.separator "Examples:"
          opts.separator "aeolus-image import --account my-ec2 --id $ami_id --environment default # import an AMI from the specified provider"
          opts.separator "aeolus-image import --account my-ec2 --id $ami_id --environment default --description '<image><name>My Image</name></image>' # import an AMI from the specified provider"
          opts.separator "aeolus-image import --account my-ec2 --id $ami_id --environment default --description <path_to_xml_file> # import an AMI from the specified provider"
          opts.separator ""
          opts.separator "RHEV:"
          opts.separator "Enter the template id for the provider image id. The template id can be found through the RHEV REST API."
          opts.separator "For example: curl https://rhevm.example.org:8443/api/templates --user user@rhevm_domain:password"
          opts.separator ""
          opts.separator "N.B. Aeolus Credentials should be defined in the configuration file ~/.aeolus-cli"
        end
      end