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.
22 lines
769 B
22 lines
769 B
syntax = "proto3"; |
|
|
|
package envoy.annotations; |
|
|
|
import "google/protobuf/descriptor.proto"; |
|
|
|
// [#protodoc-title: Deprecation] |
|
// Allows tagging proto fields as fatal by default. One Envoy release after |
|
// deprecation, deprecated fields will be disallowed by default, a state which |
|
// is reversible with :ref:`runtime overrides <config_runtime_deprecation>`. |
|
|
|
// Magic number in this file derived from top 28bit of SHA256 digest of |
|
// "envoy.annotation.disallowed_by_default" |
|
extend google.protobuf.FieldOptions { |
|
bool disallowed_by_default = 189503207; |
|
} |
|
|
|
// Magic number in this file derived from top 28bit of SHA256 digest of |
|
// "envoy.annotation.disallowed_by_default_enum" |
|
extend google.protobuf.EnumValueOptions { |
|
bool disallowed_by_default_enum = 70100853; |
|
}
|
|
|