@Generated(value="org.openapitools.codegen.languages.SpringCodegen", date="2025-08-08T09:59:25.156Z[Etc/UTC]") @Validated public interface EnvironmentControllerApi
| Modifier and Type | Method and Description |
|---|---|
org.springframework.http.ResponseEntity<EnvironmentDto> |
copy(UUID environmentId,
@Valid EnvironmentDtoDto environmentDtoDto)
POST /api/environments/{environmentId}/copy : copy
|
org.springframework.http.ResponseEntity<EnvironmentDto> |
createEnvironment(@Valid EnvironmentDtoDto environmentDtoDto)
POST /api/environments : createEnvironment
|
org.springframework.http.ResponseEntity<SystemDto> |
createSystem(UUID environmentId,
@Valid CreateSystemDtoDto createSystemDtoDto)
POST /api/environments/{environmentId} : createSystem
|
org.springframework.http.ResponseEntity<Void> |
deleteEnvironment(UUID environmentId)
DELETE /api/environments/{environmentId} : delete
|
org.springframework.http.ResponseEntity<List<SystemVersionResponseDto>> |
detailedUpdateVersion(UUID environmentId)
GET /api/v2/environments/{environmentId}/version : detailedUpdateVersion
|
org.springframework.http.ResponseEntity<List<EnvironmentDto>> |
findBySearchRequest(@Valid BaseSearchRequestDto baseSearchRequestDto)
POST /api/environments/search : findBySearchRequest
|
org.springframework.http.ResponseEntity<List<EnvironmentFullVer1ViewDto>> |
getAll(@Valid Boolean full)
GET /api/environments : getAll
|
org.springframework.http.ResponseEntity<EnvironmentFullVer1ViewDto> |
getEnvironment(UUID environmentId,
@Valid Boolean full)
GET /api/environments/{environmentId} : getEnvironment
|
org.springframework.http.ResponseEntity<String> |
getEnvironmentNameById(UUID environmentId)
GET /api/environments/{environmentId}/name : getName
|
org.springframework.http.ResponseEntity<List<SystemFullVer1ViewDto>> |
getEnvironmentSystems(UUID environmentId,
@Valid String systemType,
@Valid Boolean full)
GET /api/environments/{environmentId}/systems : getSystems
|
org.springframework.http.ResponseEntity<EnvironmentFullVer1ViewDto> |
getEnvironmentTsg3(UUID environmentId,
@Valid Boolean full)
GET /api/environments/{environmentId}/systems/update-versions : Returns all systems with updated versions under environment
|
org.springframework.http.ResponseEntity<String> |
getPublicHtmlVersion(List<UUID> environmentIds)
GET /api/public/v1/environments/{environmentIds}/systems/htmlVersions : getPublicHtmlVersion
|
org.springframework.http.ResponseEntity<List<SystemNameViewDto>> |
getSystemsShort(UUID environmentId)
GET /api/environments/{environmentId}/systems/short : getSystemsShort
|
org.springframework.http.ResponseEntity<List<SystemFullVer2ViewDto>> |
getSystemV2(UUID environmentId,
@Valid String systemType,
@Valid Boolean full)
GET /api/v2/environments/{environmentId}/systems : getSystemV2
|
org.springframework.http.ResponseEntity<EnvironmentFullVer1ViewDto> |
temporary(UUID environmentId,
@Valid Boolean full,
@Valid List<SystemTemporaryDtoDto> systemTemporaryDtoDto)
POST /api/environments/{environmentId}/temporary : temporary
|
org.springframework.http.ResponseEntity<Void> |
updateEnvironment(@Valid EnvironmentDtoDto environmentDtoDto)
PUT /api/environments : update
|
org.springframework.http.ResponseEntity<List<SystemDto>> |
updateVersion(UUID environmentId)
GET /api/environments/{environmentId}/version : updateVersion
|
@RequestMapping(method=POST,
value="/api/environments/{environmentId}/copy",
produces="application/json",
consumes="application/json")
org.springframework.http.ResponseEntity<EnvironmentDto> copy(@PathVariable(value="environmentId")
UUID environmentId,
@Valid @RequestBody(required=false)
@Valid EnvironmentDtoDto environmentDtoDto)
environmentId - environmentId (required)environmentDtoDto - (optional)@RequestMapping(method=POST,
value="/api/environments",
produces="application/json",
consumes="application/json")
org.springframework.http.ResponseEntity<EnvironmentDto> createEnvironment(@Valid @RequestBody(required=false)
@Valid EnvironmentDtoDto environmentDtoDto)
environmentDtoDto - (optional)@RequestMapping(method=POST,
value="/api/environments/{environmentId}",
produces="application/json",
consumes="application/json")
org.springframework.http.ResponseEntity<SystemDto> createSystem(@PathVariable(value="environmentId")
UUID environmentId,
@Valid @RequestBody(required=false)
@Valid CreateSystemDtoDto createSystemDtoDto)
environmentId - environmentId (required)createSystemDtoDto - (optional)@RequestMapping(method=DELETE,
value="/api/environments/{environmentId}")
org.springframework.http.ResponseEntity<Void> deleteEnvironment(@PathVariable(value="environmentId")
UUID environmentId)
environmentId - environmentId (required)@RequestMapping(method=GET,
value="/api/v2/environments/{environmentId}/version",
produces="application/json")
org.springframework.http.ResponseEntity<List<SystemVersionResponseDto>> detailedUpdateVersion(@PathVariable(value="environmentId")
UUID environmentId)
environmentId - environmentId (required)@RequestMapping(method=POST,
value="/api/environments/search",
produces="application/json",
consumes="application/json")
org.springframework.http.ResponseEntity<List<EnvironmentDto>> findBySearchRequest(@Valid @RequestBody
@Valid BaseSearchRequestDto baseSearchRequestDto)
baseSearchRequestDto - searchRequest (required)@RequestMapping(method=GET,
value="/api/environments",
produces="application/json")
org.springframework.http.ResponseEntity<List<EnvironmentFullVer1ViewDto>> getAll(@Valid @RequestParam(value="full",required=false)
@Valid Boolean full)
full - full (optional)@RequestMapping(method=GET,
value="/api/environments/{environmentId}",
produces="application/json")
org.springframework.http.ResponseEntity<EnvironmentFullVer1ViewDto> getEnvironment(@PathVariable(value="environmentId")
UUID environmentId,
@Valid @RequestParam(value="full",required=false)
@Valid Boolean full)
environmentId - environmentId (required)full - full (optional)@RequestMapping(method=GET,
value="/api/environments/{environmentId}/name",
produces="text/plain")
org.springframework.http.ResponseEntity<String> getEnvironmentNameById(@PathVariable(value="environmentId")
UUID environmentId)
environmentId - environmentId (required)@RequestMapping(method=GET,
value="/api/environments/{environmentId}/systems",
produces="application/json")
org.springframework.http.ResponseEntity<List<SystemFullVer1ViewDto>> getEnvironmentSystems(@PathVariable(value="environmentId")
UUID environmentId,
@Valid @RequestParam(value="system_type",required=false)
@Valid String systemType,
@Valid @RequestParam(value="full",required=false)
@Valid Boolean full)
environmentId - environmentId (required)systemType - system_type (optional)full - full (optional)@RequestMapping(method=GET,
value="/api/environments/{environmentId}/systems/update-versions",
produces="application/json")
org.springframework.http.ResponseEntity<EnvironmentFullVer1ViewDto> getEnvironmentTsg3(@PathVariable(value="environmentId")
UUID environmentId,
@Valid @RequestParam(value="full",required=false)
@Valid Boolean full)
environmentId - Id of the environment. Cannot be empty. (required)full - full (optional)@RequestMapping(method=GET,
value="/api/public/v1/environments/{environmentIds}/systems/htmlVersions",
produces="text/plain")
org.springframework.http.ResponseEntity<String> getPublicHtmlVersion(@PathVariable(value="environmentIds")
List<UUID> environmentIds)
environmentIds - environmentIds (required)@RequestMapping(method=GET,
value="/api/v2/environments/{environmentId}/systems",
produces="application/json")
org.springframework.http.ResponseEntity<List<SystemFullVer2ViewDto>> getSystemV2(@PathVariable(value="environmentId")
UUID environmentId,
@Valid @RequestParam(value="system_type",required=false)
@Valid String systemType,
@Valid @RequestParam(value="full",required=false)
@Valid Boolean full)
environmentId - environmentId (required)systemType - system_type (optional)full - full (optional)@RequestMapping(method=GET,
value="/api/environments/{environmentId}/systems/short",
produces="application/json")
org.springframework.http.ResponseEntity<List<SystemNameViewDto>> getSystemsShort(@PathVariable(value="environmentId")
UUID environmentId)
environmentId - environmentId (required)@RequestMapping(method=POST,
value="/api/environments/{environmentId}/temporary",
produces="application/json",
consumes="application/json")
org.springframework.http.ResponseEntity<EnvironmentFullVer1ViewDto> temporary(@PathVariable(value="environmentId")
UUID environmentId,
@Valid @RequestParam(value="full",required=false)
@Valid Boolean full,
@Valid @RequestBody(required=false)
@Valid List<SystemTemporaryDtoDto> systemTemporaryDtoDto)
environmentId - environmentId (required)full - full (optional)systemTemporaryDtoDto - (optional)@RequestMapping(method=PUT,
value="/api/environments",
consumes="application/json")
org.springframework.http.ResponseEntity<Void> updateEnvironment(@Valid @RequestBody(required=false)
@Valid EnvironmentDtoDto environmentDtoDto)
environmentDtoDto - (optional)@RequestMapping(method=GET,
value="/api/environments/{environmentId}/version",
produces="application/json")
org.springframework.http.ResponseEntity<List<SystemDto>> updateVersion(@PathVariable(value="environmentId")
UUID environmentId)
environmentId - environmentId (required)Copyright © 2025. All rights reserved.