Interface RunService.WithRawResponse
-
- All Implemented Interfaces:
public interface RunService.WithRawResponseA view of RunService that provides access to raw HTTP responses for each method.
-
-
Method Summary
-
-
Method Detail
-
withOptions
abstract RunService.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<RunCreateResponse> create(RunCreateParams params)
Returns a raw HTTP response for
post /agent/v1/run, but is otherwise the same as RunService.create.
-
create
@MustBeClosed() abstract HttpResponseFor<RunCreateResponse> create(RunCreateParams params, RequestOptions requestOptions)
-
list
@MustBeClosed() HttpResponseFor<RunListResponse> list()
Returns a raw HTTP response for
get /agent/v1/run, but is otherwise the same as RunService.list.
-
list
@MustBeClosed() abstract HttpResponseFor<RunListResponse> list(RunListParams params, RequestOptions requestOptions)
-
list
@MustBeClosed() HttpResponseFor<RunListResponse> list(RunListParams params)
-
list
@MustBeClosed() HttpResponseFor<RunListResponse> list(RequestOptions requestOptions)
-
cancel
@MustBeClosed() HttpResponseFor<RunCancelResponse> cancel(String id)
Returns a raw HTTP response for
post /agent/v1/run/{id}/cancel, but is otherwise the same as RunService.cancel.
-
cancel
@MustBeClosed() HttpResponseFor<RunCancelResponse> cancel(String id, RunCancelParams params, RequestOptions requestOptions)
-
cancel
@MustBeClosed() HttpResponseFor<RunCancelResponse> cancel(String id, RunCancelParams params)
-
cancel
@MustBeClosed() abstract HttpResponseFor<RunCancelResponse> cancel(RunCancelParams params, RequestOptions requestOptions)
-
cancel
@MustBeClosed() HttpResponseFor<RunCancelResponse> cancel(RunCancelParams params)
-
cancel
@MustBeClosed() HttpResponseFor<RunCancelResponse> cancel(String id, RequestOptions requestOptions)
-
eventsStreaming
@MustBeClosed() HttpResponseFor<StreamResponse<String>> eventsStreaming(String id)
Returns a raw HTTP response for
get /agent/v1/run/{id}/events, but is otherwise the same as RunService.eventsStreaming.
-
eventsStreaming
@MustBeClosed() HttpResponseFor<StreamResponse<String>> eventsStreaming(String id, RunEventsParams params, RequestOptions requestOptions)
-
eventsStreaming
@MustBeClosed() HttpResponseFor<StreamResponse<String>> eventsStreaming(String id, RunEventsParams params)
-
eventsStreaming
@MustBeClosed() abstract HttpResponseFor<StreamResponse<String>> eventsStreaming(RunEventsParams params, RequestOptions requestOptions)
-
eventsStreaming
@MustBeClosed() HttpResponseFor<StreamResponse<String>> eventsStreaming(RunEventsParams params)
-
eventsStreaming
@MustBeClosed() HttpResponseFor<StreamResponse<String>> eventsStreaming(String id, RequestOptions requestOptions)
-
exec
@MustBeClosed() HttpResponseFor<RunExecResponse> exec(String id)
Returns a raw HTTP response for
post /agent/v1/run/{id}/exec, but is otherwise the same as RunService.exec.
-
exec
@MustBeClosed() HttpResponseFor<RunExecResponse> exec(String id, RunExecParams params, RequestOptions requestOptions)
-
exec
@MustBeClosed() HttpResponseFor<RunExecResponse> exec(String id, RunExecParams params)
-
exec
@MustBeClosed() abstract HttpResponseFor<RunExecResponse> exec(RunExecParams params, RequestOptions requestOptions)
-
exec
@MustBeClosed() HttpResponseFor<RunExecResponse> exec(RunExecParams params)
-
exec
@MustBeClosed() HttpResponseFor<RunExecResponse> exec(String id, RequestOptions requestOptions)
-
getDetails
@MustBeClosed() HttpResponseFor<RunGetDetailsResponse> getDetails(String id)
Returns a raw HTTP response for
get /agent/v1/run/{id}/details, but is otherwise the same as RunService.getDetails.
-
getDetails
@MustBeClosed() HttpResponseFor<RunGetDetailsResponse> getDetails(String id, RunGetDetailsParams params, RequestOptions requestOptions)
-
getDetails
@MustBeClosed() HttpResponseFor<RunGetDetailsResponse> getDetails(String id, RunGetDetailsParams params)
-
getDetails
@MustBeClosed() abstract HttpResponseFor<RunGetDetailsResponse> getDetails(RunGetDetailsParams params, RequestOptions requestOptions)
-
getDetails
@MustBeClosed() HttpResponseFor<RunGetDetailsResponse> getDetails(RunGetDetailsParams params)
-
getDetails
@MustBeClosed() HttpResponseFor<RunGetDetailsResponse> getDetails(String id, RequestOptions requestOptions)
-
getStatus
@MustBeClosed() HttpResponseFor<RunGetStatusResponse> getStatus(String id)
Returns a raw HTTP response for
get /agent/v1/run/{id}/status, but is otherwise the same as RunService.getStatus.
-
getStatus
@MustBeClosed() HttpResponseFor<RunGetStatusResponse> getStatus(String id, RunGetStatusParams params, RequestOptions requestOptions)
-
getStatus
@MustBeClosed() HttpResponseFor<RunGetStatusResponse> getStatus(String id, RunGetStatusParams params)
-
getStatus
@MustBeClosed() abstract HttpResponseFor<RunGetStatusResponse> getStatus(RunGetStatusParams params, RequestOptions requestOptions)
-
getStatus
@MustBeClosed() HttpResponseFor<RunGetStatusResponse> getStatus(RunGetStatusParams params)
-
getStatus
@MustBeClosed() HttpResponseFor<RunGetStatusResponse> getStatus(String id, RequestOptions requestOptions)
-
watch
@MustBeClosed() HttpResponseFor<RunWatchResponse> watch(String id, RunWatchParams params)
Returns a raw HTTP response for
post /agent/v1/run/{id}/watch, but is otherwise the same as RunService.watch.
-
watch
@MustBeClosed() HttpResponseFor<RunWatchResponse> watch(String id, RunWatchParams params, RequestOptions requestOptions)
-
watch
@MustBeClosed() HttpResponseFor<RunWatchResponse> watch(RunWatchParams params)
-
watch
@MustBeClosed() abstract HttpResponseFor<RunWatchResponse> watch(RunWatchParams params, RequestOptions requestOptions)
-
-
-
-