vFW and vDNS support added to azure-plugin
[multicloud/azure.git] / azure / aria / aria-extension-cloudify / src / aria / extensions / aria_extension_tosca / simple_nfv_v1_0 / presenter.py
1 # Licensed to the Apache Software Foundation (ASF) under one or more
2 # contributor license agreements.  See the NOTICE file distributed with
3 # this work for additional information regarding copyright ownership.
4 # The ASF licenses this file to You under the Apache License, Version 2.0
5 # (the "License"); you may not use this file except in compliance with
6 # the License.  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 from aria.utils.collections import FrozenList
17 from aria.utils.caching import cachedmethod
18
19 from ..simple_v1_0 import ToscaSimplePresenter1_0
20
21
22 class ToscaSimpleNfvPresenter1_0(ToscaSimplePresenter1_0): # pylint: disable=invalid-name,abstract-method
23     """
24     ARIA presenter for the `TOSCA Simple Profile for NFV v1.0 csd04 <http://docs.oasis-open.org
25     /tosca/tosca-nfv/v1.0/csd04/tosca-nfv-v1.0-csd04.html>`__.
26
27     Supported ``tosca_definitions_version`` values:
28
29     * ``tosca_simple_profile_for_nfv_1_0``
30     """
31
32     DSL_VERSIONS = ('tosca_simple_profile_for_nfv_1_0',)
33     ALLOWED_IMPORTED_DSL_VERSIONS = ('tosca_simple_yaml_1_0', 'tosca_simple_profile_for_nfv_1_0')
34     SIMPLE_PROFILE_FOR_NFV_LOCATION = 'tosca-simple-nfv-1.0/tosca-simple-nfv-1.0.yaml'
35
36     # Presenter
37
38     @cachedmethod
39     def _get_import_locations(self, context):
40         import_locations = super(ToscaSimpleNfvPresenter1_0, self)._get_import_locations(context)
41         if context.presentation.import_profile:
42             return FrozenList([self.SIMPLE_PROFILE_FOR_NFV_LOCATION] + import_locations)
43         return import_locations