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