# File lib/fog/dynect/requests/dns/post_zone.rb, line 15
        def post_zone(rname, ttl, zone, options = {})
          body = Fog::JSON.encode({
            :rname  => rname,
            :token  => auth_token,
            :ttl    => ttl
          }.merge!(options))

          request(
            :body     => body,
            :expects  => 200,
            :method   => :post,
            :path     => 'Zone/' << zone
          )
        end