mirror of
https://github.com/livebook-dev/livebook.git
synced 2025-09-06 13:04:53 +08:00
16 lines
767 B
Elixir
16 lines
767 B
Elixir
defmodule LivebookProto.AppDeployment do
|
|
use Protobuf, syntax: :proto3, protoc_gen_elixir_version: "0.13.0"
|
|
|
|
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 :identity_groups, 12, repeated: true, type: :string, json_name: "identityGroups"
|
|
end
|