Class: PlatformAPI::Plan

Inherits:
Object
  • Object
show all
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

Constructor Details

#initialize(client) ⇒ Plan

Returns a new instance of Plan.



2610
2611
2612
# File 'lib/platform-api/client.rb', line 2610

def initialize(client)
  @client = client
end

Instance Method Details

#info(plan_id_or_plan_name) ⇒ Object

Info for existing plan.

Parameters:

  • plan_id_or_plan_name:

    unique identifier of this plan or unique name of this plan



2617
2618
2619
# File 'lib/platform-api/client.rb', line 2617

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.

Parameters:

  • addon_service_id_or_addon_service_name:

    unique identifier of this add-on-service or unique name of this add-on-service

  • plan_id_or_plan_name:

    unique identifier of this plan or unique name of this plan



2625
2626
2627
# File 'lib/platform-api/client.rb', line 2625

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.

Parameters:

  • addon_service_id_or_addon_service_name:

    unique identifier of this add-on-service or unique name of this add-on-service



2632
2633
2634
# File 'lib/platform-api/client.rb', line 2632

def list_by_addon(addon_service_id_or_addon_service_name)
  @client.plan.list_by_addon(addon_service_id_or_addon_service_name)
end