Show / Hide Table of Contents

Class InventoryIpAddressSummary

Provides the IP address and its corresponding VNIC ID, VNIC name, and DNS hostname.

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

Properties

DnsHostName

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

The DNS hostname of the resource assigned with the IP address.

IpAddress

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

The IP address assigned from a subnet.

VnicId

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

The OCID of the VNIC.

VnicName

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

The name of the VNIC.

In this article
Back to top