summaryrefslogtreecommitdiffstats
path: root/appc-sequence-generator/appc-sequence-generator-bundle/src/test/resources/input/CheckMandatoryVnfc.json
blob: 0a4f5fce5f8dace0823373269f2e76d145564efd (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
119
120
121
122
123
124
125
126
127
128
129
130
{
"request-info": {
        "action": "Start",
        "action-level": "vnf",
        "action-identifier": {
            "vnf-id": "dbgx0001v"
        },
        "payload": "ABC"
    },
    "inventory-info": {
        "vnf-info": {
            "vnf-id": "abc",
            "vnf-name": "vSCP",
            "vnf-type": "vSCP",
            "vnf-version": "1.0",
            "identity-url": "test-url",
            "vm": [
                {
                    "vserver-id": "be_vserverid1",
                    "vm-id": "vm-id",
                    "vnfc": {
                        "vnfc-type": "BE",
                        "vnfc-name": "BE - Name"
                    }
                },
                {
                    "vserver-id": "fe_vserverid1",
                    "vm-id": "vm-id",
                    "vnfc": {
                        "vnfc-type": "FE",
                        "vnfc-name": "FE - Name"
                    }
                },
                {
                    "vserver-id": "fe_vserverid2",
                    "vm-id": "vm-id",
                    "vnfc": {
                        "vnfc-type": "FE",
                        "vnfc-name": "FE - Name"
                    }
                },
                {
                    "vserver-id": "be_vserverid2",
                    "vm-id": "vm-id",
                    "vnfc": {
                        "vnfc-type": "BE",
                        "vnfc-name": "BE - Name"
                    }
                },
                {
                    "vserver-id": "be_vserverid3",
                    "vm-id": "vm-id",
                    "vnfc": {
                        "vnfc-type": "BE",
                        "vnfc-name": "BE - Name"
                    }
                },
                {
                    "vserver-id": "be_vserverid4",
                    "vm-id": "vm-id",
                    "vnfc": {
                        "vnfc-type": "BE",
                        "vnfc-name": "BE - Name"
                    }
                },
                {
                    "vserver-id": "be_vserverid5",
                    "vm-id": "vm-id",
                    "vnfc": {
                        "vnfc-type": "BE",
                        "vnfc-name": "BE - Name"
                    }
                }
            ]
        }
    },
    "dependency-info": {
        "vnfcs": [
            {
                "vnfc-type": "BE",
                "mandatory": "true",
                "resilience": "Active-Active",
                "parents": [
                    "SMP"
                ]
            },
            {
                "vnfc-type": "FE",
                "mandatory": "true",
                "resilience": "Active-Active",
                "parents": [
                    "BE"
                ]
            },
            {
                "vnfc-type": "SMP",
                "mandatory": "true",
                "resilience": "Active-Passive",
                "parents": []
            }
        ]
    },
    "tunable-parameters": {
        "strategy": "FORWARD",
        "wait-time": "120",
        "retry-count": "5"
    },
    "capabilities": {
        "vnf": [
            "Stop",
            "Start",
            "StartApplication",
            "StopApplication"
        ],
        "vf-module": [
            "Stop",
            "Start"
        ],
        "vm": [
            "Stop",
            "Start"
        ],
        "vnfc": [
            "StopApplication",
            "StartApplication",
            "HealthCheck"
        ]
    }
}