Show / Hide Table of Contents

Class CloudClusterNetworkConfiguration

The details of a network address configuration in a cloud cluster.

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

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 CloudClusterNetworkConfiguration.NetworkTypeEnum? NetworkType { get; set; }
Property Value
Type Description
CloudClusterNetworkConfiguration.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