case class IDRange(max: Long, min: Long) extends Product with Serializable

IDRange provides a min/max of an allowed range of IDs.

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. IDRange
  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 IDRange(max: Long, min: Long)

    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, Long]

    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, Long]

    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: Long
  4. val min: Long