Interface MiaCacheControllerApi
- All Known Implementing Classes:
MiaCacheController
@Generated(value="org.openapitools.codegen.languages.SpringCodegen",
date="2025-09-12T06:34:47.068225004Z[Etc/UTC]")
@Validated
public interface MiaCacheControllerApi
-
Method Summary
Modifier and TypeMethodDescriptionorg.springframework.http.ResponseEntity<Boolean> resetConfigurationCache(@NotNull @Valid UUID projectId) POST /rest/resetConfigurationCache : Reset mia configuration cacheorg.springframework.http.ResponseEntity<Boolean> resetDbCache(@NotNull @Valid UUID projectId, @NotNull @Valid String env) POST /rest/flow/resetCache : Reset DB Cache for Projectorg.springframework.http.ResponseEntity<Boolean> resetEnvironmentCaches(@NotNull @Valid UUID projectId) POST /rest/resetEnvCaches : Reset mia environment Cachesorg.springframework.http.ResponseEntity<Boolean> resetPoolCache(@NotNull @Valid UUID projectId) POST /rest/resetPoolCache : Reset mia poolcache
-
Method Details
-
resetConfigurationCache
@RequestMapping(method=POST, value="/rest/resetConfigurationCache", produces="application/json") org.springframework.http.ResponseEntity<Boolean> resetConfigurationCache(@NotNull @Valid @RequestParam(value="projectId",required=true) @NotNull @Valid UUID projectId) POST /rest/resetConfigurationCache : Reset mia configuration cache- 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)
-
resetDbCache
@RequestMapping(method=POST, value="/rest/flow/resetCache", produces="application/json") org.springframework.http.ResponseEntity<Boolean> resetDbCache(@NotNull @Valid @RequestParam(value="projectId",required=true) @NotNull @Valid UUID projectId, @NotNull @Valid @RequestParam(value="env",required=true) @NotNull @Valid String env) POST /rest/flow/resetCache : Reset DB Cache for Project- Parameters:
projectId- projectId (required)env- environmentName (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)
-
resetEnvironmentCaches
@RequestMapping(method=POST, value="/rest/resetEnvCaches", produces="application/json") org.springframework.http.ResponseEntity<Boolean> resetEnvironmentCaches(@NotNull @Valid @RequestParam(value="projectId",required=true) @NotNull @Valid UUID projectId) POST /rest/resetEnvCaches : Reset mia environment Caches- 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)
-
resetPoolCache
@RequestMapping(method=POST, value="/rest/resetPoolCache", produces="application/json") org.springframework.http.ResponseEntity<Boolean> resetPoolCache(@NotNull @Valid @RequestParam(value="projectId",required=true) @NotNull @Valid UUID projectId) POST /rest/resetPoolCache : Reset mia poolcache- 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)
-