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

View Source

A single GET request passed to a custom Regc.Oci.Transport.

max_body_bytes is the maximum response body size the transport should read. resolved_addresses, when present, contains addresses already resolved and approved by Regc's built-in redirect or authentication policy.

Summary

Types

t()

@type t() :: %Regc.Oci.Transport.Request{
  headers: [{String.t(), String.t()}],
  max_body_bytes: non_neg_integer() | :infinity,
  method: :get,
  resolved_addresses: [Regc.Oci.Transport.Address.address()] | nil,
  url: String.t()
}