Interface RowServiceAsync.WithRawResponse
-
- All Implemented Interfaces:
public interface RowServiceAsync.WithRawResponseA view of RowServiceAsync that provides access to raw HTTP responses for each method.
-
-
Method Summary
Modifier and Type Method Description abstract RowServiceAsync.WithRawResponsewithOptions(Consumer<ClientOptions.Builder> modifier)Returns a view of this service with the given option modifications applied. CompletableFuture<HttpResponseFor<RowUpdateResponse>>update(String inferencePipelineId, RowUpdateParams params)Returns a raw HTTP response for put /inference-pipelines/{inferencePipelineId}/rows, but is otherwise the same as RowServiceAsync.update.CompletableFuture<HttpResponseFor<RowUpdateResponse>>update(String inferencePipelineId, RowUpdateParams params, RequestOptions requestOptions)CompletableFuture<HttpResponseFor<RowUpdateResponse>>update(RowUpdateParams params)abstract CompletableFuture<HttpResponseFor<RowUpdateResponse>>update(RowUpdateParams params, RequestOptions requestOptions)-
-
Method Detail
-
withOptions
abstract RowServiceAsync.WithRawResponse withOptions(Consumer<ClientOptions.Builder> modifier)
Returns a view of this service with the given option modifications applied.
The original service is not modified.
-
update
CompletableFuture<HttpResponseFor<RowUpdateResponse>> update(String inferencePipelineId, RowUpdateParams params)
Returns a raw HTTP response for
put /inference-pipelines/{inferencePipelineId}/rows, but is otherwise the same as RowServiceAsync.update.
-
update
CompletableFuture<HttpResponseFor<RowUpdateResponse>> update(String inferencePipelineId, RowUpdateParams params, RequestOptions requestOptions)
-
update
CompletableFuture<HttpResponseFor<RowUpdateResponse>> update(RowUpdateParams params)
-
update
abstract CompletableFuture<HttpResponseFor<RowUpdateResponse>> update(RowUpdateParams params, RequestOptions requestOptions)
-
-
-
-