Method: PulpContainerClient::ApiClient#build_collection_param

Defined in:
lib/pulp_container_client/api_client.rb

#build_collection_param(param, collection_format) ⇒ Object

Build parameter value according to the given collection format.

Parameters:

  • one of :csv, :ssv, :tsv, :pipes and :multi



420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
# File 'lib/pulp_container_client/api_client.rb', line 420

def build_collection_param(param, collection_format)
  case collection_format
  when :csv
    param.join(',')
  when :ssv
    param.join(' ')
  when :tsv
    param.join("\t")
  when :pipes
    param.join('|')
  when :multi
    # return the array directly as typhoeus will handle it as expected
    param
  else
    fail "unknown collection format: #{collection_format.inspect}"
  end
end