File tree 1 file changed +12
-0
lines changed
1 file changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -211,6 +211,8 @@ service AppService {
211
211
212
212
rpc ListKeys (ListKeysRequest ) returns (ListKeysResponse );
213
213
214
+ rpc RenameKey (RenameKeyRequest ) returns (RenameKeyResponse );
215
+
214
216
rpc RotateKey (RotateKeyRequest ) returns (RotateKeyResponse );
215
217
216
218
rpc CreateKeyFromExistingKeyAuthorizations (CreateKeyFromExistingKeyAuthorizationsRequest ) returns (CreateKeyFromExistingKeyAuthorizationsResponse );
@@ -1162,6 +1164,16 @@ message DeleteKeyRequest {
1162
1164
1163
1165
message DeleteKeyResponse {}
1164
1166
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
+
1165
1177
message AuthorizationDetails {
1166
1178
string authorization_type = 1 ;
1167
1179
string authorization_id = 2 ;
You can’t perform that action at this time.
0 commit comments