/** *

Describes a gateway's network interface.

*/ export interface _NetworkInterface { /** *

The Internet Protocol version 4 (IPv4) address of the interface.

*/ Ipv4Address?: string; /** *

The Media Access Control (MAC) address of the interface.

This is currently unsupported and will not be returned in output.

*/ MacAddress?: string; /** *

The Internet Protocol version 6 (IPv6) address of the interface. Currently not supported.

*/ Ipv6Address?: string; } export declare type _UnmarshalledNetworkInterface = _NetworkInterface;