Show / Hide Table of Contents

Class VmNetworkDetails

Details of the client or backup networks in an Exadata VM cluster network. Applies to Exadata Cloud@Customer instances only.

Inheritance
object
VmNetworkDetails
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 VmNetworkDetails

Properties

DomainName

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

The network domain name.

Gateway

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

The network gateway.

Netmask

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

The network netmask.

NetworkType

Declaration
[Required(ErrorMessage = "NetworkType is required.")]
[JsonProperty(PropertyName = "networkType")]
[JsonConverter(typeof(ResponseEnumConverter))]
public VmNetworkDetails.NetworkTypeEnum? NetworkType { get; set; }
Property Value
Type Description
VmNetworkDetails.NetworkTypeEnum?

The network type.

Remarks

Required

Nodes

Declaration
[Required(ErrorMessage = "Nodes is required.")]
[JsonProperty(PropertyName = "nodes")]
public List<NodeDetails> Nodes { get; set; }
Property Value
Type Description
List<NodeDetails>

The list of node details.

Remarks

Required

VlanId

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

The network VLAN ID.

In this article
Back to top