Interface IpregistryRequestHandler

interface IpregistryRequestHandler {
    batchLookupAsns(asns, options): Promise<ApiResponse<BatchResult<AutonomousSystem | LookupError>>>;
    batchLookupIps(ipAddresses, options): Promise<ApiResponse<BatchResult<IpInfo | LookupError>>>;
    lookupAsn(asn, options): Promise<ApiResponse<AutonomousSystem>>;
    lookupIp(ipAddress, options): Promise<ApiResponse<IpInfo>>;
    originLookupAsn(options): Promise<ApiResponse<RequesterAutonomousSystem>>;
    originLookupIp(options): Promise<ApiResponse<RequesterIpInfo>>;
    parseUserAgents(userAgents): Promise<ApiResponse<BatchResult<UserAgent>>>;
}

Implemented by

Methods