Sha256: 0528d3219c60b2078688c9699a9f435dac4f32965ac37ce2db07654e43b53f7f

Contents?: true

Size: 1.1 KB

Versions: 14

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

14 entries across 14 versions & 4 rubygems

Version Path
vagrant-cloudstack-1.1.0 vendor/bundle/gems/fog-1.22.1/lib/fog/terremark/models/shared/vdcs.rb
nsidc-fog-1.24.1 lib/fog/terremark/models/shared/vdcs.rb
fog-1.24.0 lib/fog/terremark/models/shared/vdcs.rb
ns-fog-1.22.11 lib/fog/terremark/models/shared/vdcs.rb
ns-fog-1.22.10 lib/fog/terremark/models/shared/vdcs.rb
ns-fog-1.22.9 lib/fog/terremark/models/shared/vdcs.rb
ns-fog-1.22.8 lib/fog/terremark/models/shared/vdcs.rb
ns-fog-1.22.7 lib/fog/terremark/models/shared/vdcs.rb
ns-fog-1.22.6 lib/fog/terremark/models/shared/vdcs.rb
fog-1.23.0 lib/fog/terremark/models/shared/vdcs.rb
ns-fog-1.22.4 lib/fog/terremark/models/shared/vdcs.rb
ns-fog-1.22.3 lib/fog/terremark/models/shared/vdcs.rb
ns-fog-1.22.2 lib/fog/terremark/models/shared/vdcs.rb
fog-1.22.1 lib/fog/terremark/models/shared/vdcs.rb