Skip to content

Commit 2e9496e

Browse files
committed
APP-3685 (ep): updating again
1 parent c9663a5 commit 2e9496e

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

proto/viam/app/v1/app.proto

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -211,6 +211,8 @@ service AppService {
211211

212212
rpc ListKeys(ListKeysRequest) returns (ListKeysResponse);
213213

214+
rpc RenameKey(RenameKeyRequest) returns (RenameKeyResponse);
215+
214216
rpc RotateKey(RotateKeyRequest) returns (RotateKeyResponse);
215217

216218
rpc CreateKeyFromExistingKeyAuthorizations(CreateKeyFromExistingKeyAuthorizationsRequest) returns (CreateKeyFromExistingKeyAuthorizationsResponse);
@@ -1162,6 +1164,16 @@ message DeleteKeyRequest {
11621164

11631165
message DeleteKeyResponse {}
11641166

1167+
message RenameKeyRequest {
1168+
string id = 1;
1169+
string name = 2;
1170+
}
1171+
1172+
message RenameKeyResponse {
1173+
string id = 1;
1174+
string name = 2;
1175+
}
1176+
11651177
message AuthorizationDetails {
11661178
string authorization_type = 1;
11671179
string authorization_id = 2;

0 commit comments

Comments
 (0)