We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 786c340 commit 2de6476Copy full SHA for 2de6476
stackdio/client/snapshot.py
@@ -26,17 +26,13 @@ def create_snapshot(self, snapshot):
26
return snapshot
27
28
@get('cloud/snapshots/', paginate=True)
29
- def list_snapshots(self):
+ def list_snapshots(self, **kwargs):
30
pass
31
32
@get('cloud/snapshots/{snapshot_id}/')
33
def get_snapshot(self, snapshot_id):
34
35
36
- @get('cloud/snapshots/', paginate=True)
37
- def search_snapshots(self, **kwargs):
38
- pass
39
-
40
@delete('cloud/snapshots/{snapshot_id}/')
41
def delete_snapshot(self, snapshot_id):
42
0 commit comments