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[Long] = 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
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Probe
  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 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[Long] = 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( ... ) @native() @HotSpotIntrinsicCandidate()
  6. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  7. val exec: Option[ExecAction]
  8. val failureThreshold: Option[Int]
  9. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  10. val grpc: Option[GRPCAction]
  11. val httpGet: Option[HTTPGetAction]
  12. val initialDelaySeconds: Option[Int]
  13. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  14. def mapExec(f: (ExecAction) ⇒ ExecAction): Probe

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

  15. def mapFailureThreshold(f: (Int) ⇒ Int): Probe

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

  16. def mapGrpc(f: (GRPCAction) ⇒ GRPCAction): Probe

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

  17. def mapHttpGet(f: (HTTPGetAction) ⇒ HTTPGetAction): Probe

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

  18. def mapInitialDelaySeconds(f: (Int) ⇒ Int): Probe

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

  19. def mapPeriodSeconds(f: (Int) ⇒ Int): Probe

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

  20. def mapSuccessThreshold(f: (Int) ⇒ Int): Probe

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

  21. def mapTcpSocket(f: (TCPSocketAction) ⇒ TCPSocketAction): Probe

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

  22. def mapTerminationGracePeriodSeconds(f: (Long) ⇒ Long): Probe

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

  23. def mapTimeoutSeconds(f: (Int) ⇒ Int): Probe

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

  24. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  25. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  26. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  27. val periodSeconds: Option[Int]
  28. val successThreshold: Option[Int]
  29. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  30. val tcpSocket: Option[TCPSocketAction]
  31. val terminationGracePeriodSeconds: Option[Long]
  32. val timeoutSeconds: Option[Int]
  33. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  34. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  35. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  36. def withExec(value: ExecAction): Probe

    Returns a new data with exec set to new value

  37. def withFailureThreshold(value: Int): Probe

    Returns a new data with failureThreshold set to new value

  38. def withGrpc(value: GRPCAction): Probe

    Returns a new data with grpc set to new value

  39. def withHttpGet(value: HTTPGetAction): Probe

    Returns a new data with httpGet set to new value

  40. def withInitialDelaySeconds(value: Int): Probe

    Returns a new data with initialDelaySeconds set to new value

  41. def withPeriodSeconds(value: Int): Probe

    Returns a new data with periodSeconds set to new value

  42. def withSuccessThreshold(value: Int): Probe

    Returns a new data with successThreshold set to new value

  43. def withTcpSocket(value: TCPSocketAction): Probe

    Returns a new data with tcpSocket set to new value

  44. def withTerminationGracePeriodSeconds(value: Long): Probe

    Returns a new data with terminationGracePeriodSeconds set to new value

  45. def withTimeoutSeconds(value: Int): Probe

    Returns a new data with timeoutSeconds set to new value

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] ) @Deprecated
    Deprecated

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from AnyRef

Inherited from Any

Ungrouped