class PlatformAPI::DynoSize

Dyno sizes are the values and details of sizes that can be assigned to dynos. This information can also be found at : [devcenter.heroku.com/articles/dyno-types](https://devcenter.heroku.com/articles/dyno-types).

Public Class Methods

new(client) click to toggle source
# File lib/platform-api/client.rb, line 1735
def initialize(client)
  @client = client
end

Public Instance Methods

info(dyno_size_id_or_dyno_size_name) click to toggle source

Info for existing dyno size.

@param dyno_size_id_or_dyno_size_name: unique identifier of this dyno size or the name of this dyno-size

# File lib/platform-api/client.rb, line 1742
def info(dyno_size_id_or_dyno_size_name)
  @client.dyno_size.info(dyno_size_id_or_dyno_size_name)
end
list() click to toggle source

List existing dyno sizes.

# File lib/platform-api/client.rb, line 1747
def list()
  @client.dyno_size.list()
end