Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

1. vm_template (existing table)

ColumnTypeComment
is_vnftinyint(1) NOT NULL DEFAULT '0'True if the template is used to deploy VNF appliances 

2. vnf_template_nics (new table)


ColumnTypeComment

id

bigint unsigned NOT NULL AUTO_INCREMENT

id of the NIC

template_id

bigint unsigned NOT NULL

id of the VNF template

device_id

bigint unsigned NOT NULL

Device id of the NIC when plugged into the VNF appliances

device_name

varchar(255)

Name of the NIC

required

tinyint NOT NULL COMMENT '1'

True if the NIC is required. False if optional

description

varchar(255)

Description of the NIC

3. vnf_template_details (new table)


ColumnTypeComment

id

bigint unsigned NOT NULL AUTO_INCREMENT


template_id

bigint unsigned NOT NULL

id of the VNF template

name

varchar(255) NOT NULL


value

varchar(255) NOT NULL


display

tinyint(1) NOT NULL DEFAULT '1'

'True if the detail can be displayed to the end user'


Each VNF template can have the following details

...