# File lib/fog/terremark/models/shared/vdcs.rb, line 28
        def get(vdc_id)
          if vdc_id && vdc = connection.get_vdc(vdc_id).body
            new(vdc)
          elsif !vdc_id
            nil
          end
        rescue Excon::Errors::Forbidden
          nil
        end