File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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
11631165message 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+
11651177message AuthorizationDetails {
11661178 string authorization_type = 1 ;
11671179 string authorization_id = 2 ;
You can’t perform that action at this time.
0 commit comments