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