Cisco Systems vendor logo

Vendor

Cisco Systems

Product

Prime

Method

REST

Category

Service Assurance

Project Type

Adapter


View Repository
Adapter

Adapter for Integration to Cisco Prime

Overview

This adapter is used to integrate the Itential Automation Platform (IAP) with the Cisco_prime System. The API that was used to build the adapter for Cisco_prime is usually available in the report directory of this adapter. The adapter utilizes the Cisco_prime API to provide the integrations that are deemed pertinent to IAP. The ReadMe file is intended to provide information on this adapter it is generated from various other Markdown files.

Details

The Cisco Prime adapter from Itential is used to integrate the Itential Automation Platform (IAP) with Cisco Prime. With this adapter you have the ability to perform operations such as:

  • Configure and Manage devices.

For further technical details on how to install and use this adapter, please click the Technical Documentation tab.

Cisco Prime

Table of Contents

Getting Started

These instructions will help you get a copy of the project on your local machine for development and testing. Reading this section is also helpful for deployments as it provides you with pertinent information on prerequisites and properties.

Helpful Background Information

There is Adapter documentation available on the Itential Documentation Site. This documentation includes information and examples that are helpful for:

Authentication
IAP Service Instance Configuration
Code Files
Endpoint Configuration (Action & Schema)
Mock Data
Adapter Generic Methods
Headers
Security
Linting and Testing
Build an Adapter
Troubleshooting an Adapter

Others will be added over time. Want to build a new adapter? Use the Itential Adapter Builder

Prerequisites

The following is a list of required packages for installation on the system the adapter will run on:

Node.js
npm
Git

The following list of packages are required for Itential opensource adapters or custom adapters that have been built utilizing the Itential Adapter Builder. You can install these packages by running npm install inside the adapter directory.

PackageDescription
@itentialopensource/adapter-utilsRuntime library classes for all adapters; includes request handling, connection, authentication throttling, and translation.
ajvRequired for validation of adapter properties to integrate with Cisco_prime.
axiosUtilized by the node scripts that are included with the adapter; helps to build and extend the functionality.
commanderUtilized by the node scripts that are included with the adapter; helps to build and extend the functionality.
dns-lookup-promiseUtilized by the node scripts that are included with the adapter; helps to build and extend the functionality.
fs-extraUtilized by the node scripts that are included with the adapter; helps to build and extend the functionality.
mochaTesting library that is utilized by some of the node scripts that are included with the adapter.
mocha-paramTesting library that is utilized by some of the node scripts that are included with the adapter.
mongodbUtilized by the node scripts that are included with the adapter; helps to build and extend the functionality.
nycTesting coverage library that is utilized by some of the node scripts that are included with the adapter.
pingUtilized by the node scripts that are included with the adapter; helps to build and extend the functionality.
readline-syncUtilized by the node script that comes with the adapter; helps to test unit and integration functionality.
semverUtilized by the node scripts that are included with the adapter; helps to build and extend the functionality.
winstonUtilized by the node scripts that are included with the adapter; helps to build and extend the functionality.

If you are developing and testing a custom adapter, or have testing capabilities on an Itential opensource adapter, you will need to install these packages as well.

chai
eslint
eslint-config-airbnb-base
eslint-plugin-import
eslint-plugin-json
testdouble

How to Install

  1. Set up the name space location in your IAP node_modules.
cd /opt/pronghorn/current/node_modules (* could be in a different place)
if the @itentialopensource directory does not exist, create it:
    mkdir @itentialopensource
  1. Clone/unzip/tar the adapter into your IAP environment.
cd \@itentialopensource
git clone git@gitlab.com:\@itentialopensource/adapters/adapter-cisco_prime
or
unzip adapter-cisco_prime.zip
or
tar -xvf adapter-cisco_prime.tar
  1. Run the adapter install script.
cd adapter-cisco_prime
npm install
npm run lint:errors
npm run test
  1. Restart IAP
systemctl restart pronghorn
  1. Create an adapter service instance configuration in IAP Admin Essentials GUI

  2. Copy the properties from the sampleProperties.json and paste them into the service instance configuration in the inner/second properties field.

  3. Change the adapter service instance configuration (host, port, credentials, etc) in IAP Admin Essentials GUI

For an easier install of the adapter use npm run adapter:install, it will install the adapter in IAP. Please note that it can be dependent on where the adapter is installed and on the version of IAP so it is subject to fail. If using this, you can replace step 3-5 above with these:

  1. Install adapter dependencies and check the adapter.
cd adapter-cisco_prime
npm run adapter:install
  1. Restart IAP
systemctl restart pronghorn
  1. Change the adapter service instance configuration (host, port, credentials, etc) in IAP Admin Essentials GUI

Testing

Mocha is generally used to test all Itential Opensource Adapters. There are unit tests as well as integration tests performed. Integration tests can generally be run as standalone using mock data and running the adapter in stub mode, or as integrated. When running integrated, every effort is made to prevent environmental failures, however there is still a possibility.

Unit Testing

Unit Testing includes testing basic adapter functionality as well as error conditions that are triggered in the adapter prior to any integration. There are two ways to run unit tests. The prefered method is to use the testRunner script; however, both methods are provided here.

node utils/testRunner --unit

npm run test:unit
npm run test:baseunit

To add new unit tests, edit the test/unit/adapterTestUnit.js file. The tests that are already in this file should provide guidance for adding additional tests.

Integration Testing - Standalone

Standalone Integration Testing requires mock data to be provided with the entities. If this data is not provided, standalone integration testing will fail. When the adapter is set to run in stub mode (setting the stub property to true), the adapter will run through its code up to the point of making the request. It will then retrieve the mock data and return that as if it had received that data as the response from Cisco_prime. It will then translate the data so that the adapter can return the expected response to the rest of the Itential software. Standalone is the default integration test.

Similar to unit testing, there are two ways to run integration tests. Using the testRunner script is better because it prevents you from having to edit the test script; it will also resets information after testing is complete so that credentials are not saved in the file.

node utils/testRunner
  answer no at the first prompt

npm run test:integration

To add new integration tests, edit the test/integration/adapterTestIntegration.js file. The tests that are already in this file should provide guidance for adding additional tests.

Integration Testing

Integration Testing requires connectivity to Cisco_prime. By using the testRunner script it prevents you from having to edit the integration test. It also resets the integration test after the test is complete so that credentials are not saved in the file.

Note: These tests have been written as a best effort to make them work in most environments. However, the Adapter Builder often does not have the necessary information that is required to set up valid integration tests. For example, the order of the requests can be very important and data is often required for creates and updates. Hence, integration tests may have to be enhanced before they will work (integrate) with Cisco_prime. Even after tests have been set up properly, it is possible there are environmental constraints that could result in test failures. Some examples of possible environmental issues are customizations that have been made within Cisco_prime which change order dependencies or required data.

node utils/testRunner
answer yes at the first prompt
answer all other questions on connectivity and credentials

Test should also be written to clean up after themselves. However, it is important to understand that in some cases this may not be possible. In addition, whenever exceptions occur, test execution may be stopped, which will prevent cleanup actions from running. It is recommended that tests be utilized in dev and test labs only.

Reminder: Do not check in code with actual credentials to systems.

Configuration

This section defines all the properties that are available for the adapter, including detailed information on what each property is for. If you are not using certain capabilities with this adapter, you do not need to define all of the properties. An example of how the properties for this adapter can be used with tests or IAP are provided in the sampleProperties.

Example Properties

  "properties": {
    "host": "localhost",
    "port": 443,
    "choosepath": "",
    "base_path": "",
    "version": "",
    "cache_location": "none",
    "encode_pathvars": true,
    "encode_queryvars": true,
    "save_metric": false,
    "stub": true,
    "protocol": "https",
    "authentication": {
      "auth_method": "basic user_password",
      "username": "username",
      "password": "password",
      "token": "token",
      "token_timeout": 600000,
      "token_cache": "local",
      "invalid_token_error": 401,
      "auth_field": "header.headers.Authorization",
      "auth_field_format": "Basic {b64}{username}:{password}{/b64}",
      "auth_logging": false,
      "client_id": "",
      "client_secret": "",
      "grant_type": "",
      "sensitive": [],
      "sso": {
        "protocol": "",
        "host": "",
        "port": 0
      },
      "multiStepAuthCalls": [
        {
          "name": "",
          "requestFields": {},
          "responseFields": {},
          "successfullResponseCode": 200
        }
      ]
    },
    "healthcheck": {
      "type": "none",
      "frequency": 60000,
      "query_object": {},
      "addlHeaders": {}
    },
    "throttle": {
      "throttle_enabled": false,
      "number_pronghorns": 1,
      "sync_async": "sync",
      "max_in_queue": 1000,
      "concurrent_max": 1,
      "expire_timeout": 0,
      "avg_runtime": 200,
      "priorities": [
        {
          "value": 0,
          "percent": 100
        }
      ]
    },
    "request": {
      "number_redirects": 0,
      "number_retries": 3,
      "limit_retry_error": [
        0
      ],
      "failover_codes": [],
      "attempt_timeout": 5000,
      "global_request": {
        "payload": {},
        "uriOptions": {},
        "addlHeaders": {},
        "authData": {}
      },
      "healthcheck_on_timeout": true,
      "return_raw": false,
      "archiving": false,
      "return_request": false
    },
    "proxy": {
      "enabled": false,
      "host": "",
      "port": 1,
      "protocol": "http",
      "username": "",
      "password": ""
    },
    "ssl": {
      "ecdhCurve": "",
      "enabled": false,
      "accept_invalid_cert": false,
      "ca_file": "",
      "key_file": "",
      "cert_file": "",
      "secure_protocol": "",
      "ciphers": ""
    },
    "mongo": {
      "host": "",
      "port": 0,
      "database": "",
      "username": "",
      "password": "",
      "replSet": "",
      "db_ssl": {
        "enabled": false,
        "accept_invalid_cert": false,
        "ca_file": "",
        "key_file": "",
        "cert_file": ""
      }
    },
    "devicebroker": {
      "getDevice": [
        {
          "path": "/get/devices/{id}",
          "method": "GET",
          "query": {},
          "body": {},
          "headers": {},
          "handleFailure": "ignore",
          "requestFields": {
            "id": "name"
          },
          "responseDatakey": "",
          "responseFields": {
            "name": "host",
            "ostype": "os",
            "ostypePrefix": "system-",
            "ipaddress": "attributes.ipaddr",
            "port": "443"
          }
        }
      ],
      "getDevicesFiltered": [
        {
          "path": "/get/devices",
          "method": "GET",
          "pagination": {
            "offsetVar": "",
            "limitVar": "",
            "incrementBy": "limit",
            "requestLocation": "query"
          },
          "query": {},
          "body": {},
          "headers": {},
          "handleFailure": "ignore",
          "requestFields": {},
          "responseDatakey": "",
          "responseFields": {
            "name": "host",
            "ostype": "os",
            "ostypePrefix": "system-",
            "ipaddress": "attributes.ipaddr",
            "port": "443"
          }
        }
      ],
      "isAlive": [
        {
          "path": "/get/devices/{id}/status",
          "method": "GET",
          "query": {},
          "body": {},
          "headers": {},
          "handleFailure": "ignore",
          "requestFields": {
            "id": "name"
          },
          "responseDatakey": "",
          "responseFields": {
            "status": "status",
            "statusValue": "online"
          }
        }
      ],
      "getConfig": [
        {
          "path": "/get/devices/{id}/configPart1",
          "method": "GET",
          "query": {},
          "body": {},
          "headers": {},
          "handleFailure": "ignore",
          "requestFields": {
            "id": "name"
          },
          "responseDatakey": "",
          "responseFields": {}
        }
      ],
      "getCount": [
        {
          "path": "/get/devices",
          "method": "GET",
          "query": {},
          "body": {},
          "headers": {},
          "handleFailure": "ignore",
          "requestFields": {},
          "responseDatakey": "",
          "responseFields": {}
        }
      ]
    },
    "cache": {
      "enabled": false,
      "entities": [
        {
          "entityType": "",
          "frequency": 1440,
          "flushOnFail": false,
          "limit": 1000,
          "retryAttempts": 5,
          "sort": true,
          "populate": [
            {
              "path": "",
              "method": "GET",
              "pagination": {
                "offsetVar": "",
                "limitVar": "",
                "incrementBy": "limit",
                "requestLocation": "query"
              },
              "query": {},
              "body": {},
              "headers": {},
              "handleFailure": "ignore",
              "requestFields": {},
              "responseDatakey": "",
              "responseFields": {}
            }
          ],
          "cachedTasks": [
            {
              "name": "",
              "filterField": "",
              "filterLoc": ""
            }
          ]
        }
      ]
    }
  }

Connection Properties

These base properties are used to connect to Cisco_prime upon the adapter initially coming up. It is important to set these properties appropriately.

PropertyDescription
hostRequired. A fully qualified domain name or IP address.
portRequired. Used to connect to the server.
base_pathOptional. Used to define part of a path that is consistent for all or most endpoints. It makes the URIs easier to use and maintain but can be overridden on individual calls. An example **base_path** might be `/rest/api`. Default is ``.
versionOptional. Used to set a global version for action endpoints. This makes it faster to update the adapter when endpoints change. As with the base-path, version can be overridden on individual endpoints. Default is ``.
cache_locationOptional. Used to define where the adapter cache is located. The cache is used to maintain an entity list to improve performance. Storage locally is lost when the adapter is restarted. Storage in Redis is preserved upon adapter restart. Default is none which means no caching of the entity list.
encode_pathvarsOptional. Used to tell the adapter to encode path variables or not. The default behavior is to encode them so this property can be used to stop that behavior.
encode_queryvarsOptional. Used to tell the adapter to encode query parameters or not. The default behavior is to encode them so this property can be used to stop that behavior.
save_metricOptional. Used to tell the adapter to save metric information (this does not impact metrics returned on calls). This allows the adapter to gather metrics over time. Metric data can be stored in a database or on the file system.
stubOptional. Indicates whether the stub should run instead of making calls to Cisco_prime (very useful during basic testing). Default is false (which means connect to Cisco_prime).
protocolOptional. Notifies the adapter whether to use HTTP or HTTPS. Default is HTTP.

A connectivity check tells IAP the adapter has loaded successfully.

Authentication Properties

The following properties are used to define the authentication process to Cisco_prime.

Note: Depending on the method that is used to authenticate with Cisco_prime, you may not need to set all of the authentication properties.

