Interface ModelServiceAsync.WithRawResponse
-
- All Implemented Interfaces:
public interface ModelServiceAsync.WithRawResponseA view of ModelServiceAsync that provides access to raw HTTP responses for each method.
-
-
Method Summary
Modifier and Type Method Description abstract CompletableFuture<HttpResponseFor<Model>>retrieve(ModelRetrieveParams params, RequestOptions requestOptions)Returns a raw HTTP response for get /models/{model}, but is otherwise the same as ModelServiceAsync.retrieve.abstract CompletableFuture<HttpResponseFor<Model>>retrieve(ModelRetrieveParams params)Returns a raw HTTP response for get /models/{model}, but is otherwise the same as ModelServiceAsync.retrieve.abstract CompletableFuture<HttpResponseFor<ModelListPageAsync>>list(ModelListParams params, RequestOptions requestOptions)Returns a raw HTTP response for get /models, but is otherwise the same as ModelServiceAsync.list.abstract CompletableFuture<HttpResponseFor<ModelListPageAsync>>list(ModelListParams params)Returns a raw HTTP response for get /models, but is otherwise the same as ModelServiceAsync.list.abstract CompletableFuture<HttpResponseFor<ModelListPageAsync>>list()Returns a raw HTTP response for get /models, but is otherwise the same as ModelServiceAsync.list.CompletableFuture<HttpResponseFor<ModelListPageAsync>>list(RequestOptions requestOptions)Returns a raw HTTP response for get /models, but is otherwise the same as ModelServiceAsync.list.abstract CompletableFuture<HttpResponseFor<ModelDeleted>>delete(ModelDeleteParams params, RequestOptions requestOptions)Returns a raw HTTP response for delete /models/{model}, but is otherwise the same as ModelServiceAsync.delete.abstract CompletableFuture<HttpResponseFor<ModelDeleted>>delete(ModelDeleteParams params)Returns a raw HTTP response for delete /models/{model}, but is otherwise the same as ModelServiceAsync.delete.-
-
Method Detail
-
retrieve
abstract CompletableFuture<HttpResponseFor<Model>> retrieve(ModelRetrieveParams params, RequestOptions requestOptions)
Returns a raw HTTP response for
get /models/{model}, but is otherwise the same as ModelServiceAsync.retrieve.
-
retrieve
abstract CompletableFuture<HttpResponseFor<Model>> retrieve(ModelRetrieveParams params)
Returns a raw HTTP response for
get /models/{model}, but is otherwise the same as ModelServiceAsync.retrieve.
-
list
abstract CompletableFuture<HttpResponseFor<ModelListPageAsync>> list(ModelListParams params, RequestOptions requestOptions)
Returns a raw HTTP response for
get /models, but is otherwise the same as ModelServiceAsync.list.
-
list
abstract CompletableFuture<HttpResponseFor<ModelListPageAsync>> list(ModelListParams params)
Returns a raw HTTP response for
get /models, but is otherwise the same as ModelServiceAsync.list.
-
list
abstract CompletableFuture<HttpResponseFor<ModelListPageAsync>> list()
Returns a raw HTTP response for
get /models, but is otherwise the same as ModelServiceAsync.list.
-
list
CompletableFuture<HttpResponseFor<ModelListPageAsync>> list(RequestOptions requestOptions)
Returns a raw HTTP response for
get /models, but is otherwise the same as ModelServiceAsync.list.
-
delete
abstract CompletableFuture<HttpResponseFor<ModelDeleted>> delete(ModelDeleteParams params, RequestOptions requestOptions)
Returns a raw HTTP response for
delete /models/{model}, but is otherwise the same as ModelServiceAsync.delete.
-
delete
abstract CompletableFuture<HttpResponseFor<ModelDeleted>> delete(ModelDeleteParams params)
Returns a raw HTTP response for
delete /models/{model}, but is otherwise the same as ModelServiceAsync.delete.
-
-
-
-