aboutsummaryrefslogtreecommitdiffstats
path: root/internal/pkg/nfnNotify/proto/nfn.proto
diff options
context:
space:
mode:
authorKuralamudhan Ramakrishnan <kuralamudhan.ramakrishnan@intel.com>2020-03-25 20:03:10 +0000
committerKuralamudhan Ramakrishan <kuralamudhan.ramakrishnan@intel.com>2020-03-26 03:19:59 +0000
commit4eedc027c850857e5511e6341e36fbae968f3653 (patch)
treecc808eaa387e98eba31ac82dc4faa723cb21f2e0 /internal/pkg/nfnNotify/proto/nfn.proto
parente8c9eed2f954bf3a10746a53c113318d4341e96d (diff)
adding direct provider network
- update nfn.proto - update direct provider network crd and apis - modified nfn-agent to include the direct provider network - modified nfnNotify server to include the direct provider network Change-Id: I9c2d4cc62178088c8908c50c2b734772ed7f99f4 Co-authored-by: Ritu Sood <ritu.sood@intel.com> Signed-off-by: Kuralamudhan Ramakrishnan <kuralamudhan.ramakrishnan@intel.com>
Diffstat (limited to 'internal/pkg/nfnNotify/proto/nfn.proto')
-rw-r--r--internal/pkg/nfnNotify/proto/nfn.proto8
1 files changed, 7 insertions, 1 deletions
diff --git a/internal/pkg/nfnNotify/proto/nfn.proto b/internal/pkg/nfnNotify/proto/nfn.proto
index 85e2131..02855e7 100644
--- a/internal/pkg/nfnNotify/proto/nfn.proto
+++ b/internal/pkg/nfnNotify/proto/nfn.proto
@@ -25,12 +25,14 @@ message Notification {
message ProviderNetworkCreate {
string provider_nw_name = 1;
VlanInfo vlan = 2;
+ DirectInfo direct =3;
// Add other types supported here beyond vlan
}
message ProviderNetworkRemove {
string provider_nw_name = 1;
string vlan_logical_intf = 2;
+ string direct_provider_intf = 3;
// Add other types supported here
}
@@ -40,5 +42,9 @@ message VlanInfo {
string logical_intf = 3;
}
+message DirectInfo {
+ string provider_intf = 1;
+}
+
message InSync {
-} \ No newline at end of file
+}