I'm writing a client for deltacloud api and would like know if there
are some documentation available to the features bellow:
- storage volume
> create
> destroy
> attach
> detach
- instance
> get password
I already found this in the project:
fmartins@macafe:~/Desktop/deltacloud/trunk/server$ grep -R storage
. | grep -v svn | grep driver | egrep -i
"create|destroy|attach|detach"
./server.rb: @storage_snapshot =
driver.create_storage_snapshot(credentials, params)
./server.rb: driver.create_storage_snapshot(credentials, params)
./server.rb: @storage_volume =
driver.create_storage_volume(credentials, params)
./server.rb: driver.attach_storage_volume(credentials, params)
./server.rb: driver.detach_storage_volume(credentials, :id =>
volume.id, :instance_id => volume.instance_id,
./server.rb: driver.destroy_storage_volume(credentials, params)
Thanks