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/cloudstack/models/compute/disk_offerings.rb
2013-04-22 13:39:47 +03:00

27 lines
738 B
Ruby

require 'fog/core/collection'
require 'fog/cloudstack/models/compute/disk_offering'
module Fog
module Compute
class Cloudstack
class DiskOfferings < Fog::Collection
model Fog::Compute::Cloudstack::DiskOffering
def all(options = {})
response = service.list_disk_offerings(options)
disk_offerings_data = response["listdiskofferingsresponse"]["diskoffering"] || []
load(disk_offerings_data)
end
def get(disk_offering_id)
response = service.list_disk_offerings('id' => disk_offering_id)
disk_offering_data = response["listdiskofferingsresponse"]["diskoffering"].first
new(disk_offering_data)
end
end
end
end
end