ASL script is not working as expected.
delete() function in ASL scripts does not remove all components of the selected instances
./sm_adapter -s <DomainName> <FullPathToScript>START() {
.. eol
}
do {
foreach Obj (getInstances("UnitaryComputerSystem")) { // Gets all the UCS instances in the topology
UCSObj = object(Obj);
print(UCSObj->Name);
UCSObj->remove();
}
print("Done dumping all the UCS Instances");
}