khenaidoo | abad44c | 2018-08-03 16:58:35 -0400 | [diff] [blame] | 1 | syntax = "proto3"; |
| 2 | |
| 3 | option go_package = "github.com/opencord/voltha-go/protos/voltha"; |
| 4 | |
| 5 | package voltha; |
| 6 | |
| 7 | import "google/protobuf/any.proto"; |
| 8 | import "common.proto"; |
| 9 | import "meta.proto"; |
| 10 | |
| 11 | |
| 12 | message AdapterConfig { |
| 13 | |
| 14 | // Common adapter config attributes here |
| 15 | LogLevel.LogLevel log_level = 1; |
| 16 | |
| 17 | // Custom (vendor-specific) configuration attributes |
| 18 | google.protobuf.Any additional_config = 64; |
| 19 | |
| 20 | } |
| 21 | |
| 22 | // Adapter (software plugin) |
| 23 | message Adapter { |
| 24 | |
khenaidoo | 21d5115 | 2019-02-01 13:48:37 -0500 | [diff] [blame] | 25 | // Unique name of adapter, matching the python package name under |
khenaidoo | abad44c | 2018-08-03 16:58:35 -0400 | [diff] [blame] | 26 | // voltha/adapters. |
| 27 | string id = 1 [(access) = READ_ONLY]; |
| 28 | string vendor = 2 [(access) = READ_ONLY]; |
| 29 | string version = 3 [(access) = READ_ONLY]; |
| 30 | |
| 31 | // Adapter configuration |
| 32 | AdapterConfig config = 16; |
| 33 | |
| 34 | // Custom descriptors and custom configuration |
| 35 | google.protobuf.Any additional_description = 64 [(access) = READ_ONLY]; |
| 36 | |
khenaidoo | abad44c | 2018-08-03 16:58:35 -0400 | [diff] [blame] | 37 | } |
| 38 | |
| 39 | message Adapters { |
| 40 | repeated Adapter items = 1; |
| 41 | } |