in gems/error_tracking_open_api/lib/error_tracking_open_api/api/errors_v2_api.rb [111:186]
def list_errors_v2_with_http_info(project, group_id, opts = {})
if @api_client.config.debugging
@api_client.config.logger.debug 'Calling API: ErrorsV2Api.list_errors_v2 ...'
end
if @api_client.config.client_side_validation && project.nil?
fail ArgumentError, "Missing the required parameter 'project' when calling ErrorsV2Api.list_errors_v2"
end
if @api_client.config.client_side_validation && group_id.nil?
fail ArgumentError, "Missing the required parameter 'group_id' when calling ErrorsV2Api.list_errors_v2"
end
allowable_values = ["unresolved", "resolved", "ignored"]
if @api_client.config.client_side_validation && opts[:'status'] && !allowable_values.include?(opts[:'status'])
fail ArgumentError, "invalid value for \"status\", must be one of #{allowable_values}"
end
if @api_client.config.client_side_validation && !opts[:'limit'].nil? && opts[:'limit'] > 10000
fail ArgumentError, 'invalid value for "opts[:"limit"]" when calling ErrorsV2Api.list_errors_v2, must be smaller than or equal to 10000.'
end
if @api_client.config.client_side_validation && !opts[:'limit'].nil? && opts[:'limit'] < 1
fail ArgumentError, 'invalid value for "opts[:"limit"]" when calling ErrorsV2Api.list_errors_v2, must be greater than or equal to 1.'
end
allowable_values = ["date", "new", "priority", "freq", "user"]
if @api_client.config.client_side_validation && opts[:'sort'] && !allowable_values.include?(opts[:'sort'])
fail ArgumentError, "invalid value for \"sort\", must be one of #{allowable_values}"
end
local_var_path = '/api/0/organizations/{groupId}/issues/'.sub('{' + 'groupId' + '}', CGI.escape(group_id.to_s))
query_params = opts[:query_params] || {}
query_params[:'project'] = @api_client.build_collection_param(project, :multi)
query_params[:'status'] = opts[:'status'] if !opts[:'status'].nil?
query_params[:'query'] = opts[:'query'] if !opts[:'query'].nil?
query_params[:'start'] = opts[:'start'] if !opts[:'start'].nil?
query_params[:'end'] = opts[:'_end'] if !opts[:'_end'].nil?
query_params[:'environment'] = opts[:'environment'] if !opts[:'environment'].nil?
query_params[:'limit'] = opts[:'limit'] if !opts[:'limit'].nil?
query_params[:'sort'] = opts[:'sort'] if !opts[:'sort'].nil?
header_params = opts[:header_params] || {}
header_params['Accept'] = @api_client.select_header_accept(['*/*'])
form_params = opts[:form_params] || {}
post_body = opts[:debug_body]
return_type = opts[:debug_return_type] || 'Array<ErrorV2>'
auth_names = opts[:debug_auth_names] || ['internalToken']
new_options = opts.merge(
:operation => :"ErrorsV2Api.list_errors_v2",
: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: ErrorsV2Api#list_errors_v2\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
end
return data, status_code, headers
end