Sha256: 45cfa7f4525aea0103d3279eaead4d407acf0af3f4f29a2c49181d8f0b664085
Contents?: true
Size: 886 Bytes
Versions: 3
Compression:
Stored size: 886 Bytes
Contents
require 'fog/vcloud_director/models/compute/vdc' module Fog module Compute class VcloudDirector class Vdcs < Collection include Fog::VcloudDirector::Query model Fog::Compute::VcloudDirector::Vdc attribute :organization def query_type "orgVdc" end private def get_by_id(item_id) item = service.get_vdc(item_id).body %w(:VdcItems :Link :ResourceEntities).each {|key_to_delete| item.delete(key_to_delete) } service.add_id_from_href!(item) item end def item_list data = service.get_organization(organization.id).body items = data[:Link].select { |link| link[:type] == "application/vnd.vmware.vcloud.vdc+xml" } items.each{|item| service.add_id_from_href!(item) } items end end end end end
Version data entries
3 entries across 3 versions & 1 rubygems