Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion proto/gnmi/gnmi.proto
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ extend google.protobuf.FileOptions {

// gNMI_service is the current version of the gNMI service, returned through
// the Capabilities RPC.
option (gnmi_service) = "0.10.0";
option (gnmi_service) = "0.11.0";

option go_package = "github.com/openconfig/gnmi/proto/gnmi";
option java_multiple_files = true;
Expand Down Expand Up @@ -132,6 +132,10 @@ message TypedValue {
// github.com/openconfig/reference/blob/master/rpc/gnmi/protobuf-vals.md
// for a complete specification. [Experimental]
bytes proto_bytes = 13;
// Set to true for YANG modeled nodes containing presence statement.
bool presence_val = 15;
// Set to true for YANG modeled nodes of type empty.
bool empty_val = 16;
}
}

Expand Down