Scott Baker | beb128a | 2017-08-21 09:20:04 -0700 | [diff] [blame^] | 1 | option legacy="True"; |
| 2 | option kind="addressmanager"; |
| 3 | option name="addressmanager"; |
| 4 | |
| 5 | message AddressManagerService (Service){ |
| 6 | option verbose_name="Address Manager Service"; |
| 7 | } |
| 8 | |
| 9 | message AddressManagerServiceInstance (ServiceInstance){ |
| 10 | option verbose_name="Address Manager Service Instance"; |
| 11 | optional string public_ip = 1 [db_index = False, max_length = 30, null = True, content_type = "stripped", blank = True]; |
| 12 | optional string public_mac = 2 [db_index = False, max_length = 30, null = True, content_type = "stripped", blank = True]; |
| 13 | optional manytoone address_pool->AddressPool:address_manager_service_instances = 3 [db_index = True, null = True, blank = True]; |
| 14 | } |