# File lib/fog/compute/requests/ecloud/get_network_ip.rb, line 15
        def get_network_ip(network_ip_uri)
          if network_ip = mock_data.network_ip_from_href(network_ip_uri)
            builder = Builder::XmlMarkup.new
            xml = network_ip_response(builder, network_ip, ecloud_xmlns)

            mock_it 200, xml, { 'Content-Type' => 'application/vnd.tmrk.ecloud.ip+xml' }
          else
            mock_error 200, "401 Unauthorized"
          end
        end