Sha256: c6f9bc220e3ca2572b4d49077c20927bdf02804e488b17dbfd7a5c6275539082
Contents?: true
Size: 805 Bytes
Versions: 46
Compression:
Stored size: 805 Bytes
Contents
require 'fog/vcloud/models/vdc' module Fog class Vcloud class Vdcs < Fog::Vcloud::Collection model Fog::Vcloud::Vdc def all data = connection.get_organization(organization_uri).body[:Link].select { |link| link[:type] == "application/vnd.vmware.vcloud.vdc+xml" } data.each { |link| link.delete_if { |key, value| [:rel].include?(key) } } load(data) end def get(uri) if data = connection.get_vdc(uri) new(data.body) end rescue Fog::Errors::NotFound nil end def organization_uri @organizatio_uri ||= connection.default_organization_uri end private def organization_uri=(new_organization_uri) @organization_uri = new_organization_uri end end end end
Version data entries
46 entries across 46 versions & 3 rubygems