public interface ImportFiles
| Modifier and Type | Method and Description |
|---|---|
retrofit2.Call<ImportFilesV3> |
importFiles(java.lang.String path) |
retrofit2.Call<ImportFilesV3> |
importFiles(java.lang.String path,
java.lang.String pattern,
java.lang.String _exclude_fields)
Import raw data files into a single-column H2O Frame.
|
@FormUrlEncoded @POST(value="/3/ImportFiles") retrofit2.Call<ImportFilesV3> importFiles(@Field(value="path") java.lang.String path, @Field(value="pattern") java.lang.String pattern, @Field(value="_exclude_fields") java.lang.String _exclude_fields)
path - pathpattern - pattern_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/ImportFiles") retrofit2.Call<ImportFilesV3> importFiles(@Field(value="path") java.lang.String path)