Matteo Scandolo | aca8665 | 2017-08-08 13:05:27 -0700 | [diff] [blame^] | 1 | |
| 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 Bhatia | 46482ee | 2017-04-21 17:59:48 +0200 | [diff] [blame] | 17 | from django.db import models |
Scott Baker | 80238f8 | 2017-07-18 16:01:10 -0700 | [diff] [blame] | 18 | from core.models import Service, XOSBase, Slice, Instance, TenantWithContainer, Node, Image, User, Flavor, NetworkParameter, NetworkParameterType, Port, AddressPool, User |
Sapan Bhatia | 3816f67 | 2017-05-19 23:10:53 +0200 | [diff] [blame] | 19 | from core.models.xosbase import StrippedCharField |
Sapan Bhatia | 46482ee | 2017-04-21 17:59:48 +0200 | [diff] [blame] | 20 | import os |
| 21 | from django.db import models, transaction |
| 22 | from django.forms.models import model_to_dict |
| 23 | from django.db.models import * |
| 24 | from operator import itemgetter, attrgetter, methodcaller |
| 25 | from core.models import Tag |
| 26 | from core.models.service import LeastLoadedNodeScheduler |
| 27 | from services.vrouter.models import VRouterService, VRouterTenant |
| 28 | import traceback |
| 29 | from xos.exceptions import * |
Scott Baker | 248ed75 | 2017-05-24 16:40:28 -0700 | [diff] [blame] | 30 | from django.contrib.contenttypes.models import ContentType |
Sapan Bhatia | 46482ee | 2017-04-21 17:59:48 +0200 | [diff] [blame] | 31 | |
| 32 | class ConfigurationError(Exception): |
| 33 | pass |
| 34 | |
| 35 | VCPE_KIND = "vCPE" |
| 36 | CORD_SUBSCRIBER_KIND = "CordSubscriberRoot" |
| 37 | |