Interface RemoteSupportBundleInterface


public interface RemoteSupportBundleInterface
  • Method Details

    • getNodeManifest

      @GET("system/debug/support/manifest") retrofit2.Call<SupportBundleNodeManifest> getNodeManifest()
    • buildSupportBundle

      @POST("system/debug/support/bundle/build") retrofit2.Call<Void> buildSupportBundle()
    • getLogFile

      @GET("system/debug/support/logfile/{id}") @Streaming @Headers("Accept: */*") retrofit2.Call<okhttp3.ResponseBody> getLogFile(@Path("id") String id)
    • listBundles

      @GET("system/debug/support/bundle/list") retrofit2.Call<List<BundleFile>> 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

      @DELETE("system/debug/support/bundle/{filename}") retrofit2.Call<Void> deleteBundle(@Path("filename") String filename)