mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
27 lines
738 B
Ruby
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
|