# File lib/hammer_cli_csv/smart_proxies.rb, line 27
      def export
        CSV.open(option_csv_file || '/dev/stdout', 'wb', {:force_quotes => true}) do |csv|
          csv << [NAME, COUNT, ORGANIZATIONS, LOCATIONS, URL, LIFECYCLE_ENVIRONMENTS]
          @api.resource(:smart_proxies).call(:index, {:per_page => 999999})['results'].each do |smart_proxy|
            smart_proxy = @api.resource(:smart_proxies).call(:show, {'id' => smart_proxy['id']})
            name = smart_proxy['name']
            count = 1
            organizations = export_column(smart_proxy, 'organizations', 'name')
            locations = export_column(smart_proxy, 'locations', 'name')
            url = smart_proxy['url']
            csv << [name, count, organizations, locations, url]
          end
        end
      end