Show / Hide Table of Contents

Class NodeDetails

Node details associated with a VM cluster network.

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

Properties

Hostname

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

The node host name.

Remarks

Required

Ip

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

The node IP address.

Remarks

Required

Vip

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

The node virtual IP (VIP) address.

VipHostname

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

The node virtual IP (VIP) host name.

In this article
Back to top