File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed
ydb/public/api/client/yc_private
resourcemanager/transitional Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -18,15 +18,15 @@ service ServiceAccountService {
1818 option (google.api.http ) = { get : "/iam/v1/serviceAccounts" };
1919 }
2020
21- rpc Create (CreateServiceAccountRequest ) returns (yandex . cloud . priv . operation .Operation ) {
21+ rpc Create (CreateServiceAccountRequest ) returns (operation .Operation ) {
2222 option (google.api.http ) = { post : "/iam/v1/serviceAccounts" body: "*" };
2323 }
2424
25- rpc Update (UpdateServiceAccountRequest ) returns (yandex . cloud . priv . operation .Operation ) {
25+ rpc Update (UpdateServiceAccountRequest ) returns (operation .Operation ) {
2626 option (google.api.http ) = { patch : "/iam/v1/serviceAccounts/{service_account_id}" body: "*" };
2727 }
2828
29- rpc Delete (DeleteServiceAccountRequest ) returns (yandex . cloud . priv . operation .Operation ) {
29+ rpc Delete (DeleteServiceAccountRequest ) returns (operation .Operation ) {
3030 option (google.api.http ) = { delete : "/iam/v1/serviceAccounts/{service_account_id}" };
3131 }
3232
@@ -42,7 +42,7 @@ service ServiceAccountService {
4242
4343 rpc ListReferences (ListServiceAccountReferencesRequest ) returns (ListServiceAccountReferencesResponse );
4444
45- rpc UpdateReferences (UpdateServiceAccountReferencesRequest ) returns (yandex . cloud . priv . operation .Operation );
45+ rpc UpdateReferences (UpdateServiceAccountReferencesRequest ) returns (operation .Operation );
4646}
4747
4848message GetServiceAccountRequest {
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ service UserAccountService {
1212 option (google.api.http ) = { get : "/iam/v1/userAccounts/{user_account_id}" };
1313 }
1414
15- rpc Delete (DeleteUserAccountRequest ) returns (yandex . cloud . priv . operation .Operation );
15+ rpc Delete (DeleteUserAccountRequest ) returns (operation .Operation );
1616
1717 rpc GetSettings (GetSettingsRequest ) returns (UserSettings );
1818
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ service FolderService {
2020 option (google.api.http ) = { post : "/yrm/v1/folder/{folder_id}/status" body: "*" };
2121 }
2222
23- rpc Delete (DeleteFolderRequest ) returns (yandex . cloud . priv . operation .Operation ) {
23+ rpc Delete (DeleteFolderRequest ) returns (operation .Operation ) {
2424 option (google.api.http ) = { delete : "/yrm/v1/folders/{folder_id}" };
2525 }
2626}
You can’t perform that action at this time.
0 commit comments