Sha256: 21666aa144ab9be16124dc59e6ba3ff097e4f2011c95c4b96b9b2b93fed8165d

Contents?: true

Size: 774 Bytes

Versions: 65

Compression:

Stored size: 774 Bytes

Contents

require 'fog/ecloud/models/compute/association'

module Fog
  module Compute
    class Ecloud
      class Associations < Fog::Ecloud::Collection

        identity :href

        model Fog::Compute::Ecloud::Association

        def all
          data = service.get_associations(href).body
          if data[:Associations]
            data = data[:Associations]
            if data.is_a?(String) && data.empty?
              data = []
            elsif data.is_a?(Hash)
              data = data[:Association]
            end
          end
          load(data)
        end

        def get(uri)
          if data = service.get_association(uri)
            new(data.body)
          end
        rescue Fog::Errors::NotFound
          nil
        end
      end
    end
  end
end

Version data entries

65 entries across 65 versions & 6 rubygems

Version Path
fog-1.10.0 lib/fog/ecloud/models/compute/associations.rb
fog-1.9.0 lib/fog/ecloud/models/compute/associations.rb
fog-maestrodev-1.8.0.20130114204828 lib/fog/ecloud/models/compute/associations.rb
fog-maestrodev-1.8.0.20130111070250 lib/fog/ecloud/models/compute/associations.rb
fog-maestrodev-1.8.0.20130109172219 lib/fog/ecloud/models/compute/associations.rb