Show / Hide Table of Contents

Class InfoForNetworkGenDetails

Parameters for generation of the client or backup network in a VM cluster network in an Exadata Cloud@Customer system.

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

Properties

Cidr

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

The cidr for the network.

Remarks

Required

Domain

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

The network domain name.

Remarks

Required

Gateway

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

The network gateway.

Remarks

Required

Netmask

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

The network netmask.

Remarks

Required

NetworkType

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

The network type.

Remarks

Required

Prefix

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

The network domain name.

Remarks

Required

VlanId

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

The network VLAN ID.

Remarks

Required

In this article
Back to top