public interface EnvApi
  • Method Details

    • envlist

      @GetMapping("/api/v1/envs") org.springframework.http.ResponseEntity<V1ListEnvResponse> envlist()
    • envcreate

      @PostMapping("/api/v1/envs") org.springframework.http.ResponseEntity<V1Env> envcreate(@RequestBody V1CreateEnvRequest body)
    • envupdate

      @PutMapping("/api/v1/envs/{envName}") org.springframework.http.ResponseEntity<V1Env> envupdate(@PathVariable("envName") String envName, @RequestBody V1CreateEnvRequest body)
    • envdelete

      @DeleteMapping("/api/v1/envs/{envName}") org.springframework.http.ResponseEntity<V1EmptyResponse> envdelete(@PathVariable("envName") String envName)