1syntax = "proto3"; 2 3package envoy.annotations; 4option go_package = "github.com/envoyproxy/go-control-plane/envoy/annotations"; 5 6import "google/protobuf/descriptor.proto"; 7 8// [#protodoc-title: Resource] 9 10// Magic number in this file derived from top 28bit of SHA256 digest of "envoy.annotation.resource". 11extend google.protobuf.ServiceOptions { 12 ResourceAnnotation resource = 265073217; 13} 14 15message ResourceAnnotation { 16 // Annotation for xDS services that indicates the fully-qualified Protobuf type for the resource 17 // type. 18 string type = 1; 19} 20