livebook/proto/lib/livebook_proto/app_deployment.pb.ex
2025-04-07 22:12:21 -03:00

20 lines
815 B
Elixir

defmodule LivebookProto.AppDeployment do
use Protobuf, protoc_gen_elixir_version: "0.14.1", syntax: :proto3
field :id, 1, type: :string
field :title, 2, type: :string
field :sha, 3, type: :string
field :revision_id, 4, type: :string, json_name: "revisionId"
field :slug, 5, type: :string
field :deployment_group_id, 6, type: :string, json_name: "deploymentGroupId"
field :deployed_by, 7, type: :string, json_name: "deployedBy"
field :deployed_at, 8, type: :int64, json_name: "deployedAt"
field :multi_session, 9, type: :bool, json_name: "multiSession"
field :access_type, 10, type: :string, json_name: "accessType"
field :version, 11, type: :string
field :authorization_groups, 12,
repeated: true,
type: LivebookProto.AuthorizationGroup,
json_name: "authorizationGroups"
end