module Arbor::Peakflow::CP5500
Public Instance Methods
cp5500(action, filter = nil)
click to toggle source
The CP 5500 function allows you to view CP 5500 appliance configurations in JSON format. Note: This function is only available with appliance-based licensing for Traffic
and Analysis Routing appliances (formally Collector Platform (CP) appliances).
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 ConfigureRouters
page in the Web UI.
Example¶ ↑
response = client.cp5500 'show_schema'
# File lib/arbor_peakflow_ruby/actions/cp5500.rb, line 13 def cp5500(action, filter = nil) url_action_filter_request('arborws/admin/cp5500', action, filter) end