Show / Hide Table of Contents

Class Byoipv6CidrDetails

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

  • The CIDR must from a BYOIPv6 range.
  • The IPv6 CIDR blocks must be valid.
  • Multiple CIDR blocks must not overlap each other or the on-premises network CIDR block.
  • The number of CIDR blocks must not exceed the limit of IPv6 CIDR blocks 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.VnmonitoringService.Models
Assembly: OCI.DotNetSDK.Vnmonitoring.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 CIDR block required to create a VCN with a BYOIP prefix. It could be the whole CIDR block identified in byoipv6RangeId, or a subrange. Example: 2001:0db8:0123::/48

Remarks

Required

In this article
Back to top