Skip to content

Commit 82a76ec

Browse files
author
Clark Perkins
committed
Fixed snapshot urls
1 parent 0ca0923 commit 82a76ec

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

stackdio/client/snapshot.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,18 +25,18 @@ def create_snapshot(self, snapshot):
2525
"""Create a snapshot"""
2626
return snapshot
2727

28-
@get('snapshots/', paginate=True)
28+
@get('cloud/snapshots/', paginate=True)
2929
def list_snapshots(self):
3030
pass
3131

32-
@get('snapshots/{snapshot_id}/')
32+
@get('cloud/snapshots/{snapshot_id}/')
3333
def get_snapshot(self, snapshot_id):
3434
pass
3535

36-
@get('snapshots/', paginate=True)
36+
@get('cloud/snapshots/', paginate=True)
3737
def search_snapshots(self, **kwargs):
3838
pass
3939

40-
@delete('snapshots/{snapshot_id}/')
40+
@delete('cloud/snapshots/{snapshot_id}/')
4141
def delete_snapshot(self, snapshot_id):
4242
pass

0 commit comments

Comments
 (0)