diff --git a/Orchestrator/Actions/com.virtuallypotato.utility/vcLogout.js b/Orchestrator/Actions/com.virtuallypotato.utility/vcLogout.js new file mode 100644 index 0000000..f1ad331 --- /dev/null +++ b/Orchestrator/Actions/com.virtuallypotato.utility/vcLogout.js @@ -0,0 +1,12 @@ +/* JavaScript: vcLogout action + Logs out of a connected vCenter REST endpoint. + Inputs: token (string), vCenterName (string) + Return type: string +*/ +var host = System.getModule("com.virtuallypotato.utility").getConfigValue("vPotato", "Endpoints", vCenterName).host; +System.debug("Closing vCenter API session: " + token); +var request = host.createRequest("DELETE", "/api/session"); +request.setHeader("Content-Type", "application/json"); +request.setHeader("vmware-api-session-id", token); +var result = request.execute().statusCode; +System.debug("Result status code: " + result);