forked from logrhythm/kibana
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request elastic#370 from Tom-Artale/config-ux
Config ux
- Loading branch information
Showing
5 changed files
with
51 additions
and
40 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
package configelements; | ||
|
||
option java_package = "com.logrhythm.configelements"; | ||
option java_outer_classname = "ConfigBulkReplyMsg"; | ||
import "ConfigTypeMessagePair.proto"; | ||
|
||
|
||
|
||
|
||
message ConfigBulkReply { | ||
enum ReplyType { | ||
SUCCESS = 0; | ||
ERROR = 1; | ||
} | ||
|
||
optional ReplyType replyType = 1; | ||
optional string errorMessage = 2; | ||
// DEPRECATED optional ConfigTypeMsg.ConfigType configType = 3; | ||
// DEPRECATED optional bytes serializedConfigMessage = 4; | ||
repeated ConfigTypeMessagePair serializedConfigMessages = 5; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
package configelements; | ||
|
||
option java_package = "com.logrhythm.configelements"; | ||
option java_outer_classname = "ConfigBulkRequestMsg"; | ||
import "ConfigTypeMessagePair.proto"; | ||
|
||
|
||
message ConfigBulkRequest { | ||
|
||
enum RequestType { | ||
READ_ALL = 0; | ||
WRITE_ALL = 1; | ||
} | ||
|
||
optional RequestType requestType = 1; | ||
// DEPRECATED optional ConfigTypeMsg.ConfigType configType = 2; | ||
optional string override = 3; | ||
// DEPRECATED optional bytes serializedConfigMessage = 4; | ||
repeated ConfigTypeMessagePair serializedConfigMessages = 5; | ||
} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
package configelements; | ||
|
||
option java_package = "com.logrhythm.configelements"; | ||
option java_outer_classname = "ConfigTypeMessagePairMsg"; | ||
import "ConfigType.proto"; | ||
|
||
message ConfigTypeMessagePair { | ||
optional ConfigTypeMsg.ConfigType configType = 1; | ||
optional bytes serializedConfigMessage = 2; | ||
} |