Class: PlatformAPI::AddonConfig

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

Overview

Configuration of an Add-on

Instance Method Summary collapse

Constructor Details

#initialize(client) ⇒ AddonConfig

Returns a new instance of AddonConfig.



934
935
936
# File 'lib/platform-api/client.rb', line 934

def initialize(client)
  @client = client
end

Instance Method Details

#list(addon_id_or_addon_name) ⇒ Object

Get an add-on’s config. Accessible by customers with access and by the add-on partner providing this add-on.

Parameters:

  • addon_id_or_addon_name:

    unique identifier of add-on or globally unique name of the add-on



941
942
943
# File 'lib/platform-api/client.rb', line 941

def list(addon_id_or_addon_name)
  @client.addon_config.list(addon_id_or_addon_name)
end

#update(addon_id_or_addon_name, body = {}) ⇒ Object

Update an add-on’s config. Can only be accessed by the add-on partner providing this add-on.

Parameters:

  • addon_id_or_addon_name:

    unique identifier of add-on or globally unique name of the add-on

  • body:

    the object to pass as the request payload



949
950
951
# File 'lib/platform-api/client.rb', line 949

def update(addon_id_or_addon_name, body = {})
  @client.addon_config.update(addon_id_or_addon_name, body)
end