Sha256: 8d45e3fcff9c1b9552864df82adc744975adf2bf77ed44bd21ce0376f02c8e5b
Contents?: true
Size: 1.12 KB
Versions: 163
Compression:
Stored size: 1.12 KB
Contents
module Fog module Terremark module Shared module Mock def vdcs(options = {}) Fog::Terremark::Shared::Vdcs.new(options.merge(:connection => self)) end end module Real def vdcs(options = {}) Fog::Terremark::Shared::Vdcs.new(options.merge(:connection => self)) end end class Vdcs < Fog::Collection model Fog::Terremark::Shared::Vdc def all data = connection.get_organization(organization_id).body['Links'].select do |entity| entity['type'] == 'application/vnd.vmware.vcloud.vdc+xml' end load(data) end def get(vdc_id) if vdc_id && vdc = connection.get_vdc(vdc_id).body new(vdc) elsif !vdc_id nil end rescue Excon::Errors::Forbidden nil end def organization_id @vdc_id ||= connection.default_organization_id end private def organization_id=(new_organization_id) @organization_id = new_organization_id end end end end end
Version data entries
163 entries across 163 versions & 18 rubygems