Hexoku.API.Stacks

Stacks are the different application execution environments available in the Heroku platform.

Attributes

id
unique identifier of item generated by Heroku
name
unique name of item provided by the user
state
availability of this stack: beta, deprecated or public
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, stack)

Get info on a specific Stack

list(client)

List available stacks

Functions

info(client, stack)

Specs:

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

Get info on a specific Stack.

Examples

client |> Hexoku.API.Stacks.info("cedar")
Source
list(client)

Specs:

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

List available stacks.

Examples

client |> Hexoku.API.Stacks.list
Source