Method: PulpRpmClient::AcsRpmApi#read_with_http_info

Defined in:
lib/pulp_rpm_client/api/acs_rpm_api.rb

#read_with_http_info(rpm_rpm_alternate_content_source_href, opts = {}) ⇒ Array<(RpmRpmAlternateContentSourceResponse, Integer, Hash)>

Inspect a rpm alternate content source ViewSet for ACS.

Parameters:

  • rpm_rpm_alternate_content_source_href (String)
  • opts (Hash) (defaults to: {})

    the optional parameters

Options Hash (opts):

  • :fields (Array<String>)

    A list of fields to include in the response.

  • :exclude_fields (Array<String>)

    A list of fields to exclude from the response.

Returns:

[View source]

573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
# File 'lib/pulp_rpm_client/api/acs_rpm_api.rb', line 573

def read_with_http_info(rpm_rpm_alternate_content_source_href, opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: AcsRpmApi.read ...'
  end
  # verify the required parameter 'rpm_rpm_alternate_content_source_href' is set
  if @api_client.config.client_side_validation && rpm_rpm_alternate_content_source_href.nil?
    fail ArgumentError, "Missing the required parameter 'rpm_rpm_alternate_content_source_href' when calling AcsRpmApi.read"
  end
  # resource path
  local_var_path = '{rpm_rpm_alternate_content_source_href}'.sub('{' + 'rpm_rpm_alternate_content_source_href' + '}', CGI.escape(rpm_rpm_alternate_content_source_href.to_s).gsub('%2F', '/'))

  # query parameters
  query_params = opts[:query_params] || {}
  query_params[:'fields'] = @api_client.build_collection_param(opts[:'fields'], :multi) if !opts[:'fields'].nil?
  query_params[:'exclude_fields'] = @api_client.build_collection_param(opts[:'exclude_fields'], :multi) if !opts[:'exclude_fields'].nil?

  # header parameters
  header_params = opts[:header_params] || {}
  # HTTP header 'Accept' (if needed)
  header_params['Accept'] = @api_client.select_header_accept(['application/json']) unless header_params['Accept']

  # form parameters
  form_params = opts[:form_params] || {}

  # http body (model)
  post_body = opts[:debug_body]

  # return_type
  return_type = opts[:debug_return_type] || 'RpmRpmAlternateContentSourceResponse'

  # auth_names
  auth_names = opts[:debug_auth_names] || ['basicAuth']

  new_options = opts.merge(
    :operation => :"AcsRpmApi.read",
    :header_params => header_params,
    :query_params => query_params,
    :form_params => form_params,
    :body => post_body,
    :auth_names => auth_names,
    :return_type => return_type
  )

  data, status_code, headers = @api_client.call_api(:GET, local_var_path, new_options)
  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: AcsRpmApi#read\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end