SecureString type failsSecureString property in the UI without declaring it in the scripting boxAria Automation Orchestrator 8.x, 8.18.1
VCF 5.x, 5.2.1
VCF Automation 9.x
string, number, boolean, Date) or structured arrays/key-value mappings (e.g. Array/string, Properties or Array/Properties) as referenced in Using VMware Aria Automation Orchestrator actions in the custom form designer in Automation Service Broker.SecureString` and `CompositeType` are complex objects and are calculated by the platform, not the script. The platform does the intermediary work to translate plain objects from the script to their desired end, such as encryption, to pass to the next workflow step.CompositeType(InputName:string, InputValue:SecureString):CustomTypeName)var obj = new Properties(); // or: var obj = {};obj.InputName = currentInput["name"];obj.InputValue = passwordString; // plain string; typed as SecureString by the declarationreturn obj;