Class 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
    • 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.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • FileSystemResource

        public FileSystemResource()
    • 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 from
        requestBody - 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