mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
[cloudstack] add disk_offerings collection
This commit is contained in:
parent
b12e45772f
commit
425a3004bd
1 changed files with 27 additions and 0 deletions
27
lib/fog/cloudstack/models/compute/disk_offerings.rb
Normal file
27
lib/fog/cloudstack/models/compute/disk_offerings.rb
Normal file
|
@ -0,0 +1,27 @@
|
|||
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
|
Loading…
Add table
Reference in a new issue