Class FileSystemResource
- java.lang.Object
-
- lumis.service.portalmanagement.filesystem.FileSystemResource
-
@Path("/lumis/service/portalmanagement/filesystem") public class FileSystemResource extends java.lang.Object
Provides REST operations for the file system service- Since:
- 17.1.0
-
-
Constructor Summary
Constructors Constructor Description FileSystemResource()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description javax.ws.rs.core.Response
downloadLogsZip(java.lang.String serviceInstanceId, java.lang.String requestBody)
Handles the request to download log files from all servers in the cluster as a ZIP file.
-
-
-
Method Detail
-
downloadLogsZip
@POST @Path("/{si}/download") @Consumes("application/json") @Produces("application/octet-stream") public javax.ws.rs.core.Response downloadLogsZip(@PathParam("si") java.lang.String serviceInstanceId, java.lang.String requestBody) throws PortalException
Handles the request to download log files from all servers in the cluster as a ZIP file.- Parameters:
serviceInstanceId
- the ID of the service instance to retrieve logs fromrequestBody
- the JSON body containing a "paths" array with paths to log files- Returns:
- a response containing the ZIP file with the logs or an appropriate error status
- Throws:
PortalException
- if a portal-related error occurs during processing- Since:
- 17.1.0
-
-