@Path(value="/internal/reports")
@Consumes(value="application/xml")
public interface InternalReportProxy
| Modifier and Type | Method and Description |
|---|---|
Report |
deploymentsForEnvironment(java.lang.String environment,
com.xebialabs.deployit.core.api.resteasy.Date date,
java.lang.String acceptedContentType) |
Report |
deploymentsKeyIndicator(com.xebialabs.deployit.core.api.resteasy.Date begin,
com.xebialabs.deployit.core.api.resteasy.Date end,
java.lang.String acceptedContentType,
java.lang.String filterType,
java.util.List<com.xebialabs.deployit.engine.api.dto.ConfigurationItemId> configurationItemIds) |
Report |
deploymentsKeyIndicatorAggregatedByFilterType(java.lang.String filterType,
com.xebialabs.deployit.core.api.resteasy.Date begin,
com.xebialabs.deployit.core.api.resteasy.Date end,
java.lang.String acceptedContentType,
java.util.List<com.xebialabs.deployit.engine.api.dto.ConfigurationItemId> configurationItemIds) |
Report |
deploymentsStateBreakdown(java.lang.String filterType,
com.xebialabs.deployit.core.api.resteasy.Date begin,
com.xebialabs.deployit.core.api.resteasy.Date end,
java.lang.String acceptedContentType,
java.util.List<com.xebialabs.deployit.engine.api.dto.ConfigurationItemId> configurationItemIds) |
java.lang.String |
downloadCloudTasksReport(com.xebialabs.deployit.core.api.resteasy.Date begin,
com.xebialabs.deployit.core.api.resteasy.Date end,
java.lang.String acceptedContentType,
java.lang.String filterType,
java.util.List<com.xebialabs.deployit.engine.api.dto.ConfigurationItemId> configurationItemIds) |
java.lang.String |
downloadControlTasksReport(com.xebialabs.deployit.core.api.resteasy.Date begin,
com.xebialabs.deployit.core.api.resteasy.Date end) |
java.lang.String |
downloadDeploymentsForEnvironment(java.lang.String environment,
com.xebialabs.deployit.core.api.resteasy.Date date,
java.lang.String acceptedContentType) |
java.lang.String |
downloadDeploymentsKeyIndicator(java.lang.String filterType,
com.xebialabs.deployit.core.api.resteasy.Date begin,
com.xebialabs.deployit.core.api.resteasy.Date end,
java.lang.String acceptedContentType,
java.util.List<com.xebialabs.deployit.engine.api.dto.ConfigurationItemId> configurationItemIds) |
java.lang.String |
downloadDeploymentsKeyIndicatorAggregatedByFilterType(java.lang.String filterType,
com.xebialabs.deployit.core.api.resteasy.Date begin,
com.xebialabs.deployit.core.api.resteasy.Date end,
java.lang.String acceptedContentType,
java.util.List<com.xebialabs.deployit.engine.api.dto.ConfigurationItemId> configurationItemIds) |
java.lang.String |
downloadDeploymentsStateBreakdown(java.lang.String filterType,
com.xebialabs.deployit.core.api.resteasy.Date begin,
com.xebialabs.deployit.core.api.resteasy.Date end,
java.lang.String acceptedContentType,
java.util.List<com.xebialabs.deployit.engine.api.dto.ConfigurationItemId> configurationItemIds) |
java.lang.String |
downloadTaskReport(com.xebialabs.deployit.core.api.resteasy.Date begin,
com.xebialabs.deployit.core.api.resteasy.Date end,
java.lang.String acceptedContentType,
java.lang.String filterType,
java.util.List<com.xebialabs.deployit.engine.api.dto.ConfigurationItemId> configurationItemIds) |
Report |
getCloudTasksReport(com.xebialabs.deployit.core.api.resteasy.Date begin,
com.xebialabs.deployit.core.api.resteasy.Date end,
java.lang.String acceptedContentType,
java.lang.String filterType,
java.util.List<com.xebialabs.deployit.engine.api.dto.ConfigurationItemId> configurationItemIds) |
Report |
getControlTasksReport(com.xebialabs.deployit.core.api.resteasy.Date begin,
com.xebialabs.deployit.core.api.resteasy.Date end) |
javax.ws.rs.core.Response |
getDashboardWidgetReport(java.lang.String widgetType,
com.xebialabs.deployit.core.api.resteasy.Date begin,
com.xebialabs.deployit.core.api.resteasy.Date end) |
com.xebialabs.deployit.engine.api.execution.TaskWithSteps |
getTask(java.lang.String taskId)
Deprecated.
|
Report |
getTaskReport(com.xebialabs.deployit.core.api.resteasy.Date begin,
com.xebialabs.deployit.core.api.resteasy.Date end,
java.lang.String acceptedContentType,
java.lang.String filterType,
java.util.List<com.xebialabs.deployit.engine.api.dto.ConfigurationItemId> configurationItemIds) |
com.xebialabs.deployit.engine.api.execution.TaskWithBlock |
getTaskWithBlock(java.lang.String taskId) |
java.util.List<com.xebialabs.deployit.engine.api.dto.ConfigurationItemId> |
listCloudEnvironmentTemplates() |
java.util.List<com.xebialabs.deployit.engine.api.dto.ConfigurationItemId> |
listEnvironments() |
@GET @Path(value="deployments") @Produces(value="application/xml") Report deploymentsForEnvironment(@QueryParam(value="parent") java.lang.String environment, @QueryParam(value="date") com.xebialabs.deployit.core.api.resteasy.Date date, @HeaderParam(value="Accept") java.lang.String acceptedContentType)
@GET
@Path(value="download/deployments")
@Produces(value="application/xml")
java.lang.String downloadDeploymentsForEnvironment(@QueryParam(value="parent")
java.lang.String environment,
@QueryParam(value="date")
com.xebialabs.deployit.core.api.resteasy.Date date,
@HeaderParam(value="Accept")
java.lang.String acceptedContentType)
@Deprecated
@GET
@Path(value="task/{taskid}")
@Produces(value="application/xml")
com.xebialabs.deployit.engine.api.execution.TaskWithSteps getTask(@PathParam(value="taskid")
java.lang.String taskId)
taskId - the ID of the task@GET
@Path(value="taskblock/{taskid}")
@Produces(value="application/xml")
com.xebialabs.deployit.engine.api.execution.TaskWithBlock getTaskWithBlock(@PathParam(value="taskid")
java.lang.String taskId)
@POST @Path(value="tasks") @Produces(value="application/xml") Report getTaskReport(@QueryParam(value="begin") com.xebialabs.deployit.core.api.resteasy.Date begin, @QueryParam(value="end") com.xebialabs.deployit.core.api.resteasy.Date end, @HeaderParam(value="Accept") java.lang.String acceptedContentType, @QueryParam(value="filterType") java.lang.String filterType, java.util.List<com.xebialabs.deployit.engine.api.dto.ConfigurationItemId> configurationItemIds)
@POST
@Path(value="download/tasks")
@Produces(value="application/xml")
java.lang.String downloadTaskReport(@QueryParam(value="begin")
com.xebialabs.deployit.core.api.resteasy.Date begin,
@QueryParam(value="end")
com.xebialabs.deployit.core.api.resteasy.Date end,
@HeaderParam(value="Accept")
java.lang.String acceptedContentType,
@QueryParam(value="filterType")
java.lang.String filterType,
java.util.List<com.xebialabs.deployit.engine.api.dto.ConfigurationItemId> configurationItemIds)
@POST @Path(value="cloudtasks") @Produces(value="application/xml") Report getCloudTasksReport(@QueryParam(value="begin") com.xebialabs.deployit.core.api.resteasy.Date begin, @QueryParam(value="end") com.xebialabs.deployit.core.api.resteasy.Date end, @HeaderParam(value="Accept") java.lang.String acceptedContentType, @QueryParam(value="filterType") java.lang.String filterType, java.util.List<com.xebialabs.deployit.engine.api.dto.ConfigurationItemId> configurationItemIds)
@POST
@Path(value="download/cloudtasks")
@Produces(value="application/xml")
java.lang.String downloadCloudTasksReport(@QueryParam(value="begin")
com.xebialabs.deployit.core.api.resteasy.Date begin,
@QueryParam(value="end")
com.xebialabs.deployit.core.api.resteasy.Date end,
@HeaderParam(value="Accept")
java.lang.String acceptedContentType,
@QueryParam(value="filterType")
java.lang.String filterType,
java.util.List<com.xebialabs.deployit.engine.api.dto.ConfigurationItemId> configurationItemIds)
@GET @Path(value="cloudenvironmenttemplates") @Produces(value="application/xml") java.util.List<com.xebialabs.deployit.engine.api.dto.ConfigurationItemId> listCloudEnvironmentTemplates()
@POST @Path(value="deploymentsstatebreakdown") @Produces(value="application/xml") Report deploymentsStateBreakdown(@QueryParam(value="filterType") java.lang.String filterType, @QueryParam(value="begin") com.xebialabs.deployit.core.api.resteasy.Date begin, @QueryParam(value="end") com.xebialabs.deployit.core.api.resteasy.Date end, @HeaderParam(value="Accept") java.lang.String acceptedContentType, java.util.List<com.xebialabs.deployit.engine.api.dto.ConfigurationItemId> configurationItemIds)
@POST
@Path(value="download/deploymentsstatebreakdown")
@Produces(value="application/xml")
java.lang.String downloadDeploymentsStateBreakdown(@QueryParam(value="filterType")
java.lang.String filterType,
@QueryParam(value="begin")
com.xebialabs.deployit.core.api.resteasy.Date begin,
@QueryParam(value="end")
com.xebialabs.deployit.core.api.resteasy.Date end,
@HeaderParam(value="Accept")
java.lang.String acceptedContentType,
java.util.List<com.xebialabs.deployit.engine.api.dto.ConfigurationItemId> configurationItemIds)
@POST @Path(value="deploymentskeyindicator") @Produces(value="application/xml") Report deploymentsKeyIndicator(@QueryParam(value="begin") com.xebialabs.deployit.core.api.resteasy.Date begin, @QueryParam(value="end") com.xebialabs.deployit.core.api.resteasy.Date end, @HeaderParam(value="Accept") java.lang.String acceptedContentType, @QueryParam(value="filterType") java.lang.String filterType, java.util.List<com.xebialabs.deployit.engine.api.dto.ConfigurationItemId> configurationItemIds)
@POST
@Path(value="download/deploymentskeyindicator")
@Produces(value="application/xml")
java.lang.String downloadDeploymentsKeyIndicator(@QueryParam(value="filterType")
java.lang.String filterType,
@QueryParam(value="begin")
com.xebialabs.deployit.core.api.resteasy.Date begin,
@QueryParam(value="end")
com.xebialabs.deployit.core.api.resteasy.Date end,
@HeaderParam(value="Accept")
java.lang.String acceptedContentType,
java.util.List<com.xebialabs.deployit.engine.api.dto.ConfigurationItemId> configurationItemIds)
@GET @Path(value="controltasks") @Produces(value="application/xml") Report getControlTasksReport(@QueryParam(value="begin") com.xebialabs.deployit.core.api.resteasy.Date begin, @QueryParam(value="end") com.xebialabs.deployit.core.api.resteasy.Date end)
@GET
@Path(value="download/controltasks")
@Produces(value="application/xml")
java.lang.String downloadControlTasksReport(@QueryParam(value="begin")
com.xebialabs.deployit.core.api.resteasy.Date begin,
@QueryParam(value="end")
com.xebialabs.deployit.core.api.resteasy.Date end)
@POST @Path(value="deploymentskeyindicatoraggregatedbyfiltertype") @Produces(value="application/xml") Report deploymentsKeyIndicatorAggregatedByFilterType(@QueryParam(value="filterType") java.lang.String filterType, @QueryParam(value="begin") com.xebialabs.deployit.core.api.resteasy.Date begin, @QueryParam(value="end") com.xebialabs.deployit.core.api.resteasy.Date end, @HeaderParam(value="Accept") java.lang.String acceptedContentType, java.util.List<com.xebialabs.deployit.engine.api.dto.ConfigurationItemId> configurationItemIds)
@POST
@Path(value="download/deploymentskeyindicatoraggregatedbyfiltertype")
@Produces(value="application/xml")
java.lang.String downloadDeploymentsKeyIndicatorAggregatedByFilterType(@QueryParam(value="filterType")
java.lang.String filterType,
@QueryParam(value="begin")
com.xebialabs.deployit.core.api.resteasy.Date begin,
@QueryParam(value="end")
com.xebialabs.deployit.core.api.resteasy.Date end,
@HeaderParam(value="Accept")
java.lang.String acceptedContentType,
java.util.List<com.xebialabs.deployit.engine.api.dto.ConfigurationItemId> configurationItemIds)
@GET
@Path(value="widgetdata")
@Produces(value="application/xml")
javax.ws.rs.core.Response getDashboardWidgetReport(@QueryParam(value="widgetType")
java.lang.String widgetType,
@QueryParam(value="begin")
com.xebialabs.deployit.core.api.resteasy.Date begin,
@QueryParam(value="end")
com.xebialabs.deployit.core.api.resteasy.Date end)
@GET @Path(value="environments") @Produces(value="application/xml") java.util.List<com.xebialabs.deployit.engine.api.dto.ConfigurationItemId> listEnvironments()