Class/Module Index [+]

Quicksearch

Fog::Terremark::Shared::Vdcs

Public Instance Methods

all() click to toggle source
# File lib/fog/terremark/models/shared/vdcs.rb, line 21
def all
  data = service.get_organization(organization_id).body['Links'].select do |entity|
    entity['type'] == 'application/vnd.vmware.vcloud.vdc+xml'
  end
  load(data)
end
get(vdc_id) click to toggle source
# File lib/fog/terremark/models/shared/vdcs.rb, line 28
def get(vdc_id)
  if vdc_id && vdc = service.get_vdc(vdc_id).body
    new(vdc)
  elsif !vdc_id
    nil
  end
rescue Excon::Errors::Forbidden
  nil
end
organization_id() click to toggle source
# File lib/fog/terremark/models/shared/vdcs.rb, line 38
def organization_id
  @vdc_id ||= service.default_organization_id
end

[Validate]

Generated with the Darkfish Rdoc Generator 2.