aboutsummaryrefslogtreecommitdiffstats
path: root/src/onapsdk/so/templates/instantiate_pnf_macro_so_pnf.json.j2
blob: 27b904112aebd061258a904bc13cbabc5373f8ac (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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
    "requestDetails": {
        "requestInfo": {
            "instanceName": "{{ service_instance.instance_name }}",
            "source": "VID",
            "suppressRollback": false,
            "requestorId": "demo",
            "productFamilyId": "1234"
        },
        "modelInfo": {
            "modelType": "pnf",
            "modelInvariantId": "{{ pnf.model_invariant_id }}",
            "modelVersionId": "{{ pnf.model_version_id }}",
            "modelName": "{{ pnf.model_name }}",
            "modelVersion": "{{ pnf.model_version }}",
            "modelCustomizationId": "{{ pnf.model_customization_id }}",
            "modelInstanceName": "{{ pnf.name }}"
        },
        "platform": {
            "platformName": "{{ platform }}"
        },
        "lineOfBusiness": {
            "lineOfBusinessName": "{{ line_of_business }}"
        },
        "subscriberInfo": {
            "globalSubscriberId": "{{ service_instance.service_subscription.customer.global_customer_id }}"
        },
        "requestParameters": {
            {% block subscriptionServiceType %}
            "subscriptionServiceType": "{{ service.name }}",
            {% endblock %}
            "userParams": [
                {
                    "Homing_Solution": "none"
                },
                {
                    "service": {
                        "instanceParams": [],
                        "resources": {
                            {% block pnfs %}
                            "pnfs": [
                                {
                                    "modelInfo": {
                                        "modelName": "{{ pnf.model_name }}",
                                        "modelVersionId": "{{ pnf.model_version_id }}",
                                        "modelInvariantId": "{{ pnf.model_invariant_id }}",
                                        "modelVersion": "{{ pnf.model_version }}",
                                        "modelCustomizationId": "{{ pnf.model_customization_id }}",
                                        "modelInstanceName": "{{ pnf.name }}"
                                    },
                                    "platform": {
                                        "platformName": "{{ platform }}"
                                    },
                                    "lineOfBusiness": {
                                        "lineOfBusinessName": "{{ line_of_business }}"
                                    },
                                    {% if so_pnf.registration_parameters %}
                                    "pnfRegistrationFields": {
                                        "modelNumber": "{{ so_pnf.registration_parameters.model_number }}",
                                        "oamV4IpAddress": "{{ so_pnf.registration_parameters.oam_v4_ip_address }}",
                                        "oamV6IpAddress": "{{ so_pnf.registration_parameters.oam_v6_ip_address }}",
                                        "serialNumber": "{{ so_pnf.registration_parameters.serial_number }}",
                                        "softwareVersion": "{{ so_pnf.registration_parameters.software_version }}",
                                        "unitType": "{{ so_pnf.registration_parameters.unit_type }}",
                                        "vendorName": "{{ so_pnf.registration_parameters.vendor_name }}"
                                    },
                                    {% endif %}
                                    "productFamilyId": "1234",
                                    "instanceName": "{{ instance_name }}",
                                    "instanceParams": [
                                        {
                                            {% for key, value in so_pnf.parameters.items() %}
                                            "{{ key }}": "{{ value }}"{% if not loop.last %},{% endif %}
                                            {% endfor %}
                                        }
                                    ]
                                }
                            ]
                            {% endblock %}
                        },
                        "modelInfo": {
                            "modelType": "pnf",
                            "modelInvariantId": "{{ pnf.model_invariant_id }}",
                            "modelVersionId": "{{ pnf.model_version_id }}",
                            "modelName": "{{ pnf.model_name }}",
                            "modelVersion": "{{ pnf.model_version }}",
                            "modelCustomizationId": "{{ pnf.model_customization_id }}",
                            "modelCustomizationName": "{{ pnf.name }}"
                        }
                    }
                }
            ],
            "aLaCarte": false
        },
        "project": {
            "projectName": "{{ project }}"
        },
        "owningEntity": {
            "owningEntityId": "{{ owning_entity.owning_entity_id }}",
            "owningEntityName": "{{ owning_entity.name }}"
        },
        "relatedInstanceList": [
            {
                "relatedInstance": {
                    "instanceId": "{{ service_instance.instance_id }}",
                    "modelInfo": {
                        "modelType": "service",
                        "modelInvariantId": "{{ service.unique_uuid }}",
                        "modelVersionId": "{{ service.identifier }}",
                        "modelName": "{{ service.name }}",
                        "modelVersion": "1.0"
                    }
                }
            }
        ]
    },
    "serviceInstanceId": "{{ service_instance.instance_id }}"
}