Class: PlatformAPI::Plan
- Inherits:
-
Object
- Object
- PlatformAPI::Plan
- Defined in:
- lib/platform-api/client.rb
Overview
Plans represent different configurations of add-ons that may be added to apps. Endpoints under add-on services can be accessed without authentication.
Instance Method Summary collapse
-
#info(plan_id_or_plan_name) ⇒ Object
Info for existing plan.
-
#info_by_addon(addon_service_id_or_addon_service_name, plan_id_or_plan_name) ⇒ Object
Info for existing plan by Add-on.
-
#initialize(client) ⇒ Plan
constructor
A new instance of Plan.
-
#list_by_addon(addon_service_id_or_addon_service_name) ⇒ Object
List existing plans by Add-on.
Constructor Details
#initialize(client) ⇒ Plan
Returns a new instance of Plan.
2616 2617 2618 |
# File 'lib/platform-api/client.rb', line 2616 def initialize(client) @client = client end |
Instance Method Details
#info(plan_id_or_plan_name) ⇒ Object
Info for existing plan.
2623 2624 2625 |
# File 'lib/platform-api/client.rb', line 2623 def info(plan_id_or_plan_name) @client.plan.info(plan_id_or_plan_name) end |
#info_by_addon(addon_service_id_or_addon_service_name, plan_id_or_plan_name) ⇒ Object
Info for existing plan by Add-on.
2631 2632 2633 |
# File 'lib/platform-api/client.rb', line 2631 def info_by_addon(addon_service_id_or_addon_service_name, plan_id_or_plan_name) @client.plan.info_by_addon(addon_service_id_or_addon_service_name, plan_id_or_plan_name) end |
#list_by_addon(addon_service_id_or_addon_service_name) ⇒ Object
List existing plans by Add-on.
2638 2639 2640 |
# File 'lib/platform-api/client.rb', line 2638 def list_by_addon(addon_service_id_or_addon_service_name) @client.plan.list_by_addon(addon_service_id_or_addon_service_name) end |