Current section
Files
Jump to
Current section
Files
gen/udpa/annotations/status.pb.ex
defmodule Udpa.Annotations.PackageVersionStatus do
use Protobuf, enum: true, syntax: :proto3, protoc_gen_elixir_version: "0.12.0"
field :UNKNOWN, 0
field :FROZEN, 1
field :ACTIVE, 2
field :NEXT_MAJOR_VERSION_CANDIDATE, 3
end
defmodule Udpa.Annotations.StatusAnnotation do
use Protobuf, syntax: :proto3, protoc_gen_elixir_version: "0.12.0"
field :work_in_progress, 1, type: :bool, json_name: "workInProgress"
field :package_version_status, 2,
type: Udpa.Annotations.PackageVersionStatus,
json_name: "packageVersionStatus",
enum: true
end