mirror of
https://github.com/livebook-dev/livebook.git
synced 2025-09-04 20:14:57 +08:00
Update protobuf messages (#2980)
This commit is contained in:
parent
ffbad8391c
commit
3899b897f3
4 changed files with 6 additions and 2 deletions
|
@ -12,5 +12,5 @@ defmodule LivebookProto.AppDeployment do
|
|||
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"
|
||||
field :authorization_groups, 12, repeated: true, type: :string, json_name: "authorizationGroups"
|
||||
end
|
||||
|
|
|
@ -17,4 +17,5 @@ defmodule LivebookProto.DeploymentGroup do
|
|||
json_name: "environmentVariables"
|
||||
|
||||
field :teams_auth, 11, type: :bool, json_name: "teamsAuth"
|
||||
field :authorization_groups, 12, repeated: true, type: :string, json_name: "authorizationGroups"
|
||||
end
|
||||
|
|
|
@ -16,4 +16,5 @@ defmodule LivebookProto.DeploymentGroupUpdated do
|
|||
json_name: "environmentVariables"
|
||||
|
||||
field :teams_auth, 10, type: :bool, json_name: "teamsAuth"
|
||||
field :authorization_groups, 11, repeated: true, type: :string, json_name: "authorizationGroups"
|
||||
end
|
||||
|
|
|
@ -66,6 +66,7 @@ message DeploymentGroup {
|
|||
string url = 9;
|
||||
repeated EnvironmentVariable environment_variables = 10;
|
||||
bool teams_auth = 11;
|
||||
repeated string authorization_groups = 12;
|
||||
}
|
||||
|
||||
message DeploymentGroupCreated {
|
||||
|
@ -91,6 +92,7 @@ message DeploymentGroupUpdated {
|
|||
string url = 8;
|
||||
repeated EnvironmentVariable environment_variables = 9;
|
||||
bool teams_auth = 10;
|
||||
repeated string authorization_groups = 11;
|
||||
}
|
||||
|
||||
message DeploymentGroupDeleted {
|
||||
|
@ -137,7 +139,7 @@ message AppDeployment {
|
|||
bool multi_session = 9;
|
||||
string access_type = 10;
|
||||
string version = 11;
|
||||
repeated string identity_groups = 12;
|
||||
repeated string authorization_groups = 12;
|
||||
}
|
||||
|
||||
message AppDeploymentStarted {
|
||||
|
|
Loading…
Add table
Reference in a new issue