Interface MiaServiceControllerApi
- All Known Implementing Classes:
MiaServiceController
@Generated(value="org.openapitools.codegen.languages.SpringCodegen",
date="2025-09-12T07:58:33.660440879Z[Etc/UTC]")
@Validated
public interface MiaServiceControllerApi
-
Method Summary
Modifier and TypeMethodDescriptionorg.springframework.http.ResponseEntity<String> GET /rest/dbSize Get DB size.org.springframework.http.ResponseEntity<Boolean> getTimeShifting(@NotNull @Valid UUID projectId, @NotNull @Valid String systemId) GET /rest/timeShifting/check : getTimeShiftingorg.springframework.http.ResponseEntity<Boolean> updateTimeShifting(@NotNull @Valid UUID projectId, @NotNull @Valid UUID systemId, @NotNull @Valid Boolean value) POST /rest/timeShifting/update : updateTimeShifting
-
Method Details
-
dbSize
@RequestMapping(method=GET, value="/rest/dbSize", produces="application/json") org.springframework.http.ResponseEntity<String> dbSize(@NotNull @Valid @RequestParam(value="projectId",required=true) @NotNull @Valid UUID projectId) GET /rest/dbSize Get DB size.- Parameters:
projectId- projectId (required)- Returns:
- OK (status code 200) or Created (status code 201) or Unauthorized (status code 401) or Forbidden (status code 403) or Not Found (status code 404)
-
getTimeShifting
@RequestMapping(method=GET, value="/rest/timeShifting/check", produces="application/json") org.springframework.http.ResponseEntity<Boolean> getTimeShifting(@NotNull @Valid @RequestParam(value="projectId",required=true) @NotNull @Valid UUID projectId, @NotNull @Valid @RequestParam(value="systemId",required=true) @NotNull @Valid String systemId) GET /rest/timeShifting/check : getTimeShifting- Parameters:
projectId- projectId (required)systemId- systemId (required)- Returns:
- OK (status code 200) or Unauthorized (status code 401) or Forbidden (status code 403) or Not Found (status code 404)
-
updateTimeShifting
@RequestMapping(method=POST, value="/rest/timeShifting/update", produces="application/json") org.springframework.http.ResponseEntity<Boolean> updateTimeShifting(@NotNull @Valid @RequestParam(value="projectId",required=true) @NotNull @Valid UUID projectId, @NotNull @Valid @RequestParam(value="systemId",required=true) @NotNull @Valid UUID systemId, @NotNull @Valid @RequestParam(value="value",required=true) @NotNull @Valid Boolean value) POST /rest/timeShifting/update : updateTimeShifting- Parameters:
projectId- projectId (required)systemId- systemId (required)value- value (required)- Returns:
- OK (status code 200) or Created (status code 201) or Unauthorized (status code 401) or Forbidden (status code 403) or Not Found (status code 404)
-