1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
[
// This section converts the json from network discovery micro-service
// to org.onap.pomba.audit.common.model.VM
{
"operation": "shift",
"spec": {
"resources": {
"*": {
"id": "uuid",
"name": "name",
"dataQuality": "dataQuality",
"attributeList": {
"*": {
// filter the Network Discovery attributes that we want to keep, to a temporary list:
"name": {
"inMaintenance": {
"@2": "tempList[]"
},
"hostname": {
"@2": "tempList[]"
},
"imageId": {
"@2": "tempList[]"
}
}
}
}
}
}
}
}
,
{
// Convert the attribute names to common model names.
"operation": "shift",
"spec": {
"tempList": {
"*": {
"name" : {
"inMaintenance": {
"#lockedBoolean": "attributeList[#4].name"
},
"hostname": {
"#hostName": "attributeList[#4].name"
},
"imageId": {
"#imageId": "attributeList[#4].name"
}
},
"*" : {
"@" : "attributeList[#3].&"
}
}
},
"*": {
"@" : "&"
}
}
}
]
|