public interface Cloud
| Modifier and Type | Method and Description |
|---|---|
retrofit2.Call<CloudV3> |
head() |
retrofit2.Call<CloudV3> |
head(boolean skip_ticks,
java.lang.String _exclude_fields)
Determine the status of the nodes in the H2O cloud.
|
retrofit2.Call<CloudV3> |
status() |
retrofit2.Call<CloudV3> |
status(boolean skip_ticks,
java.lang.String _exclude_fields)
Determine the status of the nodes in the H2O cloud.
|
@GET(value="/3/Cloud") retrofit2.Call<CloudV3> status(@Field(value="skip_ticks") boolean skip_ticks, @Field(value="_exclude_fields") java.lang.String _exclude_fields)
skip_ticks - skip_ticks_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/Cloud") retrofit2.Call<CloudV3> status()
@HEAD(value="/3/Cloud") retrofit2.Call<CloudV3> head(@Field(value="skip_ticks") boolean skip_ticks, @Field(value="_exclude_fields") java.lang.String _exclude_fields)
skip_ticks - skip_ticks_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"@HEAD(value="/3/Cloud") retrofit2.Call<CloudV3> head()