ReservedIP¶
-
class
oci.network_load_balancer.models.ReservedIP(**kwargs)¶ Bases:
objectAn object representing a reserved IP address to be attached or that is already attached to a network load balancer.
Methods
__init__(**kwargs)Initializes a new ReservedIP object with values from keyword arguments. Attributes
idGets the id of this ReservedIP. -
__init__(**kwargs)¶ Initializes a new ReservedIP object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class):
Parameters: id (str) – The value to assign to the id property of this ReservedIP.
-
id¶ Gets the id of this ReservedIP. 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 Example: “ocid1.privateip.oc1.phx.unique_ID” IPV6 example: “ocid1.ipv6.oc1.phx.unique_ID”
Returns: The id of this ReservedIP. Return type: str
-