Show / Hide Table of Contents

Class AddVcnIpv6CidrDetails

Details used when adding a ULA or private IPv6 prefix or an IPv6 GUA assigned by Oracle or a BYOIPv6 prefix. You can add only one of these per request.

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

Properties

Byoipv6CidrDetail

Declaration
[JsonProperty(PropertyName = "byoipv6CidrDetail")]
public Byoipv6CidrDetails Byoipv6CidrDetail { get; set; }
Property Value
Type Description
Byoipv6CidrDetails

Ipv6PrivateCidrBlock

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

This field is not required and should only be specified if a ULA or private IPv6 prefix is desired for VCN's private IP address space. SeeIPv6 Addresses.
Example: 2001:0db8:0123::/48 or fd00:1000:0:1::/64

IsOracleGuaAllocationEnabled

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

Indicates whether Oracle will allocate an IPv6 GUA. Only one prefix of /56 size can be allocated by Oracle as a GUA.

In this article
Back to top