fuel-web/nailgun/nailgun/db/sqlalchemy/models/__init__.py

84 lines
3.4 KiB
Python

# Copyright 2013 Mirantis, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
from nailgun.db.sqlalchemy.models.action_logs import ActionLog
from nailgun.db.sqlalchemy.models.oswl import OpenStackWorkloadStats
from nailgun.db.sqlalchemy.models.base import CapacityLog
from nailgun.db.sqlalchemy.models.deployment_graph import \
DeploymentGraph
from nailgun.db.sqlalchemy.models.deployment_graph import \
DeploymentGraphTask
from nailgun.db.sqlalchemy.models.deployment_graph import \
ReleaseDeploymentGraph
from nailgun.db.sqlalchemy.models.deployment_graph import \
PluginDeploymentGraph
from nailgun.db.sqlalchemy.models.deployment_graph import \
ClusterDeploymentGraph
from nailgun.db.sqlalchemy.models.cluster import Attributes
from nailgun.db.sqlalchemy.models.cluster import Cluster
from nailgun.db.sqlalchemy.models.cluster import ClusterChanges
from nailgun.db.sqlalchemy.models.release import Release
from nailgun.extensions.network_manager.models.network import NetworkGroup
from nailgun.extensions.network_manager.models.network import IPAddr
from nailgun.extensions.network_manager.models.network import IPAddrRange
from nailgun.extensions.network_manager.models.network import \
NetworkNICAssignment
from nailgun.extensions.network_manager.models.network import \
NetworkBondAssignment
from nailgun.extensions.network_manager.models.network import \
NodeBondInterface
from nailgun.extensions.network_manager.models.network import \
NodeNICInterface
from nailgun.extensions.network_manager.models import network
from nailgun.db.sqlalchemy.models.node import Node
from nailgun.db.sqlalchemy.models.node import NodeGroup
from nailgun.extensions.network_manager.models.network_config import \
NetworkingConfig
from nailgun.extensions.network_manager.models.network_config import \
NeutronConfig
from nailgun.extensions.network_manager.models.network_config import \
NovaNetworkConfig
from nailgun.db.sqlalchemy.models.notification import Notification
from nailgun.db.sqlalchemy.models.cluster_plugin_link import ClusterPluginLink
from nailgun.db.sqlalchemy.models.plugin_link import PluginLink
from nailgun.db.sqlalchemy.models.task import Task
from nailgun.db.sqlalchemy.models.deployment_history import DeploymentHistory
from nailgun.db.sqlalchemy.models.deployment_sequence import DeploymentSequence
from nailgun.db.sqlalchemy.models.master_node_settings \
import MasterNodeSettings
from nailgun.db.sqlalchemy.models.plugins import ClusterPlugin
from nailgun.db.sqlalchemy.models.plugins import NodeClusterPlugin
from nailgun.db.sqlalchemy.models.plugins \
import NodeBondInterfaceClusterPlugin
from nailgun.db.sqlalchemy.models.plugins \
import NodeNICInterfaceClusterPlugin
from nailgun.db.sqlalchemy.models.plugins import Plugin
from nailgun.db.sqlalchemy.models.openstack_config import OpenstackConfig
from nailgun.db.sqlalchemy.models.node_deployment_info import NodeDeploymentInfo