1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/rackspace/models/compute_v2/attachments.rb
Julio Feijo 8920e7bbfb [rackspace|compute] Add attachments model and collection.
Provide a method for attaching, listing, and detaching block
storage volumes on Rackspace next-generation cloud servers.
2012-09-13 10:37:37 -04:00

25 lines
578 B
Ruby

require 'fog/core/collection'
require 'fog/rackspace/models/compute_v2/attachment'
module Fog
module Compute
class RackspaceV2
class Attachments < Fog::Collection
model Fog::Compute::RackspaceV2::Attachment
attr_accessor :server
def all
data = connection.list_attachments(server.id).body['volumeAttachments']
load(data)
end
def get(volume_id)
data = connection.get_attachment(server.id, volume_id).body['volumeAttachment']
data && new(data)
end
end
end
end
end