(storagePatch: StoragePatch)
| 155 | } |
| 156 | |
| 157 | export function patchStorage(storagePatch: StoragePatch) { |
| 158 | return axios.patch<ObjectStorage>(`/api/v1/storage/${storagePatch.id}`, storagePatch); |
| 159 | } |
| 160 | |
| 161 | export function deleteStorage(storageId: StorageId) { |
| 162 | return axios.delete(`/api/v1/storage/${storageId}`); |