Show / Hide Table of Contents

Class NodeDetails

Node details associated with a 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.DatabaseService.Models
Assembly: OCI.DotNetSDK.Database.dll
Syntax
public class NodeDetails

Properties

DbServerId

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

The Db server associated with the node.

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

LifecycleState

Declaration
[JsonProperty(PropertyName = "lifecycleState")]
[JsonConverter(typeof(ResponseEnumConverter))]
public NodeDetails.LifecycleStateEnum? LifecycleState { get; set; }
Property Value
Type Description
NodeDetails.LifecycleStateEnum?

The current state of the VM cluster network nodes. CREATING - The resource is being created REQUIRES_VALIDATION - The resource is created and may not be usable until it is validated. VALIDATING - The resource is being validated and not available to use. VALIDATED - The resource is validated and is available for consumption by VM cluster. VALIDATION_FAILED - The resource validation has failed and might require user input to be corrected. UPDATING - The resource is being updated and not available to use. ALLOCATED - The resource is currently being used by VM cluster. TERMINATING - The resource is being deleted and not available to use. TERMINATED - The resource is deleted and unavailable. FAILED - The resource is in a failed state due to validation or other errors.

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