fetchResource

@GET(value = "api/v1/workspaces/{workspace}/resources/{type}/{name}")
abstract fun fetchResource(    @Path(value = "workspace") workspace: String,     @Path(value = "type") type: String,     @Path(value = "name") name: String): Call<Map<String, Any>>