RPC calculate-diff This RPC creates a diff between actual and intended UniConfig topology nodes.
RPC input contains a list of UniConfig nodes for calculating the diff. RPC output contains a list of statements representing the diff. It also matches all input nodes.
If the RPC is called with an empty list of target nodes, a diff is calculated for each node modified in the UniConfig transaction. If a node fails for any reason, the entire RPC fails.
RPC calculate-diff
RPC Examples
Successful Example RPC input contains two target nodes and output contains a list of statements representing the diff.
RPC Request
curl --location --request POST 'http://localhost:8181/rests/operations/uniconfig-manager:calculate-diff' \
--header 'Accept: application/json' \
--header 'Content-Type: application/json' \
--data-raw '{
"input": {
"target-nodes": {
"node": ["R1","R2"]
}
}
}'
RPC Response, Status: 200
{
"output" : {
"node-results" : {
"node-result" : [
{
"node-id" : "R1" ,
"topology" : "uniconfig" ,
"updated-data" : [
{
"path" : "network-topology:network-topology/topology=uniconfig/node=R1/frinx-uniconfig-topology:configuration/frinx-openconfig-interfaces:interfaces/interface=GigabitEthernet0%2F0%2F0%2F0/config" ,
"data-actual" : "{\n \"frinx-openconfig-interfaces:config\": {\n \"type\": \"iana-if-type:ethernetCsmacd\",\n \"enabled\": true,\n \"name\": \"GigabitEthernet0/0/0/0\"\n }\n}" ,
"data-intended" : "{\n \"frinx-openconfig-interfaces:config\": {\n \"type\": \"iana-if-type:ethernetCsmacd\",\n \"enabled\": false,\n \"name\": \"GigabitEthernet0/0/0/0dfhdfghd\"\n }\n}"
}
]
} ,
{
"node-id" : "R2" ,
"topology" : "unistore" ,
"updated-data" : [
{
"path" : "network-topology:network-topology/topology=unistore/node=R2/frinx-uniconfig-topology:configuration/frinx-openconfig-interfaces:interfaces/interface=GigabitEthernet0%2F0%2F0%2F0/config" ,
"data-actual" : "{\n \"frinx-openconfig-interfaces:config\": {\n \"type\": \"iana-if-type:ethernetCsmacd\",\n \"enabled\": false,\n \"name\": \"GigabitEthernet0/0/0/0\"\n }\n}" ,
"data-intended" : "{\n \"frinx-openconfig-interfaces:config\": {\n \"type\": \"iana-if-type:ethernetCsmacd\",\n \"enabled\": false,\n \"name\": \"GigabitEthernet0/0/0/0dfhdfghd\"\n }\n}"
}
]
}
]
}
}
}
Successful Example If RPC input does not specify any target nodes, calculate-diff is invoked for all nodes touched by the transaction.
RPC Request
curl --location --request POST 'http://localhost:8181/rests/operations/uniconfig-manager:calculate-diff' \
--header 'Accept: application/json' \
--header 'Content-Type: application/json' \
--data-raw '{
"input": {
"target-nodes": {
}
}
}'
or
RPC Request
curl --location --request POST 'http://localhost:8181/rests/operations/uniconfig-manager:calculate-diff' \
--header 'Accept: application/json' \
--header 'Content-Type: application/json' \
--data-raw '{
"input": {
}
}'
RPC Response, Status: 200
{
"output" : {
"node-results" : {
"node-result" : [
{
"node-id" : "R1" ,
"topology" : "uniconfig" ,
"deleted-data" : [
{
"path" : "/network-topology:network-topology/topology=uniconfig/node=R1/frinx-uniconfig-topology:configuration/frinx-openconfig-interfaces:interfaces/interface=GigabitEthernet0%2F0%2F0%2F0/config" ,
"data" : "{\n \"frinx-openconfig-interfaces:config\": {\n \"type\": \"iana-if-type:ethernetCsmacd\",\n \"enabled\": false,\n \"name\": \"GigabitEthernet0/0/0/0\"\n }\n}"
}
]
} ,
{
"node-id" : "R2" ,
"topology" : "uniconfig" ,
"deleted-data" : [
{
"path" : "/network-topology:network-topology/topology=uniconfig/node=R2/frinx-uniconfig-topology:configuration/frinx-openconfig-interfaces:interfaces/interface=GigabitEthernet0%2F0%2F0%2F0/config" ,
"data" : "{\n \"frinx-openconfig-interfaces:config\": {\n \"type\": \"iana-if-type:ethernetCsmacd\",\n \"enabled\": false,\n \"name\": \"GigabitEthernet0/0/0/0\"\n }\n}"
}
]
} ,
{
"node-id" : "R3" ,
"topology" : "unistore" ,
"reordered-lists" : [
{
"path" : "/network-topology:network-topology/topology=unistore/node=R3/frinx-uniconfig-topology:configuration/routing-policy:routing-policy/policy-definitions/policy-definition=route_policy_1/statements/statement" ,
"actual-list-keys" : "[\"name=1\", \"name=3\", \"name=2\"]" ,
"intended-list-keys" : "[\"name=1\", \"name=2\", \"name=3\"]"
}
]
}
]
}
}
}
Successful Example RPC input contains a target node and there is no diff.
RPC Request
curl --location --request POST 'http://localhost:8181/rests/operations/uniconfig-manager:calculate-diff' \
--header 'Accept: application/json' \
--header 'Content-Type: application/json' \
--data-raw '{
"input": {
"target-nodes": {
"node": ["R1"]
}
}
}'
RPC Response, Status: 200
{
"output" : {
"node-results" : {
"node-result" : [
{
"node-id" : "R1" ,
"topology-id" : "uniconfig"
}
]
}
}
}
Failed Example RPC input contains a target node that is not installed. RPC output describes the result of the calculate-diff RPC.
RPC Request
curl --location --request POST 'http://localhost:8181/rests/operations/uniconfig-manager:calculate-diff' \
--header 'Accept: application/json' \
--header 'Content-Type: application/json' \
--data-raw '{
"input": {
"target-nodes": {
"node": ["R1"]
}
}
}'
RPC Response, Status: 404
{
"errors" : {
"error" : [
{
"error-type" : "application" ,
"error-tag" : "data-missing" ,
"error-message" : "Node 'R1' hasn't been installed in Uniconfig database" ,
"error-info" : {
"node-id" : "R1" ,
"topology-id" : "uniconfig"
}
}
]
}
}
Failed Example RPC input contains two target nodes, one of which (R2) is not installed. RPC output describes the result of the calculate-diff RPC.
RPC Request
curl --location --request POST 'http://localhost:8181/rests/operations/uniconfig-manager:calculate-diff' \
--header 'Accept: application/json' \
--header 'Content-Type: application/json' \
--data-raw '{
"input": {
"target-nodes": {
"node": ["R1","R2"]
}
}
}'
RPC Response, Status: 404
{
"errors" : {
"error" : [
{
"error-type" : "application" ,
"error-tag" : "data-missing" ,
"error-message" : "Node is not installed." ,
"error-info" : {
"node-id" : "R2" ,
"topology-id" : "uniconfig"
}
}
]
}
}
Failed Example If RPC input does not contain target nodes and no nodes have been touched, the request results in an error.
RPC Request
curl --location --request POST 'http://localhost:8181/rests/operations/uniconfig-manager:calculate-diff' \
--header 'Accept: application/json' \
--header 'Content-Type: application/json' \
--data-raw '{
"input": {
"target-nodes": {
}
}
}'
or
RPC Request
curl --location --request POST 'http://localhost:8181/rests/operations/uniconfig-manager:calculate-diff' \
--header 'Accept: application/json' \
--header 'Content-Type: application/json' \
--data-raw '{
"input": {
}
}'
RPC Response, Status: 400
{
"errors" : {
"error" : [
{
"error-type" : "application" ,
"error-tag" : "missing-element" ,
"error-message" : "There aren't any nodes specified in input RPC and there aren't any touched nodes."
}
]
}
}