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

NetworkInterface

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

Message describing network interfaces.

interface NetworkInterface {
readonly adapterDescription?: string;
readonly cidr?: string;
readonly interfaceName?: string;
readonly ipAddress?: string;
readonly macAddress?: string;
readonly speed?: bigint;
readonly vlanId?: bigint;
}

§Properties

§
readonly adapterDescription?: string
[src]

Output only. The description of the interface.

§
readonly cidr?: string
[src]

Output only. The IP address of the interface and subnet mask in CIDR format. Examples: 192.168.1.0/24, 2001:db8::/32

§
readonly interfaceName?: string
[src]

Output only. The name of the network interface. Examples: eth0, eno1

§
readonly ipAddress?: string
[src]

Output only. The IP address of the interface.

§
readonly macAddress?: string
[src]

Output only. The MAC address of the interface.

§
readonly speed?: bigint
[src]

Output only. Speed of the interface in millions of bits per second.

§
readonly vlanId?: bigint
[src]

Output only. The id of the VLAN.