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