aboutsummaryrefslogtreecommitdiffstats
path: root/src/onapsdk/so/templates/modify_pnf.json.j2
blob: 898e549eb5ebae25d2ab91e88b90523706dd0442 (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
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
    "requestDetails": {
        "modelInfo": {
            "modelInvariantId": "{{ service.unique_uuid }}",
            "modelType": "service",
            "modelName": "{{ service.name }}",
            "modelVersion": "1.0",
            "modelVersionId": "{{ service.identifier }}",
            "modelUuid": "{{ service.identifier }}"
        },
        "requestInfo": {
            "productFamilyId": "5G",
            "source": "VID",
            "instanceName": "{{ service_instance.instance_name }}",
            "suppressRollback": false,
            "requestorId": "NBI"
        },
        "subscriberInfo": {
            "globalSubscriberId": "{{ service_instance.service_subscription.customer.global_customer_id }}"
        },
        "requestParameters": {
            "subscriptionServiceType": "{{ service.name }}",
            "userParams": [
                {
                    "service": {
                        "modelInfo": {
                            "modelVersionId": "{{ service.identifier }}",
                            "modelName": "{{ service.name }}",
                            "modelType": "service"
                        },
                        "instanceName": "{{ service_instance.instance_name }}",
                        "instanceParams": [],
                        "resources": {
                            {% block pnfs %}
                            {% if service.pnfs %}
                            "pnfs": [
                                {% for pnf in service.pnfs  %}
                                {
                                    "modelInfo": {
                                    "modelType": "pnf",
                                    "modelInvariantId": "{{ pnf.model_invariant_id }}",
                                    "modelVersionId": "{{ pnf.model_version_id }}",
                                    "modelName": "{{ service.name }}",
                                    "modelVersion": "1.0",
                                    "modelCustomizationId": "{{ pnf.model_customization_id }}",
                                    "modelCustomizationName": "{{ pnf.name }}"
                                },
                                    "platform": {
                                        "platformName": "{{ platform_name }}"
                                    },
                                    "lineOfBusiness": {
                                        "lineOfBusinessName": "{{ line_of_business }}"
                                    },
                                    "pnfRegistrationFields": {
                                        "modelNumber": "Simulated Device Melacon",
                                        "oamV4IpAddress": "10.42.6.245",
                                        "oamV6IpAddress": "0:0:0:0:0:ffff:a0a:011",
                                        "serialNumber": "ORAN_SIM-172.30.1.6-400600927-Simulated Device Melacon",
                                        "softwareVersion": "2.3.5",
                                        "unitType": "ntsim_oran",
                                        "vendorName": "Melacon"
                                    },
                                    "productFamilyId": "5G",
                                    "instanceParams": [
                                        {
                                           "text": "test-pnf-level"
                                        }
                                    ],
                                    "instanceName": "{{ service_instance.instance_name }}",
                                    "processingPriority": 1
                                }
                                {% endfor %}
                            ]
                            {% endif %}
                            {% endblock %}
                        }
                    }
                },
                {
                    "Homing_Solution": "none"
                }
            ],
            "aLaCarte": false,
            "usePreload": false
        },
        "project": {
            "projectName": "{{ project }}"
        },
        "owningEntity": {
            "owningEntityId": "{{ owning_entity.owning_entity_id }}",
            "owningEntityName": "{{ owning_entity.name }}"
        }
    }
}