blob: e6f7d1b15ad196871cc60e56edac75df14a12e94 [file] [log] [blame]
Amit Ghosh09f28362020-06-12 21:52:19 +01001syntax = "proto3";
2
3option go_package = "github.com/opencord/device-management-interface/v3/go/dmi";
4package dmi;
5
6// Common structures used across the different Device Management services
7
8enum Status {
9 UNDEFINED_STATUS = 0;
10 OK = 1;
11 ERROR = 2;
12}
13
14// Reason for the failure of request
15enum Reason {
16 UNDEFINED_REASON = 0;
17 UNKNOWN_DEVICE = 1;
18 INTERNAL_ERROR = 2;
19 WRONG_METRIC = 3;
20 WRONG_EVENT = 4;
amit.ghosh188a84f2020-09-27 20:59:25 +020021 LOGGING_ENDPOINT_ERROR = 5;
22 LOGGING_ENDPOINT_PROTOCOL_ERROR = 6;
23 KAFKA_ENDPOINT_ERROR = 7;
Amit Ghosh09f28362020-06-12 21:52:19 +010024}