This repository has been archived on 2024-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
|
from teal.resource import View
|
|
|
|
|
|
class SnapshotView(View):
|
|
def post(self):
|
|
"""Creates a Snapshot."""
|
|
return super().post()
|
|
|
|
def delete(self, id):
|
|
"""Deletes a Snapshot"""
|
|
return super().delete(id)
|
|
|
|
def patch(self, id):
|
|
"""Modifies a Snapshot"""
|
|
return super().patch(id)
|
|
|
|
|