Interface EnvApi
public interface EnvApi
-
Method Summary
Modifier and TypeMethodDescriptionorg.springframework.http.ResponseEntity<V1Env>envcreate(V1CreateEnvRequest body) org.springframework.http.ResponseEntity<V1EmptyResponse>org.springframework.http.ResponseEntity<V1ListEnvResponse>envlist()org.springframework.http.ResponseEntity<V1Env>envupdate(String envName, V1CreateEnvRequest body)
-
Method Details
-
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)
-