Interface MultipartService.WithRawResponse
-
- All Implemented Interfaces:
public interface MultipartService.WithRawResponseA view of MultipartService that provides access to raw HTTP responses for each method.
-
-
Method Summary
-
-
Method Detail
-
withOptions
abstract MultipartService.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
@MustBeClosed() HttpResponse abort(String id, MultipartAbortParams params)
Returns a raw HTTP response for
post /vault/{id}/multipart/abort, but is otherwise the same as MultipartService.abort.
-
abort
@MustBeClosed() HttpResponse abort(String id, MultipartAbortParams params, RequestOptions requestOptions)
-
abort
@MustBeClosed() HttpResponse abort(MultipartAbortParams params)
-
abort
@MustBeClosed() abstract HttpResponse abort(MultipartAbortParams params, RequestOptions requestOptions)
-
getPartUrls
@MustBeClosed() 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 MultipartService.getPartUrls.
-
getPartUrls
@MustBeClosed() HttpResponseFor<MultipartGetPartUrlsResponse> getPartUrls(String id, MultipartGetPartUrlsParams params, RequestOptions requestOptions)
-
getPartUrls
@MustBeClosed() HttpResponseFor<MultipartGetPartUrlsResponse> getPartUrls(MultipartGetPartUrlsParams params)
-
getPartUrls
@MustBeClosed() abstract HttpResponseFor<MultipartGetPartUrlsResponse> getPartUrls(MultipartGetPartUrlsParams params, RequestOptions requestOptions)
-
-
-
-