-
Notifications
You must be signed in to change notification settings - Fork 0
/
vada.proto
43 lines (29 loc) · 858 Bytes
/
vada.proto
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
syntax = "proto3";
import "google/protobuf/struct.proto";
import "google/protobuf/wrappers.proto";
import "context.proto";
option csharp_namespace = "SquaredUp.Dashboard.Schema";
package squaredup;
//-------------------------------------------------------------------------------------
//
// VADA / EAM tiles
//
//-------------------------------------------------------------------------------------
// tile/vada
//
message VadaTileConfig {
VadaTileConfig_Filters filters = 1;
// Typically 'discover'
string mode = 2;
repeated string providers = 3;
bool rundiscoveryoninit = 4;
VadaTileConfig_Transforms transforms = 5;
bool vadaperspective = 6;
bool readonly = 7;
CommonContext context = 8;
}
message VadaTileConfig_Filters {
repeated string processnames = 1;
}
message VadaTileConfig_Transforms {
}