blob: 989ebc1df6e8255713645d53512a9d887b7e7a8b [file] [log] [blame]
Scott Bakera6c687c2018-07-16 15:08:49 -07001option name = "fabric-crossconnect";
2option app_label = "fabric-crossconnect";
Scott Bakerd443ea72018-08-07 13:50:06 -07003option legacy = "True";
Scott Bakera6c687c2018-07-16 15:08:49 -07004
5message FabricCrossconnectService (Service){
6 option verbose_name = "Fabric Crossconnect Service";
7 option description="Fabric Crossconnect implementation";
8}
9
Scott Bakera6c687c2018-07-16 15:08:49 -070010message FabricCrossconnectServiceInstance (ServiceInstance){
11 option verbose_name = "Fabric Crossconnect Service Instance";
12 option owner_class_name="FabricCrossconnectService";
13}
Scott Baker547dea02018-07-18 15:24:26 -070014
15message BNGPortMapping (XOSBase) {
Scott Bakerd443ea72018-08-07 13:50:06 -070016 required string s_tag = 1 [help_text = "Single s-tag, range of s-tags, or ANY", null = False, db_index = False, blank = False, unique=True, tosca_key=True];
Scott Baker547dea02018-07-18 15:24:26 -070017 required int32 switch_port = 2 [help_text = "Port Number", null = False, db_index = False, blank = False];
18}