aboutsummaryrefslogtreecommitdiffstats
path: root/lcm/pub/database/models.py
diff options
context:
space:
mode:
Diffstat (limited to 'lcm/pub/database/models.py')
-rw-r--r--lcm/pub/database/models.py9
1 files changed, 8 insertions, 1 deletions
diff --git a/lcm/pub/database/models.py b/lcm/pub/database/models.py
index b45867a5..a6694fa4 100644
--- a/lcm/pub/database/models.py
+++ b/lcm/pub/database/models.py
@@ -204,7 +204,8 @@ class VLInstModel(models.Model):
ownertype = models.IntegerField(db_column='OWNERTYPE')
ownerid = models.CharField(db_column='OWNERID', max_length=255)
relatednetworkid = models.CharField(db_column='RELATEDNETWORKID', max_length=255, blank=True, null=True)
- relatedsubnetworkid = models.CharField(db_column='RELATEDSUBNETWORKID', max_length=255, blank=True, null=True)
+ relatedsubnetworkid = models.CharField(db_column='RELATEDSUBNETWORKID', max_length=255, blank=True,
+ null=True)
vltype = models.IntegerField(db_column='VLTYPE', default=0)
vimid = models.CharField(db_column='VIMID', max_length=255)
tenant = models.CharField(db_column='TENANT', max_length=255)
@@ -338,11 +339,17 @@ class SubscriptionModel(models.Model):
subscription_id = models.CharField(db_column='SUBSCRIPTIONID', max_length=255, primary_key=True)
vnf_instance_filter = models.TextField(db_column='VNFINSTANCEFILTER', null=True)
+ ns_instance_filter = models.TextField(db_column='NSINSTANCEFILTER', null=True)
notification_types = models.TextField(db_column='NOTIFICATIONTYPES', null=True)
operation_types = models.TextField(db_column='OPERATIONTYPES', null=True)
operation_states = models.TextField(db_column='OPERATIONSTATES', null=True)
+ ns_component_types = models.TextField(db_column='NSCOMPONENTTYPES', null=True)
+ lcm_opname_impacting_nscomponent = models.TextField(db_column='LCMOPNAMEIMPACTINGNSCOMPONENT', null=True)
+ lcm_opoccstatus_impacting_nscomponent = models.TextField(db_column='LCMOPOCCSTATUSIMPACTINGNSCOMPONENT',
+ null=True)
callback_uri = models.CharField(db_column='CALLBACKURI', max_length=255)
links = models.TextField(db_column='LINKS', max_length=20000)
+ auth_info = models.TextField(db_column='AUTHINFO', max_length=20000, blank=True, null=True)
class PNFInstModel(models.Model):