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