/** * The LearnedMacAddress model module. * @module Ntnx/LearnedMacAddress * @version 4.4.1 * @class LearnedMacAddress * @extends MacAddress */ export default class LearnedMacAddress extends MacAddress { /** * Returns A reference to the associated remote VTEP Gateway. * @return {string} */ getRemoteGatewayReference(): string; /** * Sets A reference to the associated remote VTEP Gateway. * @param {string} remoteGatewayReference A reference to the associated remote VTEP Gateway. */ setRemoteGatewayReference(remoteGatewayReference: string): void; remoteGatewayReference: string; /** * @return {IPAddress} */ getVtepIPAddress(): IPAddress; /** * @param {IPAddress} vtepIPAddress */ setVtepIPAddress(vtepIPAddress: IPAddress): void; vtepIPAddress: IPAddress; #private; } import MacAddress from "./MacAddress"; import IPAddress from "../../../common/v1/config/IPAddress";