/** * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech) (5.3.1). * https://openapi-generator.tech * Do not edit the class manually. */ package org.openslx.bwlp.sat.api.handler; import io.swagger.annotations.*; import org.springframework.http.HttpStatus; import org.springframework.http.MediaType; import org.springframework.http.ResponseEntity; import org.springframework.validation.annotation.Validated; import org.springframework.web.bind.annotation.*; import org.springframework.web.context.request.NativeWebRequest; import org.springframework.web.multipart.MultipartFile; import javax.validation.Valid; import javax.validation.constraints.*; import java.util.List; import java.util.Map; import java.util.Optional; @javax.annotation.Generated(value = "org.openapitools.codegen.languages.SpringCodegen", date = "2021-12-23T15:12:42.264617368+01:00[Europe/Berlin]") @Validated @Api(value = "bwlp", description = "the bwlp API") public interface BwlpApi { default Optional getRequest() { return Optional.empty(); } /** * GET /bwlp/container/clusterimages : List all bwLehrpool container images * * @return Successful operation (status code 200) * or Failed to retrieve container images (status code 500) */ @ApiOperation(value = "List all bwLehrpool container images", nickname = "bwlpGetClusterImagesList", notes = "", tags={ "container", }) @ApiResponses(value = { @ApiResponse(code = 200, message = "Successful operation"), @ApiResponse(code = 500, message = "Failed to retrieve container images") }) @RequestMapping( method = RequestMethod.GET, value = "/bwlp/container/clusterimages", produces = { "application/json" } ) default ResponseEntity bwlpGetClusterImagesList() { return new ResponseEntity<>(HttpStatus.NOT_IMPLEMENTED); } }