Show / Hide Table of Contents

Class IpBasedMaxConnectionsRule

An object that represents the action of configuring an IP max connection rule which specifies how many connections IPs can make to a listener.

Inheritance
object
Rule
IpBasedMaxConnectionsRule
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.LoadbalancerService.Models
Assembly: OCI.DotNetSDK.Loadbalancer.dll
Syntax
public class IpBasedMaxConnectionsRule : Rule

Properties

DefaultMaxConnections

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

The maximum number of connections that the any IP can make to a listener unless the IP is mentioned in maxConnections. If no defaultMaxConnections is specified the default is unlimited.

IpMaxConnections

Declaration
[JsonProperty(PropertyName = "ipMaxConnections")]
public List<IpMaxConnections> IpMaxConnections { get; set; }
Property Value
Type Description
List<IpMaxConnections>

An array of IPs that have a maxConnection setting different than the default and what that maxConnection setting is

In this article
Back to top