HTTPHeader

case class HTTPHeader(name: String, value: String)

HTTPHeader describes a custom header to be used in HTTP probes

HTTPHeader describes a custom header to be used in HTTP probes

Value Params
name

The header field name

value

The header field value

Companion
object
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any

Value members

Concrete methods

def getName: IO[K8sFailure, String]

The header field name

The header field name

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

def getValue: IO[K8sFailure, String]

The header field value

The header field value

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

Inherited methods

def productElementNames: Iterator[String]
Inherited from
Product
def productIterator: Iterator[Any]
Inherited from
Product