Show / Hide Table of Contents

Class ExternalClusterVipConfiguration

The details of the Virtual IP (VIP) address for a node in an external cluster.

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

Properties

Address

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

The VIP name or IP address.

NetworkNumber

Declaration
[JsonProperty(PropertyName = "networkNumber")]
public int? NetworkNumber { get; set; }
Property Value
Type Description
int?

The network number from which VIPs are obtained.

NodeName

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

The name of the node with the VIP.

In this article
Back to top