Show / Hide Table of Contents

Class OlvmIp

Represents the IP configuration of a network interface.

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

Properties

Address

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

The text representation of the IP address.

Gateway

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

The address of the default gateway.

IpVersion

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

The version of the IP protocol.

Netmask

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

The network mask.

In this article
Back to top