mirror of
https://github.com/livebook-dev/livebook.git
synced 2025-09-04 12:04:20 +08:00
32 lines
1.1 KiB
Elixir
32 lines
1.1 KiB
Elixir
defmodule LivebookProto.DeploymentGroupUpdated do
|
|
use Protobuf, protoc_gen_elixir_version: "0.14.1", syntax: :proto3
|
|
|
|
field :id, 1, type: :string
|
|
field :name, 2, type: :string
|
|
field :secrets, 3, repeated: true, type: LivebookProto.DeploymentGroupSecret
|
|
field :clustering, 4, type: :string
|
|
field :zta_provider, 5, type: :string, json_name: "ztaProvider", deprecated: true
|
|
field :zta_key, 6, type: :string, json_name: "ztaKey", deprecated: true
|
|
field :agent_keys, 7, repeated: true, type: LivebookProto.AgentKey, json_name: "agentKeys"
|
|
field :url, 8, type: :string
|
|
|
|
field :environment_variables, 9,
|
|
repeated: true,
|
|
type: LivebookProto.EnvironmentVariable,
|
|
json_name: "environmentVariables"
|
|
|
|
field :teams_auth, 10, type: :bool, json_name: "teamsAuth"
|
|
|
|
field :authorization_groups, 11,
|
|
repeated: true,
|
|
type: LivebookProto.AuthorizationGroup,
|
|
json_name: "authorizationGroups"
|
|
|
|
field :groups_auth, 12, type: :bool, json_name: "groupsAuth"
|
|
field :deploy_auth, 13, type: :bool, json_name: "deployAuth"
|
|
|
|
field :deployment_users, 14,
|
|
repeated: true,
|
|
type: LivebookProto.DeploymentUser,
|
|
json_name: "deploymentUsers"
|
|
end
|