Sha256: d833f39b58a3c9bbb8143f17c335c3ba17696263a14afed0cf2b6c4325c41c10

Contents?: true

Size: 1005 Bytes

Versions: 24

Compression:

Stored size: 1005 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 = service.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 = service.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

24 entries across 22 versions & 3 rubygems

Version Path
fog-2.1.0 lib/fog/cloudstack/models/compute/images.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.5.0/gems/fog-1.42.1/lib/fog/cloudstack/models/compute/images.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.4.0/gems/fog-1.42.1/lib/fog/cloudstack/models/compute/images.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.3.0/gems/fog-1.42.1/lib/fog/cloudstack/models/compute/images.rb
fog-1.42.1 lib/fog/cloudstack/models/compute/images.rb
fog-2.0.0 lib/fog/cloudstack/models/compute/images.rb
fog-1.42.0 lib/fog/cloudstack/models/compute/images.rb
fog-1.41.0 lib/fog/cloudstack/models/compute/images.rb
fog-1.40.0 lib/fog/cloudstack/models/compute/images.rb
fog-1.39.0 lib/fog/cloudstack/models/compute/images.rb
fog-1.38.0 lib/fog/cloudstack/models/compute/images.rb
fog-1.37.0 lib/fog/cloudstack/models/compute/images.rb
fog-1.36.0 lib/fog/cloudstack/models/compute/images.rb
fog-1.35.0 lib/fog/cloudstack/models/compute/images.rb
fog-2.0.0.pre.0 lib/fog/cloudstack/models/compute/images.rb
vagrant-cloudstack-1.2.0 vendor/bundle/gems/fog-1.32.0/lib/fog/cloudstack/models/compute/images.rb
fog-1.34.0 lib/fog/cloudstack/models/compute/images.rb
fog-1.33.0 lib/fog/cloudstack/models/compute/images.rb
fog-1.32.0 lib/fog/cloudstack/models/compute/images.rb
fog-1.31.0 lib/fog/cloudstack/models/compute/images.rb