/** * The VnicMigrationItemSpec model module. * @module Ntnx/VnicMigrationItemSpec * @version 4.4.1 * @class VnicMigrationItemSpec * @extends NetworkingBaseModel */ export default class VnicMigrationItemSpec extends NetworkingBaseModel { /** * Returns NIC network UUID for the destination subnet. * @return {string} */ getNetworkUuid(): string; /** * Sets NIC network UUID for the destination subnet. * @param {string} networkUuid NIC network UUID for the destination subnet. */ setNetworkUuid(networkUuid: string): void; networkUuid: string; /** * @return {IPAddress[]} */ getRequestedIpAddresses(): IPAddress[]; /** * @param {IPAddress[]} requestedIpAddresses */ setRequestedIpAddresses(requestedIpAddresses: IPAddress[]): void; requestedIpAddresses: IPAddress[]; #private; } import NetworkingBaseModel from "./NetworkingBaseModel"; import IPAddress from "../../../common/v1/config/IPAddress";