khenaidoo | 4c6543e | 2021-10-19 17:25:58 -0400 | [diff] [blame] | 1 | syntax = "proto3"; |
| 2 | |
| 3 | option go_package = "github.com/opencord/voltha-protos/v5/go/onu_inter_adapter_service"; |
| 4 | option java_package = "org.opencord.voltha.onu_inter_adapter_service"; |
| 5 | option java_outer_classname = "VolthaOnuInterAdapterService"; |
| 6 | |
| 7 | package onu_inter_adapter_service; |
| 8 | |
| 9 | import "google/protobuf/empty.proto"; |
| 10 | import "voltha_protos/inter_adapter.proto"; |
| 11 | import "voltha_protos/health.proto"; |
| 12 | |
| 13 | service OnuInterAdapterService { |
| 14 | // GetHealthStatus is used by an OnuInterAdapterService client to verify connectivity |
| 15 | // to the gRPC server hosting the OnuInterAdapterService service |
| 16 | rpc GetHealthStatus(google.protobuf.Empty) returns (health.HealthStatus); |
| 17 | |
| 18 | rpc OnuIndication(inter_adapter.OnuIndicationMessage) returns (google.protobuf.Empty); |
| 19 | rpc OmciIndication(inter_adapter.OmciMessage) returns (google.protobuf.Empty); |
| 20 | rpc DownloadTechProfile(inter_adapter.TechProfileDownloadMessage) returns (google.protobuf.Empty); |
| 21 | rpc DeleteGemPort(inter_adapter.DeleteGemPortMessage) returns (google.protobuf.Empty); |
| 22 | rpc DeleteTCont(inter_adapter.DeleteTcontMessage) returns (google.protobuf.Empty); |
| 23 | } |