blob: a26b82ff27ea0eb0a11815bc4e5aa30856824230 (
plain)
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
|
{
"name" : "nf-role",
"tags" : "nf-role",
"updated-by" : "Singal, Kapil <ks220y@att.com>",
"property" : {
"description" : "vnf/nf-role",
"type" : "string"
},
"sources" : {
"default": {
"type": "source-default",
"properties": {
}
},
"processor-db" : {
"type" : "source-processor-db",
"properties" : {
"type" : "SQL",
"query" : "select sdnctl.VF_MODEL.nf_role as vf_model_role from sdnctl.VF_MODEL where sdnctl.VF_MODEL.customization_uuid=:vnfmodelcustomizationuuid",
"input-key-mapping" : {
"vnfmodelcustomizationuuid" : "vnf-model-customization-uuid"
},
"output-key-mapping" : {
"nf-role" : "vf_model_role"
},
"key-dependencies" : [ "vnf-model-customization-uuid" ]
}
}
}
}
|