blob: 46ada4c6cb04dc88db8a9a3b80e1ebedf2a67d49 [file] [log] [blame]
option legacy="True";
option kind="addressmanager";
option name="addressmanager";
option app_label = "addressmanager";
message AddressManagerService (Service){
option verbose_name="Address Manager Service";
}
message AddressManagerServiceInstance (ServiceInstance){
option verbose_name="Address Manager Service Instance";
option owner_class_name="AddressManagerService";
optional string public_ip = 1 [db_index = False, max_length = 30, null = True, content_type = "stripped", blank = True];
optional string public_mac = 2 [db_index = False, max_length = 30, null = True, content_type = "stripped", blank = True];
optional manytoone address_pool->AddressPool:address_manager_service_instances = 3 [db_index = True, null = True, blank = True];
}