blob: 48c7da9f03396946b25e781069206599cb061244 [file] [log] [blame]
hkouser24361d42020-12-14 19:21:47 +05301// Copyright (c) 2018 Open Networking Foundation
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at:
6//
7// http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
15syntax = "proto3";
amit.ghoshee17c002021-06-10 12:14:38 +020016
17option go_package = "github.com/opencord/bbsim/api/bbsim";
18
hkouser24361d42020-12-14 19:21:47 +053019package bbsim;
20
21
22message DmiEvent {
23 string event_name= 1;
24}
25
Elia Battistone8d1fa42022-04-01 10:47:37 +020026message DmiResponse {
hkouser24361d42020-12-14 19:21:47 +053027 int32 status_code = 1;
28 string message = 2;
29}
30
Elia Battistone8d1fa42022-04-01 10:47:37 +020031message DmiEmpty {
32}
33
34message TransceiverRequest {
35 uint32 TransceiverId = 1;
36}
37
38message Transceiver{
39 uint32 ID = 1;
40 string UUID = 2;
41 string Name = 3;
42 string Technology = 4;
43 bool PluggedIn = 5;
44 repeated uint32 PonIds = 6;
45}
46
47message Transceivers{
48 repeated Transceiver Items = 1;
49}
50
51
hkouser24361d42020-12-14 19:21:47 +053052service BBsim_dmi {
53 // Ask the DMI Server to create an event
Elia Battistone8d1fa42022-04-01 10:47:37 +020054 rpc CreateEvent (DmiEvent) returns (DmiResponse){
55 }
56
57 rpc GetTransceivers (DmiEmpty) returns (Transceivers) {
58 }
59
60 // Plug out the transceiver by transceiverId
61 rpc PlugOutTransceiver (TransceiverRequest) returns (DmiResponse) {
62 }
63 // Plug in the transceiver of a PON by pon-port-ID
64 rpc PlugInTransceiver (TransceiverRequest) returns (DmiResponse) {
hkouser24361d42020-12-14 19:21:47 +053065 }
66}