Show / Hide Table of Contents

Class Byoipv6CidrDetails

The list of one or more BYOIPv6 prefixes for the VCN that meets the following criteria:

  • The prefix must be from a BYOIPv6 range.
  • The IPv6 prefixes must be valid.
  • Multiple prefix must not overlap each other or the on-premises network prefix.
  • The number of prefixes must not exceed the limit of IPv6 prefixes allowed to a VCN.
Inheritance
object
Byoipv6CidrDetails
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 Byoipv6CidrDetails

Properties

Byoipv6RangeId

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

The OCID of the ByoipRange resource to which the CIDR block belongs.

Remarks

Required

Ipv6CidrBlock

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

An IPv6 prefix required to create a VCN with a BYOIP prefix. It could be the whole prefix identified in byoipv6RangeId, or a subrange. Example: 2001:0db8:0123::/48

Remarks

Required

In this article
Back to top