Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

DnsEvent

import type { DnsEvent } from "https://googleapis.deno.dev/v1/androidmanagement:v1.ts";

A DNS lookup event was initiated through the standard network stack.

interface DnsEvent {
hostname?: string;
ipAddresses?: string[];
packageName?: string;
totalIpAddressesReturned?: bigint;
}

§Properties

§
hostname?: string
[src]

The hostname that was looked up.

§
ipAddresses?: string[]
[src]

The (possibly truncated) list of the IP addresses returned for DNS lookup (max 10 IPv4 or IPv6 addresses).

§
packageName?: string
[src]

The package name of the UID that performed the DNS lookup.

§
totalIpAddressesReturned?: bigint
[src]

The number of IP addresses returned from the DNS lookup event. May be higher than the amount of ip_addresses if there were too many addresses to log.