Interface RemoteSupportBundleInterface
public interface RemoteSupportBundleInterface
-
Method Summary
Modifier and TypeMethodDescriptionretrofit2.Call<Void>retrofit2.Call<Void>deleteBundle(String filename) retrofit2.Call<okhttp3.ResponseBody>downloadBundle(String filename) retrofit2.Call<okhttp3.ResponseBody>getLogFile(String id) retrofit2.Call<SupportBundleNodeManifest>retrofit2.Call<List<BundleFile>>
-
Method Details
-
getNodeManifest
-
buildSupportBundle
-
getLogFile
@GET("system/debug/support/logfile/{id}") @Streaming @Headers("Accept: */*") retrofit2.Call<okhttp3.ResponseBody> getLogFile(@Path("id") String id) -
listBundles
-
downloadBundle
@GET("system/debug/support/bundle/download/{filename}") @Streaming @Headers("Accept: application/octet-stream") retrofit2.Call<okhttp3.ResponseBody> downloadBundle(@Path("filename") String filename) -
deleteBundle
-