module Arbor::Peakflow::TMS_Appliance

Public Instance Methods

tms_appliance(action, filter = nil) click to toggle source

The TMS function allows you to view and update TMS appliance configurations in JSON format.

Parameters:

  • action: One of the following actions that you want to initiate:

list, show_schema, update.

  • filter: (Optional) Keywords by which you want to filter search

results. You can enter the same search strings that you can enter in the Search box on the Configure Routers page in the Web UI.

Example

response = client.tms_appliance 'show_schema'
# File lib/arbor_peakflow_ruby/actions/tms_appliance.rb, line 17
def tms_appliance(action, filter = nil)
  url_action_filter_request('arborws/admin/tms', action, filter)
end