Sha256: c6682e6ff44dd391d215cd32a29bf9199bd41f124c118153dd3f666918c44124

Contents?: true

Size: 844 Bytes

Versions: 36

Compression:

Stored size: 844 Bytes

Contents

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

module Fog
  module Compute
    class Joyent
      class Images < Fog::Collection
        model Fog::Compute::Joyent::Image

        def all
          # the API call for getting images changed from 6.5 to 7.0.  Joyent seems to still support the old url, but no idea for how long
          if service.joyent_version.gsub(/[^0-9.]/,'').to_f < 7.0
            load(service.list_datasets.body)
          else
            load(service.list_images.body)
          end
        end

        def get(id)
          data = if service.joyent_version.gsub(/[^0-9.]/,'').to_f < 7.0
            service.get_dataset(id).body
          else
            service.get_image(id).body
          end
          new(data)
        end
      end # Images
    end # Joyent
  end # Compute
end # Fog

Version data entries

36 entries across 34 versions & 6 rubygems

Version Path
vagrant-packet-0.1.1 vendor/bundle/ruby/2.5.0/gems/fog-joyent-0.0.1/lib/fog/joyent/models/compute/images.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.4.0/gems/fog-joyent-0.0.1/lib/fog/joyent/models/compute/images.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.3.0/gems/fog-joyent-0.0.1/lib/fog/joyent/models/compute/images.rb
fog-joyent-0.0.1 lib/fog/joyent/models/compute/images.rb
fog-1.40.0 lib/fog/joyent/models/compute/images.rb
fog-1.39.0 lib/fog/joyent/models/compute/images.rb
fog-1.38.0 lib/fog/joyent/models/compute/images.rb
fog-1.37.0 lib/fog/joyent/models/compute/images.rb
fog-1.36.0 lib/fog/joyent/models/compute/images.rb
fog-1.35.0 lib/fog/joyent/models/compute/images.rb
fog-2.0.0.pre.0 lib/fog/joyent/models/compute/images.rb
vagrant-cloudstack-1.2.0 vendor/bundle/gems/fog-1.32.0/lib/fog/joyent/models/compute/images.rb
fog-1.34.0 lib/fog/joyent/models/compute/images.rb
fog-1.33.0 lib/fog/joyent/models/compute/images.rb
fog-1.32.0 lib/fog/joyent/models/compute/images.rb
fog-1.31.0 lib/fog/joyent/models/compute/images.rb
vagrant-cloudstack-1.1.0 vendor/bundle/gems/fog-1.22.1/lib/fog/joyent/models/compute/images.rb
fog-1.30.0 lib/fog/joyent/models/compute/images.rb
fog-1.29.0 lib/fog/joyent/models/compute/images.rb
fog-1.28.0 lib/fog/joyent/models/compute/images.rb