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.NetworkloadbalancerService.Models
Assembly: OCI.DotNetSDK.Networkloadbalancer.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

IpVersion

Declaration
[JsonProperty(PropertyName = "ipVersion")]
[JsonConverter(typeof(ResponseEnumConverter))]
public IpVersion? IpVersion { get; set; }
Property Value
Type Description
IpVersion?

IP version associated with this IP address.

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", then the IP address is public and accessible from the internet.
If "false", then the IP address is private and accessible only from within the associated virtual cloud network.

ReservedIp

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