Class SecuredVariableController
java.lang.Object
org.qubership.integration.platform.variables.management.rest.v1.controller.SecuredVariableController
@RestController
@RequestMapping("/v1/secured-variables")
@CrossOrigin(origins="*")
public class SecuredVariableController
extends Object
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionaddVariables(Map<String, String> variables) org.springframework.http.ResponseEntity<Void> deleteVariables(Set<String> variablesNames) importVariables(org.springframework.web.multipart.MultipartFile file) org.springframework.http.ResponseEntity<StringResponse> updateVariable(String securedVariableName, String value)
-
Constructor Details
-
SecuredVariableController
-
-
Method Details
-
getVariables
-
addVariables
-
updateVariable
@PatchMapping("/{securedVariableName}") public org.springframework.http.ResponseEntity<StringResponse> updateVariable(@PathVariable String securedVariableName, @RequestBody(required=false) String value) -
deleteVariables
-
importVariables
-