PropertyDescription
auth_methodRequired. Used to define the type of authentication currently supported. Authentication methods currently supported are: `basic user_password`, `static_token`, `request_token`, and `no_authentication`.
usernameUsed to authenticate with Cisco_prime on every request or when pulling a token that will be used in subsequent requests.
passwordUsed to authenticate with Cisco_prime on every request or when pulling a token that will be used in subsequent requests.
tokenDefines a static token that can be used on all requests. Only used with `static_token` as an authentication method (auth\_method).
invalid_token_errorDefines the HTTP error that is received when the token is invalid. Notifies the adapter to pull a new token and retry the request. Default is 401.
token_timeoutDefines how long a token is valid. Measured in milliseconds. Once a dynamic token is no longer valid, the adapter has to pull a new token. If the token_timeout is set to -1, the adapter will pull a token on every request to Cisco_prime. If the timeout_token is 0, the adapter will use the expiration from the token response to determine when the token is no longer valid.
token_cacheUsed to determine where the token should be stored (local memory or in Redis).
auth_fieldDefines the request field the authentication (e.g., token are basic auth credentials) needs to be placed in order for the calls to work.
auth_field_formatDefines the format of the auth\_field. See examples below. Items enclosed in {} inform the adapter to perofrm an action prior to sending the data. It may be to replace the item with a value or it may be to encode the item.
auth_loggingSetting this true will add some additional logs but this should only be done when trying to debug an issue as certain credential information may be logged out when this is true.
client_idProvide a client id when needed, this is common on some types of OAuth.
client_secretProvide a client secret when needed, this is common on some types of OAuth.
grant_typeProvide a grant type when needed, this is common on some types of OAuth.

Examples of authentication field format

"{token}"
"Token {token}"
"{username}:{password}"
"Basic {b64}{username}:{password}{/b64}"

Healthcheck Properties

The healthcheck properties defines the API that runs the healthcheck to tell the adapter that it can reach Cisco_prime. There are currently three types of healthchecks.

  • None - Not recommended. Adapter will not run a healthcheck. Consequently, unable to determine before making a request if the adapter can reach Cisco_prime.
  • Startup - Adapter will check for connectivity when the adapter initially comes up, but it will not check afterwards.
  • Intermittent - Adapter will check connectivity to Cisco_prime at a frequency defined in the frequency property.
PropertyDescription
typeRequired. The type of health check to run.
frequencyRequired if intermittent. Defines how often the health check should run. Measured in milliseconds. Default is 300000.
query_objectQuery parameters to be added to the adapter healthcheck call.

Request Properties

The request section defines properties to help handle requests.

PropertyDescription
number_redirectsOptional. Tells the adapter that the request may be redirected and gives it a maximum number of redirects to allow before returning an error. Default is 0 - no redirects.
number_retriesTells the adapter how many times to retry a request that has either aborted or reached a limit error before giving up and returning an error.
limit_retry_errorOptional. Can be either an integer or an array. Indicates the http error status number to define that no capacity was available and, after waiting a short interval, the adapter can retry the request. If an array is provvided, the array can contain integers or strings. Strings in the array are used to define ranges (e.g. "502-506"). Default is [0].
failover_codesAn array of error codes for which the adapter will send back a failover flag to IAP so that the Platform can attempt the action in another adapter.
attempt_timeoutOptional. Tells how long the adapter should wait before aborting the attempt. On abort, the adapter will do one of two things: 1) return the error; or 2) if **healthcheck\_on\_timeout** is set to true, it will abort the request and run a Healthcheck until it re-establishes connectivity to Cisco_prime, and then will re-attempt the request that aborted. Default is 5000 milliseconds.
global_requestOptional. This is information that the adapter can include in all requests to the other system. This is easier to define and maintain than adding this information in either the code (adapter.js) or the action files.
global_request -> payloadOptional. Defines any information that should be included on all requests sent to the other system that have a payload/body.
global_request -> uriOptionsOptional. Defines any information that should be sent as untranslated query options (e.g. page, size) on all requests to the other system.
global_request -> addlHeadersOptioonal. Defines any headers that should be sent on all requests to the other system.
global_request -> authDataOptional. Defines any additional authentication data used to authentice with the other system. This authData needs to be consistent on every request.
healthcheck_on_timeoutRequired. Defines if the adapter should run a health check on timeout. If set to true, the adapter will abort the request and run a health check until it re-establishes connectivity and then it will re-attempt the request.
return_rawOptional. Tells the adapter whether the raw response should be returned as well as the IAP response. This is helpful when running integration tests to save mock data. It does add overhead to the response object so it is not ideal from production.
archivingOptional flag. Default is false. It archives the request, the results and the various times (wait time, Cisco_prime time and overall time) in the `adapterid_results` collection in MongoDB. Although archiving might be desirable, be sure to develop a strategy before enabling this capability. Consider how much to archive and what strategy to use for cleaning up the collection in the database so that it does not become too large, especially if the responses are large.
return_requestOptional flag. Default is false. Will return the actual request that is made including headers. This should only be used during debugging issues as there could be credentials in the actual request.

SSL Properties

The SSL section defines the properties utilized for ssl authentication with Cisco_prime. SSL can work two different ways: set the accept\_invalid\_certs flag to true (only recommended for lab environments), or provide a ca\_file.

PropertyDescription
enabledIf SSL is required, set to true.
accept_invalid_certsDefines if the adapter should accept invalid certificates (only recommended for lab environments). Required if SSL is enabled. Default is false.
ca_fileDefines the path name to the CA file used for SSL. If SSL is enabled and the accept invalid certifications is false, then ca_file is required.
key_fileDefines the path name to the Key file used for SSL. The key_file may be needed for some systems but it is not required for SSL.
cert_fileDefines the path name to the Certificate file used for SSL. The cert_file may be needed for some systems but it is not required for SSL.
secure_protocolDefines the protocol (e.g., SSLv3_method) to use on the SSL request.
ciphersRequired if SSL enabled. Specifies a list of SSL ciphers to use.
ecdhCurveDuring testing on some Node 8 environments, you need to set `ecdhCurve` to auto. If you do not, you will receive PROTO errors when attempting the calls. This is the only usage of this property and to our knowledge it only impacts Node 8 and 9.

Throttle Properties

The throttle section is used when requests to Cisco_prime must be queued (throttled). All of the properties in this section are optional.

PropertyDescription
throttle_enabledDefault is false. Defines if the adapter should use throttling or not.
number_pronghornsDefault is 1. Defines if throttling is done in a single Itential instance or whether requests are being throttled across multiple Itential instances (minimum = 1, maximum = 20). Throttling in a single Itential instance uses an in-memory queue so there is less overhead. Throttling across multiple Itential instances requires placing the request and queue information into a shared resource (e.g. database) so that each instance can determine what is running and what is next to run. Throttling across multiple instances requires additional I/O overhead.
sync-asyncThis property is not used at the current time (it is for future expansion of the throttling engine).
max_in_queueRepresents the maximum number of requests the adapter should allow into the queue before rejecting requests (minimum = 1, maximum = 5000). This is not a limit on what the adapter can handle but more about timely responses to requests. The default is currently 1000.
concurrent_maxDefines the number of requests the adapter can send to Cisco_prime at one time (minimum = 1, maximum = 1000). The default is 1 meaning each request must be sent to Cisco_prime in a serial manner.
expire_timeoutDefault is 0. Defines a graceful timeout of the request session. After a request has completed, the adapter will wait additional time prior to sending the next request. Measured in milliseconds (minimum = 0, maximum = 60000).
average_runtimeRepresents the approximate average of how long it takes Cisco_prime to handle each request. Measured in milliseconds (minimum = 50, maximum = 60000). Default is 200. This metric has performance implications. If the runtime number is set too low, it puts extra burden on the CPU and memory as the requests will continually try to run. If the runtime number is set too high, requests may wait longer than they need to before running. The number does not need to be exact but your throttling strategy depends heavily on this number being within reason. If averages range from 50 to 250 milliseconds you might pick an average run-time somewhere in the middle so that when Cisco_prime performance is exceptional you might run a little slower than you might like, but when it is poor you still run efficiently.
prioritiesAn array of priorities and how to handle them in relation to the throttle queue. Array of objects that include priority value and percent of queue to put the item ex { value: 1, percent: 10 }

Proxy Properties

The proxy section defines the properties to utilize when Cisco_prime is behind a proxy server.

PropertyDescription
enabledRequired. Default is false. If Cisco_prime is behind a proxy server, set enabled flag to true.
hostHost information for the proxy server. Required if `enabled` is true.
portPort information for the proxy server. Required if `enabled` is true.
protocolThe protocol (i.e., http, https, etc.) used to connect to the proxy. Default is http.
usernameIf there is authentication for the proxy, provide the username here.
passwordIf there is authentication for the proxy, provide the password here.

Mongo Properties

The mongo section defines the properties used to connect to a Mongo database. Mongo can be used for throttling as well as to persist metric data. If not provided, metrics will be stored in the file system.

PropertyDescription
hostOptional. Host information for the mongo server.
portOptional. Port information for the mongo server.
databaseOptional. The database for the adapter to use for its data.
usernameOptional. If credentials are required to access mongo, this is the user to login as.
passwordOptional. If credentials are required to access mongo, this is the password to login with.
replSetOptional. If the database is set up to use replica sets, define it here so it can be added to the database connection.
db_sslOptional. Contains information for SSL connectivity to the database.
db_ssl -> enabledIf SSL is required, set to true.
db_ssl -> accept_invalid_certDefines if the adapter should accept invalid certificates (only recommended for lab environments). Required if SSL is enabled. Default is false.
db_ssl -> ca_fileDefines the path name to the CA file used for SSL. If SSL is enabled and the accept invalid certifications is false, then ca_file is required.
db_ssl -> key_fileDefines the path name to the Key file used for SSL. The key_file may be needed for some systems but it is not required for SSL.
db_ssl -> cert_fileDefines the path name to the Certificate file used for SSL. The cert_file may be needed for some systems but it is not required for SSL.

Device Broker Properties

The device broker section defines the properties used integrate Cisco_prime to the device broker. Each broker call is represented and has an array of calls that can be used to build the response. This describes the calls and then the fields which are available in the calls.

PropertyDescription
getDeviceThe array of calls used to get device details for the broker
getDevicesFilteredThe array of calls used to get devices for the broker
isAliveThe array of calls used to get device status for the broker
getConfigThe array of calls used to get device configuration for the broker
getCountThe array of calls used to get device configuration for the broker
getDevice/getDevicesFiltered/isAlive/getConfig/getCount -> pathThe path, not including the base_path and version, for making this call
getDevice/getDevicesFiltered/isAlive/getConfig/getCount -> methodThe rest method for making this call
getDevice/getDevicesFiltered/isAlive/getConfig/getCount -> queryQuery object containing and query parameters and their values for this call
getDevice/getDevicesFiltered/isAlive/getConfig/getCount -> bodyBody object containing the payload for this call
getDevice/getDevicesFiltered/isAlive/getConfig/getCount -> headersHeader object containing the headers for this call.
getDevice/getDevicesFiltered/isAlive/getConfig/getCount -> handleFailureTells the adapter whether to "fail" or "ignore" failures if they occur.
isAlive -> statusValueTells the adapter what value to look for in the status field to determine if the device is alive.
getDevice/getDevicesFiltered/isAlive/getConfig -> requestFieldsObject containing fields the adapter should send on the request and where it should get the data. The where can be from a response to a getDevicesFiltered or a static value.
getDevice/getDevicesFiltered/isAlive/getConfig -> responseFieldsObject containing fields the adapter should set to send back to iap and where the value should come from in the response or request data.

Using this Adapter

The adapter.js file contains the calls the adapter makes available to the rest of the Itential Platform. The API detailed for these calls should be available through JSDOC. The following is a brief summary of the calls.

Generic Adapter Calls

These are adapter methods that IAP or you might use. There are some other methods not shown here that might be used for internal adapter functionality.

Method SignatureDescriptionWorkflow?
connect()This call is run when the Adapter is first loaded by he Itential Platform. It validates the properties have been provided correctly.No
healthCheck(callback)This call ensures that the adapter can communicate with Adapter for Cisco Prime. The actual call that is used is defined in the adapter properties and .system entities action.json file.No
refreshProperties(properties)This call provides the adapter the ability to accept property changes without having to restart the adapter.No
encryptProperty(property, technique, callback)This call will take the provided property and technique, and return the property encrypted with the technique. This allows the property to be used in the adapterProps section for the credential password so that the password does not have to be in clear text. The adapter will decrypt the property as needed for communications with Adapter for Cisco Prime.No
iapUpdateAdapterConfiguration(configFile, changes, entity, type, action, callback)This call provides the ability to update the adapter configuration from IAP - includes actions, schema, mockdata and other configurations.Yes
iapSuspendAdapter(mode, callback)This call provides the ability to suspend the adapter and either have requests rejected or put into a queue to be processed after the adapter is resumed.Yes
iapUnsuspendAdapter(callback)This call provides the ability to resume a suspended adapter. Any requests in queue will be processed before new requests.Yes
iapGetAdapterQueue(callback)This call will return the requests that are waiting in the queue if throttling is enabled.Yes
iapFindAdapterPath(apiPath, callback)This call provides the ability to see if a particular API path is supported by the adapter.Yes
iapTroubleshootAdapter(props, persistFlag, adapter, callback)This call can be used to check on the performance of the adapter - it checks connectivity, healthcheck and basic get calls.Yes
iapRunAdapterHealthcheck(adapter, callback)This call will return the results of a healthcheck.Yes
iapRunAdapterConnectivity(callback)This call will return the results of a connectivity check.Yes
iapRunAdapterBasicGet(callback)This call will return the results of running basic get API calls.Yes
iapMoveAdapterEntitiesToDB(callback)This call will push the adapter configuration from the entities directory into the Adapter or IAP Database.Yes
iapDeactivateTasks(tasks, callback)This call provides the ability to remove tasks from the adapter.Yes
iapActivateTasks(tasks, callback)This call provides the ability to add deactivated tasks back into the adapter.Yes
iapExpandedGenericAdapterRequest(metadata, uriPath, restMethod, pathVars, queryData, requestBody, addlHeaders, callback)This is an expanded Generic Call. The metadata object allows us to provide many new capabilities within the generic request.Yes
genericAdapterRequest(uriPath, restMethod, queryData, requestBody, addlHeaders, callback)This call allows you to provide the path to have the adapter call. It is an easy way to incorporate paths that have not been built into the adapter yet.Yes
genericAdapterRequestNoBasePath(uriPath, restMethod, queryData, requestBody, addlHeaders, callback)This call is the same as the genericAdapterRequest only it does not add a base_path or version to the call.Yes
iapRunAdapterLint(callback)Runs lint on the addapter and provides the information back.Yes
iapRunAdapterTests(callback)Runs baseunit and unit tests on the adapter and provides the information back.Yes
iapGetAdapterInventory(callback)This call provides some inventory related information about the adapter.Yes

