Sapan Bhatia | dc6a0c5 | 2017-05-02 21:27:53 +0200 | [diff] [blame] | 1 | option name = "vnodlocal"; |
| 2 | |
| 3 | message VnodLocalSystem (PlCoreBase){ |
| 4 | option verbose_name = "VNOD Local System"; |
| 5 | |
| 6 | required string name = 1 [db_index = False, max_length = 256, null = False, blank = False]; |
| 7 | required string description = 2 [db_index = False, max_length = 1024, null = False, blank = False]; |
| 8 | required string restUrl = 3 [db_index = False, max_length = 256, null = False, blank = False]; |
| 9 | required string username = 4 [db_index = False, max_length = 32, null = False, blank = True]; |
| 10 | required string password = 5 [db_index = False, max_length = 32, null = False, blank = True]; |
| 11 | required string administrativeState = 6 [default = "enabled", choices = "(('enabled', 'Enabled'), ('disabled', 'Disabled'))", max_length = 16, blank = False, null = False, db_index = False]; |
| 12 | required string pseudowireprovider = 7 [default = "none", max_length = 256, null = False, db_index = False, blank = False]; |
| 13 | required string networkControllerUrl = 8 [db_index = False, max_length = 256, null = False, blank = True]; |
| 14 | } |
| 15 | |
| 16 | message VnodLocalService (Service){ |
| 17 | option verbose_name = "Virtual Network On Demand Local Service"; |
| 18 | |
| 19 | required string portid = 1 [db_index = False, max_length = 256, null = False, blank = True]; |
| 20 | required string vlanid = 2 [db_index = False, max_length = 256, null = False, blank = True]; |
| 21 | required string servicehandle = 3 [db_index = False, max_length = 256, null = False, blank = False]; |
| 22 | required bool autoattached = 4 [default = False, null = False, db_index = False, blank = True]; |
| 23 | required string administrativeState = 5 [default = "disabled", choices = "(('disabled', 'Disabled'), ('configurationrequested', 'ConfigurationRequested'), ('configurationfailed', 'ConfigurationFailed'), ('configured', 'Configured'), ('activationrequested', 'ActivationRequested'), ('activationfailed', 'ActivationFailed'), ('enabled', 'Enabled'), ('deactivationrequested', 'DeactivationRequested'))", max_length = 64, blank = False, null = False, db_index = False]; |
| 24 | required string operstate = 6 [default = "inactive", choices = "(('active', 'Active'), ('inactivereported', 'InactiveReported'), ('inactive', 'Inactive'), ('activereported', 'ActiveReported'))", max_length = 64, blank = False, null = False, db_index = False]; |
| 25 | } |
| 26 | |
| 27 | message VnodLocalPseudowireConnectorService (Service){ |
| 28 | option verbose_name = "Virtual Network On Demand Local Pseudo-wire Connector Service"; |
| 29 | |
| 30 | required string servicehandle = 1 [db_index = False, max_length = 256, null = False, blank = False]; |
| 31 | required string pseudowirehandle = 2 [db_index = False, max_length = 256, null = False, blank = True]; |
| 32 | required string internalport = 3 [db_index = False, max_length = 256, null = False, blank = False]; |
| 33 | optional manytoone vnodlocal->VnodLocalService:VnodLocalService = 4 [db_index = True, null = True, blank = False]; |
| 34 | required string administrativeState = 5 [default = "disabled", choices = "(('disabled', 'Disabled'), ('activationrequested', 'ActivationRequested'), ('enabled', 'Enabled'), ('deactivationrequested', 'DeactivationRequested'))", max_length = 64, blank = False, null = False, db_index = False]; |
| 35 | required string operstate = 6 [default = "inactive", choices = "(('active', 'Active'), ('inactive', 'Inactive'))", max_length = 64, blank = False, null = False, db_index = False]; |
| 36 | } |
| 37 | |
| 38 | |
| 39 | |
| 40 | |
| 41 | |