aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-be/src/main/resources/scripts/sdcBePy/tosca/models/normativeTypesList.py
blob: 12a4491b96bc15f922d5f41e5ba4928d7d55176a (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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
from sdcBePy.tosca.models.normativeTypeCandidate import NormativeTypeCandidate


def get_normative_type_candidate_list(base_file_location):
    return [
        get_normative(base_file_location),
        get_heat(base_file_location),
        get_nfv(base_file_location),
        get_nfv_2_7_1(base_file_location),
        get_nfv_3_3_1(base_file_location),
        get_nfv_4_1_1(base_file_location),
        get_onap(base_file_location),
        get_sol(base_file_location)
    ]


def get_normative(base_file_location="/"):
    return NormativeTypeCandidate(base_file_location + "normative-types/",
                                  ["root",
                                   "compute",
                                   "softwareComponent",
                                   "webServer",
                                   "webApplication",
                                   "DBMS",
                                   "database",
                                   "objectStorage",
                                   "blockStorage",
                                   "containerRuntime",
                                   "containerApplication",
                                   "loadBalancer",
                                   "port", "network"])


def get_heat(base_file_location="/"):
    return NormativeTypeCandidate(base_file_location + "heat-types/",
                                  ["globalNetwork",
                                   "globalPort",
                                   "globalCompute",
                                   "volume",
                                   "cinderVolume",
                                   "contrailVirtualNetwork",
                                   "neutronNet",
                                   "neutronPort",
                                   "novaServer",
                                   "extVl",
                                   "internalVl",
                                   "extCp",
                                   "vl",
                                   "eline",
                                   "abstractSubstitute",
                                   "Generic_VFC",
                                   "Generic_VF",
                                   "Generic_CR",
                                   "Generic_PNF",
                                   "Generic_Service",
                                   "contrailNetworkRules",
                                   "contrailPort",
                                   "portMirroring",
                                   "serviceProxy",
                                   "contrailV2NetworkRules",
                                   "contrailV2VirtualNetwork",
                                   "securityRules",
                                   "contrailAbstractSubstitute",
                                   "contrailCompute",
                                   "contrailV2VirtualMachineInterface",
                                   "subInterface",
                                   "contrailV2VLANSubInterface",
                                   "multiFlavorVFC",
                                   "vnfConfiguration",
                                   "extCp2",
                                   "extNeutronCP",
                                   "extContrailCP",
                                   "portMirroringByPolicy",
                                   "forwardingPath",
                                   "configuration",
                                   "VRFObject",
                                   "extVirtualMachineInterfaceCP",
                                   "VLANNetworkReceptor",
                                   "VRFEntry",
                                   "subInterfaceV2",
                                   "contrailV2VLANSubInterfaceV2",
                                   "fabricConfiguration"])


def get_nfv(base_file_location="/"):
    return NormativeTypeCandidate(base_file_location + "nfv-types/",
                                  ["underlayVpn",
                                   "overlayTunnel",
                                   "genericNeutronNet",
                                   "allottedResource",
                                   "extImageFile",
                                   "extLocalStorage",
                                   "extZteCP",
                                   "extZteVDU",
                                   "extZteVL",
                                   "NS",
                                   "NSD",
                                   "NsVirtualLink",
                                   "VDU",
                                   "vduCompute",
                                   "Cp",
                                   "vduVirtualStorage",
                                   "vduVirtualBlockStorage",
                                   "vduVirtualFileStorage",
                                   "vduVirtualObjectStorage",
                                   "vduVirtualStorage",
                                   "vnfVirtualLink",
                                   "vnfExtCp",
                                   "vduCp",
                                   "VNF",
                                   "accessConnectivity",
                                   "OntPnf",
                                   "PonUni",
                                   "OltNni",
                                   "OntNni"])
                                   
def get_nfv_2_7_1(base_file_location="/"):
    return NormativeTypeCandidate(base_file_location + "nfv-types/2.7.1/",
                                  ["vduCompute",
                                   "vduVirtualFileStorage",
                                   "vnfExtCp",
                                   "vduCp",
                                   "vipCp"])

def get_nfv_3_3_1(base_file_location="/"):
    return NormativeTypeCandidate(base_file_location + "nfv-types/3.3.1/",
                                  ["vduVirtualBlockStorage",
                                   "VNF"])

def get_nfv_4_1_1(base_file_location="/"):
    return NormativeTypeCandidate(base_file_location + "nfv-types/4.1.1/",
                                  ["VNF",
                                   "osContainer",
                                   "osContainerGroup",
                                   "virtualCp"])

def get_onap(base_file_location="/"):
    return NormativeTypeCandidate(base_file_location + "onap-types/",
                                  # Add desired type names to the list
                                  [])


def get_sol(base_file_location="/"):
    return NormativeTypeCandidate(base_file_location + "onap-types/",
                                  # Add desired type names to the list
                                  [])


def get_heat1707(base_file_location="/"):
    return NormativeTypeCandidate(base_file_location + "heat-types/",
                                  ["volume",
                                   "cinderVolume",
                                   "extVl",
                                   "extCp",
                                   "Generic_VFC",
                                   "Generic_VF",
                                   "Generic_PNF",
                                   "Generic_Service",
                                   "globalPort",
                                   "globalNetwork",
                                   "contrailV2VirtualMachineInterface",
                                   "contrailV2VLANSubInterface",
                                   "contrailPort",
                                   "contrailV2VirtualNetwork",
                                   "contrailVirtualNetwork",
                                   "neutronNet",
                                   "neutronPort",
                                   "multiFlavorVFC",
                                   "vnfConfiguration"])


def get_heat1702_3537(base_file_location="/"):
    return NormativeTypeCandidate(base_file_location + "heat-types/",
                                  ["contrailPort",
                                   "contrailV2VirtualMachineInterface",
                                   "neutronPort",
                                   "contrailCompute",
                                   "novaServer",
                                   "contrailV2VirtualNetwork",
                                   "contrailVirtualNetwork",
                                   "neutronNet"])


def get_heat_version(base_file_location="/"):
    return NormativeTypeCandidate(base_file_location + "heat_types/",
                                  ["contrailV2VirtualMachineInterface",
                                   "neutronPort"])