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