public interface Jobs
| Modifier and Type | Method and Description |
|---|---|
retrofit2.Call<JobsV3> |
cancel(java.lang.String job_id) |
retrofit2.Call<JobsV3> |
cancel(java.lang.String job_id,
java.lang.String _exclude_fields)
Cancel a running job.
|
retrofit2.Call<JobsV3> |
fetch(java.lang.String job_id) |
retrofit2.Call<JobsV3> |
fetch(java.lang.String job_id,
java.lang.String _exclude_fields)
Get the status of the given H2O Job (long-running action).
|
retrofit2.Call<JobsV3> |
list() |
retrofit2.Call<JobsV3> |
list(java.lang.String job_id,
java.lang.String _exclude_fields)
Get a list of all the H2O Jobs (long-running actions).
|
@GET(value="/3/Jobs") retrofit2.Call<JobsV3> list(@Field(value="job_id") java.lang.String job_id, @Field(value="_exclude_fields") java.lang.String _exclude_fields)
job_id - Optional Job identifier_exclude_fields - Comma-separated list of JSON field paths to exclude from the result, used like:
"/3/Frames?_exclude_fields=frames/frame_id/URL,__meta"@GET(value="/3/Jobs") retrofit2.Call<JobsV3> list()
@GET(value="/3/Jobs/{job_id}")
retrofit2.Call<JobsV3> fetch(@Path(value="job_id")
java.lang.String job_id,
@Field(value="_exclude_fields")
java.lang.String _exclude_fields)
job_id - Optional Job identifier_exclude_fields - Comma-separated list of JSON field paths to exclude from the result, used like:
"/3/Frames?_exclude_fields=frames/frame_id/URL,__meta"@GET(value="/3/Jobs/{job_id}")
retrofit2.Call<JobsV3> fetch(@Path(value="job_id")
java.lang.String job_id)
@FormUrlEncoded
@POST(value="/3/Jobs/{job_id}/cancel")
retrofit2.Call<JobsV3> cancel(@Path(value="job_id")
java.lang.String job_id,
@Field(value="_exclude_fields")
java.lang.String _exclude_fields)
job_id - Optional Job identifier_exclude_fields - Comma-separated list of JSON field paths to exclude from the result, used like:
"/3/Frames?_exclude_fields=frames/frame_id/URL,__meta"@FormUrlEncoded
@POST(value="/3/Jobs/{job_id}/cancel")
retrofit2.Call<JobsV3> cancel(@Path(value="job_id")
java.lang.String job_id)