# File lib/fog/aws/requests/dns/get_hosted_zone.rb, line 23
        def get_hosted_zone(zone_id)
          # AWS methods return zone_ids that looks like '/hostedzone/id'.  Let the caller either use
          # that form or just the actual id (which is what this request needs)
          zone_id = zone_id.sub('/hostedzone/', '')

          request({
            :expects => 200,
            :idempotent => true,
            :method  => 'GET',
            :parser  => Fog::Parsers::DNS::AWS::GetHostedZone.new,
            :path    => "hostedzone/#{zone_id}"
          })
        end