Show / Hide Table of Contents

Class VirtualCircuitPublicPrefix

A public IP prefix and its details. With a public virtual circuit, the customer specifies the customer-owned public IP prefixes to advertise across the connection. For more information, see FastConnect Overview.

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

Properties

CidrBlock

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

Publix IP prefix (CIDR) that the customer specified.

Remarks

Required

VerificationState

Declaration
[Required(ErrorMessage = "VerificationState is required.")]
[JsonProperty(PropertyName = "verificationState")]
[JsonConverter(typeof(ResponseEnumConverter))]
public VirtualCircuitPublicPrefix.VerificationStateEnum? VerificationState { get; set; }
Property Value
Type Description
VirtualCircuitPublicPrefix.VerificationStateEnum?

Oracle must verify that the customer owns the public IP prefix before traffic for that prefix can flow across the virtual circuit. Verification can take a few business days. IN_PROGRESS means Oracle is verifying the prefix. COMPLETED means verification succeeded. FAILED means verification failed and traffic for this prefix will not flow across the connection.

Remarks

Required

In this article
Back to top