Show / Hide Table of Contents

Class IpMaxConnections

An object that species the maximum number of connections the listed IPs can make to a listener.

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

Properties

IpAddresses

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

Each element in the list should be valid IPv4 or IPv6 CIDR Block address. Example: '["129.213.176.0/24", "150.136.187.0/24", "2002::1234:abcd:ffff:c0a8:101/64"]'

Remarks

Required

MaxConnections

Declaration
[Required(ErrorMessage = "MaxConnections is required.")]
[JsonProperty(PropertyName = "maxConnections")]
public int? MaxConnections { get; set; }
Property Value
Type Description
int?

The maximum number of simultaneous connections that the specified IPs can make to the Listener. IPs without a maxConnections setting can make either defaultMaxConnections simultaneous connections to a listener or, if no defaultMaxConnections is specified, an unlimited number of simultaneous connections to a listener.

Remarks

Required

In this article
Back to top