class Fog::Compute::Cloudstack::Images

Public Instance Methods

all(filters={}) click to toggle source
# File lib/fog/cloudstack/models/compute/images.rb, line 12
def all(filters={})
  options = get_filter_options(filters)

  data = connection.list_templates(options)["listtemplatesresponse"]["template"] || []
  load(data)
end
get(template_id, filters={}) click to toggle source
# File lib/fog/cloudstack/models/compute/images.rb, line 19
def get(template_id, filters={})
  filter_option = get_filter_options(filters)
  options = filter_option.merge('id' => template_id)

  if template = connection.list_templates(options)["listtemplatesresponse"]["template"].first
    new(template)
  end
rescue Fog::Compute::Cloudstack::BadRequest
  nil
end

Private Instance Methods

get_filter_options(filters) click to toggle source
# File lib/fog/cloudstack/models/compute/images.rb, line 32
def get_filter_options(filters)
  default_filter = {
      'templatefilter' => 'self'
  }
  default_filter.merge(filters)
end