Sha256: 274a900ca733a2effadd84beace9193d2c0addc3ad8c1107e6937a8c3e93cf11

Contents?: true

Size: 1015 Bytes

Versions: 11

Compression:

Stored size: 1015 Bytes

Contents

require 'fog/core/collection'
require 'fog/cloudstack/models/compute/image'

module Fog
  module Compute
    class Cloudstack

      class Images < Fog::Collection

        model Fog::Compute::Cloudstack::Image

        def all(filters={})
          options = get_filter_options(filters)

          data = connection.list_templates(options)["listtemplatesresponse"]["template"] || []
          load(data)
        end

        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

        def get_filter_options(filters)
          default_filter = {
              'templatefilter' => 'self'
          }
          default_filter.merge(filters)
        end
      end
    end
  end
end

Version data entries

11 entries across 11 versions & 7 rubygems

Version Path
fog-nirvanix-1.8.2 lib/fog/cloudstack/models/compute/images.rb
fog-nirvanix-1.8.1 lib/fog/cloudstack/models/compute/images.rb
fog-parser-fix-1.6.1 lib/fog/cloudstack/models/compute/images.rb
fog-test-again-1.6.0 lib/fog/cloudstack/models/compute/images.rb
fog-parser-fix-1.6.0 lib/fog/cloudstack/models/compute/images.rb
ey-vendored-backup-3.0.27 vendor/gems/fog/lib/fog/cloudstack/models/compute/images.rb
fog-sgonyea-1.8.1 lib/fog/cloudstack/models/compute/images.rb
fog-1.8.0 lib/fog/cloudstack/models/compute/images.rb
fog-maestrodev-1.7.0.20121114190951 lib/fog/cloudstack/models/compute/images.rb
fog-1.7.0 lib/fog/cloudstack/models/compute/images.rb
fog-1.6.0 lib/fog/cloudstack/models/compute/images.rb