vFW and vDNS support added to azure-plugin
[multicloud/azure.git] / azure / aria / aria-extension-cloudify / src / aria / aria / modeling / __init__.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 """
17 This package provides an API for modeling ARIA's state and serializing it to storage.
18 """
19
20 from collections import namedtuple
21
22 from . import (
23     mixins,
24     types,
25     models,
26     utils,
27     service_template as _service_template_bases,
28     service_instance as _service_instance_bases,
29     service_changes as _service_changes_bases,
30     service_common as _service_common_bases,
31     orchestration as _orchestration_bases
32 )
33
34
35 _ModelBasesCls = namedtuple('ModelBase', 'service_template,'
36                                          'service_instance,'
37                                          'service_changes,'
38                                          'service_common,'
39                                          'orchestration')
40
41 model_bases = _ModelBasesCls(service_template=_service_template_bases,
42                              service_instance=_service_instance_bases,
43                              service_changes=_service_changes_bases,
44                              service_common=_service_common_bases,
45                              orchestration=_orchestration_bases)
46
47
48 __all__ = (
49     'mixins',
50     'types',
51     'models',
52     'model_bases',
53     'utils'
54 )