1// Copyright (c) 2016, 2018, 2019, Oracle and/or its affiliates. All rights reserved.
2// Code generated. DO NOT EDIT.
3
4// Database Service API
5//
6// The API for the Database Service.
7//
8
9package database
10
11import (
12	"github.com/oracle/oci-go-sdk/common"
13)
14
15// NodeDetails Node details associated with a network.
16type NodeDetails struct {
17
18	// The node IP address.
19	Ip *string `mandatory:"true" json:"ip"`
20
21	// The node host name.
22	Hostname *string `mandatory:"false" json:"hostname"`
23
24	// The node virtual IP (VIP) host name.
25	VipHostname *string `mandatory:"false" json:"vipHostname"`
26
27	// The node virtual IP (VIP) address.
28	Vip *string `mandatory:"false" json:"vip"`
29}
30
31func (m NodeDetails) String() string {
32	return common.PointerString(m)
33}
34