dcc385e2a377a1133cde971c7a176ba0ef77f8dd
[optf/osdf.git] / apps / nst / models / api / nstSelectionRequest.py
1 # -------------------------------------------------------------------------
2 #   Copyright (c) 2020 Huawei Intellectual Property
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 schematics.types import BaseType, StringType, URLType, IntType
20 from schematics.types.compound import ModelType, ListType, DictType
21
22 from osdf.models.api.common import OSDFModel
23 from osdf.logging.osdf_logging import MH, audit_log
24
25 class RequestInfo(OSDFModel):
26     """Info for northbound request from client such as SO"""
27     transactionId = StringType(required=True)
28     requestId = StringType(required=True)
29     callbackUrl = URLType(required=True)
30     callbackHeader = DictType(BaseType)
31     sourceId = StringType(required=True)
32     timeout = IntType()
33
34
35 class ServiceProfile(OSDFModel):
36     """Information specific to   ServiceProfile """
37    # resourceName = StringType(required=True)
38    # resourceId = StringType(required=True)
39     serviceProfileParameters = DictType(BaseType)
40
41
42
43
44 class NSTSelectionAPI(OSDFModel):
45     """Request for NST selection """
46     requestInfo = ModelType(RequestInfo, required=True)
47     serviceProfile = ModelType(ServiceProfile, required=True)
48