diff --git a/tools/marvin/marvin/cs_entity_generator.py b/tools/marvin/marvin/cs_entity_generator.py index 4bdd3032095..4e5b2e5f5b0 100644 --- a/tools/marvin/marvin/cs_entity_generator.py +++ b/tools/marvin/marvin/cs_entity_generator.py @@ -110,6 +110,12 @@ def post_transform_adjust(entity): return 'SecurityGroupIngress' elif entity == 'SecurityGroupEgres': return 'SecurityGroupEgress' + #CloudStack denotes VirtualMachine as UserVm + elif entity == 'UserVm': + return 'VirtualMachine' + #CloudStak denotes LoadBalancer as ApplicationLoadBalancer + elif entity == 'ApplicationLoadBalancer': + return 'LoadBalancer' return entity