Show / Hide Table of Contents

Class InstanceConfigurationAttachVnicDetails

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

Properties

CreateVnicDetails

Declaration
[JsonProperty(PropertyName = "createVnicDetails")]
public InstanceConfigurationCreateVnicDetails CreateVnicDetails { get; set; }
Property Value
Type Description
InstanceConfigurationCreateVnicDetails

DisplayName

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

A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.

NicIndex

Declaration
[JsonProperty(PropertyName = "nicIndex")]
public int? NicIndex { get; set; }
Property Value
Type Description
int?

Which physical network interface card (NIC) the VNIC will use. Defaults to 0. Certain bare metal instance shapes have two active physical NICs (0 and 1). If you add a secondary VNIC to one of these instances, you can specify which NIC the VNIC will use. For more information, see Virtual Network Interface Cards (VNICs).

In this article
Back to top