Greetings,
I've been trying to write a workflow to retrieve information about Network Profile using CRUD operation, following the guide below
I used StaticIPv4Address as the entity set name
var model = "ManagementModelEntities.svc";
var entitySetName = "StaticIPv4Address ";
var property = new Properties();
property.put("VirtualMachineID",null);
var entities = vCACEntityManager.readModelEntitiesByCustomFilter(vcacHost.id, model, entitySetName, property, null);
But when I ran the workflow, it returned an error:
[2017-03-15 10:00:54.317] [E] Error in (Workflow:Clone_CRUD_Eg / Get Properties (item1)#4) EdmEntitySet StaticIPv4Address is not found
I checked for the table named "StaticIPv4Address" in IaaS database and found it. So I thought it might be the model name that caused the problem. But I don't know how to correct it, since this CRUD operation thing confuses me