Sha256: d660095912aa9745e866a81308347d6cd59b3c6154da1a41b171aa7ff1eb7b90

Contents?: true

Size: 867 Bytes

Versions: 13

Compression:

Stored size: 867 Bytes

Contents

require 'fog/ecloud/models/compute/environment'

module Fog
  module Compute
    class Ecloud

      class Environments < Fog::Ecloud::Collection

        model Fog::Compute::Ecloud::Environment

        undef_method :create

        identity :href

        def all
          data = []
          connection.get_organization(href).body[:Locations][:Location].each do |d| 
            if d[:Environments][:Environment].is_a?(Array)
              d[:Environments][:Environment].each { |e| data << e }
            else
              data << d[:Environments][:Environment]
            end
          end
          load(data)
        end

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

        Vdcs = Environments

      end
    end
  end
end

Version data entries

13 entries across 13 versions & 7 rubygems

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