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
-
-
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)
-
list
CompletableFuture<HttpResponseFor<RowListResponse>> list(String inferencePipelineId)
Returns a raw HTTP response for
post /inference-pipelines/{inferencePipelineId}/rows, but is otherwise the same as RowServiceAsync.list.
-
list
CompletableFuture<HttpResponseFor<RowListResponse>> list(String inferencePipelineId, RowListParams params, RequestOptions requestOptions)
-
list
CompletableFuture<HttpResponseFor<RowListResponse>> list(String inferencePipelineId, RowListParams params)
-
list
abstract CompletableFuture<HttpResponseFor<RowListResponse>> list(RowListParams params, RequestOptions requestOptions)
-
list
CompletableFuture<HttpResponseFor<RowListResponse>> list(RowListParams params)
-
list
CompletableFuture<HttpResponseFor<RowListResponse>> list(String inferencePipelineId, RequestOptions requestOptions)
-
-
-
-