Show / Hide Table of Contents

Class AddPublicIpPoolCapacityDetails

The information used to add capacity to an IP pool.

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

Properties

ByoipRangeId

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

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

Remarks

Required

CidrBlock

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

The CIDR block to add to the public IP pool. It could be all of the CIDR block identified in byoipRangeId, or a subrange. Example: 10.0.1.0/24

Remarks

Required

In this article
Back to top