Sha256: bf0bee414a0a6c9b8f40a698209062f6d66052c55c31ebdaa19f8086a246bcce

Contents?: true

Size: 1.1 KB

Versions: 65

Compression:

Stored size: 1.1 KB

Contents

module Fog
  module Terremark
    module Shared

      module Mock
        def vdcs(options = {})
          Fog::Terremark::Shared::Vdcs.new(options.merge(:service => self))
        end
      end

      module Real
        def vdcs(options = {})
          Fog::Terremark::Shared::Vdcs.new(options.merge(:service => self))
        end
      end

      class Vdcs < Fog::Collection

        model Fog::Terremark::Shared::Vdc

        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

        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

        def organization_id
          @vdc_id ||= service.default_organization_id
        end

        private

        def organization_id=(new_organization_id)
          @organization_id = new_organization_id
        end

      end

    end
  end
end

Version data entries

65 entries across 65 versions & 6 rubygems

Version Path
fog-maestrodev-1.18.0.20131209090811 lib/fog/terremark/models/shared/vdcs.rb
fog-maestrodev-1.18.0.20131206115947 lib/fog/terremark/models/shared/vdcs.rb
fog-maestrodev-1.18.0.20131205181604 lib/fog/terremark/models/shared/vdcs.rb
fog-maestrodev-1.18.0.20131127194823 lib/fog/terremark/models/shared/vdcs.rb
fog-maestrodev-1.18.0.20131126183714 lib/fog/terremark/models/shared/vdcs.rb
fog-maestrodev-1.18.0.20131126122111 lib/fog/terremark/models/shared/vdcs.rb
fog-maestrodev-1.18.0.20131125111730 lib/fog/terremark/models/shared/vdcs.rb
fog-maestrodev-1.18.0.20131125083406 lib/fog/terremark/models/shared/vdcs.rb
fog-maestrodev-1.18.0.20131123105121 lib/fog/terremark/models/shared/vdcs.rb
fog-maestrodev-1.18.0.20131122203507 lib/fog/terremark/models/shared/vdcs.rb
fog-maestrodev-1.18.0.20131121075022 lib/fog/terremark/models/shared/vdcs.rb
fog-maestrodev-1.18.0.20131118164830 lib/fog/terremark/models/shared/vdcs.rb
fog-maestrodev-1.18.0.20131115184302 lib/fog/terremark/models/shared/vdcs.rb
fog-maestrodev-1.18.0.20131114200144 lib/fog/terremark/models/shared/vdcs.rb
gapinc-fog-1.12.1.2.1 lib/fog/terremark/models/shared/vdcs.rb
fog-maestrodev-1.18.0.20131112185232 lib/fog/terremark/models/shared/vdcs.rb
fog-maestrodev-1.18.0.20131111203459 lib/fog/terremark/models/shared/vdcs.rb
fog-1.18.0 lib/fog/terremark/models/shared/vdcs.rb
fog-1.17.0 lib/fog/terremark/models/shared/vdcs.rb
fog-1.16.0 lib/fog/terremark/models/shared/vdcs.rb