Interface ContentService.WithRawResponse
-
- All Implemented Interfaces:
public interface ContentService.WithRawResponse
A view of ContentService that provides access to raw HTTP responses for each method.
-
-
Method Summary
Modifier and Type Method Description 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 ContentService.retrieve.HttpResponse
retrieve(String fileId, ContentRetrieveParams params, RequestOptions requestOptions)
HttpResponse
retrieve(ContentRetrieveParams params)
abstract HttpResponse
retrieve(ContentRetrieveParams params, RequestOptions requestOptions)
-
-
Method Detail
-
retrieve
@MustBeClosed() 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 ContentService.retrieve.
-
retrieve
@MustBeClosed() HttpResponse retrieve(String fileId, ContentRetrieveParams params, RequestOptions requestOptions)
-
retrieve
@MustBeClosed() HttpResponse retrieve(ContentRetrieveParams params)
-
retrieve
@MustBeClosed() abstract HttpResponse retrieve(ContentRetrieveParams params, RequestOptions requestOptions)
-
-
-
-