Show / Hide Table of Contents

Class Nic

The VNIC configuration.

Inheritance
object
Nic
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.CloudbridgeService.Models
Assembly: OCI.DotNetSDK.Cloudbridge.dll
Syntax
public class Nic

Properties

IpAddresses

Declaration
[JsonProperty(PropertyName = "ipAddresses")]
public List<string> IpAddresses { get; set; }
Property Value
Type Description
List<string>

List of IP addresses.

Label

Declaration
[JsonProperty(PropertyName = "label")]
public string Label { get; set; }
Property Value
Type Description
string

Provides a label and summary information for the device.

MacAddress

Declaration
[JsonProperty(PropertyName = "macAddress")]
public string MacAddress { get; set; }
Property Value
Type Description
string

Mac address of the VM.

MacAddressType

Declaration
[JsonProperty(PropertyName = "macAddressType")]
public string MacAddressType { get; set; }
Property Value
Type Description
string

Mac address type.

NetworkName

Declaration
[JsonProperty(PropertyName = "networkName")]
public string NetworkName { get; set; }
Property Value
Type Description
string

Network name.

SwitchName

Declaration
[JsonProperty(PropertyName = "switchName")]
public string SwitchName { get; set; }
Property Value
Type Description
string

Switch name.

In this article
Back to top