Interface ResultService.WithRawResponse
-
- All Implemented Interfaces:
public interface ResultService.WithRawResponseA view of ResultService that provides access to raw HTTP responses for each method.
-
-
Method Summary
Modifier and Type Method Description abstract ResultService.WithRawResponsewithOptions(Consumer<ClientOptions.Builder> modifier)Returns a view of this service with the given option modifications applied. HttpResponseFor<String>sarif(String scanId)Returns a raw HTTP response for get /scan/v3/results/{scan_id}/sarif, but is otherwise the same as ResultService.sarif.HttpResponseFor<String>sarif(String scanId, ResultSarifParams params, RequestOptions requestOptions)HttpResponseFor<String>sarif(String scanId, ResultSarifParams params)abstract HttpResponseFor<String>sarif(ResultSarifParams params, RequestOptions requestOptions)HttpResponseFor<String>sarif(ResultSarifParams params)HttpResponseFor<String>sarif(String scanId, RequestOptions requestOptions)-
-
Method Detail
-
withOptions
abstract ResultService.WithRawResponse withOptions(Consumer<ClientOptions.Builder> modifier)
Returns a view of this service with the given option modifications applied.
The original service is not modified.
-
sarif
@MustBeClosed() HttpResponseFor<String> sarif(String scanId)
Returns a raw HTTP response for
get /scan/v3/results/{scan_id}/sarif, but is otherwise the same as ResultService.sarif.
-
sarif
@MustBeClosed() HttpResponseFor<String> sarif(String scanId, ResultSarifParams params, RequestOptions requestOptions)
-
sarif
@MustBeClosed() HttpResponseFor<String> sarif(String scanId, ResultSarifParams params)
-
sarif
@MustBeClosed() abstract HttpResponseFor<String> sarif(ResultSarifParams params, RequestOptions requestOptions)
-
sarif
@MustBeClosed() HttpResponseFor<String> sarif(ResultSarifParams params)
-
sarif
@MustBeClosed() HttpResponseFor<String> sarif(String scanId, RequestOptions requestOptions)
-
-
-
-