Interface StepServiceAsync
-
- All Implemented Interfaces:
public interface StepServiceAsync
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public interface
StepServiceAsync.WithRawResponse
A view of StepServiceAsync that provides access to raw HTTP responses for each method.
-
Method Summary
Modifier and Type Method Description abstract StepServiceAsync.WithRawResponse
withRawResponse()
Returns a view of this service that provides access to raw HTTP responses for each method. CompletableFuture<RunStep>
retrieve(String stepId, StepRetrieveParams params)
Retrieves a run step. CompletableFuture<RunStep>
retrieve(String stepId, StepRetrieveParams params, RequestOptions requestOptions)
CompletableFuture<RunStep>
retrieve(StepRetrieveParams params)
abstract CompletableFuture<RunStep>
retrieve(StepRetrieveParams params, RequestOptions requestOptions)
CompletableFuture<StepListPageAsync>
list(String runId, StepListParams params)
Returns a list of run steps belonging to a run. CompletableFuture<StepListPageAsync>
list(String runId, StepListParams params, RequestOptions requestOptions)
CompletableFuture<StepListPageAsync>
list(StepListParams params)
abstract CompletableFuture<StepListPageAsync>
list(StepListParams params, RequestOptions requestOptions)
-
-
Method Detail
-
withRawResponse
abstract StepServiceAsync.WithRawResponse withRawResponse()
Returns a view of this service that provides access to raw HTTP responses for each method.
-
retrieve
CompletableFuture<RunStep> retrieve(String stepId, StepRetrieveParams params)
Retrieves a run step.
-
retrieve
CompletableFuture<RunStep> retrieve(String stepId, StepRetrieveParams params, RequestOptions requestOptions)
-
retrieve
CompletableFuture<RunStep> retrieve(StepRetrieveParams params)
-
retrieve
abstract CompletableFuture<RunStep> retrieve(StepRetrieveParams params, RequestOptions requestOptions)
-
list
CompletableFuture<StepListPageAsync> list(String runId, StepListParams params)
Returns a list of run steps belonging to a run.
-
list
CompletableFuture<StepListPageAsync> list(String runId, StepListParams params, RequestOptions requestOptions)
-
list
CompletableFuture<StepListPageAsync> list(StepListParams params)
-
list
abstract CompletableFuture<StepListPageAsync> list(StepListParams params, RequestOptions requestOptions)
-
-
-
-