Interface MemoryStoreService.WithRawResponse
-
- All Implemented Interfaces:
public interface MemoryStoreService.WithRawResponseA view of MemoryStoreService that provides access to raw HTTP responses for each method.
-
-
Method Summary
-
-
Method Detail
-
withOptions
abstract MemoryStoreService.WithRawResponse withOptions(Consumer<ClientOptions.Builder> modifier)
Returns a view of this service with the given option modifications applied.
The original service is not modified.
-
memories
abstract MemoryService.WithRawResponse memories()
-
memoryVersions
abstract MemoryVersionService.WithRawResponse memoryVersions()
-
create
@MustBeClosed() HttpResponseFor<BetaManagedAgentsMemoryStore> create(MemoryStoreCreateParams params)
Returns a raw HTTP response for
post /v1/memory_stores?beta=true, but is otherwise the same as MemoryStoreService.create.
-
create
@MustBeClosed() abstract HttpResponseFor<BetaManagedAgentsMemoryStore> create(MemoryStoreCreateParams params, RequestOptions requestOptions)
-
retrieve
@MustBeClosed() HttpResponseFor<BetaManagedAgentsMemoryStore> retrieve(String memoryStoreId)
Returns a raw HTTP response for
get /v1/memory_stores/{memory_store_id}?beta=true, but is otherwise the same as MemoryStoreService.retrieve.
-
retrieve
@MustBeClosed() HttpResponseFor<BetaManagedAgentsMemoryStore> retrieve(String memoryStoreId, MemoryStoreRetrieveParams params, RequestOptions requestOptions)
-
retrieve
@MustBeClosed() HttpResponseFor<BetaManagedAgentsMemoryStore> retrieve(String memoryStoreId, MemoryStoreRetrieveParams params)
-
retrieve
@MustBeClosed() abstract HttpResponseFor<BetaManagedAgentsMemoryStore> retrieve(MemoryStoreRetrieveParams params, RequestOptions requestOptions)
-
retrieve
@MustBeClosed() HttpResponseFor<BetaManagedAgentsMemoryStore> retrieve(MemoryStoreRetrieveParams params)
-
retrieve
@MustBeClosed() HttpResponseFor<BetaManagedAgentsMemoryStore> retrieve(String memoryStoreId, RequestOptions requestOptions)
-
update
@MustBeClosed() HttpResponseFor<BetaManagedAgentsMemoryStore> update(String memoryStoreId)
Returns a raw HTTP response for
post /v1/memory_stores/{memory_store_id}?beta=true, but is otherwise the same as MemoryStoreService.update.
-
update
@MustBeClosed() HttpResponseFor<BetaManagedAgentsMemoryStore> update(String memoryStoreId, MemoryStoreUpdateParams params, RequestOptions requestOptions)
-
update
@MustBeClosed() HttpResponseFor<BetaManagedAgentsMemoryStore> update(String memoryStoreId, MemoryStoreUpdateParams params)
-
update
@MustBeClosed() abstract HttpResponseFor<BetaManagedAgentsMemoryStore> update(MemoryStoreUpdateParams params, RequestOptions requestOptions)
-
update
@MustBeClosed() HttpResponseFor<BetaManagedAgentsMemoryStore> update(MemoryStoreUpdateParams params)
-
update
@MustBeClosed() HttpResponseFor<BetaManagedAgentsMemoryStore> update(String memoryStoreId, RequestOptions requestOptions)
-
list
@MustBeClosed() HttpResponseFor<MemoryStoreListPage> list()
Returns a raw HTTP response for
get /v1/memory_stores?beta=true, but is otherwise the same as MemoryStoreService.list.
-
list
@MustBeClosed() abstract HttpResponseFor<MemoryStoreListPage> list(MemoryStoreListParams params, RequestOptions requestOptions)
-
list
@MustBeClosed() HttpResponseFor<MemoryStoreListPage> list(MemoryStoreListParams params)
-
list
@MustBeClosed() HttpResponseFor<MemoryStoreListPage> list(RequestOptions requestOptions)
-
delete
@MustBeClosed() HttpResponseFor<BetaManagedAgentsDeletedMemoryStore> delete(String memoryStoreId)
Returns a raw HTTP response for
delete /v1/memory_stores/{memory_store_id}?beta=true, but is otherwise the same as MemoryStoreService.delete.
-
delete
@MustBeClosed() HttpResponseFor<BetaManagedAgentsDeletedMemoryStore> delete(String memoryStoreId, MemoryStoreDeleteParams params, RequestOptions requestOptions)
-
delete
@MustBeClosed() HttpResponseFor<BetaManagedAgentsDeletedMemoryStore> delete(String memoryStoreId, MemoryStoreDeleteParams params)
-
delete
@MustBeClosed() abstract HttpResponseFor<BetaManagedAgentsDeletedMemoryStore> delete(MemoryStoreDeleteParams params, RequestOptions requestOptions)
-
delete
@MustBeClosed() HttpResponseFor<BetaManagedAgentsDeletedMemoryStore> delete(MemoryStoreDeleteParams params)
-
delete
@MustBeClosed() HttpResponseFor<BetaManagedAgentsDeletedMemoryStore> delete(String memoryStoreId, RequestOptions requestOptions)
-
archive
@MustBeClosed() HttpResponseFor<BetaManagedAgentsMemoryStore> archive(String memoryStoreId)
Returns a raw HTTP response for
post /v1/memory_stores/{memory_store_id}/archive?beta=true, but is otherwise the same as MemoryStoreService.archive.
-
archive
@MustBeClosed() HttpResponseFor<BetaManagedAgentsMemoryStore> archive(String memoryStoreId, MemoryStoreArchiveParams params, RequestOptions requestOptions)
-
archive
@MustBeClosed() HttpResponseFor<BetaManagedAgentsMemoryStore> archive(String memoryStoreId, MemoryStoreArchiveParams params)
-
archive
@MustBeClosed() abstract HttpResponseFor<BetaManagedAgentsMemoryStore> archive(MemoryStoreArchiveParams params, RequestOptions requestOptions)
-
archive
@MustBeClosed() HttpResponseFor<BetaManagedAgentsMemoryStore> archive(MemoryStoreArchiveParams params)
-
archive
@MustBeClosed() HttpResponseFor<BetaManagedAgentsMemoryStore> archive(String memoryStoreId, RequestOptions requestOptions)
-
-
-
-