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