2019-09-20 18:37:22 +00:00
|
|
|
syntax = "proto3";
|
|
|
|
|
2020-07-23 15:24:20 +00:00
|
|
|
package acl;
|
|
|
|
|
|
|
|
option go_package = "github.com/hashicorp/consul/proto/pbacl";
|
|
|
|
|
2019-09-20 18:37:22 +00:00
|
|
|
|
|
|
|
// Go Modules now includes the version in the filepath for packages within GOPATH/pkg/mode
|
|
|
|
// Therefore unless we want to hardcode a version here like
|
|
|
|
// github.com/gogo/protobuf@v1.3.0/gogoproto/gogo.proto then the only other choice is to
|
|
|
|
// have a more relative import and pass the right import path to protoc. I don't like it
|
|
|
|
// but its necessary.
|
|
|
|
import "gogoproto/gogo.proto";
|
|
|
|
|
|
|
|
option (gogoproto.goproto_unkeyed_all) = false;
|
|
|
|
option (gogoproto.goproto_unrecognized_all) = false;
|
|
|
|
option (gogoproto.goproto_getters_all) = false;
|
|
|
|
option (gogoproto.goproto_sizecache_all) = false;
|
|
|
|
|
|
|
|
message ACLLink {
|
|
|
|
string ID = 1;
|
|
|
|
string Name = 2
|
|
|
|
[(gogoproto.moretags) = "hash:\"ignore\""];
|
|
|
|
}
|