FaasBase.Azure.Request (FaasBase v1.1.1) View Source

A request for Azure Functions.

properties

  • :method - Http method as an atom(:get, :post, etc.)
  • :url - request url
  • :headers - Http headers as map
  • :body - Http body as string
  • :params - Http params as map
  • :query - Http query as map
  • :method_name - Http query as string

Link to this section Summary

Functions

create request from event

Link to this section Types

Specs

t() :: %FaasBase.Azure.Request{
  body: String.t(),
  headers: map(),
  method: atom(),
  method_name: String.t(),
  params: map(),
  query: map(),
  url: String.t()
}

Link to this section Functions

create request from event