Show / Hide Table of Contents

Class PrivateAddresses

A pair of VCN OCID and private IP address prefix in CIDR notation.

Inheritance
object
PrivateAddresses
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.WafService.Models
Assembly: OCI.DotNetSDK.Waf.dll
Syntax
public class PrivateAddresses

Properties

Addresses

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

A private IP address or CIDR IP address range.

Remarks

Required

VcnId

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

The OCID of the VCN.

Remarks

Required

In this article
Back to top