Add API layer for NSSI selection
[optf/osdf.git] / apps / slice_selection / models / api / nssi_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 StringType
21 from schematics.types.compound import ModelType, ListType
22
23
24 # TODO: update osdf.models
25 class SharedNSSISolution(OSDFModel):
26     """Represents the shared NSSI Solution object"""
27     invariantUUID = StringType(required=True)
28     UUID = StringType(required=True)
29     NSSIName = StringType(required=True)
30     NSSIId = StringType(required=True)
31     matchLevel = StringType(required=True)
32
33
34 class NSSISelectionResponse(OSDFModel):
35     """Response sent to NSSMF(SO)"""
36     transactionId = StringType(required=True)
37     requestId = StringType(required=True)
38     requestStatus = StringType(required=True)
39     solutions = ListType(ModelType(SharedNSSISolution), required=True)
40     statusMessage = StringType()