Update protobuf messages (#2980)

This commit is contained in:
Alexandre de Souza 2025-04-03 10:48:25 -03:00 committed by GitHub
parent ffbad8391c
commit 3899b897f3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 6 additions and 2 deletions

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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 {