Interface InvalidationService.WithRawResponse
-
- All Implemented Interfaces:
public interface InvalidationService.WithRawResponseA view of InvalidationService that provides access to raw HTTP responses for each method.
-
-
Method Summary
-
-
Method Detail
-
withOptions
abstract InvalidationService.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<InvalidationCreateResponse> create(InvalidationCreateParams params)
Returns a raw HTTP response for
post /v1/files/purge, but is otherwise the same as InvalidationService.create.
-
create
@MustBeClosed() abstract HttpResponseFor<InvalidationCreateResponse> create(InvalidationCreateParams params, RequestOptions requestOptions)
-
get
@MustBeClosed() HttpResponseFor<InvalidationGetResponse> get(String requestId)
Returns a raw HTTP response for
get /v1/files/purge/{requestId}, but is otherwise the same as InvalidationService.get.
-
get
@MustBeClosed() HttpResponseFor<InvalidationGetResponse> get(String requestId, InvalidationGetParams params, RequestOptions requestOptions)
-
get
@MustBeClosed() HttpResponseFor<InvalidationGetResponse> get(String requestId, InvalidationGetParams params)
-
get
@MustBeClosed() abstract HttpResponseFor<InvalidationGetResponse> get(InvalidationGetParams params, RequestOptions requestOptions)
-
get
@MustBeClosed() HttpResponseFor<InvalidationGetResponse> get(InvalidationGetParams params)
-
get
@MustBeClosed() HttpResponseFor<InvalidationGetResponse> get(String requestId, RequestOptions requestOptions)
-
-
-
-