case class HostPortRange(max: Int, min: Int) extends Product with Serializable

HostPortRange defines a range of host ports that will be enabled by a policy for pods to use. It requires both the start and end to be defined.

max

max is the end of the range, inclusive.

min

min is the start of the range, inclusive.

Linear Supertypes
Serializable, Serializable, Product, Equals, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. HostPortRange
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new HostPortRange(max: Int, min: Int)

    max

    max is the end of the range, inclusive.

    min

    min is the start of the range, inclusive.

Value Members

  1. def getMax: IO[K8sFailure, Int]

    max is the end of the range, inclusive.

    max is the end of the range, inclusive.

    This effect always succeeds, it is safe to use the field max directly.

  2. def getMin: IO[K8sFailure, Int]

    min is the start of the range, inclusive.

    min is the start of the range, inclusive.

    This effect always succeeds, it is safe to use the field min directly.

  3. val max: Int
  4. val min: Int