1// THIS FILE IS DEPRECATED 2// Users should instead use the corresponding proto in the xds tree. 3// No new changes will be accepted here. 4 5syntax = "proto3"; 6 7package udpa.annotations; 8 9import "google/protobuf/descriptor.proto"; 10 11option go_package = "github.com/cncf/xds/go/annotations"; 12 13extend google.protobuf.FieldOptions { 14 // Magic number is the 28 most significant bits in the sha256sum of "udpa.annotations.sensitive". 15 // When set to true, `sensitive` indicates that this field contains sensitive data, such as 16 // personally identifiable information, passwords, or private keys, and should be redacted for 17 // display by tools aware of this annotation. Note that that this has no effect on standard 18 // Protobuf functions such as `TextFormat::PrintToString`. 19 bool sensitive = 76569463; 20} 21