Class: PlatformAPI::AddonService
- Inherits:
-
Object
- Object
- PlatformAPI::AddonService
- 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
-
#info(addon_service_id_or_addon_service_name) ⇒ Object
Info for existing addon-service.
-
#initialize(client) ⇒ AddonService
constructor
A new instance of AddonService.
-
#list ⇒ Object
List existing addon-services.
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.
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 |
#list ⇒ Object
List existing addon-services.
763 764 765 |
# File 'lib/platform-api/client.rb', line 763 def list() @client.addon_service.list() end |