Show / Hide Table of Contents

Class IpAddress

A load balancer IP address.

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

Properties

IpAddressProp

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

An IP address.
Example: 192.168.0.3

Remarks

Required

IsPublic

Declaration
[JsonProperty(PropertyName = "isPublic")]
public bool? IsPublic { get; set; }
Property Value
Type Description
bool?

Whether the IP address is public or private.
If "true", the IP address is public and accessible from the internet.
If "false", the IP address is private and accessible only from within the associated VCN.

ReservedIp

Declaration
[JsonProperty(PropertyName = "reservedIp")]
public ReservedIP ReservedIp { get; set; }
Property Value
Type Description
ReservedIP
In this article
Back to top