Skip to content
Snippets Groups Projects
Commit 0c053585 authored by Simone Spinelli's avatar Simone Spinelli
Browse files

Tested add capacity and changing attrs

parent 0f7d2317
No related branches found
No related tags found
4 merge requests!35Feature/nat178 modify capacity iptrunk,!34Feature/nat178 modify capacity iptrunk,!33Feature/nat178 modify capacity iptrunk,!32Feature/nat178 modify capacity iptrunk
from enum import IntEnum
from enum import Enum
class PhyPortCapacity(IntEnum):
ONE = 1
TEN = 10
HUNDRED = 100
FOUR_HUNDRED = 400
class PhyPortCapacity(Enum):
ONE = "1g"
TEN = "10g"
HUNDRED = "100g"
FOUR_HUNDRED = "400g"
......@@ -6,6 +6,7 @@
}
},
"workflow": {
"modify_isis_metric": "Modify the ISIS metric"
"modify_isis_metric": "Modify the ISIS metric",
"modify_generic": "Modify Trunk interface"
}
}
......@@ -12,4 +12,6 @@ LazyWorkflowInstance("gso.workflows.iptrunk.terminate_iptrunk",
"terminate_iptrunk")
LazyWorkflowInstance("gso.workflows.iptrunk.modify_isis_metric",
"modify_isis_metric")
LazyWorkflowInstance("gso.workflows.iptrunk.modify_generic",
"modify_generic")
LazyWorkflowInstance("gso.workflows.site.create_site", "create_site")
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment