Show / Hide Table of Contents

Class InstancePrivateIpAddress

Describes a private IPv4 address.

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

Properties

Association

Declaration
[JsonProperty(PropertyName = "association")]
public InstanceNetworkInterfaceAssociation Association { get; set; }
Property Value
Type Description
InstanceNetworkInterfaceAssociation

IsPrimary

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

Indicates whether this IPv4 address is the primary private IP address of the network interface.

PrivateDnsName

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

The private IPv4 DNS name.

PrivateIpAddress

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

The private IPv4 address of the network interface.

In this article
Back to top