livebook/proto/lib/livebook_proto/user_connected.pb.ex
2024-04-03 10:43:45 -03:00

19 lines
621 B
Elixir

defmodule LivebookProto.UserConnected do
use Protobuf, syntax: :proto3, protoc_gen_elixir_version: "0.12.0"
field :name, 1, type: :string
field :secrets, 2, repeated: true, type: LivebookProto.Secret
field :file_systems, 3, repeated: true, type: LivebookProto.FileSystem, json_name: "fileSystems"
field :deployment_groups, 4,
repeated: true,
type: LivebookProto.DeploymentGroup,
json_name: "deploymentGroups"
field :app_deployments, 5,
repeated: true,
type: LivebookProto.AppDeployment,
json_name: "appDeployments"
field :agents, 6, repeated: true, type: LivebookProto.Agent
end