mirror of
https://github.com/livebook-dev/livebook.git
synced 2025-09-09 06:24:29 +08:00
20 lines
815 B
Elixir
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
|