resource.proto 551 B

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