@@ -84,6 +84,30 @@ defmodule InternalApi.ServiceAccount.DescribeResponse do
84
84
field ( :service_account , 1 , type: InternalApi.ServiceAccount.ServiceAccount )
85
85
end
86
86
87
+ defmodule InternalApi.ServiceAccount.DescribeManyRequest do
88
+ @ moduledoc false
89
+ use Protobuf , syntax: :proto3
90
+
91
+ @ type t :: % __MODULE__ {
92
+ sa_ids: [ String . t ( ) ]
93
+ }
94
+
95
+ defstruct [ :sa_ids ]
96
+ field ( :sa_ids , 1 , repeated: true , type: :string )
97
+ end
98
+
99
+ defmodule InternalApi.ServiceAccount.DescribeManyResponse do
100
+ @ moduledoc false
101
+ use Protobuf , syntax: :proto3
102
+
103
+ @ type t :: % __MODULE__ {
104
+ service_accounts: [ InternalApi.ServiceAccount.ServiceAccount . t ( ) ]
105
+ }
106
+
107
+ defstruct [ :service_accounts ]
108
+ field ( :service_accounts , 1 , repeated: true , type: InternalApi.ServiceAccount.ServiceAccount )
109
+ end
110
+
87
111
defmodule InternalApi.ServiceAccount.UpdateRequest do
88
112
@ moduledoc false
89
113
use Protobuf , syntax: :proto3
@@ -247,6 +271,12 @@ defmodule InternalApi.ServiceAccount.ServiceAccountService.Service do
247
271
InternalApi.ServiceAccount.DescribeResponse
248
272
)
249
273
274
+ rpc (
275
+ :DescribeMany ,
276
+ InternalApi.ServiceAccount.DescribeManyRequest ,
277
+ InternalApi.ServiceAccount.DescribeManyResponse
278
+ )
279
+
250
280
rpc (
251
281
:Update ,
252
282
InternalApi.ServiceAccount.UpdateRequest ,
0 commit comments