Author Name | a594e63 | 2018-08-10 11:33:58 -0400 | [diff] [blame] | 1 | //Copyright 2017 the original author or authors. |
| 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 | |
| 15 | syntax = "proto3"; |
| 16 | package api; |
| 17 | import "google/api/annotations.proto"; |
| 18 | |
donNewtonAlpha | b3279ea | 2018-09-18 15:55:32 -0400 | [diff] [blame] | 19 | message EchoMessage{ |
| 20 | string Ping =1; |
| 21 | } |
| 22 | message EchoReplyMessage{ |
| 23 | string Pong =1; |
| 24 | } |
| 25 | |
Author Name | a594e63 | 2018-08-10 11:33:58 -0400 | [diff] [blame] | 26 | message AddChassisMessage{ |
| 27 | string CLLI =1; |
donNewtonAlpha | 57aa2ff | 2018-10-01 16:45:32 -0400 | [diff] [blame^] | 28 | string XOSIP =2; |
| 29 | int32 XOSPort=3; |
| 30 | string XOSUser=4; |
| 31 | string XOSPassword=5; |
| 32 | int32 Rack=6; |
| 33 | int32 Shelf=7; |
Author Name | a594e63 | 2018-08-10 11:33:58 -0400 | [diff] [blame] | 34 | } |
Author Name | a594e63 | 2018-08-10 11:33:58 -0400 | [diff] [blame] | 35 | message AddChassisReturn{ |
| 36 | string DeviceID = 1; |
Author Name | a594e63 | 2018-08-10 11:33:58 -0400 | [diff] [blame] | 37 | } |
donNewtonAlpha | 57aa2ff | 2018-10-01 16:45:32 -0400 | [diff] [blame^] | 38 | message ChangeXOSUserPasswordMessage{ |
| 39 | string CLLI =1; |
| 40 | string XOSUser=2; |
| 41 | string XOSPassword=3; |
| 42 | } |
| 43 | message ChangeXOSUserPasswordReturn{ |
| 44 | bool Success=1; |
| 45 | } |
| 46 | |
Author Name | a594e63 | 2018-08-10 11:33:58 -0400 | [diff] [blame] | 47 | message AddOLTChassisMessage{ |
| 48 | string CLLI=1; |
| 49 | string SlotIP=2; |
| 50 | fixed32 SlotPort=3; |
| 51 | string Hostname=4; |
| 52 | fixed32 NumPorts = 5; |
| 53 | bool Activate = 6; |
| 54 | enum OltDriver { |
donNewtonAlpha | 1d2d681 | 2018-09-14 16:00:02 -0400 | [diff] [blame] | 55 | openoltDriver= 0; |
Author Name | a594e63 | 2018-08-10 11:33:58 -0400 | [diff] [blame] | 56 | asfvolt16Driver=1; |
| 57 | adtranDriver=2; |
| 58 | tibitsDriver=3; |
| 59 | } |
| 60 | OltDriver Driver=7; |
| 61 | enum OltType{ |
| 62 | edgecore=0; |
| 63 | adtran=1; |
| 64 | tibit=2; |
| 65 | } |
| 66 | OltType Type=8; |
| 67 | |
| 68 | } |
| 69 | message AddOLTChassisReturn { |
| 70 | string DeviceID =1; |
| 71 | string ChassisDeviceID =2; |
Author Name | a594e63 | 2018-08-10 11:33:58 -0400 | [diff] [blame] | 72 | } |
donNewtonAlpha | f7cc999 | 2018-08-29 14:23:02 -0400 | [diff] [blame] | 73 | |
Author Name | a594e63 | 2018-08-10 11:33:58 -0400 | [diff] [blame] | 74 | message AddOntMessage{ |
donNewtonAlpha | 5234b13 | 2018-08-16 14:12:28 -0400 | [diff] [blame] | 75 | string CLLI=1; |
| 76 | int32 SlotNumber=2; |
Author Name | a594e63 | 2018-08-10 11:33:58 -0400 | [diff] [blame] | 77 | int32 PortNumber=3; |
| 78 | int32 OntNumber=4; |
donNewtonAlpha | 4c0abcd | 2018-08-14 15:50:52 -0400 | [diff] [blame] | 79 | string SerialNumber=5; |
Author Name | a594e63 | 2018-08-10 11:33:58 -0400 | [diff] [blame] | 80 | } |
| 81 | message AddOntReturn{ |
| 82 | bool Success=1; |
Author Name | a594e63 | 2018-08-10 11:33:58 -0400 | [diff] [blame] | 83 | } |
| 84 | |
donNewtonAlpha | f7cc999 | 2018-08-29 14:23:02 -0400 | [diff] [blame] | 85 | message DeleteOntMessage{ |
| 86 | string CLLI=1; |
| 87 | int32 SlotNumber=2; |
| 88 | int32 PortNumber=3; |
| 89 | int32 OntNumber=4; |
| 90 | string SerialNumber=5; |
| 91 | } |
| 92 | message DeleteOntReturn{ |
| 93 | bool Success=1; |
| 94 | } |
donNewtonAlpha | e7ab5b9 | 2018-09-27 15:09:14 -0400 | [diff] [blame] | 95 | message OutputMessage{ |
| 96 | string Something=1; |
| 97 | } |
| 98 | message OutputReturn{ |
| 99 | bool Success=1; |
| 100 | } |
donNewtonAlpha | 5234b13 | 2018-08-16 14:12:28 -0400 | [diff] [blame] | 101 | service AbstractOLT{ |
donNewtonAlpha | b3279ea | 2018-09-18 15:55:32 -0400 | [diff] [blame] | 102 | rpc Echo(EchoMessage) returns (EchoReplyMessage){ |
| 103 | option(google.api.http)={ |
| 104 | post:"/v1/Echo" |
| 105 | body:"*" |
| 106 | }; |
| 107 | } |
Author Name | a594e63 | 2018-08-10 11:33:58 -0400 | [diff] [blame] | 108 | rpc CreateChassis(AddChassisMessage) returns (AddChassisReturn) { |
| 109 | option(google.api.http) = { |
donNewtonAlpha | 5234b13 | 2018-08-16 14:12:28 -0400 | [diff] [blame] | 110 | post: "/v1/CreateAbstractChassis" |
Author Name | a594e63 | 2018-08-10 11:33:58 -0400 | [diff] [blame] | 111 | body:"*" |
| 112 | }; |
| 113 | } |
donNewtonAlpha | 57aa2ff | 2018-10-01 16:45:32 -0400 | [diff] [blame^] | 114 | rpc ChangeXOSUserPassword(ChangeXOSUserPasswordMessage) returns(ChangeXOSUserPasswordReturn){ |
| 115 | option(google.api.http)={ |
| 116 | post:"/v1/ChangeXOSUserPassword" |
| 117 | body:"*" |
| 118 | }; |
| 119 | } |
Author Name | a594e63 | 2018-08-10 11:33:58 -0400 | [diff] [blame] | 120 | rpc CreateOLTChassis(AddOLTChassisMessage) returns (AddOLTChassisReturn) { |
| 121 | option(google.api.http) = { |
donNewtonAlpha | 5234b13 | 2018-08-16 14:12:28 -0400 | [diff] [blame] | 122 | post: "/v1/CreateOLTChassis" |
Author Name | a594e63 | 2018-08-10 11:33:58 -0400 | [diff] [blame] | 123 | body:"*" |
| 124 | }; |
| 125 | } |
donNewtonAlpha | 5234b13 | 2018-08-16 14:12:28 -0400 | [diff] [blame] | 126 | rpc ProvisionOnt(AddOntMessage) returns (AddOntReturn) { |
| 127 | option(google.api.http) = { |
| 128 | post:"/v1/ProvsionOnt" |
| 129 | body:"*" |
| 130 | }; |
| 131 | } |
donNewtonAlpha | f7cc999 | 2018-08-29 14:23:02 -0400 | [diff] [blame] | 132 | rpc DeleteOnt(DeleteOntMessage) returns (DeleteOntReturn){ |
| 133 | option(google.api.http)={ |
| 134 | post:"/v1/DeleteOnt" |
| 135 | body:"*" |
| 136 | }; |
| 137 | } |
donNewtonAlpha | e7ab5b9 | 2018-09-27 15:09:14 -0400 | [diff] [blame] | 138 | rpc Output(OutputMessage)returns(OutputReturn){ |
| 139 | option(google.api.http)={ |
| 140 | post:"/v1/Output" |
| 141 | body:"*" |
| 142 | }; |
| 143 | } |
Author Name | a594e63 | 2018-08-10 11:33:58 -0400 | [diff] [blame] | 144 | } |
| 145 | |