Class: Fog::Terremark::Shared::Vdcs
- Inherits:
-
Collection
- Object
- Collection
- Fog::Terremark::Shared::Vdcs
- Defined in:
- lib/fog/terremark/models/shared/vdcs.rb
Instance Method Summary collapse
Instance Method Details
#all ⇒ Object
19 20 21 22 23 24 |
# File 'lib/fog/terremark/models/shared/vdcs.rb', line 19 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) ⇒ Object
26 27 28 29 30 31 32 33 34 |
# File 'lib/fog/terremark/models/shared/vdcs.rb', line 26 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 ⇒ Object
36 37 38 |
# File 'lib/fog/terremark/models/shared/vdcs.rb', line 36 def organization_id @vdc_id ||= service.default_organization_id end |