Merge "Increment optf-osdf release version to 2.0.1"
[optf/osdf.git] / apps / slice_selection / models / api / nsi_selection_response.py
1 # -------------------------------------------------------------------------
2 #   Copyright (C) 2020 Wipro Limited.
3 #
4 #   Licensed under the Apache License, Version 2.0 (the "License");
5 #   you may not use this file except in compliance with the License.
6 #   You may obtain a copy of the License at
7 #
8 #       http://www.apache.org/licenses/LICENSE-2.0
9 #
10 #   Unless required by applicable law or agreed to in writing, software
11 #   distributed under the License is distributed on an "AS IS" BASIS,
12 #   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 #   See the License for the specific language governing permissions and
14 #   limitations under the License.
15 #
16 # -------------------------------------------------------------------------
17 #
18
19 from osdf.models.api.common import OSDFModel
20 from schematics.types import BaseType, StringType
21 from schematics.types.compound import ModelType, ListType, DictType
22
23
24 # TODO: update osdf.models
25 class SharedNSISolution(OSDFModel):
26     invariantUUID = StringType(required=True)
27     UUID = StringType(required=True)
28     NSIName = StringType(required=True)
29     NSIId = StringType(required=True)
30     matchLevel = StringType(required=True)
31
32
33 class NSSTInfo(OSDFModel):
34     invariantUUID = StringType(required=True)
35     UUID = StringType(required=True)
36     NSSTName = StringType(required=True)
37
38
39 class NSSIInfo(OSDFModel):
40     NSSIName = StringType(required=True)
41     NSSIId = StringType(required=True)
42     matchLevel = StringType(required=True)
43
44
45 class NSSISolution(OSDFModel):
46     sliceProfile = DictType(BaseType)
47     NSSTInfo = ModelType(NSSTInfo, required=True)
48     NSSISolution = ModelType(NSSIInfo, required=True)
49
50
51 class NSTInfo(OSDFModel):
52     invariantUUID = StringType(required=True)
53     UUID = StringType(required=True)
54     NSTName = StringType(required=True)
55
56
57 class NewNSISolution(OSDFModel):
58     matchLevel = StringType(required=True)
59     NSTInfo = ModelType(NSTInfo, required=True)
60     NSSISolutions = ListType(ModelType(NSSISolution))
61
62
63 class Solution(OSDFModel):
64     sharedNSISolutions = ListType(ModelType(SharedNSISolution))
65     newNSISolutions = ListType(ModelType(NewNSISolution))
66
67
68 class NSISelectionResponse(OSDFModel):
69     transactionId = StringType(required=True)
70     requestId = StringType(required=True)
71     requestStatus = StringType(required=True)
72     statusMessage = StringType()
73     solutions = ModelType(Solution, required=True)