VirtualNicArgs

data class VirtualNicArgs(val customization: Output<GuestOSNICCustomizationArgs>? = null, val ipAddresses: Output<List<String>>? = null, val macAddress: Output<String>? = null, val network: Output<VirtualNetworkArgs>, val nicType: Output<NICType>, val powerOnBoot: Output<Boolean>? = null, val virtualNicId: Output<String>? = null) : ConvertibleToJava<VirtualNicArgs>

Virtual NIC model

Constructors

Link copied to clipboard
constructor(customization: Output<GuestOSNICCustomizationArgs>? = null, ipAddresses: Output<List<String>>? = null, macAddress: Output<String>? = null, network: Output<VirtualNetworkArgs>, nicType: Output<NICType>, powerOnBoot: Output<Boolean>? = null, virtualNicId: Output<String>? = null)

Properties

Link copied to clipboard

guest OS customization for nic

Link copied to clipboard
val ipAddresses: Output<List<String>>? = null

NIC ip address

Link copied to clipboard
val macAddress: Output<String>? = null

NIC MAC address

Link copied to clipboard

Virtual Network

Link copied to clipboard
val nicType: Output<NICType>

NIC type

Link copied to clipboard
val powerOnBoot: Output<Boolean>? = null

Is NIC powered on/off on boot

Link copied to clipboard
val virtualNicId: Output<String>? = null

NIC id

Functions

Link copied to clipboard
open override fun toJava(): VirtualNicArgs