Class: Fog::Compute::Cloudstack::Images
- Inherits:
-
Fog::Collection
- Object
- Fog::Collection
- Fog::Compute::Cloudstack::Images
- Defined in:
- lib/fog/cloudstack/models/compute/images.rb
Instance Method Summary collapse
Instance Method Details
#all(filters = {}) ⇒ Object
10 11 12 13 14 15 |
# File 'lib/fog/cloudstack/models/compute/images.rb', line 10 def all(filters={}) = (filters) data = service.list_templates()["listtemplatesresponse"]["template"] || [] load(data) end |
#get(template_id, filters = {}) ⇒ Object
17 18 19 20 21 22 23 24 25 26 |
# File 'lib/fog/cloudstack/models/compute/images.rb', line 17 def get(template_id, filters={}) filter_option = (filters) = filter_option.merge('id' => template_id) if template = service.list_templates()["listtemplatesresponse"]["template"].first new(template) end rescue Fog::Compute::Cloudstack::BadRequest nil end |