Show / Hide Table of Contents

Class Ipv6AddressIpv6SubnetCidrPairDetails

Details to assign an IPv6 subnet prefix and IPv6 address on VNIC creation.

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

Properties

Ipv6Address

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

An IPv6 address of your choice. Must be an available IPv6 address within the subnet's prefix. If an IPv6 address is not provided:

  • Oracle will automatically assign an IPv6 address from the subnet's IPv6 prefix if and only if there is only one IPv6 prefix on the subnet.
  • Oracle will automatically assign an IPv6 address from the subnet's IPv6 Oracle GUA prefix if it exists on the subnet.

Ipv6SubnetCidr

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

The IPv6 prefix allocated to the subnet.

In this article
Back to top