Interface EventService.WithRawResponse
-
- All Implemented Interfaces:
public interface EventService.WithRawResponseA view of EventService that provides access to raw HTTP responses for each method.
-
-
Method Summary
-
-
Method Detail
-
withOptions
abstract EventService.WithRawResponse withOptions(Consumer<ClientOptions.Builder> modifier)
Returns a view of this service with the given option modifications applied.
The original service is not modified.
-
list
@MustBeClosed() HttpResponseFor<EventListPage> list(String sessionId)
Returns a raw HTTP response for
get /v1/sessions/{session_id}/events?beta=true, but is otherwise the same as EventService.list.
-
list
@MustBeClosed() HttpResponseFor<EventListPage> list(String sessionId, EventListParams params, RequestOptions requestOptions)
-
list
@MustBeClosed() HttpResponseFor<EventListPage> list(String sessionId, EventListParams params)
-
list
@MustBeClosed() abstract HttpResponseFor<EventListPage> list(EventListParams params, RequestOptions requestOptions)
-
list
@MustBeClosed() HttpResponseFor<EventListPage> list(EventListParams params)
-
list
@MustBeClosed() HttpResponseFor<EventListPage> list(String sessionId, RequestOptions requestOptions)
-
send
@MustBeClosed() HttpResponseFor<BetaManagedAgentsSendSessionEvents> send(String sessionId, EventSendParams params)
Returns a raw HTTP response for
post /v1/sessions/{session_id}/events?beta=true, but is otherwise the same as EventService.send.
-
send
@MustBeClosed() HttpResponseFor<BetaManagedAgentsSendSessionEvents> send(String sessionId, EventSendParams params, RequestOptions requestOptions)
-
send
@MustBeClosed() HttpResponseFor<BetaManagedAgentsSendSessionEvents> send(EventSendParams params)
-
send
@MustBeClosed() abstract HttpResponseFor<BetaManagedAgentsSendSessionEvents> send(EventSendParams params, RequestOptions requestOptions)
-
streamStreaming
@MustBeClosed() HttpResponseFor<StreamResponse<BetaManagedAgentsStreamSessionEvents>> streamStreaming(String sessionId)
Returns a raw HTTP response for
get /v1/sessions/{session_id}/events/stream?beta=true, but is otherwise the same as EventService.streamStreaming.
-
streamStreaming
@MustBeClosed() HttpResponseFor<StreamResponse<BetaManagedAgentsStreamSessionEvents>> streamStreaming(String sessionId, EventStreamParams params, RequestOptions requestOptions)
-
streamStreaming
@MustBeClosed() HttpResponseFor<StreamResponse<BetaManagedAgentsStreamSessionEvents>> streamStreaming(String sessionId, EventStreamParams params)
-
streamStreaming
@MustBeClosed() abstract HttpResponseFor<StreamResponse<BetaManagedAgentsStreamSessionEvents>> streamStreaming(EventStreamParams params, RequestOptions requestOptions)
-
streamStreaming
@MustBeClosed() HttpResponseFor<StreamResponse<BetaManagedAgentsStreamSessionEvents>> streamStreaming(EventStreamParams params)
-
streamStreaming
@MustBeClosed() HttpResponseFor<StreamResponse<BetaManagedAgentsStreamSessionEvents>> streamStreaming(String sessionId, RequestOptions requestOptions)
-
-
-
-