Interface MemoryServiceAsync.WithRawResponse
-
- All Implemented Interfaces:
public interface MemoryServiceAsync.WithRawResponseA view of MemoryServiceAsync that provides access to raw HTTP responses for each method.
-
-
Method Summary
-
-
Method Detail
-
withOptions
abstract MemoryServiceAsync.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<HttpResponseFor<MemoryCreateResponse>> create(String id, MemoryCreateParams params)
Returns a raw HTTP response for
post /vault/{id}/memory, but is otherwise the same as MemoryServiceAsync.create.
-
create
CompletableFuture<HttpResponseFor<MemoryCreateResponse>> create(String id, MemoryCreateParams params, RequestOptions requestOptions)
-
create
CompletableFuture<HttpResponseFor<MemoryCreateResponse>> create(MemoryCreateParams params)
-
create
abstract CompletableFuture<HttpResponseFor<MemoryCreateResponse>> create(MemoryCreateParams params, RequestOptions requestOptions)
-
update
CompletableFuture<HttpResponse> update(String entryId, MemoryUpdateParams params)
Returns a raw HTTP response for
patch /vault/{id}/memory/{entryId}, but is otherwise the same as MemoryServiceAsync.update.
-
update
CompletableFuture<HttpResponse> update(String entryId, MemoryUpdateParams params, RequestOptions requestOptions)
-
update
CompletableFuture<HttpResponse> update(MemoryUpdateParams params)
-
update
abstract CompletableFuture<HttpResponse> update(MemoryUpdateParams params, RequestOptions requestOptions)
-
list
CompletableFuture<HttpResponseFor<MemoryListResponse>> list(String id)
Returns a raw HTTP response for
get /vault/{id}/memory, but is otherwise the same as MemoryServiceAsync.list.
-
list
CompletableFuture<HttpResponseFor<MemoryListResponse>> list(String id, MemoryListParams params, RequestOptions requestOptions)
-
list
CompletableFuture<HttpResponseFor<MemoryListResponse>> list(String id, MemoryListParams params)
-
list
abstract CompletableFuture<HttpResponseFor<MemoryListResponse>> list(MemoryListParams params, RequestOptions requestOptions)
-
list
CompletableFuture<HttpResponseFor<MemoryListResponse>> list(MemoryListParams params)
-
list
CompletableFuture<HttpResponseFor<MemoryListResponse>> list(String id, RequestOptions requestOptions)
-
delete
CompletableFuture<HttpResponse> delete(String entryId, MemoryDeleteParams params)
Returns a raw HTTP response for
delete /vault/{id}/memory/{entryId}, but is otherwise the same as MemoryServiceAsync.delete.
-
delete
CompletableFuture<HttpResponse> delete(String entryId, MemoryDeleteParams params, RequestOptions requestOptions)
-
delete
CompletableFuture<HttpResponse> delete(MemoryDeleteParams params)
-
delete
abstract CompletableFuture<HttpResponse> delete(MemoryDeleteParams params, RequestOptions requestOptions)
-
search
CompletableFuture<HttpResponseFor<MemorySearchResponse>> search(String id, MemorySearchParams params)
Returns a raw HTTP response for
post /vault/{id}/memory/search, but is otherwise the same as MemoryServiceAsync.search.
-
search
CompletableFuture<HttpResponseFor<MemorySearchResponse>> search(String id, MemorySearchParams params, RequestOptions requestOptions)
-
search
CompletableFuture<HttpResponseFor<MemorySearchResponse>> search(MemorySearchParams params)
-
search
abstract CompletableFuture<HttpResponseFor<MemorySearchResponse>> search(MemorySearchParams params, RequestOptions requestOptions)
-
-
-
-