Interface LogServiceAsync.WithRawResponse
-
- All Implemented Interfaces:
public interface LogServiceAsync.WithRawResponseA view of LogServiceAsync that provides access to raw HTTP responses for each method.
-
-
Method Summary
-
-
Method Detail
-
withOptions
abstract LogServiceAsync.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
CompletableFuture<HttpResponse> create(String id, LogCreateParams params)
Returns a raw HTTP response for
post /matters/v1/{id}/log, but is otherwise the same as LogServiceAsync.create.
-
create
CompletableFuture<HttpResponse> create(String id, LogCreateParams params, RequestOptions requestOptions)
-
create
CompletableFuture<HttpResponse> create(LogCreateParams params)
-
create
abstract CompletableFuture<HttpResponse> create(LogCreateParams params, RequestOptions requestOptions)
-
list
CompletableFuture<HttpResponse> list(String id)
Returns a raw HTTP response for
get /matters/v1/{id}/log, but is otherwise the same as LogServiceAsync.list.
-
list
CompletableFuture<HttpResponse> list(String id, LogListParams params, RequestOptions requestOptions)
-
list
CompletableFuture<HttpResponse> list(String id, LogListParams params)
-
list
abstract CompletableFuture<HttpResponse> list(LogListParams params, RequestOptions requestOptions)
-
list
CompletableFuture<HttpResponse> list(LogListParams params)
-
list
CompletableFuture<HttpResponse> list(String id, RequestOptions requestOptions)
-
export
CompletableFuture<HttpResponseFor<LogExportResponse>> export(String id)
Returns a raw HTTP response for
post /matters/v1/{id}/log/export, but is otherwise the same as LogServiceAsync.export.
-
export
CompletableFuture<HttpResponseFor<LogExportResponse>> export(String id, LogExportParams params, RequestOptions requestOptions)
-
export
CompletableFuture<HttpResponseFor<LogExportResponse>> export(String id, LogExportParams params)
-
export
abstract CompletableFuture<HttpResponseFor<LogExportResponse>> export(LogExportParams params, RequestOptions requestOptions)
-
export
CompletableFuture<HttpResponseFor<LogExportResponse>> export(LogExportParams params)
-
export
CompletableFuture<HttpResponseFor<LogExportResponse>> export(String id, RequestOptions requestOptions)
-
-
-
-