Commit b8a8bfbb authored by Pablo Armingol's avatar Pablo Armingol
Browse files

sap_driver

parent 235157d7
Loading
Loading
Loading
Loading
+37 −9770

File changed.

Preview size limit exceeded, changes collapsed.

+1 −0
Original line number Diff line number Diff line
@@ -223,6 +223,7 @@ enum DeviceDriverEnum {
  DEVICEDRIVER_IETF_ACTN = 10;
  DEVICEDRIVER_OC = 11;
  DEVICEDRIVER_QKD = 12;
  DEVICEDRIVER_PON = 13;
}

enum DeviceOperationalStatusEnum {
+1 −1
Original line number Diff line number Diff line
@@ -47,7 +47,7 @@ export TFS_SKIP_BUILD=${TFS_SKIP_BUILD:-"YES"}

# If TFS_SKIP_BUILD is "YES", select the containers to be build
# Any other container will use previous docker images
export TFS_QUICK_COMPONENTS="nbi"
export TFS_QUICK_COMPONENTS="nbi device"

# ----- CockroachDB ------------------------------------------------------------

+2 −0
Original line number Diff line number Diff line
@@ -49,6 +49,8 @@ class DeviceTypeEnum(Enum):
    XR_CONSTELLATION                = 'xr-constellation'
    QKD_NODE                        = 'qkd-node'
    OPEN_ROADM                      = 'openroadm'
    PON_CONTROLLER                  = 'pon-controller'


    # ETSI TeraFlowSDN controller
    TERAFLOWSDN_CONTROLLER          = 'teraflowsdn'
+1 −0
Original line number Diff line number Diff line
@@ -35,6 +35,7 @@ class ORM_DeviceDriverEnum(enum.Enum):
    IETF_ACTN             = DeviceDriverEnum.DEVICEDRIVER_IETF_ACTN
    OC                    = DeviceDriverEnum.DEVICEDRIVER_OC
    QKD                   = DeviceDriverEnum.DEVICEDRIVER_QKD
    PON                   = DeviceDriverEnum.DEVICEDRIVER_PON

grpc_to_enum__device_driver = functools.partial(
    grpc_to_enum, DeviceDriverEnum, ORM_DeviceDriverEnum)
Loading