Packages

final case class Probe(timeoutSeconds: Option[Int] = None, grpc: Option[GRPCAction] = None, tcpSocket: Option[TCPSocketAction] = None, initialDelaySeconds: Option[Int] = None, failureThreshold: Option[Int] = None, httpGet: Option[HTTPGetAction] = None, terminationGracePeriodSeconds: Option[Int] = None, exec: Option[ExecAction] = None, periodSeconds: Option[Int] = None, successThreshold: Option[Int] = None) extends Product with Serializable

Probe describes a health check to be performed against a container to determine whether it is alive or ready to receive traffic.

Source
Probe.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Probe
  2. Serializable
  3. Product
  4. Equals
  5. AnyRef
  6. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new Probe(timeoutSeconds: Option[Int] = None, grpc: Option[GRPCAction] = None, tcpSocket: Option[TCPSocketAction] = None, initialDelaySeconds: Option[Int] = None, failureThreshold: Option[Int] = None, httpGet: Option[HTTPGetAction] = None, terminationGracePeriodSeconds: Option[Int] = None, exec: Option[ExecAction] = None, periodSeconds: Option[Int] = None, successThreshold: Option[Int] = None)

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  6. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  7. val exec: Option[ExecAction]
  8. val failureThreshold: Option[Int]
  9. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  10. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  11. val grpc: Option[GRPCAction]
  12. val httpGet: Option[HTTPGetAction]
  13. val initialDelaySeconds: Option[Int]
  14. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  15. def mapExec(f: (ExecAction) => ExecAction): Probe

    if exec has a value, transforms to the result of function

  16. def mapFailureThreshold(f: (Int) => Int): Probe

    if failureThreshold has a value, transforms to the result of function

  17. def mapGrpc(f: (GRPCAction) => GRPCAction): Probe

    if grpc has a value, transforms to the result of function

  18. def mapHttpGet(f: (HTTPGetAction) => HTTPGetAction): Probe

    if httpGet has a value, transforms to the result of function

  19. def mapInitialDelaySeconds(f: (Int) => Int): Probe

    if initialDelaySeconds has a value, transforms to the result of function

  20. def mapPeriodSeconds(f: (Int) => Int): Probe

    if periodSeconds has a value, transforms to the result of function

  21. def mapSuccessThreshold(f: (Int) => Int): Probe

    if successThreshold has a value, transforms to the result of function

  22. def mapTcpSocket(f: (TCPSocketAction) => TCPSocketAction): Probe

    if tcpSocket has a value, transforms to the result of function

  23. def mapTerminationGracePeriodSeconds(f: (Int) => Int): Probe

    if terminationGracePeriodSeconds has a value, transforms to the result of function

  24. def mapTimeoutSeconds(f: (Int) => Int): Probe

    if timeoutSeconds has a value, transforms to the result of function

  25. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  26. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  27. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  28. val periodSeconds: Option[Int]
  29. def productElementNames: Iterator[String]
    Definition Classes
    Product
  30. val successThreshold: Option[Int]
  31. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  32. val tcpSocket: Option[TCPSocketAction]
  33. val terminationGracePeriodSeconds: Option[Int]
  34. val timeoutSeconds: Option[Int]
  35. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  36. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  37. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  38. def withExec(value: ExecAction): Probe

    Returns a new data with exec set to new value

  39. def withFailureThreshold(value: Int): Probe

    Returns a new data with failureThreshold set to new value

  40. def withGrpc(value: GRPCAction): Probe

    Returns a new data with grpc set to new value

  41. def withHttpGet(value: HTTPGetAction): Probe

    Returns a new data with httpGet set to new value

  42. def withInitialDelaySeconds(value: Int): Probe

    Returns a new data with initialDelaySeconds set to new value

  43. def withPeriodSeconds(value: Int): Probe

    Returns a new data with periodSeconds set to new value

  44. def withSuccessThreshold(value: Int): Probe

    Returns a new data with successThreshold set to new value

  45. def withTcpSocket(value: TCPSocketAction): Probe

    Returns a new data with tcpSocket set to new value

  46. def withTerminationGracePeriodSeconds(value: Int): Probe

    Returns a new data with terminationGracePeriodSeconds set to new value

  47. def withTimeoutSeconds(value: Int): Probe

    Returns a new data with timeoutSeconds set to new value

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from AnyRef

Inherited from Any

Ungrouped