Interface AgentServiceAsync.WithRawResponse
-
- All Implemented Interfaces:
public interface AgentServiceAsync.WithRawResponseA view of AgentServiceAsync that provides access to raw HTTP responses for each method.
-
-
Method Summary
-
-
Method Detail
-
withOptions
abstract AgentServiceAsync.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<AgentCreateResponse>> create(AgentCreateParams params)
Returns a raw HTTP response for
post /agent/v1/agents, but is otherwise the same as AgentServiceAsync.create.
-
create
abstract CompletableFuture<HttpResponseFor<AgentCreateResponse>> create(AgentCreateParams params, RequestOptions requestOptions)
-
retrieve
CompletableFuture<HttpResponseFor<AgentRetrieveResponse>> retrieve(String id)
Returns a raw HTTP response for
get /agent/v1/agents/{id}, but is otherwise the same as AgentServiceAsync.retrieve.
-
retrieve
CompletableFuture<HttpResponseFor<AgentRetrieveResponse>> retrieve(String id, AgentRetrieveParams params, RequestOptions requestOptions)
-
retrieve
CompletableFuture<HttpResponseFor<AgentRetrieveResponse>> retrieve(String id, AgentRetrieveParams params)
-
retrieve
abstract CompletableFuture<HttpResponseFor<AgentRetrieveResponse>> retrieve(AgentRetrieveParams params, RequestOptions requestOptions)
-
retrieve
CompletableFuture<HttpResponseFor<AgentRetrieveResponse>> retrieve(AgentRetrieveParams params)
-
retrieve
CompletableFuture<HttpResponseFor<AgentRetrieveResponse>> retrieve(String id, RequestOptions requestOptions)
-
update
CompletableFuture<HttpResponseFor<AgentUpdateResponse>> update(String id)
Returns a raw HTTP response for
patch /agent/v1/agents/{id}, but is otherwise the same as AgentServiceAsync.update.
-
update
CompletableFuture<HttpResponseFor<AgentUpdateResponse>> update(String id, AgentUpdateParams params, RequestOptions requestOptions)
-
update
CompletableFuture<HttpResponseFor<AgentUpdateResponse>> update(String id, AgentUpdateParams params)
-
update
abstract CompletableFuture<HttpResponseFor<AgentUpdateResponse>> update(AgentUpdateParams params, RequestOptions requestOptions)
-
update
CompletableFuture<HttpResponseFor<AgentUpdateResponse>> update(AgentUpdateParams params)
-
update
CompletableFuture<HttpResponseFor<AgentUpdateResponse>> update(String id, RequestOptions requestOptions)
-
list
CompletableFuture<HttpResponseFor<AgentListResponse>> list()
Returns a raw HTTP response for
get /agent/v1/agents, but is otherwise the same as AgentServiceAsync.list.
-
list
abstract CompletableFuture<HttpResponseFor<AgentListResponse>> list(AgentListParams params, RequestOptions requestOptions)
-
list
CompletableFuture<HttpResponseFor<AgentListResponse>> list(AgentListParams params)
-
list
CompletableFuture<HttpResponseFor<AgentListResponse>> list(RequestOptions requestOptions)
-
delete
CompletableFuture<HttpResponseFor<AgentDeleteResponse>> delete(String id)
Returns a raw HTTP response for
delete /agent/v1/agents/{id}, but is otherwise the same as AgentServiceAsync.delete.
-
delete
CompletableFuture<HttpResponseFor<AgentDeleteResponse>> delete(String id, AgentDeleteParams params, RequestOptions requestOptions)
-
delete
CompletableFuture<HttpResponseFor<AgentDeleteResponse>> delete(String id, AgentDeleteParams params)
-
delete
abstract CompletableFuture<HttpResponseFor<AgentDeleteResponse>> delete(AgentDeleteParams params, RequestOptions requestOptions)
-
delete
CompletableFuture<HttpResponseFor<AgentDeleteResponse>> delete(AgentDeleteParams params)
-
delete
CompletableFuture<HttpResponseFor<AgentDeleteResponse>> delete(String id, RequestOptions requestOptions)
-
-
-
-