Sha256: 6d3e9b08cf9e31414646fe0198ad8eed7bfc5d14b5eb638498ac5e64a5f24b19
Contents?: true
Size: 1.26 KB
Versions: 4
Compression:
Stored size: 1.26 KB
Contents
require File.expand_path("../environment", __FILE__) module Fog module Compute class Ecloud class Environments < Fog::Ecloud::Collection model Fog::Compute::Ecloud::Environment undef_method :create identity :href def all data = [] raw_location = service.get_organization(href).body[:Locations][:Location] if raw_location.is_a?(Array) # If there's more than one location, the XML parser returns an # array. location = raw_location else # Otherwise it returns a hash. location = [raw_location] end location.each do |l| environments = l[:Environments] next unless environments if environments[:Environment].is_a?(Array) environments[:Environment].each { |e| data << e } else data << environments[:Environment] end end load(data) end def get(uri) if data = service.get_environment(uri) new(data.body) end rescue ServiceError => e raise e unless e.status_code == 404 nil end Vdcs = Environments end end end end
Version data entries
4 entries across 2 versions & 2 rubygems