Package app.knock.api.services.async
Interface TenantServiceAsync.WithRawResponse
-
- All Implemented Interfaces:
public interface TenantServiceAsync.WithRawResponseA view of TenantServiceAsync that provides access to raw HTTP responses for each method.
-
-
Method Summary
-
-
Method Detail
-
bulk
abstract BulkServiceAsync.WithRawResponse bulk()
-
list
@MustBeClosed() CompletableFuture<HttpResponseFor<TenantListPageAsync>> list()
Returns a raw HTTP response for
get /v1/tenants, but is otherwise the same as TenantServiceAsync.list.
-
list
@MustBeClosed() abstract CompletableFuture<HttpResponseFor<TenantListPageAsync>> list(TenantListParams params, RequestOptions requestOptions)
-
list
@MustBeClosed() CompletableFuture<HttpResponseFor<TenantListPageAsync>> list(TenantListParams params)
-
list
@MustBeClosed() CompletableFuture<HttpResponseFor<TenantListPageAsync>> list(RequestOptions requestOptions)
-
delete
@MustBeClosed() CompletableFuture<HttpResponseFor<String>> delete(String id)
Returns a raw HTTP response for
delete /v1/tenants/{id}, but is otherwise the same as TenantServiceAsync.delete.
-
delete
@MustBeClosed() CompletableFuture<HttpResponseFor<String>> delete(String id, TenantDeleteParams params, RequestOptions requestOptions)
-
delete
@MustBeClosed() CompletableFuture<HttpResponseFor<String>> delete(String id, TenantDeleteParams params)
-
delete
@MustBeClosed() abstract CompletableFuture<HttpResponseFor<String>> delete(TenantDeleteParams params, RequestOptions requestOptions)
-
delete
@MustBeClosed() CompletableFuture<HttpResponseFor<String>> delete(TenantDeleteParams params)
-
delete
@MustBeClosed() CompletableFuture<HttpResponseFor<String>> delete(String id, RequestOptions requestOptions)
-
get
@MustBeClosed() CompletableFuture<HttpResponseFor<Tenant>> get(String id)
Returns a raw HTTP response for
get /v1/tenants/{id}, but is otherwise the same as TenantServiceAsync.get.
-
get
@MustBeClosed() CompletableFuture<HttpResponseFor<Tenant>> get(String id, TenantGetParams params, RequestOptions requestOptions)
-
get
@MustBeClosed() CompletableFuture<HttpResponseFor<Tenant>> get(String id, TenantGetParams params)
-
get
@MustBeClosed() abstract CompletableFuture<HttpResponseFor<Tenant>> get(TenantGetParams params, RequestOptions requestOptions)
-
get
@MustBeClosed() CompletableFuture<HttpResponseFor<Tenant>> get(TenantGetParams params)
-
get
@MustBeClosed() CompletableFuture<HttpResponseFor<Tenant>> get(String id, RequestOptions requestOptions)
-
set
@MustBeClosed() CompletableFuture<HttpResponseFor<Tenant>> set(String id)
Returns a raw HTTP response for
put /v1/tenants/{id}, but is otherwise the same as TenantServiceAsync.set.
-
set
@MustBeClosed() CompletableFuture<HttpResponseFor<Tenant>> set(String id, TenantSetParams params, RequestOptions requestOptions)
-
set
@MustBeClosed() CompletableFuture<HttpResponseFor<Tenant>> set(String id, TenantSetParams params)
-
set
@MustBeClosed() abstract CompletableFuture<HttpResponseFor<Tenant>> set(TenantSetParams params, RequestOptions requestOptions)
-
set
@MustBeClosed() CompletableFuture<HttpResponseFor<Tenant>> set(TenantSetParams params)
-
set
@MustBeClosed() CompletableFuture<HttpResponseFor<Tenant>> set(String id, RequestOptions requestOptions)
-
-
-
-