Interface ContentServiceAsync.WithRawResponse
-
- All Implemented Interfaces:
public interface ContentServiceAsync.WithRawResponse
A view of ContentServiceAsync that provides access to raw HTTP responses for each method.
-
-
Method Summary
Modifier and Type Method Description CompletableFuture<HttpResponse>
retrieve(String fileId, ContentRetrieveParams params)
Returns a raw HTTP response for get /containers/{container_id}/files/{file_id}/content
, but is otherwise the same as ContentServiceAsync.retrieve.CompletableFuture<HttpResponse>
retrieve(String fileId, ContentRetrieveParams params, RequestOptions requestOptions)
CompletableFuture<HttpResponse>
retrieve(ContentRetrieveParams params)
abstract CompletableFuture<HttpResponse>
retrieve(ContentRetrieveParams params, RequestOptions requestOptions)
-
-
Method Detail
-
retrieve
CompletableFuture<HttpResponse> retrieve(String fileId, ContentRetrieveParams params)
Returns a raw HTTP response for
get /containers/{container_id}/files/{file_id}/content
, but is otherwise the same as ContentServiceAsync.retrieve.
-
retrieve
CompletableFuture<HttpResponse> retrieve(String fileId, ContentRetrieveParams params, RequestOptions requestOptions)
-
retrieve
CompletableFuture<HttpResponse> retrieve(ContentRetrieveParams params)
-
retrieve
abstract CompletableFuture<HttpResponse> retrieve(ContentRetrieveParams params, RequestOptions requestOptions)
-
-
-
-