Commit 0ab76a05 by Kálmán Viktor

occi: rename remaining disk strings to storage

parent e25aba23
......@@ -453,7 +453,8 @@ class StorageLink(Link):
def init_attrs(self, instance, disk):
self.attrs = {}
self.attrs['occi.core.id'] = "vm_%d_disk_%d" % (instance.pk, disk.pk)
self.attrs['occi.core.id'] = "vm_%d_storage_%d" % (instance.pk,
disk.pk)
self.attrs['occi.core.target'] = Storage(disk).render_location()
self.attrs['occi.core.source'] = Compute(instance).render_location()
# deviceid? mountpoint?
......
......@@ -36,7 +36,7 @@ urlpatterns = patterns(
url(r'^storage/(?P<pk>\d+)/?$', DiskInterface.as_view(), name="occi.disk"),
url(r'^link/storagelink/$', StorageLinkInterface.as_view()),
url(r'^link/storagelink/vm(?P<vm_pk>\d+)_disk(?P<disk_pk>\d+)/?$',
url(r'^link/storagelink/vm_(?P<vm_pk>\d+)_storage_(?P<disk_pk>\d+)/?$',
StorageLinkInterface.as_view(), name="occi.storagelink"),
url(r'^network2/?$', NetworkInterfaceView.as_view(), ),
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment