blob: 7e3e075e030229963cff8d45f62e2de0bfad8fcc [file] [log] [blame]
Scott Bakerbeb128a2017-08-21 09:20:04 -07001option legacy="True";
2option kind="addressmanager";
3option name="addressmanager";
Matteo Scandolo32378832017-09-07 09:43:08 -07004option app_label = "addressmanager";
Scott Bakerbeb128a2017-08-21 09:20:04 -07005
6message AddressManagerService (Service){
7 option verbose_name="Address Manager Service";
8}
9
10message AddressManagerServiceInstance (ServiceInstance){
Matteo Scandolo32378832017-09-07 09:43:08 -070011 option verbose_name="Address Manager Service Instance";
12 optional string public_ip = 1 [db_index = False, max_length = 30, null = True, content_type = "stripped", blank = True];
13 optional string public_mac = 2 [db_index = False, max_length = 30, null = True, content_type = "stripped", blank = True];
14 optional manytoone address_pool->AddressPool:address_manager_service_instances = 3 [db_index = True, null = True, blank = True];
Scott Bakerbeb128a2017-08-21 09:20:04 -070015}