Regc.Oci.Transport.Response (regc v0.0.1)

View Source

Response returned by a custom Regc.Oci.Transport.

Header names are normalized case-insensitively by Regc. request_url and source_address are optional metadata used by the built-in transport's redirect and authentication policies.

Summary

Types

t()

@type t() :: %Regc.Oci.Transport.Response{
  body: binary(),
  headers: %{optional(String.t()) => String.t()},
  request_url: String.t() | nil,
  source_address: Regc.Oci.Transport.Address.address() | nil,
  status: non_neg_integer()
}