Skip to content

Commit

Permalink
Add GetStateMode to ConfigModel info (#63)
Browse files Browse the repository at this point in the history
  • Loading branch information
kuujo authored Mar 10, 2021
1 parent b7609e6 commit c88e2bd
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.7.15-dev
0.7.15
8 changes: 8 additions & 0 deletions proto/onos/configmodel/registry.proto
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,19 @@ syntax = "proto3";

package onos.configmodel;

enum GetStateMode {
NONE = 0;
OP_STATE = 1;
EXPLICIT_RO_PATHS = 2;
EXPLICIT_RO_PATHS_EXPAND_WILDCARDS = 3;
}

message ConfigModel {
string name = 1;
string version = 2;
repeated ConfigModule modules = 3;
map<string, string> files = 4;
GetStateMode get_state_mode = 5;
}

message ConfigModule {
Expand Down

0 comments on commit c88e2bd

Please sign in to comment.