You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
471 B
19 lines
471 B
2 years ago
|
syntax = "proto3";
|
||
|
|
||
|
package envoy.annotations;
|
||
|
|
||
|
import "google/protobuf/descriptor.proto";
|
||
|
|
||
|
// [#protodoc-title: Resource]
|
||
|
|
||
|
// Magic number in this file derived from top 28bit of SHA256 digest of "envoy.annotation.resource".
|
||
|
extend google.protobuf.ServiceOptions {
|
||
|
ResourceAnnotation resource = 265073217;
|
||
|
}
|
||
|
|
||
|
message ResourceAnnotation {
|
||
|
// Annotation for xDS services that indicates the fully-qualified Protobuf type for the resource
|
||
|
// type.
|
||
|
string type = 1;
|
||
|
}
|