blob: d3d30eda5452d2cee6a6150b1ce3be8afd3f15ac [file] [log] [blame]
Matteo Scandoloaca86652017-08-08 13:05:27 -07001
2# Copyright 2017-present Open Networking Foundation
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
Sapan Bhatia46482ee2017-04-21 17:59:48 +020017from django.db import models
Scott Baker80238f82017-07-18 16:01:10 -070018from core.models import Service, XOSBase, Slice, Instance, TenantWithContainer, Node, Image, User, Flavor, NetworkParameter, NetworkParameterType, Port, AddressPool, User
Sapan Bhatia3816f672017-05-19 23:10:53 +020019from core.models.xosbase import StrippedCharField
Sapan Bhatia46482ee2017-04-21 17:59:48 +020020import os
21from django.db import models, transaction
22from django.forms.models import model_to_dict
23from django.db.models import *
24from operator import itemgetter, attrgetter, methodcaller
25from core.models import Tag
26from core.models.service import LeastLoadedNodeScheduler
27from services.vrouter.models import VRouterService, VRouterTenant
28import traceback
29from xos.exceptions import *
Scott Baker248ed752017-05-24 16:40:28 -070030from django.contrib.contenttypes.models import ContentType
Sapan Bhatia46482ee2017-04-21 17:59:48 +020031
32class ConfigurationError(Exception):
33 pass
34
35VCPE_KIND = "vCPE"
36CORD_SUBSCRIBER_KIND = "CordSubscriberRoot"
37