Interface PartServiceAsync.WithRawResponse
-
- All Implemented Interfaces:
public interface PartServiceAsync.WithRawResponse
A view of PartServiceAsync that provides access to raw HTTP responses for each method.
-
-
Method Summary
Modifier and Type Method Description CompletableFuture<HttpResponseFor<UploadPart>>
create(String uploadId, PartCreateParams params)
Returns a raw HTTP response for post /uploads/{upload_id}/parts
, but is otherwise the same as PartServiceAsync.create.CompletableFuture<HttpResponseFor<UploadPart>>
create(String uploadId, PartCreateParams params, RequestOptions requestOptions)
CompletableFuture<HttpResponseFor<UploadPart>>
create(PartCreateParams params)
abstract CompletableFuture<HttpResponseFor<UploadPart>>
create(PartCreateParams params, RequestOptions requestOptions)
-
-
Method Detail
-
create
CompletableFuture<HttpResponseFor<UploadPart>> create(String uploadId, PartCreateParams params)
Returns a raw HTTP response for
post /uploads/{upload_id}/parts
, but is otherwise the same as PartServiceAsync.create.
-
create
CompletableFuture<HttpResponseFor<UploadPart>> create(String uploadId, PartCreateParams params, RequestOptions requestOptions)
-
create
CompletableFuture<HttpResponseFor<UploadPart>> create(PartCreateParams params)
-
create
abstract CompletableFuture<HttpResponseFor<UploadPart>> create(PartCreateParams params, RequestOptions requestOptions)
-
-
-
-