livebook/proto/lib/livebook_proto/deployment_group.pb.ex
Cristine Guadelupe 4c97bd338e
Adds ZTA and clustering to deployment groups (#2413)
Co-authored-by: José Valim <jose.valim@gmail.com>
2023-12-27 21:10:17 -03:00

11 lines
403 B
Elixir

defmodule LivebookProto.DeploymentGroup do
use Protobuf, syntax: :proto3, protoc_gen_elixir_version: "0.12.0"
field :id, 1, type: :string
field :name, 2, type: :string
field :mode, 3, type: :string
field :secrets, 4, repeated: true, type: LivebookProto.DeploymentGroupSecret
field :clustering, 5, type: :string
field :zta_provider, 6, type: :string
field :zta_key, 7, type: :string
end