Interface PresignedUrlService.WithRawResponse
-
- All Implemented Interfaces:
public interface PresignedUrlService.WithRawResponseA view of PresignedUrlService that provides access to raw HTTP responses for each method.
-
-
Method Summary
Modifier and Type Method Description abstract PresignedUrlService.WithRawResponsewithOptions(Consumer<ClientOptions.Builder> modifier)Returns a view of this service with the given option modifications applied. HttpResponseFor<PresignedUrlCreateResponse>create(PresignedUrlCreateParams params)Returns a raw HTTP response for post /storage/presigned-url, but is otherwise the same as PresignedUrlService.create.abstract HttpResponseFor<PresignedUrlCreateResponse>create(PresignedUrlCreateParams params, RequestOptions requestOptions)-
-
Method Detail
-
withOptions
abstract PresignedUrlService.WithRawResponse withOptions(Consumer<ClientOptions.Builder> modifier)
Returns a view of this service with the given option modifications applied.
The original service is not modified.
-
create
@MustBeClosed() HttpResponseFor<PresignedUrlCreateResponse> create(PresignedUrlCreateParams params)
Returns a raw HTTP response for
post /storage/presigned-url, but is otherwise the same as PresignedUrlService.create.
-
create
@MustBeClosed() abstract HttpResponseFor<PresignedUrlCreateResponse> create(PresignedUrlCreateParams params, RequestOptions requestOptions)
-
-
-
-