vFW and vDNS support added to azure-plugin
[multicloud/azure.git] / azure / aria / aria-extension-cloudify / src / aria / aria / parser / consumption / __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 Consumption package.
18
19 .. autosummary::
20    :nosignatures:
21
22    aria.parser.consumption.ConsumptionContext
23
24 Consumers
25 ---------
26
27 .. autosummary::
28    :nosignatures:
29
30    aria.parser.consumption.Consumer
31    aria.parser.consumption.ConsumerChain
32    aria.parser.consumption.ConsumerException
33    aria.parser.consumption.Inputs
34    aria.parser.consumption.ServiceTemplate
35    aria.parser.consumption.Types
36    aria.parser.consumption.CoerceServiceInstanceValues
37    aria.parser.consumption.ValidateServiceInstance
38    aria.parser.consumption.SatisfyRequirements
39    aria.parser.consumption.ValidateCapabilities
40    aria.parser.consumption.FindHosts
41    aria.parser.consumption.ConfigureOperations
42    aria.parser.consumption.ServiceInstance
43    aria.parser.consumption.Read
44    aria.parser.consumption.Validate
45 """
46
47 from .exceptions import ConsumerException
48 from .context import ConsumptionContext
49 from .consumer import (
50     Consumer,
51     ConsumerChain
52 )
53 from .presentation import Read
54 from .validation import Validate
55 from .modeling import (
56     ServiceTemplate,
57     Types,
58     ServiceInstance,
59     FindHosts,
60     ValidateServiceInstance,
61     ConfigureOperations,
62     SatisfyRequirements,
63     ValidateCapabilities,
64     CoerceServiceInstanceValues
65 )
66 from .inputs import Inputs
67
68 __all__ = (
69     'ConsumerException',
70     'ConsumptionContext',
71     'Consumer',
72     'ConsumerChain',
73     'Read',
74     'Validate',
75     'ServiceTemplate',
76     'Types',
77     'ServiceInstance',
78     'FindHosts',
79     'ValidateServiceInstance',
80     'ConfigureOperations',
81     'SatisfyRequirements',
82     'ValidateCapabilities',
83     'CoerceServiceInstanceValues'
84 )