Show / Hide Table of Contents

Class ReservedIP

An object representing a reserved IP address to be attached or that is already attached to a network load balancer.

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

Properties

Id

Declaration
[JsonProperty(PropertyName = "id")]
public string Id { get; set; }
Property Value
Type Description
string

Ocid of the Reserved IP (Public IP, Private IP or IPv6) created with VCN.
Reserved IPs are IPs which are already registered using VCN API.
For public Network load balancers, customer can create a reserved Public IP and/or reserved private IP and/or reserved IPv6 and pass the OCID's in the reservedIps array field to attach the IP addresses to the network load balancer during create For private Network load balancers, customer can create a reserved Private IP and/or reserved IPv6 and pass the OCID's in the reservedIps array field to attach the IP addresses to the network load balancer during create
Reserved IPs will not be deleted when the Network Load balancer is deleted. They will be detached from the Network Load balancer.
Public IP Example: "ocid1.publicip.oc1.phx.unique_ID"Private IP

In this article
Back to top