Hexoku.API.Addons.Available
Add-on Services represent add-ons that may be provisioned for apps. Plans represent different configurations of add-ons that may be added to apps.
Add-on Services Attributes
- id
- unique identifier of this addon-service
- name
- unique name of this addon-service
- created_at
- when item was created
- updated_at
- when item was last modified
For more info read the Heroku API Reference
Plan Attributes
- id
- unique identifier of item
- name
- name of this plan
- default
- whether this plan is the default for its addon service
- description
- description of plan
- price:cents
- price in cents per unit of plan
- price:unit
- unit of price for plan
- state
- release status for plan
- created_at
- when item was created
- updated_at
- when item was last modified
For more info read the Heroku API Reference
Summary
| info(client, service) | Info for existing addon-service |
| list(client) | List existing addon-services |
| plan_info(client, service, plan) | Info for existing plan |
| plans(client, service) | List existing plans |
Functions
Specs:
- info(Hexoku.Client.t, binary) :: Map.t
Info for existing addon-service.
Examples
client |> Hexoku.API.Addons.Available.info("heroku-postgresql")
Specs:
- list(Hexoku.Client.t) :: [Map.t]
List existing addon-services.
Examples
client |> Hexoku.API.Addons.Available.list()