go.ligato.io/vpp-agent/v3@v3.5.0/examples/kvscheduler/plugin_skeleton/without_metadata/model/model.proto (about)

     1  syntax = "proto3";
     2  
     3  package model;
     4  
     5  option go_package = "go.ligato.io/vpp-agent/v3/examples/kvscheduler/plugin_skeleton/without_metadata/model;model";
     6  
     7  message ValueSkeleton {
     8      /*
     9        logical name is often defined to build unique keys for value instances
    10         - alternativelly, in the value model (keys.go), you may apply the
    11           WithNameTemplate() option to generate value instance name using a golang
    12           template, combining multiple value attributes that collectively
    13           guarantee unique value identification (i.e. primary key)
    14        */
    15      string name = 1;
    16  };
    17