diff options
author | Alejandro Sirgo Rica <asirgo@soleta.eu> | 2024-05-23 11:17:35 +0200 |
---|---|---|
committer | Alejandro Sirgo Rica <asirgo@soleta.eu> | 2024-05-30 17:22:23 +0200 |
commit | 8de2b785a9be79f9cc0caa0011293f95a42d4d31 (patch) | |
tree | 660b9c7088f56e3d9a768c05fe1a0f65b296bc69 /src/windows | |
parent | e2d48ba3a0909f34afcf286ece339aa6a426678c (diff) |
src: add POST cache/delete method
Add API REST method to delete cache contents.
Resquest payload structure:
{
'images': ['windows.img', 'linux.img']
}
The client will try to delete as many images in cache as available
with names matching the list of filenames in the 'images' field.
Resquest response structure:
{
'cache': [
{'name': 'windows.img', 'size': 2432370213, checksum: '5d4dcc677bc19f40a647d0002f4ade90'},
{'name': 'linux.img', 'size': 243234534213, checksum: '3eb22f888f88a55ad954f55644e1192e'}
]
}
Diffstat (limited to 'src/windows')
-rw-r--r-- | src/windows/ogOperations.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/windows/ogOperations.py b/src/windows/ogOperations.py index d20b52c..70d3c5b 100644 --- a/src/windows/ogOperations.py +++ b/src/windows/ogOperations.py @@ -110,6 +110,9 @@ class OgWindowsOperations: def image_create(self, path, request, ogRest): raise NotImplementedError + def cache_delete(self, request, ogRest): + raise NotImplementedError + def refresh(self, ogRest): return {"status": "WIN"} |