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