HttpClient

dev.hnaderi.k8s.client.HttpClient
See theHttpClient companion object
trait HttpClient[F[_]]

Attributes

Companion
object
Source
Request.scala
Graph
Supertypes
class Object
trait Matchable
class Any

Members list

Value members

Abstract methods

def delete[I : Encoder, O : Decoder](url: String, params: (String, String)*)(body: Option[I]): F[O]

Attributes

Source
Request.scala
def get[O : Decoder](url: String, params: (String, String)*): F[O]

Attributes

Source
Request.scala

Attributes

Source
Request.scala
def post[I : Encoder, O : Decoder](url: String, params: (String, String)*)(body: I): F[O]

Attributes

Source
Request.scala
def put[I : Encoder, O : Decoder](url: String, params: (String, String)*)(body: I): F[O]

Attributes

Source
Request.scala

Concrete methods

final def send[O](req: HttpRequest[O]): F[O]

Attributes

Source
Request.scala