Skip to content
Snippets Groups Projects
Commit ef4b6eb1 authored by Konstantin Munichev's avatar Konstantin Munichev
Browse files

[dlt] Proto for DLT records

parent 61a05fbb
No related branches found
No related tags found
1 merge request!54Release 2.0.0
......@@ -14,4 +14,29 @@ message DltConfig {
string caAdminSecret = 9;
string msp = 10;
string affiliation = 11;
}
message DltRecordId {
string uuid = 1;
}
enum DltRecordOperation {
ADD = 0;
GET = 1;
UPDATE = 2;
DISABLE = 3;
}
enum DltRecordType {
UNKNOWN = 0;
SERVICE = 1;
DEVICE = 2;
SLICE = 3;
}
message DltRecord {
DltRecordId id = 1;
DltRecordOperation operation = 2;
DltRecordType type = 3;
string json = 4;
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment