class PlatformAPI::AddonService

Add-on services represent add-ons that may be provisioned for apps. Endpoints under add-on services can be accessed without authentication.

Public Class Methods

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

Public Instance Methods

info(addon_service_id_or_addon_service_name) click to toggle source

Info for existing add-on-service.

@param addon_service_id_or_addon_service_name: unique identifier of this add-on-service or unique name of this add-on-service

# File lib/platform-api/client.rb, line 1017
def info(addon_service_id_or_addon_service_name)
  @client.addon_service.info(addon_service_id_or_addon_service_name)
end
list() click to toggle source

List existing add-on-services.

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