Package com.datarobot
Interface IStatusClient
-
- All Known Implementing Classes:
StatusClient
public interface IStatusClientTheIStatusClientinterface provides access toStatusrelated endpoints for the AI API
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Statusget(java.lang.String statusId)Get a status object by IDAction<com.google.api.client.http.HttpRequest,com.google.api.client.http.HttpResponse>getHttpMessageTransformer()StatusListlist()A list with status information on allStatuscurrently running for this accountStatusListlist(PagingParams params)A list with status information on allStatuscurrently running for this accountvoidsetHttpMessageTransformer(Action<com.google.api.client.http.HttpRequest,com.google.api.client.http.HttpResponse> httpMessageTransformer)
-
-
-
Method Detail
-
getHttpMessageTransformer
Action<com.google.api.client.http.HttpRequest,com.google.api.client.http.HttpResponse> getHttpMessageTransformer()
-
setHttpMessageTransformer
void setHttpMessageTransformer(Action<com.google.api.client.http.HttpRequest,com.google.api.client.http.HttpResponse> httpMessageTransformer)
-
list
StatusList list() throws ClientException
A list with status information on allStatuscurrently running for this account- Returns:
StatusList- Throws:
ClientException- when 4xx or 5xx response is received from server, or errors in parsing the response.
-
list
StatusList list(PagingParams params) throws ClientException
A list with status information on allStatuscurrently running for this account- Parameters:
params- ThePagingParamsobject for this list- Returns:
StatusList- Throws:
ClientException- when 4xx or 5xx response is received from server, or errors in parsing the response.
-
get
Status get(java.lang.String statusId) throws ClientException
Get a status object by ID- Parameters:
statusId- The ID of theStatus- Returns:
- The queried
Statusobject - Throws:
ClientException- when 4xx or 5xx response is received from server, or errors in parsing the response.
-
-