Hexoku.API.Regions

A region represents a geographic location in which your application may run.

Attributes

id
unique identifier of item generated by Heroku
name
name of region
description
description of region
created_at
when item was created
updated_at
when item was last modified

For more info read the Heroku API Reference

Source

Summary

info(client, region)

Info for existing region

list(client)

List available regions

Functions

info(client, region)

Specs:

  • info(Hexoku.Client.t, binary) :: Map.t

Info for existing region.

Examples

client |> Hexoku.API.Regions.info("us")
Source
list(client)

Specs:

  • list(Hexoku.Client.t) :: [Map.t]

List available regions.

Examples

client |> Hexoku.API.Regions.list()
Source