org.cloudfoundry.multiapps.controller.api.OperationsApiService Maven / Gradle / Ivy
package org.cloudfoundry.multiapps.controller.api;
import java.util.List;
import javax.servlet.http.HttpServletRequest;
import org.cloudfoundry.multiapps.controller.api.model.Log;
import org.cloudfoundry.multiapps.controller.api.model.Operation;
import org.springframework.http.ResponseEntity;
public interface OperationsApiService {
ResponseEntity> getOperationActions(String spaceGuid, String operationId);
ResponseEntity executeOperationAction(HttpServletRequest request, String spaceGuid, String operationId, String actionId);
ResponseEntity> getOperations(String spaceGuid, String mtaId, List states, Integer last);
ResponseEntity getOperation(String spaceGuid, String operationId, String embed);
ResponseEntity> getOperationLogs(String spaceGuid, String operationId);
ResponseEntity getOperationLogContent(String spaceGuid, String operationId, String logId);
ResponseEntity startOperation(HttpServletRequest request, String spaceGuid, Operation operation);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy