View Source K8s.Client.Runner.Stream.ListRequest (k8s v2.6.0)

:list K8s.Operation encapsulated with pagination and K8s.Conn

Summary

Types

Pagination continue token

t()

List operation as a Stream data type

Types

@type continue_t() :: nil | :halt | binary()

Pagination continue token

@type responses_t() :: map() | {:error, K8s.Client.HTTPError.t()}
@type t() :: %K8s.Client.Runner.Stream.ListRequest{
  conn: K8s.Conn.t(),
  continue: continue_t(),
  http_opts: Keyword.t(),
  limit: pos_integer(),
  operation: K8s.Operation.t()
}

List operation as a Stream data type

Functions

@spec next_item(t()) :: {responses_t(), t()}
Link to this function

stream(conn, op, http_opts)

View Source