Adapter Cache Calls

These are adapter methods that are used for adapter caching. If configured, the adapter will cache based on the interval provided. However, you can force a population of the cache manually as well.

Method SignatureDescriptionWorkflow?
iapPopulateEntityCache(entityTypes, callback)This call populates the adapter cache.Yes
iapRetrieveEntitiesCache(entityType, options, callback)This call retrieves the specific items from the adapter cache.Yes

Adapter Broker Calls

These are adapter methods that are used to integrate to IAP Brokers. This adapter currently supports the following broker calls.

Method SignatureDescriptionWorkflow?
hasEntities(entityType, entityList, callback)This call is utilized by the IAP Device Broker to determine if the adapter has a specific entity and item of the entity.No
getDevice(deviceName, callback)This call returns the details of the requested device.No
getDevicesFiltered(options, callback)This call returns the list of devices that match the criteria provided in the options filter.No
isAlive(deviceName, callback)This call returns whether the device status is activeNo
getConfig(deviceName, format, callback)This call returns the configuration for the selected device.No
iapGetDeviceCount(callback)This call returns the count of devices.No

Specific Adapter Calls

Specific adapter calls are built based on the API of the Cisco Prime. The Adapter Builder creates the proper method comments for generating JS-DOC for the adapter. This is the best way to get information on the calls.

Method SignatureDescriptionPathWorkflow?
deleteWebacsApiV4OpAaaTacacsPlusServer(serverIp, serverHostName, callback)DELETE Delete Server DELETE op/aaa/tacacsPlusServer{base_path}/{version}/webacs/api/v4/op/aaa/tacacsPlusServer?{query}Yes
getWebacsApiV4OpAaaTacacsPlusServer(callback)GET List Servers GET op/aaa/tacacsPlusServer{base_path}/{version}/webacs/api/v4/op/aaa/tacacsPlusServer?{query}Yes
postWebacsApiV4OpAaaTacacsPlusServer(body, callback)POST Add Server POST op/aaa/tacacsPlusServer{base_path}/{version}/webacs/api/v4/op/aaa/tacacsPlusServer?{query}Yes
putWebacsApiV4OpAaaTacacsPlusServer(body, callback)PUT Update Server PUT op/aaa/tacacsPlusServer{base_path}/{version}/webacs/api/v4/op/aaa/tacacsPlusServer?{query}Yes
getWebacsApiV4DataApOnboardingProfile(callback)GET Get AP onboarding profiles GET data/ApOnboardingProfile{base_path}/{version}/webacs/api/v4/data/ApOnboardingProfile?{query}Yes
deleteWebacsApiV4OpApOnboardingProfile(body, callback)DELETE Delete AP onboarding profiles DELETE op/apOnboarding/profile{base_path}/{version}/webacs/api/v4/op/apOnboarding/profile?{query}Yes
postWebacsApiV4OpApOnboardingProfile(overrideOption, callback)POST Create AP onboarding profiles POST op/apOnboarding/profile{base_path}/{version}/webacs/api/v4/op/apOnboarding/profile?{query}Yes
putWebacsApiV4OpApOnboardingProfile(callback)PUT Modify AP onboarding profile PUT op/apOnboarding/profile{base_path}/{version}/webacs/api/v4/op/apOnboarding/profile?{query}Yes
getWebacsApiV4DataApiHealthRecords(callback)GET API Health Record GET data/ApiHealthRecords{base_path}/{version}/webacs/api/v4/data/ApiHealthRecords?{query}Yes
getWebacsApiV4DataApiResponseTimeSummary(callback)GET API Response Time Summary GET data/ApiResponseTimeSummary{base_path}/{version}/webacs/api/v4/data/ApiResponseTimeSummary?{query}Yes
getWebacsApiV4OpApiHealthCallsPerClient(service, callback)GET API Calls Per Client GET op/apiHealth/callsPerClient{base_path}/{version}/webacs/api/v4/op/apiHealth/callsPerClient?{query}Yes
getWebacsApiV4OpApiHealthRequestCountTrend(service, callback)GET API Request Count Trend GET op/apiHealth/requestCountTrend{base_path}/{version}/webacs/api/v4/op/apiHealth/requestCountTrend?{query}Yes
getWebacsApiV4OpApiHealthResponseTimeTrend(service, callback)GET API Response Time Trend GET op/apiHealth/responseTimeTrend{base_path}/{version}/webacs/api/v4/op/apiHealth/responseTimeTrend?{query}Yes
getWebacsApiV4OpApiHealthServiceNameList(callback)GET API Service Name List GET op/apiHealth/serviceNameList{base_path}/{version}/webacs/api/v4/op/apiHealth/serviceNameList?{query}Yes
getWebacsApiV4OpApServiceRxNeighbors(apId, callback)GET Get Rx Neighbors GET op/apService/rxNeighbors{base_path}/{version}/webacs/api/v4/op/apService/rxNeighbors?{query}Yes
putWebacsApiV4OpApServiceDeleteById(body, callback)PUT Delete Access Points By IDs PUT op/apService/deleteById{base_path}/{version}/webacs/api/v4/op/apService/deleteById?{query}Yes
putWebacsApiV4OpApServiceDeleteAp(body, callback)PUT Delete Access Points By Names PUT op/apService/deleteAp{base_path}/{version}/webacs/api/v4/op/apService/deleteAp?{query}Yes
putWebacsApiV4OpApServiceAccessPoint(body, callback)PUT Modify Unified Access Point PUT op/apService/accessPoint{base_path}/{version}/webacs/api/v4/op/apService/accessPoint?{query}Yes
putWebacsApiV4OpRogueApClassification(callback)PUT Set Classification Type And Rogue State PUT op/rogueAp/classification{base_path}/{version}/webacs/api/v4/op/rogueAp/classification?{query}Yes
putWebacsApiV4OpAlarmsAcknowledge(callback)PUT Acknowledges Alarms PUT op/alarms/acknowledge{base_path}/{version}/webacs/api/v4/op/alarms/acknowledge?{query}Yes
putWebacsApiV4OpAlarmsAnnotate(note, callback)PUT Annotates Alarms PUT op/alarms/annotate{base_path}/{version}/webacs/api/v4/op/alarms/annotate?{query}Yes
putWebacsApiV4OpAlarmsClear(callback)PUT Clears Alarms PUT op/alarms/clear{base_path}/{version}/webacs/api/v4/op/alarms/clear?{query}Yes
putWebacsApiV4OpAlarmsClearByEventType(setSeverityToInfo, callback)PUT Clears Alarms with provided event type PUT op/alarms/clearByEventType{base_path}/{version}/webacs/api/v4/op/alarms/clearByEventType?{query}Yes
putWebacsApiV4OpAlarmsUnacknowledge(callback)PUT Unacknowledges Alarms PUT op/alarms/unacknowledge{base_path}/{version}/webacs/api/v4/op/alarms/unacknowledge?{query}Yes
getWebacsApiV4DataApplications(callback)GET Predefined and User-defined Applications GET data/Applications{base_path}/{version}/webacs/api/v4/data/Applications?{query}Yes
getWebacsApiV4DataCliTemplate(callback)GET CLI Configuration Templates GET data/CliTemplate{base_path}/{version}/webacs/api/v4/data/CliTemplate?{query}Yes
deleteWebacsApiV4OpCliTemplateConfigurationDeleteTemplate(callback)DELETE Delete Configuration Template DELETE op/cliTemplateConfiguration/deleteTemplate{base_path}/{version}/webacs/api/v4/op/cliTemplateConfiguration/deleteTemplate?{query}Yes
deleteWebacsApiV4OpCliTemplateConfigurationFolder(callback)DELETE Delete Configuration Template Folder DELETE op/cliTemplateConfiguration/folder{base_path}/{version}/webacs/api/v4/op/cliTemplateConfiguration/folder?{query}Yes
getWebacsApiV4OpCliTemplateConfigurationFolder(callback)GET List Configuration Template Folders GET op/cliTemplateConfiguration/folder{base_path}/{version}/webacs/api/v4/op/cliTemplateConfiguration/folder?{query}Yes
getWebacsApiV4OpCliTemplateConfigurationDeviceTypes(callback)GET List Device Types GET op/cliTemplateConfiguration/deviceTypes{base_path}/{version}/webacs/api/v4/op/cliTemplateConfiguration/deviceTypes?{query}Yes
postWebacsApiV4OpCliTemplateConfigurationDeviceTypes(callback)POST Create Configuration Template Folder POST op/cliTemplateConfiguration/folder{base_path}/{version}/webacs/api/v4/op/cliTemplateConfiguration/deviceTypes?{query}Yes
postWebacsApiV4OpCliTemplateConfigurationUpload(callback)POST Upload Configuration Template POST op/cliTemplateConfiguration/upload{base_path}/{version}/webacs/api/v4/op/cliTemplateConfiguration/upload?{query}Yes
putWebacsApiV4OpCliTemplateConfigurationDeployTemplateThroughJob(startTime, callback)PUT Deploy Configuration Template Through Job PUT op/cliTemplateConfiguration/deployTemplateThrough{base_path}/{version}/webacs/api/v4/op/cliTemplateConfiguration/deployTemplateThroughJob?{query}Yes
putWebacsApiV4OpCliTemplateConfigurationTemplate(callback)PUT Modify Configuration Template Content PUT op/cliTemplateConfiguration/template{base_path}/{version}/webacs/api/v4/op/cliTemplateConfiguration/template?{query}Yes
getWebacsApiV4DataClientCounts(callback)GET Client Counts GET data/ClientCounts{base_path}/{version}/webacs/api/v4/data/ClientCounts?{query}Yes
getWebacsApiV4DataClientSessions(callback)GET Client Sessions GET data/ClientSessions{base_path}/{version}/webacs/api/v4/data/ClientSessions?{query}Yes
getWebacsApiV4DataClientTraffics(callback)GET Client Traffic Information GET data/ClientTraffics{base_path}/{version}/webacs/api/v4/data/ClientTraffics?{query}Yes
getWebacsApiV4DataHistoricalClientCounts(callback)GET Historical Client Counts GET data/HistoricalClientCounts{base_path}/{version}/webacs/api/v4/data/HistoricalClientCounts?{query}Yes
getWebacsApiV4DataHistoricalClientTraffics(callback)GET Historical Client Traffic Information GET data/HistoricalClientTraffics{base_path}/{version}/webacs/api/v4/data/HistoricalClientTraffics?{query}Yes
getWebacsApiV4OpComplianceCheck(jobName, callback)GET Checks status of Check Job GET op/compliance/check{base_path}/{version}/webacs/api/v4/op/compliance/check?{query}Yes
postWebacsApiV4OpCompliancePolicy(body, callback)POST Add policy POST op/compliance/policy{base_path}/{version}/webacs/api/v4/op/compliance/policy?{query}Yes
postWebacsApiV4OpComplianceProfile(body, callback)POST Add profile POST op/compliance/profile{base_path}/{version}/webacs/api/v4/op/compliance/profile?{query}Yes
postWebacsApiV4OpCompliancePolicyImport(body, callback)POST Import policy POST op/compliance/policy/import{base_path}/{version}/webacs/api/v4/op/compliance/policy/import?{query}Yes
postWebacsApiV4OpComplianceRun(body, callback)POST Schedule a Check Job POST op/compliance/run{base_path}/{version}/webacs/api/v4/op/compliance/run?{query}Yes
getWebacsApiV4DataBulkSanitizedConfigArchives(callback)GET Bulk export sanitized configuration archives GET data/BulkSanitizedConfigArchives{base_path}/{version}/webacs/api/v4/data/BulkSanitizedConfigArchives?{query}Yes
getWebacsApiV4DataBulkUnsanitizedConfigArchives(callback)GET Bulk export unsanitized configuration archives GET data/BulkUnsanitizedConfigArchives{base_path}/{version}/webacs/api/v4/data/BulkUnsanitizedConfigArchives?{query}Yes
getWebacsApiV4DataConfigArchives(callback)GET Configuration archive list GET data/ConfigArchives{base_path}/{version}/webacs/api/v4/data/ConfigArchives?{query}Yes
getWebacsApiV4DataConfigVersions(callback)GET Configuration versions and files list GET data/ConfigVersions{base_path}/{version}/webacs/api/v4/data/ConfigVersions?{query}Yes
getWebacsApiV4OpConfigArchiveServiceConfigDiffDevice(device, timeStamp, diffType, callback)GET Configuration Diff GET op/configArchiveService/configDiff/{device}{base_path}/{version}/webacs/api/v4/op/configArchiveService/configDiff/{pathv1}?{query}Yes
getWebacsApiV4OpConfigArchiveServiceExtractSanitizedFile(fileId, callback)GET Download the sanitized configuration file GET op/configArchiveService/extractSanitizedFile{base_path}/{version}/webacs/api/v4/op/configArchiveService/extractSanitizedFile?{query}Yes
getWebacsApiV4OpConfigArchiveServiceExtractUnsanitizedFile(fileId, callback)GET Download the unsanitized configuration file GET op/configArchiveService/extractUnsanitizedFile{base_path}/{version}/webacs/api/v4/op/configArchiveService/extractUnsanitizedFile?{query}Yes
deleteWebacsApiV4OpCredentialProfilesManagementCredentialProfiles(callback)DELETE Delete credential profile DELETE op/credentialProfilesManagement/credentialProfiles{base_path}/{version}/webacs/api/v4/op/credentialProfilesManagement/credentialProfiles?{query}Yes
getWebacsApiV4OpCredentialProfilesManagementCredentialProfiles(callback)GET Get credential profiles GET op/credentialProfilesManagement/credentialProfiles{base_path}/{version}/webacs/api/v4/op/credentialProfilesManagement/credentialProfiles?{query}Yes
getWebacsApiV4OpCredentialProfilesManagementDeviceList(profileName, callback)GET Get list of configured devices GET op/credentialProfilesManagement/deviceList{base_path}/{version}/webacs/api/v4/op/credentialProfilesManagement/deviceList?{query}Yes
postWebacsApiV4OpCredentialProfilesManagementDeviceList(callback)POST Create credential profile POST op/credentialProfilesManagement/credentialProfiles{base_path}/{version}/webacs/api/v4/op/credentialProfilesManagement/deviceList?{query}Yes
putWebacsApiV4OpCredentialProfilesManagementDeviceList(callback)PUT Update credential profile PUT op/credentialProfilesManagement/credentialProfiles{base_path}/{version}/webacs/api/v4/op/credentialProfilesManagement/deviceList?{query}Yes
getWebacsApiV4DataInventoryDetails(callback)GET Inventory Details GET data/InventoryDetails{base_path}/{version}/webacs/api/v4/data/InventoryDetails?{query}Yes
getWebacsApiV4DataMerakiAccessPoints(callback)GET Meraki Access Points GET data/MerakiAccessPoints{base_path}/{version}/webacs/api/v4/data/MerakiAccessPoints?{query}Yes
getWebacsApiV4DataMerakiDevices(callback)GET Meraki Devices GET data/MerakiDevices{base_path}/{version}/webacs/api/v4/data/MerakiDevices?{query}Yes
getWebacsApiV4OpDevicesExportDevices(ipAddress, groupId, groupPath, callback)GET Export Devices GET op/devices/exportDevices{base_path}/{version}/webacs/api/v4/op/devices/exportDevices?{query}Yes
postWebacsApiV4OpDevicesRemovalJob(body, callback)POST Delete devices through job POST op/devices/removalJob{base_path}/{version}/webacs/api/v4/op/devices/removalJob?{query}Yes
postWebacsApiV4OpDevicesSyncDevices(callback)POST Synchronize devices POST op/devices/syncDevices{base_path}/{version}/webacs/api/v4/op/devices/syncDevices?{query}Yes
putWebacsApiV4OpDevicesBulkImport(body, callback)PUT Bulk Import PUT op/devices/bulkImport{base_path}/{version}/webacs/api/v4/op/devices/bulkImport?{query}Yes
putWebacsApiV4OpConfigureApScheduleMaintenanceMode(scheduledTime, callback)PUT Schedule AP Maintenance Mode PUT op/configure/ap/scheduleMaintenanceMode{base_path}/{version}/webacs/api/v4/op/configure/ap/scheduleMaintenanceMode?{query}Yes
putWebacsApiV4OpConfigureDeviceScheduleMaintenanceMode(scheduledTime, callback)PUT Schedule Maintenance Mode PUT op/configure/device/scheduleMaintenanceMode{base_path}/{version}/webacs/api/v4/op/configure/device/scheduleMaintenanceMode?{query}Yes
putWebacsApiV4OpConfigureApMaintenanceMode(body, callback)PUT Set AP Maintenance Mode PUT op/configure/ap/maintenanceMode{base_path}/{version}/webacs/api/v4/op/configure/ap/maintenanceMode?{query}Yes
putWebacsApiV4OpConfigureDeviceMaintenanceMode(body, callback)PUT Set Device Maintenance Mode PUT op/configure/device/maintenanceMode{base_path}/{version}/webacs/api/v4/op/configure/device/maintenanceMode?{query}Yes
deleteWebacsApiV4OpGroupsGroup(callback)DELETE Delete device or port group DELETE op/groups/group{base_path}/{version}/webacs/api/v4/op/groups/group?{query}Yes
getWebacsApiV4OpGroupsGroupRules(groupId, groupPath, callback)GET Device Group Rules GET op/groups/groupRules{base_path}/{version}/webacs/api/v4/op/groups/groupRules?{query}Yes
putWebacsApiV4OpGroupsGroupDevices(groupId, groupPath, callback)PUT Assign devices to a group PUT op/groups/groupDevices{base_path}/{version}/webacs/api/v4/op/groups/groupDevices?{query}Yes
putWebacsApiV4OpGroupsGroupInterfaces(groupId, callback)PUT Create or update device or port group PUT op/groups/group{base_path}/{version}/webacs/api/v4/op/groups/groupInterfaces?{query}Yes
putWebacsApiV4OpGroupsRemoveDevices(groupId, groupPath, callback)PUT Remove devices from a group PUT op/groups/removeDevices{base_path}/{version}/webacs/api/v4/op/groups/removeDevices?{query}Yes
putWebacsApiV4OpGroupsRemoveInterfaces(groupId, groupPath, callback)PUT Replace set of group rules PUT op/groups/groupRules{base_path}/{version}/webacs/api/v4/op/groups/removeInterfaces?{query}Yes
getWebacsApiV4DataGroupSpecification(callback)GET Group Specification GET data/GroupSpecification{base_path}/{version}/webacs/api/v4/data/GroupSpecification?{query}Yes
getWebacsApiV4OpGroupsAlarmSummary(callback)GET Alarm Summary GET op/groups/alarmSummary{base_path}/{version}/webacs/api/v4/op/groups/alarmSummary?{query}Yes
getWebacsApiV4OpGroupsDeviceGroups(noAlarms, noMembersCount, callback)GET Device Groups GET op/groups/deviceGroups{base_path}/{version}/webacs/api/v4/op/groups/deviceGroups?{query}Yes
getWebacsApiV4OpGroupsSites(noAlarms, noMembersCount, callback)GET Location Groups GET op/groups/sites{base_path}/{version}/webacs/api/v4/op/groups/sites?{query}Yes
getWebacsApiV4OpGroupsUserDefinedGroups(groupType, noAlarms, noMembersCount, callback)GET User Defined Groups GET op/groups/userDefinedGroups{base_path}/{version}/webacs/api/v4/op/groups/userDefinedGroups?{query}Yes
getWebacsApiV4DataGuestUsers(callback)GET Get guest users GET data/GuestUsers{base_path}/{version}/webacs/api/v4/data/GuestUsers?{query}Yes
getWebacsApiV4OpGuestUserGuestUsersOnController(controllerId, callback)GET Get guest users from controller GET op/guestUser/guestUsersOnController{base_path}/{version}/webacs/api/v4/op/guestUser/guestUsersOnController?{query}Yes
getWebacsApiV4OpGuestUserLoggedInGuestUsersOnController(controllerId, callback)GET Get logged in guest users from controller GET op/guestUser/loggedInGuestUsersOnController{base_path}/{version}/webacs/api/v4/op/guestUser/loggedInGuestUsersOnController?{query}Yes
postWebacsApiV4OpGuestUser(body, callback)POST Create guest user POST op/guestUser{base_path}/{version}/webacs/api/v4/op/guestUser?{query}Yes
putWebacsApiV4OpGuestUserDelete(body, callback)PUT Update guest user PUT op/guestUser{base_path}/{version}/webacs/api/v4/op/guestUser/delete?{query}Yes
getWebacsApiV4DataJobSummary(callback)GET Job Summary GET data/JobSummary{base_path}/{version}/webacs/api/v4/data/JobSummary?{query}Yes
getWebacsApiV4OpJobServiceRunhistory(jobId, jobType, jobName, startTime, callback)GET Query Job Run History GET op/jobService/runhistory{base_path}/{version}/webacs/api/v4/op/jobService/runhistory?{query}Yes
putWebacsApiV4OpJobServiceCancel(body, callback)PUT Cancel A Job PUT op/jobService/cancel{base_path}/{version}/webacs/api/v4/op/jobService/cancel?{query}Yes
putWebacsApiV4OpJobServiceCancelrunning(body, callback)PUT Cancel A Job running instance PUT op/jobService/cancelrunning{base_path}/{version}/webacs/api/v4/op/jobService/cancelrunning?{query}Yes
putWebacsApiV4OpJobServiceResume(body, callback)PUT Resume A Job PUT op/jobService/resume{base_path}/{version}/webacs/api/v4/op/jobService/resume?{query}Yes
putWebacsApiV4OpJobServiceSuspend(body, callback)PUT Suspend A Job PUT op/jobService/suspend{base_path}/{version}/webacs/api/v4/op/jobService/suspend?{query}Yes
getWebacsApiV4DataMacFilterTemplates(callback)GET MAC Filter Templates GET data/MacFilterTemplates{base_path}/{version}/webacs/api/v4/data/MacFilterTemplates?{query}Yes
deleteWebacsApiV4OpMacFilterMacFilterTemplate(callback)DELETE Delete MAC Filter Template DELETE op/macFilter/macFilterTemplate{base_path}/{version}/webacs/api/v4/op/macFilter/macFilterTemplate?{query}Yes
postWebacsApiV4OpMacFilterMacFilterTemplate(callback)POST Create MAC Filter Template POST op/macFilter/macFilterTemplate{base_path}/{version}/webacs/api/v4/op/macFilter/macFilterTemplate?{query}Yes
putWebacsApiV4OpMacFilterDeploy(callback)PUT Update MAC Filter Template PUT op/macFilter/macFilterTemplate{base_path}/{version}/webacs/api/v4/op/macFilter/deploy?{query}Yes
getWebacsApiV4OpInfoCoredumps(callback)GET Core Dumps GET op/info/coredumps{base_path}/{version}/webacs/api/v4/op/info/coredumps?{query}Yes
getWebacsApiV4OpInfoDisk(callback)GET Disk Usage and Capacity GET op/info/disk{base_path}/{version}/webacs/api/v4/op/info/disk?{query}Yes
getWebacsApiV4OpInfoLicense(callback)GET Licenses GET op/info/license{base_path}/{version}/webacs/api/v4/op/info/license?{query}Yes
getWebacsApiV4OpInfoUptime(callback)GET Uptime GET op/info/uptime{base_path}/{version}/webacs/api/v4/op/info/uptime?{query}Yes
getWebacsApiV4OpInfoVersion(callback)GET Version GET op/info/version{base_path}/{version}/webacs/api/v4/op/info/version?{query}Yes
deleteWebacsApiV4OpPnpProfileProfileNameInstance(profileName, callback)DELETE Delete All Profile Instances of a PnP Profile DELETE op/pnp/profile/{profileName}/instance/{base_path}/{version}/webacs/api/v4/op/pnp/profile/{pathv1}/instance/?{query}Yes
getWebacsApiV4OpPnpProfilePnpProfileFolderProfileName(pnpProfileFolder, profileName, callback)GET Read Pnp Profile GET op/pnp/profile/{pnpProfileFolder}/{profileName}{base_path}/{version}/webacs/api/v4/op/pnp/profile/{pathv1}/{pathv2}?{query}Yes
postWebacsApiV4OpPnpProfilePnpProfileFolderProfileName(pnpProfileFolder, profileName, callback)POST Create Pnp Profile POST op/pnp/profile/{pnpProfileFolder}{base_path}/{version}/webacs/api/v4/op/pnp/profile/{pathv1}/{pathv2}?{query}Yes
deleteWebacsApiV4OpPnpProfilePnpProfileFolderProfileName(pnpProfileFolder, profileName, callback)DELETE Delete Pnp Profile DELETE op/pnp/profile/{pnpProfileFolder}/{profileName}{base_path}/{version}/webacs/api/v4/op/pnp/profile/{pathv1}/{pathv2}?{query}Yes
deleteWebacsApiV4OpPnpProfileProfileNameInstanceInstanceName(profileName, instanceName, callback)DELETE Delete Profile Instance of a PnP Profile DELETE op/pnp/profile/{profileName}/instance/{insta{base_path}/{version}/webacs/api/v4/op/pnp/profile/{pathv1}/instance/{pathv2}?{query}Yes
getWebacsApiV4OpPnpProfileProfileNameInstanceInstanceName(profileName, instanceName, callback)GET Get Profile Instance of PnP Profile GET op/pnp/profile/{profileName}/instance/{instanceName}{base_path}/{version}/webacs/api/v4/op/pnp/profile/{pathv1}/instance/{pathv2}?{query}Yes
getWebacsApiV4OpRateServiceRateLimits(callback)GET Get Rate Limits GET op/rateService/rateLimits{base_path}/{version}/webacs/api/v4/op/rateService/rateLimits?{query}Yes
putWebacsApiV4OpRateServiceRateLimits(callback)PUT Update Rate Limits PUT op/rateService/rateLimits{base_path}/{version}/webacs/api/v4/op/rateService/rateLimits?{query}Yes
getWebacsApiV4OpReportServiceTemplates(reportCategory, reportType, scheduled, virtualDomain, callback)GET Get Available Report Templates GET op/reportService/templates{base_path}/{version}/webacs/api/v4/op/reportService/templates?{query}Yes
getWebacsApiV4OpReportServiceGetReport(reportTitle, pageIndex, callback)GET Get a Report GET op/reportService/getReport{base_path}/{version}/webacs/api/v4/op/reportService/getReport?{query}Yes
getWebacsApiV4OpReportServiceZipReport(callback)GET Run a ZIP Report GET op/reportService/zipReport{base_path}/{version}/webacs/api/v4/op/reportService/zipReport?{query}Yes
getWebacsApiV4OpUpdateRetrieve(callback)GET Information about updates GET op/update/retrieve{base_path}/{version}/webacs/api/v4/op/update/retrieve?{query}Yes
getWebacsApiV4OpPfrMonitoringExtGetAllBorderRoutersStartTimeEndTimeSiteName(startTime, endTime, siteName, hierarchyPath, callback)GET All Border Routers GET op/pfrMonitoringExt/getAllBorderRouters/{startTime}/{endTime}/{siteName}{base_path}/{version}/webacs/api/v4/op/pfrMonitoringExt/getAllBorderRouters/{pathv1}/{pathv2}/{pathv3}?{query}Yes
getWebacsApiV4OpPfrMonitoringExtGetAllIMEsSrcSiteDstSiteStartTimeEndTime(startTime, endTime, srcSite, dstSite, srcHierarchyPath, destHierarchyPath, callback)GET All IMEs GET op/pfrMonitoringExt/getAllIMEs/{srcSite}/{dstSite}/{startTime}/{endTime}{base_path}/{version}/webacs/api/v4/op/pfrMonitoringExt/getAllIMEs/{pathv1}/{pathv2}/{pathv3}/{pathv4}?{query}Yes
getWebacsApiV4OpPfrMonitoringExtGetAllRCsSrcSiteDstSiteStartTimeEndTime(startTime, endTime, srcSite, dstSite, srcHierarchyPath, destHierarchyPath, callback)GET All RCs GET op/pfrMonitoringExt/getAllRCs/{srcSite}/{dstSite}/{startTime}/{endTime}{base_path}/{version}/webacs/api/v4/op/pfrMonitoringExt/getAllRCs/{pathv1}/{pathv2}/{pathv3}/{pathv4}?{query}Yes
getWebacsApiV4OpPfrMonitoringExtGetAllTCAsSrcSiteDstSiteStartTimeEndTime(startTime, endTime, srcSite, dstSite, destHierarchyPath, srcHierarchyPath, callback)GET All TCAs GET op/pfrMonitoringExt/getAllTCAs/{srcSite}/{dstSite}/{startTime}/{endTime}{base_path}/{version}/webacs/api/v4/op/pfrMonitoringExt/getAllTCAs/{pathv1}/{pathv2}/{pathv3}/{pathv4}?{query}Yes
getWebacsApiV4OpPfrMonitoringExtGetAllWANInterfacesStartTimeEndTimeSiteNameBrIp(startTime, endTime, siteName, brIp, hierarchyPath, callback)GET All WANInterfaces GET op/pfrMonitoringExt/getAllWANInterfaces/{startTime}/{endTime}/{siteName}/{base_path}/{version}/webacs/api/v4/op/pfrMonitoringExt/getAllWANInterfaces/{pathv1}/{pathv2}/{pathv3}/{pathv4}?{query}Yes
getWebacsApiV4OpStatisticsServiceApplicationApplicationArtAnalysis(range, startTime, endTime, appId, dataSourceId, siteId, clientIp, networkAwareType, callback)GET Application Art Analysis GET op/statisticsService/application/applicationArtAnalysis{base_path}/{version}/webacs/api/v4/op/statisticsService/application/applicationArtAnalysis?{query}Yes
getWebacsApiV4OpStatisticsServiceApplicationPerformance(startTime, endTime, range, appId, siteId, domainId, pdsId, topN, nwAwareValue, ssidValue, callback)GET Application Performance GET op/statisticsService/application/performance{base_path}/{version}/webacs/api/v4/op/statisticsService/application/performance?{query}Yes
getWebacsApiV4OpStatisticsServiceApplicationTopNTraffics(range, startTime, endTime, trafficDirection, siteId, dataSourceId, deviceIp, interfaceId, interfaceIndex, sortOrder, appId, topN, clientIp, networkAwareType, dataType, nodeType, callback)GET Application Top N Traffics GET op/statisticsService/application/topNTraffics{base_path}/{version}/webacs/api/v4/op/statisticsService/application/topNTraffics?{query}Yes
getWebacsApiV4OpStatisticsServiceApplicationTopNApplicationsWithSites(startTime, endTime, range, trafficDirection, appId, siteId, topN, dataType, callback)GET Application Top N Volumes With Sites Statistics GET op/statisticsService/application/topNApplic{base_path}/{version}/webacs/api/v4/op/statisticsService/application/topNApplicationsWithSites?{query}Yes
getWebacsApiV4OpStatisticsServiceApplicationTrafficAnalysis(startTime, endTime, range, type, appId, pdsId, hostId, nwAwareValue, ssidValue, callback)GET Application Traffic Analysis GET op/statisticsService/application/trafficAnalysis{base_path}/{version}/webacs/api/v4/op/statisticsService/application/trafficAnalysis?{query}Yes
getWebacsApiV4OpStatisticsServiceApplicationAppVolume(range, startTime, endTime, trafficDirection, siteId, clientIp, deviceIp, interfaceIndex, topN, sortOrder, networkAwareType, dataType, callback)GET Application Volume GET op/statisticsService/application/appVolume{base_path}/{version}/webacs/api/v4/op/statisticsService/application/appVolume?{query}Yes
getWebacsApiV4OpStatisticsServiceApplicationNumberOfUsers(startTime, endTime, range, appId, siteId, pdsId, hostId, nwAwareValue, ssidValue, userId, macAddr, callback)GET Applications Number of Users GET op/statisticsService/application/numberOfUsers{base_path}/{version}/webacs/api/v4/op/statisticsService/application/numberOfUsers?{query}Yes
getWebacsApiV4OpStatisticsServiceDeviceCpuUtilSummary(range, startTime, endTime, type, source, rangeString, callback)GET CPU Utilization Summary GET op/statisticsService/device/cpuUtilSummary{base_path}/{version}/webacs/api/v4/op/statisticsService/device/cpuUtilSummary?{query}Yes
getWebacsApiV4OpStatisticsServiceDeviceCpuUtilTrend(ipAddress, range, startTime, endTime, callback)GET CPU Utilization Trend GET op/statisticsService/device/cpuUtilTrend{base_path}/{version}/webacs/api/v4/op/statisticsService/device/cpuUtilTrend?{query}Yes
getWebacsApiV4OpStatisticsServiceClientsDistributionsDistribution(distribution, device, autoAp, ssid, site, siteType, clientType, clientState, direction, timeInterval, startTime, endTime, sort, callback)GET Client Distribution Data GET op/statisticsService/clients/distributions/{distribution}{base_path}/{version}/webacs/api/v4/op/statisticsService/clients/distributions/{pathv1}?{query}Yes
getWebacsApiV4OpStatisticsServiceClientsDistributions(callback)GET Client Distribution Supported GET op/statisticsService/clients/distributions{base_path}/{version}/webacs/api/v4/op/statisticsService/clients/distributions?{query}Yes
getWebacsApiV4OpStatisticsServiceClusters(datacenter, cluster, children, range, firstResult, maxResults, sort, callback)GET Cluster Details GET op/statisticsService/clusters{base_path}/{version}/webacs/api/v4/op/statisticsService/clusters?{query}Yes
getWebacsApiV4OpStatisticsServiceClustersMetricsMetric(metric, datacenter, cluster, timeInterval, startTime, endTime, callback)GET Cluster Metric Data GET op/statisticsService/clusters/metrics/{metric}{base_path}/{version}/webacs/api/v4/op/statisticsService/clusters/metrics/{pathv1}?{query}Yes
getWebacsApiV4OpStatisticsServiceClustersMetrics(datacenter, cluster, timeInterval, startTime, endTime, callback)GET Cluster Metrics Supported GET op/statisticsService/clusters/metrics{base_path}/{version}/webacs/api/v4/op/statisticsService/clusters/metrics?{query}Yes
getWebacsApiV4OpPfrMonitoringExtGetDscpAppUsageStartTimeEndTime(startTime, endTime, srcSiteName, dstSiteName, managedIpBR, tunnelName, srcHierarchyPath, destHierarchyPath, callback)GET DSCP App Usage GET op/pfrMonitoringExt/getDscpAppUsage/{startTime}/{endTime}{base_path}/{version}/webacs/api/v4/op/pfrMonitoringExt/getDscpAppUsage/{pathv1}/{pathv2}?{query}Yes
getWebacsApiV4OpPfrMonitoringExtGetDscpAppUsageForLiveTopoStartTimeEndTimeSrcSiteIdDstSiteId(startTime, endTime, srcSiteId, dstSiteId, vrfIdList, callback)GET DSCP App Usage For Live Topo GET op/pfrMonitoringExt/getDscpAppUsageForLiveTopo/{startTime}/{en{base_path}/{version}/webacs/api/v4/op/pfrMonitoringExt/getDscpAppUsageForLiveTopo/{pathv1}/{pathv2}/{pathv3}/{pathv4}?{query}Yes
getWebacsApiV4OpPfrMonitoringExtGetDSCPTimeVsUsageChartStartTimeEndTimeSiteNameBrIpDscpNoOfPoints(startTime, endTime, siteName, brIp, dscp, noOfPoints, interfaceName, hierarchyPath, callback)GET DSCP Time Vs Usage Chart GET op/pfrMonitoringExt/getDSCPTimeVsUsageChart/{startTime}/{endTime}/{base_path}/{version}/webacs/api/v4/op/pfrMonitoringExt/getDSCPTimeVsUsageChart/{pathv1}/{pathv2}/{pathv3}/{pathv4}/{pathv5}/{pathv6}?{query}Yes
getWebacsApiV4OpStatisticsServiceDatacenters(datacenter, children, firstResult, maxResults, sort, callback)GET Datacenter Details GET op/statisticsService/datacenters{base_path}/{version}/webacs/api/v4/op/statisticsService/datacenters?{query}Yes
getWebacsApiV4OpStatisticsServiceDatacentersMetricsMetric(metric, datacenter, timeInterval, startTime, endTime, callback)GET Datacenter Metric Data GET op/statisticsService/datacenters/metrics/{metric}{base_path}/{version}/webacs/api/v4/op/statisticsService/datacenters/metrics/{pathv1}?{query}Yes
getWebacsApiV4OpStatisticsServiceDatacentersMetrics(datacenter, timeInterval, startTime, endTime, callback)GET Datacenter Metrics Supported GET op/statisticsService/datacenters/metrics{base_path}/{version}/webacs/api/v4/op/statisticsService/datacenters/metrics?{query}Yes
getWebacsApiV4OpStatisticsServiceDeviceAvailability(ipAddress, range, startTime, endTime, callback)GET Device Availability GET op/statisticsService/device/availability{base_path}/{version}/webacs/api/v4/op/statisticsService/device/availability?{query}Yes
getWebacsApiV4OpStatisticsServiceDeviceAvailabilityMessage(ipAddress, callback)GET Device Availability Message GET op/statisticsService/device/availabilityMessage{base_path}/{version}/webacs/api/v4/op/statisticsService/device/availabilityMessage?{query}Yes
getWebacsApiV4OpStatisticsServiceDeviceAvailabilitySummary(range, startTime, endTime, source, rangeString, callback)GET Device Availability Summary GET op/statisticsService/device/availabilitySummary{base_path}/{version}/webacs/api/v4/op/statisticsService/device/availabilitySummary?{query}Yes
getWebacsApiV4OpStatisticsServiceDeviceDownMessage(ipAddress, callback)GET Device Down Message GET op/statisticsService/device/downMessage{base_path}/{version}/webacs/api/v4/op/statisticsService/device/downMessage?{query}Yes
getWebacsApiV4OpStatisticsServiceDeviceHealthInfo(range, startTime, endTime, source, callback)GET Device Health Info GET op/statisticsService/device/healthInfo{base_path}/{version}/webacs/api/v4/op/statisticsService/device/healthInfo?{query}Yes
getWebacsApiV4OpStatisticsServiceDevicesMetricsMetric(metric, device, lineCard, timeInterval, startTime, endTime, callback)GET Device Metric Data GET op/statisticsService/devices/metrics/{metric}{base_path}/{version}/webacs/api/v4/op/statisticsService/devices/metrics/{pathv1}?{query}Yes
getWebacsApiV4OpStatisticsServiceDevicesMetrics(device, timeInterval, startTime, endTime, callback)GET Device Metrics Supported GET op/statisticsService/devices/metrics{base_path}/{version}/webacs/api/v4/op/statisticsService/devices/metrics?{query}Yes
getWebacsApiV4OpStatisticsServiceDevicePortSummary(ipAddress, type, callback)GET Device Port Summary GET op/statisticsService/device/portSummary{base_path}/{version}/webacs/api/v4/op/statisticsService/device/portSummary?{query}Yes
getWebacsApiV4OpStatisticsServiceDeviceReachabilityStatus(topN, source, type, callback)GET Device Reachability Status GET op/statisticsService/device/reachabilityStatus{base_path}/{version}/webacs/api/v4/op/statisticsService/device/reachabilityStatus?{query}Yes
getWebacsApiV4OpStatisticsServiceDevices(device, firstResult, maxResults, callback)GET Device Resource GET op/statisticsService/devices{base_path}/{version}/webacs/api/v4/op/statisticsService/devices?{query}Yes
getWebacsApiV4OpStatisticsServiceHosts(datacenter, cluster, host, children, range, firstResult, maxResults, sort, callback)GET Host Details GET op/statisticsService/hosts{base_path}/{version}/webacs/api/v4/op/statisticsService/hosts?{query}Yes
getWebacsApiV4OpStatisticsServiceHostsMetricsMetric(metric, datacenter, cluster, host, timeInterval, startTime, endTime, callback)GET Host Metric Data GET op/statisticsService/hosts/metrics/{metric}{base_path}/{version}/webacs/api/v4/op/statisticsService/hosts/metrics/{pathv1}?{query}Yes
getWebacsApiV4OpStatisticsServiceHostsMetrics(datacenter, cluster, host, timeInterval, startTime, endTime, callback)GET Host Metrics Supported GET op/statisticsService/hosts/metrics{base_path}/{version}/webacs/api/v4/op/statisticsService/hosts/metrics?{query}Yes
getWebacsApiV4OpStatisticsServiceInterfaceAvailability(startTime, endTime, range, ipAddress, ifName, callback)GET Interface Availability GET op/statisticsService/interface/availability{base_path}/{version}/webacs/api/v4/op/statisticsService/interface/availability?{query}Yes
getWebacsApiV4OpStatisticsServiceInterfaceAvailMessage(ipAddress, ifName, callback)GET Interface Availability Message GET op/statisticsService/interface/availMessage{base_path}/{version}/webacs/api/v4/op/statisticsService/interface/availMessage?{query}Yes
getWebacsApiV4OpStatisticsServiceInterfaceAvailabilitySummary(startTime, endTime, range, rangeString, source, callback)GET Interface Availability Summary GET op/statisticsService/interface/availabilitySummary{base_path}/{version}/webacs/api/v4/op/statisticsService/interface/availabilitySummary?{query}Yes
getWebacsApiV4OpStatisticsServiceInterfaceDetails(ipAddress, ifName, callback)GET Interface Details GET op/statisticsService/interface/details{base_path}/{version}/webacs/api/v4/op/statisticsService/interface/details?{query}Yes
getWebacsApiV4OpStatisticsServiceInterfaceDiscards(startTime, endTime, range, ipAddress, ifName, callback)GET Interface Discards GET op/statisticsService/interface/discards{base_path}/{version}/webacs/api/v4/op/statisticsService/interface/discards?{query}Yes
getWebacsApiV4OpStatisticsServiceInterfaceDownMessage(ipAddress, callback)GET Interface Down Message GET op/statisticsService/interface/downMessage{base_path}/{version}/webacs/api/v4/op/statisticsService/interface/downMessage?{query}Yes
getWebacsApiV4OpStatisticsServiceInterfaceErrors(startTime, endTime, range, ipAddress, ifName, callback)GET Interface Errors GET op/statisticsService/interface/errors{base_path}/{version}/webacs/api/v4/op/statisticsService/interface/errors?{query}Yes
getWebacsApiV4OpStatisticsServiceInterfacesMetricsMetric(metric, device, ifName, timeInterval, startTime, endTime, isFullHierarchy, direction, qosRateField, trafficDirection, sortOrder, networkAwareType, appId, siteId, dataType, dscp, metricDataType, callback)GET Interface Metric Data GET op/statisticsService/interfaces/metrics/{metric}{base_path}/{version}/webacs/api/v4/op/statisticsService/interfaces/metrics/{pathv1}?{query}Yes
getWebacsApiV4OpStatisticsServiceInterfacesMetrics(device, ifName, timeInterval, startTime, endTime, callback)GET Interface Metrics Supported GET op/statisticsService/interfaces/metrics{base_path}/{version}/webacs/api/v4/op/statisticsService/interfaces/metrics?{query}Yes
getWebacsApiV4OpStatisticsServiceInterfaces(device, ifName, firstResult, maxResults, sort, callback)GET Interface Resource GET op/statisticsService/interfaces{base_path}/{version}/webacs/api/v4/op/statisticsService/interfaces?{query}Yes
getWebacsApiV4OpStatisticsServiceInterfaceStatusSummary(startTime, endTime, range, rangeString, source, callback)GET Interface Status Summary GET op/statisticsService/interface/statusSummary{base_path}/{version}/webacs/api/v4/op/statisticsService/interface/statusSummary?{query}Yes
getWebacsApiV4OpStatisticsServiceInterfaceUtilSummary(startTime, endTime, range, rangeString, source, utilType, callback)GET Interface Utilization Summary GET op/statisticsService/interface/utilSummary{base_path}/{version}/webacs/api/v4/op/statisticsService/interface/utilSummary?{query}Yes
getWebacsApiV4OpStatisticsServiceInterfaceUtil(startTime, endTime, range, ipAddress, ifName, type, callback)GET Interface Utilizations GET op/statisticsService/interface/util{base_path}/{version}/webacs/api/v4/op/statisticsService/interface/util?{query}Yes
getWebacsApiV4OpDeviceRestDeviceLispMapSummaryDeviceIpStartTimeEndTime(deviceIp, startTime, endTime, callback)GET Lisp Map Summary Trend GET op/device-rest/DeviceLispMapSummary/{deviceIp}/{startTime}/{endTime}{base_path}/{version}/webacs/api/v4/op/device-rest/DeviceLispMapSummary/{pathv1}/{pathv2}/{pathv3}?{query}Yes
getWebacsApiV4OpStatisticsServiceDeviceMemoryUtilTrend(ipAddress, range, startTime, endTime, callback)GET Memory Utilization Trend GET op/statisticsService/device/memoryUtilTrend{base_path}/{version}/webacs/api/v4/op/statisticsService/device/memoryUtilTrend?{query}Yes
getWebacsApiV4OpPfrMonitoringExtGetOutStandingIMEsForSiteStartTimeEndTimeSrcSite(startTime, endTime, srcSite, siteHierarchyPath, callback)GET OutStanding IMEs For Site GET op/pfrMonitoringExt/getOutStandingIMEsForSite/{startTime}/{endTim{base_path}/{version}/webacs/api/v4/op/pfrMonitoringExt/getOutStandingIMEsForSite/{pathv1}/{pathv2}/{pathv3}?{query}Yes
getWebacsApiV4OpDeviceRestUciDeviceReachabilityGroupIdStartTimeEndTimeMaxrecords(startTime, endTime, groupId, maxrecords, callback)GET Reachable UCI Devcies GET op/device-rest/UciDeviceReachability/{groupId}/{startTime}/{endTime}/{base_path}/{version}/webacs/api/v4/op/device-rest/UciDeviceReachability/{pathv1}/{pathv2}/{pathv3}/{pathv4}?{query}Yes
getWebacsApiV4OpStatisticsServiceResourceTypes(callback)GET Resource Types Supported GET op/statisticsService/resourceTypes{base_path}/{version}/webacs/api/v4/op/statisticsService/resourceTypes?{query}Yes
getWebacsApiV4OpPfrMonitoringExtGetSiteAppHealthStartTimeEndTime(startTime, endTime, callback)GET Site App Health GET op/pfrMonitoringExt/getSiteAppHealth/{startTime}/{endTime}{base_path}/{version}/webacs/api/v4/op/pfrMonitoringExt/getSiteAppHealth/{pathv1}/{pathv2}?{query}Yes
getWebacsApiV4OpStatisticsServiceSystemHealth(startTime, endTime, range, callback)GET System Health GET op/statisticsService/system/health{base_path}/{version}/webacs/api/v4/op/statisticsService/system/health?{query}Yes
getWebacsApiV4OpStatisticsServiceSystemInfo(callback)GET System Information GET op/statisticsService/system/info{base_path}/{version}/webacs/api/v4/op/statisticsService/system/info?{query}Yes
getWebacsApiV4OpStatisticsServiceApplicationsAppHealthCrossing(startTime, endTime, range, siteId, callback)GET Threshold Violated Applications GET op/statisticsService/applications/appHealthCrossing{base_path}/{version}/webacs/api/v4/op/statisticsService/applications/appHealthCrossing?{query}Yes
getWebacsApiV4OpStatisticsServiceApplicationTopNHosts(startTime, endTime, range, appId, siteId, domainId, pdsId, topN, trafficDir, ipAddress, interfaceName, interfaceId, sortOrder, nwAwareValue, ssidValue, callback)GET Top N Application Hosts GET op/statisticsService/application/topNHosts{base_path}/{version}/webacs/api/v4/op/statisticsService/application/topNHosts?{query}Yes
getWebacsApiV4OpStatisticsServiceApplicationsPerformance(attribute, startTime, endTime, range, trafficDir, siteId, pdsId, dscp, appId, hostId, deviceIp, interfaceId, interfaceIndex, userName, macAddr, nAwareValue, topN, sortOrder, type, ssid, domainId, dataType, nodeType, controllerId, apId, viewType, siteMapId, isFabric, callback)GET Top N Applications GET op/statisticsService/applications/performance{base_path}/{version}/webacs/api/v4/op/statisticsService/applications/performance?{query}Yes
getWebacsApiV4OpStatisticsServiceApplicationsOvertime(startTime, endTime, range, trafficType, pdsId, interfaceName, deviceIp, interfaceIndex, sortOrder, rownum, hostId, siteId, domainId, type, nwAwareValue, ssidValue, appId, dataType, isFabric, callback)GET Top N Applications Over Time GET op/statisticsService/applications/overtime{base_path}/{version}/webacs/api/v4/op/statisticsService/applications/overtime?{query}Yes
getWebacsApiV4OpStatisticsServiceInterfaceTopNClassMapQOS(startTime, endTime, range, topN, source, ifIndex, callback)GET Top N Class Map QOS GET op/statisticsService/interface/topNClassMapQOS{base_path}/{version}/webacs/api/v4/op/statisticsService/interface/topNClassMapQOS?{query}Yes
getWebacsApiV4OpStatisticsServiceDeviceTopNCPU(range, startTime, endTime, topN, source, callback)GET Top N Device CPU Utilization GET op/statisticsService/device/topNCPU{base_path}/{version}/webacs/api/v4/op/statisticsService/device/topNCPU?{query}Yes
getWebacsApiV4OpDeviceRestTopNDeviceCacheALLGroupIdStartTimeEndTimeTopn(groupId, startTime, endTime, topn, source, dashlet, callback)GET Top N Device Cache GET op/device-rest/TopNDeviceCache/ALL/{groupId}/{startTime}/{endTime}/{topn}{base_path}/{version}/webacs/api/v4/op/device-rest/TopNDeviceCache/ALL/{pathv1}/{pathv2}/{pathv3}/{pathv4}?{query}Yes
getWebacsApiV4OpStatisticsServiceDeviceTopNMemory(range, startTime, endTime, topN, source, callback)GET Top N Device Memory Utilization GET op/statisticsService/device/topNMemory{base_path}/{version}/webacs/api/v4/op/statisticsService/device/topNMemory?{query}Yes
getWebacsApiV4OpStatisticsServiceDeviceTopNTemp(range, startTime, endTime, topN, source, type, callback)GET Top N Device Temperature GET op/statisticsService/device/topNTemp{base_path}/{version}/webacs/api/v4/op/statisticsService/device/topNTemp?{query}Yes
getWebacsApiV4OpStatisticsServiceInterfaceTopNErrors(startTime, endTime, range, topN, source, type, callback)GET Top N Interface Errors GET op/statisticsService/interface/topNErrors{base_path}/{version}/webacs/api/v4/op/statisticsService/interface/topNErrors?{query}Yes
getWebacsApiV4OpStatisticsServiceInterfaceTopNUtil(startTime, endTime, range, topN, source, utilType, callback)GET Top N Interface Utilization GET op/statisticsService/interface/topNUtil{base_path}/{version}/webacs/api/v4/op/statisticsService/interface/topNUtil?{query}Yes
getWebacsApiV4OpStatisticsServiceInterfaceTopNWanIssues(startTime, endTime, range, topN, source, callback)GET Top N WAN Interface Issues GET op/statisticsService/interface/topNWanIssues{base_path}/{version}/webacs/api/v4/op/statisticsService/interface/topNWanIssues?{query}Yes
getWebacsApiV4OpStatisticsServiceInterfaceTopNWanUtil(startTime, endTime, range, topN, source, callback)GET Top N WAN Interface Utilization GET op/statisticsService/interface/topNWanUtil{base_path}/{version}/webacs/api/v4/op/statisticsService/interface/topNWanUtil?{query}Yes
getWebacsApiV4OpPfrMonitoringExtGetTopNApplicationUsageOverTimeOldStartTimeEndTimeDeviceIpRownum(startTime, endTime, deviceIp, rownum, interfaceName, callback)GET TopNApplication Usage Over Time GET op/pfrMonitoringExt/getTopNApplicationUsageOverTimeOld/{sta{base_path}/{version}/webacs/api/v4/op/pfrMonitoringExt/getTopNApplicationUsageOverTimeOld/{pathv1}/{pathv2}/{pathv3}/{pathv4}?{query}Yes
getWebacsApiV4OpPfrMonitoringExtGetTopNApplicationUsageOverTimeStartTimeEndTimeDeviceIpRownum(startTime, endTime, deviceIp, rownum, interfaceName, callback)GET TopNApplication Usage Over Time PfR GET op/pfrMonitoringExt/getTopNApplicationUsageOverTime/{st{base_path}/{version}/webacs/api/v4/op/pfrMonitoringExt/getTopNApplicationUsageOverTime/{pathv1}/{pathv2}/{pathv3}/{pathv4}?{query}Yes
getWebacsApiV4OpStatisticsServiceApplicationsAppCount(startTime, endTime, range, siteId, callback)GET Total Application Count GET op/statisticsService/applications/appCount{base_path}/{version}/webacs/api/v4/op/statisticsService/applications/appCount?{query}Yes
getWebacsApiV4OpDeviceRestUnReachableUciDeviceGroupIdStartTimeEndTimeMaxrecords(startTime, endTime, maxrecords, groupId, callback)GET Unreachable UCI Devcies GET op/device-rest/UnReachableUciDevice/{groupId}/{startTime}/{endTime}{base_path}/{version}/webacs/api/v4/op/device-rest/UnReachableUciDevice/{pathv1}/{pathv2}/{pathv3}/{pathv4}?{query}Yes
getWebacsApiV4OpStatisticsServiceVms(datacenter, cluster, host, vm, children, range, firstResult, maxResults, sort, callback)GET VM Details GET op/statisticsService/vms{base_path}/{version}/webacs/api/v4/op/statisticsService/vms?{query}Yes
getWebacsApiV4OpStatisticsServiceVmsMetricsMetric(metric, datacenter, cluster, host, vm, timeInterval, startTime, endTime, callback)GET VM Metric Data GET op/statisticsService/vms/metrics/{metric}{base_path}/{version}/webacs/api/v4/op/statisticsService/vms/metrics/{pathv1}?{query}Yes
getWebacsApiV4OpStatisticsServiceVmsMetrics(datacenter, cluster, host, vm, timeInterval, startTime, endTime, callback)GET VM Metrics Supported GET op/statisticsService/vms/metrics{base_path}/{version}/webacs/api/v4/op/statisticsService/vms/metrics?{query}Yes
getWebacsApiV4OpPfrMonitoringExtGetWanUtilizationOverTimeRateForLinkStartTimeEndTimeBrIpAddrDirection(startTime, endTime, brIpAddr, direction, interfaceName, callback)GET WAN Utilization Over TimeRate For Link GET op/pfrMonitoringExt/getWanUtilizationOverTimeRateFor{base_path}/{version}/webacs/api/v4/op/pfrMonitoringExt/getWanUtilizationOverTimeRateForLink/{pathv1}/{pathv2}/{pathv3}/{pathv4}?{query}Yes
getWebacsApiV4OpPfrMonitoringExtGetWanUtilizationOverTimeForLinkStartTimeEndTimeBrIpAddrDirection(startTime, endTime, brIpAddr, direction, interfaceName, callback)GET WanUtilization Over Time For Link GET op/pfrMonitoringExt/getWanUtilizationOverTimeForLink/{sta{base_path}/{version}/webacs/api/v4/op/pfrMonitoringExt/getWanUtilizationOverTimeForLink/{pathv1}/{pathv2}/{pathv3}/{pathv4}?{query}Yes
getWebacsApiV4OpStatisticsServiceApplicationWorstNHosts(startTime, endTime, range, appId, siteId, domainId, pdsId, attribute, sortOrder, topN, nwAwareValue, ssidValue, userId, macAddr, callback)GET Worst N Application Hosts GET op/statisticsService/application/worstNHosts{base_path}/{version}/webacs/api/v4/op/statisticsService/application/worstNHosts?{query}Yes
getWebacsApiV4OpStatisticsServiceApplicationWorstNSites(startTime, endTime, range, appId, siteId, domainId, pdsId, attribute, topN, nwAwareValue, ssidValue, callback)GET Worst N Application Locations GET op/statisticsService/application/worstNSites{base_path}/{version}/webacs/api/v4/op/statisticsService/application/worstNSites?{query}Yes
postWebacsApiV4OpPfrMonitoringExtGetDSCPvsAllTCAViaPostStartTimeEndTime(startTime, endTime, callback)POST DSCP vs All TCA POST op/pfrMonitoringExt/getDSCPvsAllTCAViaPost/{startTime}/{endTime}{base_path}/{version}/webacs/api/v4/op/pfrMonitoringExt/getDSCPvsAllTCAViaPost/{pathv1}/{pathv2}?{query}Yes
postWebacsApiV4OpPfrMonitoringExtGetDSCPvsUrTCAViaPostStartTimeEndTime(startTime, endTime, callback)POST DSCP vs UrTCA POST op/pfrMonitoringExt/getDSCPvsUrTCAViaPost/{startTime}/{endTime}{base_path}/{version}/webacs/api/v4/op/pfrMonitoringExt/getDSCPvsUrTCAViaPost/{pathv1}/{pathv2}?{query}Yes
postWebacsApiV4OpPfrMonitoringExtGetMaxDelayVsDSCPChartReportsViaPostStartTimeEndTime(startTime, endTime, callback)POST Max Delay Vs DSCP Chart Reports POST op/pfrMonitoringExt/getMaxDelayVsDSCPChartReportsViaPost/{base_path}/{version}/webacs/api/v4/op/pfrMonitoringExt/getMaxDelayVsDSCPChartReportsViaPost/{pathv1}/{pathv2}?{query}Yes
postWebacsApiV4OpPfrMonitoringExtGetMaxJitterVsDSCPChartReportsViaPostStartTimeEndTime(startTime, endTime, callback)POST Max Jitter Vs DSCP Chart Reports POST op/pfrMonitoringExt/getMaxJitterVsDSCPChartReportsViaPos{base_path}/{version}/webacs/api/v4/op/pfrMonitoringExt/getMaxJitterVsDSCPChartReportsViaPost/{pathv1}/{pathv2}?{query}Yes
postWebacsApiV4OpPfrMonitoringExtGetMaxPacketLossVsDSCPChartReportsViaPostStartTimeEndTime(startTime, endTime, callback)POST Max Packet Loss Vs DSCP Chart Reports POST op/pfrMonitoringExt/getMaxPacketLossVsDSCPChartRepo{base_path}/{version}/webacs/api/v4/op/pfrMonitoringExt/getMaxPacketLossVsDSCPChartReportsViaPost/{pathv1}/{pathv2}?{query}Yes
postWebacsApiV4OpPfrMonitoringExtGetPfrEventListViaPostStartTimeEndTime(endTime, startTime, callback)POST Pfr Event List POST op/pfrMonitoringExt/getPfrEventListViaPost/{startTime}/{endTime}{base_path}/{version}/webacs/api/v4/op/pfrMonitoringExt/getPfrEventListViaPost/{pathv1}/{pathv2}?{query}Yes
postWebacsApiV4OpPfrMonitoringExtGetServiceProviderUsageVsDSCPChartStartTimeEndTimeTopN(startTime, endTime, topN, callback)POST Service Provider Usage Vs DSCP Chart POST op/pfrMonitoringExt/getServiceProviderUsageVsDSCPCha{base_path}/{version}/webacs/api/v4/op/pfrMonitoringExt/getServiceProviderUsageVsDSCPChart/{pathv1}/{pathv2}/{pathv3}?{query}Yes
deleteWebacsApiV4OpSettingsServersFtpServersServerName(serverName, callback)DELETE WLAN FTP Server DELETE op/settings/servers/ftpServers/{serverName}{base_path}/{version}/webacs/api/v4/op/settings/servers/ftpServers/{pathv1}?{query}Yes
getWebacsApiV4OpSettingsNotificationAlarmCategories(callback)GET Alarms notification settings GET op/settings/notification/alarmCategories{base_path}/{version}/webacs/api/v4/op/settings/notification/alarmCategories?{query}Yes
getWebacsApiV4OpSettingsInventoryConfigArchiveBasic(callback)GET Basic parameters for the configuration archive GET op/settings/inventory/configArchiveBasic{base_path}/{version}/webacs/api/v4/op/settings/inventory/configArchiveBasic?{query}Yes
getWebacsApiV4OpSettingsAlarmsAlarmDeletionPeriods(callback)GET Configuration for Automatic Deletion Periods of Alarms GET op/settings/alarms/alarmDeletionPeri{base_path}/{version}/webacs/api/v4/op/settings/alarms/alarmDeletionPeriods?{query}Yes
getWebacsApiV4OpSettingsLoggingGeneralLoggingOptions(callback)GET Current general logging options GET op/settings/logging/generalLoggingOptions{base_path}/{version}/webacs/api/v4/op/settings/logging/generalLoggingOptions?{query}Yes
getWebacsApiV4OpSettingsDataPruneDataConfigTableName(tableName, callback)GET Data Pruning Configuration GET op/settings/data/pruneDataConfig/{tableName}{base_path}/{version}/webacs/api/v4/op/settings/data/pruneDataConfig/{pathv1}?{query}Yes
getWebacsApiV4OpSettingsDataPruneDataConfigsByGroupCategory(category, callback)GET Data Pruning Configuration for Category GET op/settings/data/pruneDataConfigsByGroup/{category}{base_path}/{version}/webacs/api/v4/op/settings/data/pruneDataConfigsByGroup/{pathv1}?{query}Yes
getWebacsApiV4OpSettingsDataDataRetentionPeriods(callback)GET Data Retention Periods GET op/settings/data/dataRetentionPeriods{base_path}/{version}/webacs/api/v4/op/settings/data/dataRetentionPeriods?{query}Yes
getWebacsApiV4OpSettingsServersFtpServers(callback)GET List of WLAN FTP Servers GET op/settings/servers/ftpServers{base_path}/{version}/webacs/api/v4/op/settings/servers/ftpServers?{query}Yes
getWebacsApiV4OpSettingsLoggingLogFileNames(callback)GET Log file names GET op/settings/logging/logFileNames{base_path}/{version}/webacs/api/v4/op/settings/logging/logFileNames?{query}Yes
getWebacsApiV4OpSettingsNotificationMailServer(callback)GET Mail Server settings GET op/settings/notification/mailServer{base_path}/{version}/webacs/api/v4/op/settings/notification/mailServer?{query}Yes
getWebacsApiV4OpSettingsLoggingSnmpSettings(callback)GET SNMP settings GET op/settings/logging/snmpSettings{base_path}/{version}/webacs/api/v4/op/settings/logging/snmpSettings?{query}Yes
getWebacsApiV4OpSettingsAlarmsSeverityAutoClearConfig(callback)GET Severity and Auto Clear Config GET op/settings/alarms/severityAutoClearConfig{base_path}/{version}/webacs/api/v4/op/settings/alarms/severityAutoClearConfig?{query}Yes
getWebacsApiV4OpSettingsLoggingSysLogSettings(callback)GET System log settings GET op/settings/logging/sysLogSettings{base_path}/{version}/webacs/api/v4/op/settings/logging/sysLogSettings?{query}Yes
postWebacsApiV4OpSettingsLoggingSysLogSettings(callback)POST Add WLAN FTP Server POST op/settings/servers/ftpServers{base_path}/{version}/webacs/api/v4/op/settings/logging/sysLogSettings?{query}Yes
putWebacsApiV4OpSettingsLoggingSysLogSettings(callback)PUT Update system log settings PUT op/settings/logging/sysLogSettings{base_path}/{version}/webacs/api/v4/op/settings/logging/sysLogSettings?{query}Yes
getWebacsApiV4DataUserDefinedFieldDefinition(callback)GET User Defined Field Definition GET data/UserDefinedFieldDefinition{base_path}/{version}/webacs/api/v4/data/UserDefinedFieldDefinition?{query}Yes
putWebacsApiV4OpUdfServiceDeleteUserTagDefinition(body, callback)PUT Delete User Defined Field Definition PUT op/udfService/deleteUserTagDefinition{base_path}/{version}/webacs/api/v4/op/udfService/deleteUserTagDefinition?{query}Yes
putWebacsApiV4OpUdfServiceImportUserTagDefinition(body, callback)PUT Import User Defined Field Definition PUT op/udfService/importUserTagDefinition{base_path}/{version}/webacs/api/v4/op/udfService/importUserTagDefinition?{query}Yes
deleteWebacsApiV4OpUserManagementUsers(callback)DELETE Delete user DELETE op/userManagement/users{base_path}/{version}/webacs/api/v4/op/userManagement/users?{query}Yes
getWebacsApiV4OpUserManagementUserGroups(callback)GET Get users GET op/userManagement/users{base_path}/{version}/webacs/api/v4/op/userManagement/userGroups?{query}Yes
postWebacsApiV4OpUserManagementUserGroups(callback)POST Create user POST op/userManagement/users{base_path}/{version}/webacs/api/v4/op/userManagement/userGroups?{query}Yes
putWebacsApiV4OpUserManagementUserGroups(callback)PUT Update user PUT op/userManagement/users{base_path}/{version}/webacs/api/v4/op/userManagement/userGroups?{query}Yes
getWebacsApiV4OpNfvGetBridges(deviceIp, callback)GET Get Bridges GET op/nfv/getBridges{base_path}/{version}/webacs/api/v4/op/nfv/getBridges?{query}Yes
getWebacsApiV4OpNfvGetDeployments(deviceIp, callback)GET Get Deployments GET op/nfv/getDeployments{base_path}/{version}/webacs/api/v4/op/nfv/getDeployments?{query}Yes
getWebacsApiV4OpNfvDeviceDetails(deviceIp, callback)GET Get Device Details GET op/nfv/deviceDetails{base_path}/{version}/webacs/api/v4/op/nfv/deviceDetails?{query}Yes
getWebacsApiV4OpNfvGetOvsBridges(deviceIp, callback)GET Get OVS Bridges GET op/nfv/getOvsBridges{base_path}/{version}/webacs/api/v4/op/nfv/getOvsBridges?{query}Yes
getWebacsApiV4OpNfvGetServices(deviceIp, callback)GET Get Services GET op/nfv/getServices{base_path}/{version}/webacs/api/v4/op/nfv/getServices?{query}Yes
postWebacsApiV4OpNfvAddBridge(body, callback)POST Add Bridge POST op/nfv/addBridge{base_path}/{version}/webacs/api/v4/op/nfv/addBridge?{query}Yes
postWebacsApiV4OpVirtualAddDevice(body, callback)POST Add Device POST op/virtual/addDevice{base_path}/{version}/webacs/api/v4/op/virtual/addDevice?{query}Yes
postWebacsApiV4OpNfvCreateOvsBridge(body, callback)POST Create OVS Bridge POST op/nfv/createOvsBridge{base_path}/{version}/webacs/api/v4/op/nfv/createOvsBridge?{query}Yes
postWebacsApiV4OpNfvDeleteBridge(body, callback)POST Delete Bridge POST op/nfv/deleteBridge{base_path}/{version}/webacs/api/v4/op/nfv/deleteBridge?{query}Yes
postWebacsApiV4OpNfvDeleteOvsBridge(body, callback)POST Delete OVS Bridge POST op/nfv/deleteOvsBridge{base_path}/{version}/webacs/api/v4/op/nfv/deleteOvsBridge?{query}Yes
postWebacsApiV4OpNfvDeploy(body, callback)POST Deploy Service POST op/nfv/deploy{base_path}/{version}/webacs/api/v4/op/nfv/deploy?{query}Yes
postWebacsApiV4OpNfvRegister(body, callback)POST Register Service POST op/nfv/register{base_path}/{version}/webacs/api/v4/op/nfv/register?{query}Yes
postWebacsApiV4OpNfvUndeploy(body, callback)POST Un-Deploy Service POST op/nfv/undeploy{base_path}/{version}/webacs/api/v4/op/nfv/undeploy?{query}Yes
postWebacsApiV4OpNfvUnregister(body, callback)POST Un-Register Service POST op/nfv/unregister{base_path}/{version}/webacs/api/v4/op/nfv/unregister?{query}Yes
putWebacsApiV4OpNfvUpdateBridge(body, callback)PUT Update Bridge PUT op/nfv/updateBridge{base_path}/{version}/webacs/api/v4/op/nfv/updateBridge?{query}Yes
putWebacsApiV4OpNfvUpdateOvsBridge(body, callback)PUT Update OVS Bridge PUT op/nfv/updateOvsBridge{base_path}/{version}/webacs/api/v4/op/nfv/updateOvsBridge?{query}Yes
getWebacsApiV4DataVDAssociatedAccessPoints(callback)GET Access Points associated with current Virtual Domain GET data/VDAssociatedAccessPoints{base_path}/{version}/webacs/api/v4/data/VDAssociatedAccessPoints?{query}Yes
getWebacsApiV4DataVDAssociatedDynamicGroups(callback)GET Dynamic Groups associated with current Virtual Domain GET data/VDAssociatedDynamicGroups{base_path}/{version}/webacs/api/v4/data/VDAssociatedDynamicGroups?{query}Yes
getWebacsApiV4DataVDAssociatedGroups(callback)GET Groups associated with current Virtual Domain GET data/VDAssociatedGroups{base_path}/{version}/webacs/api/v4/data/VDAssociatedGroups?{query}Yes
getWebacsApiV4DataVDAssociatedDevices(callback)GET Network Devices associated with current Virtual Domain GET data/VDAssociatedDevices{base_path}/{version}/webacs/api/v4/data/VDAssociatedDevices?{query}Yes
getWebacsApiV4DataVDAssociatedSiteMaps(callback)GET Site Maps associated with current Virtual Domain GET data/VDAssociatedSiteMaps{base_path}/{version}/webacs/api/v4/data/VDAssociatedSiteMaps?{query}Yes
getWebacsApiV4DataVDAssociatedVirtualElements(callback)GET Virtual Elements associated with current Virtual Domain GET data/VDAssociatedVirtualElements{base_path}/{version}/webacs/api/v4/data/VDAssociatedVirtualElements?{query}Yes
deleteWebacsApiV4OpVd(domainFQN, callback)DELETE Delete Virtual Domain DELETE op/vd{base_path}/{version}/webacs/api/v4/op/vd?{query}Yes
getWebacsApiV4OpVd(parentDomainName, callback)GET List Virtual Domains GET op/vd{base_path}/{version}/webacs/api/v4/op/vd?{query}Yes
postWebacsApiV4OpVd(body, callback)POST Create Virtual Domain POST op/vd{base_path}/{version}/webacs/api/v4/op/vd?{query}Yes
putWebacsApiV4OpVd(domainFQN, callback)PUT Update Virtual Domain PUT op/vd{base_path}/{version}/webacs/api/v4/op/vd?{query}Yes
deleteWebacsApiV4OpImageId(callback)DELETE Delete Image by id DELETE op/image/id{base_path}/{version}/webacs/api/v4/op/image/id?{query}Yes
getWebacsApiV4OpImageListId(idNum, callback)GET List Image by id GET op/image/list/id{base_path}/{version}/webacs/api/v4/op/image/list/id?{query}Yes
getWebacsApiV4OpImageList(callback)GET List Images GET op/image/list{base_path}/{version}/webacs/api/v4/op/image/list?{query}Yes
getWebacsApiV4OpImageListFamily(familyName, callback)GET List Images by family GET op/image/list/family{base_path}/{version}/webacs/api/v4/op/image/list/family?{query}Yes
getWebacsApiV4OpImageListPhysical(callback)GET List Physical Images GET op/image/list/physical{base_path}/{version}/webacs/api/v4/op/image/list/physical?{query}Yes
getWebacsApiV4OpImageListVirtual(callback)GET List Virtual Images GET op/image/list/virtual{base_path}/{version}/webacs/api/v4/op/image/list/virtual?{query}Yes
postWebacsApiV4OpImageAdd(body, callback)POST Add Image POST op/image/add{base_path}/{version}/webacs/api/v4/op/image/add?{query}Yes
postWebacsApiV4OpImageDeployConfigure(body, callback)POST Deploy Configuration POST op/image/deployConfigure{base_path}/{version}/webacs/api/v4/op/image/deployConfigure?{query}Yes
getWebacsApiV4DataWlanProfiles(callback)GET Wlan Profiles GET data/WlanProfiles{base_path}/{version}/webacs/api/v4/data/WlanProfiles?{query}Yes
getWebacsApiV4DataWlanTemplates(callback)GET Wlan Templates GET data/WlanTemplates{base_path}/{version}/webacs/api/v4/data/WlanTemplates?{query}Yes
deleteWebacsApiV4OpWlanProvisioningApGroup(controllerId, controllerName, apGroupName, callback)DELETE Delete AP Group DELETE op/wlanProvisioning/apGroup{base_path}/{version}/webacs/api/v4/op/wlanProvisioning/apGroup?{query}Yes
deleteWebacsApiV4OpWlanProvisioningInterface(controllerId, controllerName, interfaceName, callback)DELETE Delete Interface DELETE op/wlanProvisioning/interface{base_path}/{version}/webacs/api/v4/op/wlanProvisioning/interface?{query}Yes
deleteWebacsApiV4OpWlanProvisioningInterfaceGroup(controllerId, controllerName, interfaceGroupName, callback)DELETE Delete Interface Group DELETE op/wlanProvisioning/interfaceGroup{base_path}/{version}/webacs/api/v4/op/wlanProvisioning/interfaceGroup?{query}Yes
deleteWebacsApiV4OpWlanProvisioningWlanProfile(controllerId, controllerName, wlanProfileName, callback)DELETE Delete WLAN Profile DELETE op/wlanProvisioning/wlanProfile{base_path}/{version}/webacs/api/v4/op/wlanProvisioning/wlanProfile?{query}Yes
deleteWebacsApiV4OpWlanProvisioningWlanTemplate(callback)DELETE Delete Wlan Template DELETE op/wlanProvisioning/wlanTemplate{base_path}/{version}/webacs/api/v4/op/wlanProvisioning/wlanTemplate?{query}Yes
postWebacsApiV4OpWlanProvisioningWlanTemplate(callback)POST Create Wlan Template POST op/wlanProvisioning/wlanTemplate{base_path}/{version}/webacs/api/v4/op/wlanProvisioning/wlanTemplate?{query}Yes
putWebacsApiV4OpWlanProvisioningDeployTemplate(callback)PUT Modify Wlan Template PUT op/wlanProvisioning/wlanTemplate{base_path}/{version}/webacs/api/v4/op/wlanProvisioning/deployTemplate?{query}Yes
getWebacsApiV4DataAutoApRadioDetails(callback)GET Autonomous AP Radio Details GET data/AutoApRadioDetails{base_path}/{version}/webacs/api/v4/data/AutoApRadioDetails?{query}Yes
getWebacsApiV4DataClientStats(callback)GET Client Statistics GET data/ClientStats{base_path}/{version}/webacs/api/v4/data/ClientStats?{query}Yes
getWebacsApiV4DataHistoricalClientStats(callback)GET Historical Client Statistics GET data/HistoricalClientStats{base_path}/{version}/webacs/api/v4/data/HistoricalClientStats?{query}Yes
getWebacsApiV4DataHistoricalRFCounters(callback)GET Historical Radio Interface 802.11 Counters in Last 24 Hours GET data/HistoricalRFCounters{base_path}/{version}/webacs/api/v4/data/HistoricalRFCounters?{query}Yes
getWebacsApiV4DataHistoricalRFLoadStats(callback)GET Historical Radio Interface Load Statistics in Last 24 Hours GET data/HistoricalRFLoadStats{base_path}/{version}/webacs/api/v4/data/HistoricalRFLoadStats?{query}Yes
getWebacsApiV4DataHistoricalRFStats(callback)GET Historical Radio Interface Statistics in Last 24 Hours GET data/HistoricalRFStats{base_path}/{version}/webacs/api/v4/data/HistoricalRFStats?{query}Yes
getWebacsApiV4DataHistoricalWLCCPUUtilizations(callback)GET Historical Wireless Lan Controller CPU Utilizations GET data/HistoricalWLCCPUUtilizations{base_path}/{version}/webacs/api/v4/data/HistoricalWLCCPUUtilizations?{query}Yes
getWebacsApiV4DataHistoricalWLCMemUtilizations(callback)GET Historical Wireless Lan Controller Memory Utilizations GET data/HistoricalWLCMemUtilizations{base_path}/{version}/webacs/api/v4/data/HistoricalWLCMemUtilizations?{query}Yes
getWebacsApiV4DataRadioDetails(callback)GET Lightweight AP Radio Details GET data/RadioDetails{base_path}/{version}/webacs/api/v4/data/RadioDetails?{query}Yes
getWebacsApiV4DataRFCounters(callback)GET Radio Interface 802.11 Counters GET data/RFCounters{base_path}/{version}/webacs/api/v4/data/RFCounters?{query}Yes
getWebacsApiV4DataRFLoadStats(callback)GET Radio Interface Load Statistics GET data/RFLoadStats{base_path}/{version}/webacs/api/v4/data/RFLoadStats?{query}Yes
getWebacsApiV4DataRFStats(callback)GET Radio Interface Statistics GET data/RFStats{base_path}/{version}/webacs/api/v4/data/RFStats?{query}Yes
getWebacsApiV4DataRadios(callback)GET Radio Summary GET data/Radios{base_path}/{version}/webacs/api/v4/data/Radios?{query}Yes
getWebacsApiV4DataThirdpartyAccessPoints(callback)GET Third Party Access Point Summary GET data/ThirdpartyAccessPoints{base_path}/{version}/webacs/api/v4/data/ThirdpartyAccessPoints?{query}Yes
getWebacsApiV4DataAccessPoints(callback)GET Wireless Access Point Summary GET data/AccessPoints{base_path}/{version}/webacs/api/v4/data/AccessPoints?{query}Yes
getWebacsApiV4DataWLCCPUUtilizations(callback)GET Wireless Lan Controller CPU Utlizations GET data/WLCCPUUtilizations{base_path}/{version}/webacs/api/v4/data/WLCCPUUtilizations?{query}Yes
getWebacsApiV4DataWLCMemoryUtilizations(callback)GET Wireless Lan Controller Memory Utilizations GET data/WLCMemoryUtilizations{base_path}/{version}/webacs/api/v4/data/WLCMemoryUtilizations?{query}Yes
getWebacsApiV4DataWlanControllers(callback)GET Wireless Lan Controller Summary GET data/WlanControllers{base_path}/{version}/webacs/api/v4/data/WlanControllers?{query}Yes
getWebacsApiV4DataDevices(callback)GET data Devices{base_path}/{version}/webacs/api/v4/data/Devices?{query}Yes

Authentication

This document will go through the steps for authenticating the Cisco Prime adapter with Basic Authentication. Properly configuring the properties for an adapter in IAP is critical for getting the adapter online. You can read more about adapter authentication HERE.

Basic Authentication

The Cisco Prime adapter requires Basic Authentication. If you change authentication methods, you should change this section accordingly and merge it back into the adapter repository.

STEPS

  1. Ensure you have access to a Cisco Prime server and that it is running
  2. Follow the steps in the README.md to import the adapter into IAP if you have not already done so
  3. Use the properties below for the properties.authentication field
    "authentication": {
    "auth_method": "basic user_password",
    "username": "<username>",
    "password": "<password>",
    "auth_field": "header.headers.Authorization",
    "auth_field_format": "Basic {b64}{username}:{password}{/b64}",
    "auth_logging": false
    }
  4. Restart the adapter. If your properties were set correctly, the adapter should go online.

Troubleshooting

  • Make sure you copied over the correct username and password.
  • Turn on debug level logs for the adapter in IAP Admin Essentials.
  • Turn on auth_logging for the adapter in IAP Admin Essentials (adapter properties).
  • Investigate the logs - in particular:
    • The FULL REQUEST log to make sure the proper headers are being sent with the request.
    • The FULL BODY log to make sure the payload is accurate.
    • The CALL RETURN log to see what the other system is telling us.
  • Credentials should be masked by the adapter so make sure you verify the username and password - including that there are erroneous spaces at the front or end.
  • Remember when you are done to turn auth_logging off as you do not want to log credentials.

Additional Information

Enhancements

Adding a Second Instance of an Adapter

You can add a second instance of this adapter without adding new code on the file system. To do this go into the IAP Admin Essentials and add a new service config for this adapter. The two instances of the adapter should have unique ids. In addition, they should point to different instances (unique host and port) of the other system.

Adding Adapter Calls

There are multiple ways to add calls to an existing adapter.

The easiest way would be to use the Adapter Builder update process. This process takes in a Swagger or OpenAPI document, allows you to select the calls you want to add and then generates a zip file that can be used to update the adapter. Once you have the zip file simply put it in the adapter directory and execute npm run adapter:update.

mv updatePackage.zip adapter-cisco_prime
cd adapter-cisco_prime
npm run adapter:update

If you do not have a Swagger or OpenAPI document, you can use a Postman Collection and convert that to an OpenAPI document using APIMatic and then follow the first process.

If you want to manually update the adapter that can also be done the key thing is to make sure you update all of the right files. Within the entities directory you will find 1 or more entities. You can create a new entity or add to an existing entity. Each entity has an action.json file, any new call will need to be put in the action.json file. It will also need to be added to the enum for the ph_request_type in the appropriate schema files. Once this configuration is complete you will need to add the call to the adapter.js file and, in order to make it available as a workflow task in IAP, it should also be added to the pronghorn.json file. You can optionally add it to the unit and integration test files. There is more information on how to work on each of these files in the Adapter Technical Resources on our Documentation Site.

Files to update
* entities/<entity>/action.json: add an action
* entities/<entity>/schema.json (or the schema defined on the action): add action to the enum for ph_request_type
* adapter.js: add the new method and make sure it calls the proper entity and action
* pronghorn.json: add the new method
* test/unit/adapterTestUnit.js (optional but best practice): add unit test(s) - function is there, any required parameters error when not passed in
* test/integration/adapterTestIntegration.js (optional but best practice): add integration test

Adding Adapter Properties

While changing adapter properties is done in the service instance configuration section of IAP, adding properties has to be done in the adapter. To add a property you should edit the propertiesSchema.json with the proper information for the property. In addition, you should modify the sampleProperties to have the new property in it.

Files to update
* propertiesSchema.json: add the new property and how it is defined
* sampleProperties: add the new property with a default value
* test/unit/adapterTestUnit.js (optional but best practice): add the property to the global properties
* test/integration/adapterTestIntegration.js (optional but best practice): add the property to the global properties

Changing Adapter Authentication

Often an adapter is built before knowing the authentication and authentication processes can also change over time. The adapter supports many different kinds of authentication but it does require configuration. Some forms of authentication can be defined entirely with the adapter properties but others require configuration.

Files to update
* entities/.system/action.json: change the getToken action as needed
* entities/.system/schemaTokenReq.json: add input parameters (external name is name in other system)
* entities/.system/schemaTokenResp.json: add response parameters (external name is name in other system)
* propertiesSchema.json: add any new property and how it is defined
* sampleProperties: add any new property with a default value
* test/unit/adapterTestUnit.js (optional but best practice): add the property to the global properties
* test/integration/adapterTestIntegration.js (optional but best practice): add the property to the global properties

Enhancing Adapter Integration Tests

The adapter integration tests are written to be able to test in either stub (standalone) mode or integrated to the other system. However, if integrating to the other system, you may need to provide better data than what the adapter provides by default as that data is likely to fail for create and update. To provide better data, edit the adapter integration test file. Make sure you do not remove the marker and keep custom code below the marker so you do not impact future migrations. Once the edits are complete, run the integration test as it instructs you to above. When you run integrated to the other system, you can also save mockdata for future use by changing the isSaveMockData flag to true.

Files to update
* test/integration/adapterTestIntegration.js: add better data for the create and update calls so that they will not fail.

As mentioned previously, for most of these changes as well as other possible changes, there is more information on how to work on an adapter in the Adapter Technical Resources on our Documentation Site.

Contributing

First off, thanks for taking the time to contribute!

The following is a set of rules for contributing.

Code of Conduct

This project and everyone participating in it is governed by the Code of Conduct. By participating, you are expected to uphold this code. Please report unacceptable behavior to support@itential.com.

How to Contribute

Follow the contributing guide (here)[https://gitlab.com/itentialopensource/adapters/contributing-guide]

Helpful Links

Adapter Technical Resources

Node Scripts

There are several node scripts that now accompany the adapter. These scripts are provided to make several activities easier. Many of these scripts can have issues with different versions of IAP as they have dependencies on IAP and Mongo. If you have issues with the scripts please report them to the Itential Adapter Team. Each of these scripts are described below.

RunDescription
npm run adapter:installProvides an easier way to install the adapter.
npm run adapter:checkMigrateChecks whether your adapter can and should be migrated to the latest foundation.
npm run adapter:findPathCan be used to see if the adapter supports a particular API call.
npm run adapter:migrateProvides an easier way to update your adapter after you download the migration zip from Itential DevSite.
npm run adapter:updateProvides an easier way to update your adapter after you download the update zip from Itential DevSite.
npm run adapter:revertAllows you to revert after a migration or update if it resulted in issues.
npm run troubleshootProvides a way to troubleshoot the adapter - runs connectivity, healthcheck and basic get.
npm run connectivityProvides a connectivity check to the Servicenow system.
npm run healthcheckChecks whether the configured healthcheck call works to Servicenow.
npm run basicgetChecks whether the basic get calls works to Servicenow.

Troubleshoot

Run npm run troubleshoot to start the interactive troubleshooting process. The command allows you to verify and update connection, authentication as well as healthcheck configuration. After that it will test these properties by sending HTTP request to the endpoint. If the tests pass, it will persist these changes into IAP.

You also have the option to run individual commands to perform specific test:

  • npm run healthcheck will perform a healthcheck request of with current setting.
  • npm run basicget will perform some non-parameter GET request with current setting.
  • npm run connectivity will perform networking diagnostics of the adatper endpoint.

Connectivity Issues

  1. You can run the adapter troubleshooting script which will check connectivity, run the healthcheck and run basic get calls.
npm run troubleshoot
  1. Verify the adapter properties are set up correctly.
Go into the Itential Platform GUI and verify/update the properties
  1. Verify there is connectivity between the Itential Platform Server and Cisco_prime Server.
ping the ip address of Cisco_prime server
try telnet to the ip address port of Cisco_prime
execute a curl command to the other system
  1. Verify the credentials provided for Cisco_prime.
login to Cisco_prime using the provided credentials
  1. Verify the API of the call utilized for Cisco_prime Healthcheck.
Go into the Itential Platform GUI and verify/update the properties

Functional Issues

Adapter logs are located in /var/log/pronghorn. In older releases of the Itential Platform, there is a pronghorn.log file which contains logs for all of the Itential Platform. In newer versions, adapters can be configured to log into their own files.