Interface MultipartServiceAsync.WithRawResponse
-
- All Implemented Interfaces:
public interface MultipartServiceAsync.WithRawResponseA view of MultipartServiceAsync that provides access to raw HTTP responses for each method.
-
-
Method Summary
-
-
Method Detail
-
withOptions
abstract MultipartServiceAsync.WithRawResponse withOptions(Consumer<ClientOptions.Builder> modifier)
Returns a view of this service with the given option modifications applied.
The original service is not modified.
-
abort
CompletableFuture<HttpResponse> abort(String id, MultipartAbortParams params)
Returns a raw HTTP response for
post /vault/{id}/multipart/abort, but is otherwise the same as MultipartServiceAsync.abort.
-
abort
CompletableFuture<HttpResponse> abort(String id, MultipartAbortParams params, RequestOptions requestOptions)
-
abort
CompletableFuture<HttpResponse> abort(MultipartAbortParams params)
-
abort
abstract CompletableFuture<HttpResponse> abort(MultipartAbortParams params, RequestOptions requestOptions)
-
getPartUrls
CompletableFuture<HttpResponseFor<MultipartGetPartUrlsResponse>> getPartUrls(String id, MultipartGetPartUrlsParams params)
Returns a raw HTTP response for
post /vault/{id}/multipart/part-urls, but is otherwise the same as MultipartServiceAsync.getPartUrls.
-
getPartUrls
CompletableFuture<HttpResponseFor<MultipartGetPartUrlsResponse>> getPartUrls(String id, MultipartGetPartUrlsParams params, RequestOptions requestOptions)
-
getPartUrls
CompletableFuture<HttpResponseFor<MultipartGetPartUrlsResponse>> getPartUrls(MultipartGetPartUrlsParams params)
-
getPartUrls
abstract CompletableFuture<HttpResponseFor<MultipartGetPartUrlsResponse>> getPartUrls(MultipartGetPartUrlsParams params, RequestOptions requestOptions)
-
-
-
-