aboutsummaryrefslogtreecommitdiffstats
path: root/internal/pkg/nfnNotify/proto/nfn.proto
blob: 85e2131e06b918c45f008386b89b110d9a35798b (plain)
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
44
//
// nfn.proto
// 
// Example that implements push notification from grpc server to client
//
syntax = "proto3";

service nfnNotify {
	rpc Subscribe (SubscribeContext) returns (stream Notification);
}

message SubscribeContext {
    string node_name = 1;
}

message Notification {
    string cni_type = 1;
    oneof payload {
        InSync in_sync = 2;
        ProviderNetworkCreate provider_nw_create = 3;
        ProviderNetworkRemove provider_nw_remove = 4;
    }
}

message ProviderNetworkCreate {
    string provider_nw_name = 1;
    VlanInfo vlan = 2;
    // Add other types supported here beyond vlan
}

message ProviderNetworkRemove {
    string provider_nw_name = 1;
    string vlan_logical_intf = 2;
    // Add other types supported here
}

message VlanInfo {
    string vlan_id = 1;
    string provider_intf = 2;
    string logical_intf = 3;
}

message InSync {
}