12345678910111213141516171819202122232425262728293031323334353637383940 |
- // THIS FILE IS DEPRECATED
- // Users should instead use the corresponding proto in the xds tree.
- // No new changes will be accepted here.
- syntax = "proto3";
- package udpa.annotations;
- import "google/protobuf/descriptor.proto";
- option go_package = "github.com/cncf/xds/go/annotations";
- // Magic number in this file derived from top 28bit of SHA256 digest of
- // "udpa.annotation.status".
- extend google.protobuf.FileOptions {
- StatusAnnotation file_status = 222707719;
- }
- enum PackageVersionStatus {
- // Unknown package version status.
- UNKNOWN = 0;
- // This version of the package is frozen.
- FROZEN = 1;
- // This version of the package is the active development version.
- ACTIVE = 2;
- // This version of the package is the candidate for the next major version. It
- // is typically machine generated from the active development version.
- NEXT_MAJOR_VERSION_CANDIDATE = 3;
- }
- message StatusAnnotation {
- // The entity is work-in-progress and subject to breaking changes.
- bool work_in_progress = 1;
- // The entity belongs to a package with the given version status.
- PackageVersionStatus package_version_status = 2;
- }
|