Show / Hide Table of Contents

Class InstancePoolPlacementSecondaryVnicSubnet

The secondary VNIC object for the placement configuration for an instance pool.

Inheritance
object
InstancePoolPlacementSecondaryVnicSubnet
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 InstancePoolPlacementSecondaryVnicSubnet

Properties

DisplayName

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

The display name of the VNIC. This is also used to match against the instance configuration defined secondary VNIC.

Ipv6AddressIpv6SubnetCidrPairDetails

Declaration
[JsonProperty(PropertyName = "ipv6AddressIpv6SubnetCidrPairDetails")]
public List<InstancePoolPlacementIpv6AddressIpv6SubnetCidrDetails> Ipv6AddressIpv6SubnetCidrPairDetails { get; set; }
Property Value
Type Description
List<InstancePoolPlacementIpv6AddressIpv6SubnetCidrDetails>

A list of IPv6 prefix ranges from which the VNIC should be assigned an IPv6 address. You can provide only the prefix ranges and OCI will select an available address from the range. You can optionally choose to leave the prefix range empty and instead provide the specific IPv6 address that should be used from within that range.

IsAssignIpv6Ip

Declaration
[JsonProperty(PropertyName = "isAssignIpv6Ip")]
public bool? IsAssignIpv6Ip { get; set; }
Property Value
Type Description
bool?

Whether to allocate an IPv6 address at instance and VNIC creation from an IPv6 enabled subnet. Default: False. When provided you may optionally provide an IPv6 prefix (ipv6SubnetCidr) of your choice to assign the IPv6 address from. If ipv6SubnetCidr is not provided then an IPv6 prefix is chosen for you.

SubnetId

Declaration
[Required(ErrorMessage = "SubnetId is required.")]
[JsonProperty(PropertyName = "subnetId")]
public string SubnetId { get; set; }
Property Value
Type Description
string

The subnet OCID for the secondary VNIC.

Remarks

Required

In this article
Back to top