You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
publicStringdelete(@PathVariable@ApiParam(value = "The deployment id", required = true) Stringid) {
70
+
log.info("Delete deployment with id {}", id);
71
+
returndeploymentService.delete(id);
72
+
}
62
73
63
74
@GetMapping("/deployment/application/{id}")
64
75
@ResponseStatus(HttpStatus.OK)
65
76
@ApiOperation(value = "List all deployments for an application", notes = "List all deployments filtered by application id", response = Deployment.class, responseContainer = "List")
66
77
publicList<Deployment> listForApp(@PathVariable@ApiParam(value = "The application id", required = true) Stringid){
78
+
log.info("List deployments for application with id {}", id);
@ApiOperation(value = "List all deployments for a hierarchy", notes = "List all deployments in a hierarchy starting at node with application id", response = Deployment.class, responseContainer = "List")
73
85
publicList<Deployment> listForHierarchy(@PathVariable@ApiParam(value = "The application id", required = true) Stringid){
86
+
log.info("List all deployments for a team hierarchy starting at application with id {}", id);
@ApiOperation(value = "List all deployments for an application and date combination", notes = "List all deployments filtered by application id and date", response = Deployment.class, responseContainer = "List")
80
93
publicList<Deployment> listForAppAndDate(@PathVariable@ApiParam(value = "The application id", required = true) Stringid, @PathVariable@DateTimeFormat(iso = DateTimeFormat.ISO.DATE) @ApiParam(value = "The deployment date in ISO Date format YYYY-MM-dd", required = true) LocalDatedate){
@ApiOperation(value = "Calculate deployment frequency for an application for the date specified", response = DeploymentFrequency.class)
97
113
publicDeploymentFrequencycalculateDeployFreq(@PathVariable@ApiParam(value = "The application id", required = true) Stringid, @PathVariable@DateTimeFormat(iso = DateTimeFormat.ISO.DATE) @ApiParam(value = "The deployment date in ISO Date format YYYY-MM-dd", required = true) LocalDatedate){
@ApiOperation(value = "Calculate lead time for an application for the date specified", response = LeadTime.class)
114
133
publicLeadTimecalculateLeadTime(@PathVariable@ApiParam(value = "The application id", required = true) Stringid, @PathVariable@DateTimeFormat(iso = DateTimeFormat.ISO.DATE) @ApiParam(value = "The deployment date in ISO Date format YYYY-MM-dd", required = true) LocalDatedate){
0 commit comments