Method: PulpRpmClient::AcsRpmApi#create_with_http_info

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

#create_with_http_info(rpm_rpm_alternate_content_source, opts = {}) ⇒ Array<(RpmRpmAlternateContentSourceResponse, Integer, Hash)>

Create a rpm alternate content source ViewSet for ACS.

Parameters:

Returns:

[View source]

111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
# File 'lib/pulp_rpm_client/api/acs_rpm_api.rb', line 111

def create_with_http_info(rpm_rpm_alternate_content_source, opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: AcsRpmApi.create ...'
  end
  # verify the required parameter 'rpm_rpm_alternate_content_source' is set
  if @api_client.config.client_side_validation && rpm_rpm_alternate_content_source.nil?
    fail ArgumentError, "Missing the required parameter 'rpm_rpm_alternate_content_source' when calling AcsRpmApi.create"
  end
  # resource path
  local_var_path = '/pulp/api/v3/acs/rpm/rpm/'

  # query parameters
  query_params = opts[:query_params] || {}

  # 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']
  # HTTP header 'Content-Type'
  content_type = @api_client.select_header_content_type(['application/json', 'application/x-www-form-urlencoded', 'multipart/form-data'])
  if !content_type.nil?
      header_params['Content-Type'] = content_type
  end

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

  # http body (model)
  post_body = opts[:debug_body] || @api_client.object_to_http_body(rpm_rpm_alternate_content_source)

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

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

  new_options = opts.merge(
    :operation => :"AcsRpmApi.create",
    :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(:POST, local_var_path, new_options)
  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: AcsRpmApi#create\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end