Show / Hide Table of Contents

Class ExternalClusterNetworkConfiguration

The details of a network address configuration in an external cluster.

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

Properties

NetworkNumber

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

The network number.

NetworkType

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

The network type.

Subnet

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

The subnet for the network.

In this article
Back to top