Show / Hide Table of Contents

Class InstancePoolPlacementSubnetDetails

Base details about the IPv6 subnet.

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

Properties

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