Class: PlatformAPI::AddonService

Inherits:
Object
  • Object
show all
Defined in:
lib/platform-api/client.rb

Overview

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

Instance Method Summary collapse

Constructor Details

#initialize(client) ⇒ AddonService

Returns a new instance of AddonService.



751
752
753
# File 'lib/platform-api/client.rb', line 751

def initialize(client)
  @client = client
end

Instance Method Details

#info(addon_service_id_or_addon_service_name) ⇒ Object

Info for existing addon-service.

Parameters:

  • addon_service_id_or_addon_service_name:

    unique identifier of this addon-service or unique name of this addon-service



758
759
760
# File 'lib/platform-api/client.rb', line 758

def info(addon_service_id_or_addon_service_name)
  @client.addon_service.info(addon_service_id_or_addon_service_name)
end

#listObject

List existing addon-services.



763
764
765
# File 'lib/platform-api/client.rb', line 763

def list()
  @client.addon_service.list()
end