I am able to create a new Profile in the Velocloud Orchestrator using the configuration/cloneEnterpriseTemplate
I can also get the specifics of the new Profile using configuration/getConfigurationModules
"vpn": {
"enabled": false,
"edgeToEdge": false,
"edgeToDataCenter": false,
"ref": "deviceSettings:vpn:dataCenter",
"edgeToEdgeHub": {
"enabled": false,
"ref": "deviceSettings:vpn:edgeHub",
"vpnHubs": []
},
I am trying to figure out how to update the vpn.enabled to true & vpn.edgeToEdge to true using configuration/updateConfigurationModule
This is the example body I am trying to populate to do the update:
{
"id":0,
"enterpriseId":0,
"_update":{
"name":"string",
"description":"string",
"version":"string",
"effective":"string"
}
}
Any help, like a change in endpoint or example of how to populate the body to update these attributes would be greatly appreciated.