SolarWinds vendor logo

Vendor

SolarWinds

Product

Orion

Method

REST

Category

Service Assurance

Project Type

Adapter


Download Adapter
Adapter

Adapter for Integration to SolarWinds Orion

Overview

This adapter is used to integrate the Itential Automation Platform (IAP) with the SolarWinds System. The API that was used to build the adapter for SolarWinds is usually available in the report directory of this adapter. The adapter utilizes the SolarWinds 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 SolarWinds adapter from Itential is used to integrate the Itential Automation Platform (IAP) with SolarWinds. With this adapter you have the ability to perform operations such as:

  • Performance Monitoring Based on Thresholds and KPIs.
  • Add and Remove Device Component to Monitoring

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

SolarWinds

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 SolarWinds.
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-solarwinds
or
unzip adapter-solarwinds.zip
or
tar -xvf adapter-solarwinds.tar
  1. Run the adapter install script.
cd adapter-solarwinds
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-solarwinds
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 SolarWinds. 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 SolarWinds. 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 SolarWinds. 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 SolarWinds 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": "fqdn",
    "port": 17778,
    "choosepath": "",
    "base_path": "/SolarWinds/InformationService/v3/Json",
    "version": "",
    "cache_location": "none",
    "encode_pathvars": true,
    "encode_queryvars": true,
    "save_metric": false,
    "stub": false,
    "protocol": "https",
    "authentication": {
      "auth_method": "basic user_password",
      "username": "username",
      "password": "password",
      "token": "token",
      "invalid_token_error": 401,
      "token_timeout": 1800000,
      "token_cache": "local",
      "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": "startup",
      "frequency": 600000,
      "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": 10000,
      "global_request": {
        "payload": {},
        "uriOptions": {},
        "addlHeaders": {},
        "authData": {}
      },
      "healthcheck_on_timeout": false,
      "return_raw": false,
      "archiving": false,
      "return_request": false
    },
    "proxy": {
      "enabled": false,
      "host": "",
      "port": 1,
      "protocol": "http",
      "username": "",
      "password": ""
    },
    "ssl": {
      "ecdhCurve": "",
      "enabled": true,
      "accept_invalid_cert": true,
      "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 SolarWinds 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 SolarWinds (very useful during basic testing). Default is false (which means connect to SolarWinds).
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 SolarWinds.

Note: Depending on the method that is used to authenticate with SolarWinds, 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 SolarWinds on every request or when pulling a token that will be used in subsequent requests.
passwordUsed to authenticate with SolarWinds 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 SolarWinds. 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 SolarWinds. 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 SolarWinds.
  • Startup - Adapter will check for connectivity when the adapter initially comes up, but it will not check afterwards.
  • Intermittent - Adapter will check connectivity to SolarWinds 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 SolarWinds, 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, SolarWinds 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 SolarWinds. 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 SolarWinds 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 SolarWinds at one time (minimum = 1, maximum = 1000). The default is 1 meaning each request must be sent to SolarWinds 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 SolarWinds 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 SolarWinds 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 SolarWinds is behind a proxy server.

PropertyDescription
enabledRequired. Default is false. If SolarWinds 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 SolarWinds 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 SolarWinds. 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 SolarWinds.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 Solarwinds. 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?
getQuery(query, callback){base_path}/{version}/Query?{query}Yes
postQuery(body, callback){base_path}/{version}/Query?{query}Yes
getUri(uri, callback){base_path}/{version}/{pathv1}?{query}Yes
postUri(uri, body, callback){base_path}/{version}/{pathv1}?{query}Yes
deleteUri(uri, callback){base_path}/{version}/{pathv1}?{query}Yes
postBulkUpdate(body, callback){base_path}/{version}/BulkUpdate?{query}Yes
postBulkDelete(body, callback){base_path}/{version}/BulkDelete?{query}Yes
postCreateOrionAgentManagementAgent(body, callback){base_path}/{version}/Create/Orion.AgentManagement.Agent?{query}Yes
postCreateOrionAgentManagementAgentPlugin(body, callback){base_path}/{version}/Create/Orion.AgentManagement.AgentPlugin?{query}Yes
postCreateOrionAgentManagementProxy(body, callback){base_path}/{version}/Create/Orion.AgentManagement.Proxy?{query}Yes
postCreateOrionAPMNodeToNodeLink(body, callback){base_path}/{version}/Create/Orion.APM.NodeToNodeLink?{query}Yes
postCreateOrionAPMDependencyTcpStatistics(body, callback){base_path}/{version}/Create/Orion.APM.DependencyTcpStatistics?{query}Yes
postCreateOrionAPMApplicationTcpConnection(body, callback){base_path}/{version}/Create/Orion.APM.ApplicationTcpConnection?{query}Yes
postCreateCirrusIgnoredNodes(body, callback){base_path}/{version}/Create/Cirrus.IgnoredNodes?{query}Yes
postCreateNCMBaselines(body, callback){base_path}/{version}/Create/NCM.Baselines?{query}Yes
postCreateNCMBaselineNodeMap(body, callback){base_path}/{version}/Create/NCM.BaselineNodeMap?{query}Yes
postCreateNCMBaselineViolations(body, callback){base_path}/{version}/Create/NCM.BaselineViolations?{query}Yes
postCreateNCMFirmwareOperations(body, callback){base_path}/{version}/Create/NCM.FirmwareOperations?{query}Yes
postCreateNCMFirmwareOperationNodes(body, callback){base_path}/{version}/Create/NCM.FirmwareOperationNodes?{query}Yes
postCreateNCMFirmwareUpgradeImages(body, callback){base_path}/{version}/Create/NCM.FirmwareUpgradeImages?{query}Yes
postCreateNCMFirmwareUpgradeMachineTypes(body, callback){base_path}/{version}/Create/NCM.FirmwareUpgradeMachineTypes?{query}Yes
postCreateCliDeviceTemplates(body, callback){base_path}/{version}/Create/Cli.DeviceTemplates?{query}Yes
postCreateCliDeviceTemplatesNodes(body, callback){base_path}/{version}/Create/Cli.DeviceTemplatesNodes?{query}Yes
postCreateCliCliSessionSettings(body, callback){base_path}/{version}/Create/Cli.CliSessionSettings?{query}Yes
postCreateOrionCloudAccounts(body, callback){base_path}/{version}/Create/Orion.Cloud.Accounts?{query}Yes
postCreateCortexSystemPolicy(body, callback){base_path}/{version}/Create/Cortex.System.Policy?{query}Yes
postCreateCortexOrionCiscoAciApic(body, callback){base_path}/{version}/Create/Cortex.Orion.CiscoAci.Apic?{query}Yes
postCreateCortexOrionCiscoAciApplicationProfile(body, callback){base_path}/{version}/Create/Cortex.Orion.CiscoAci.ApplicationProfile?{query}Yes
postCreateCortexOrionCiscoAciCiscoAciCredential(body, callback){base_path}/{version}/Create/Cortex.Orion.CiscoAci.CiscoAciCredential?{query}Yes
postCreateCortexOrionCiscoAciEndpointGroup(body, callback){base_path}/{version}/Create/Cortex.Orion.CiscoAci.EndpointGroup?{query}Yes
postCreateCortexOrionCiscoAciFabric(body, callback){base_path}/{version}/Create/Cortex.Orion.CiscoAci.Fabric?{query}Yes
postCreateCortexOrionCiscoAciPhysicalEntity(body, callback){base_path}/{version}/Create/Cortex.Orion.CiscoAci.PhysicalEntity?{query}Yes
postCreateCortexOrionCiscoAciTenant(body, callback){base_path}/{version}/Create/Cortex.Orion.CiscoAci.Tenant?{query}Yes
postCreateCortexOrionCmanContainer(body, callback){base_path}/{version}/Create/Cortex.Orion.Cman.Container?{query}Yes
postCreateCortexOrionCmanContainerAgent(body, callback){base_path}/{version}/Create/Cortex.Orion.Cman.ContainerAgent?{query}Yes
postCreateCortexOrionCmanContainerEnvironmentVariable(body, callback){base_path}/{version}/Create/Cortex.Orion.Cman.ContainerEnvironmentVariable?{query}Yes
postCreateCortexOrionCmanContainerHost(body, callback){base_path}/{version}/Create/Cortex.Orion.Cman.ContainerHost?{query}Yes
postCreateCortexOrionCmanContainerImage(body, callback){base_path}/{version}/Create/Cortex.Orion.Cman.ContainerImage?{query}Yes
postCreateCortexOrionSnmpCredentialV2(body, callback){base_path}/{version}/Create/Cortex.Orion.SnmpCredentialV2?{query}Yes
postCreateCortexOrionSnmpCredentialV3(body, callback){base_path}/{version}/Create/Cortex.Orion.SnmpCredentialV3?{query}Yes
postCreateCortexOrionWindowsCredential(body, callback){base_path}/{version}/Create/Cortex.Orion.WindowsCredential?{query}Yes
postCreateCortexOrionInterface(body, callback){base_path}/{version}/Create/Cortex.Orion.Interface?{query}Yes
postCreateCortexOrionCpu(body, callback){base_path}/{version}/Create/Cortex.Orion.Cpu?{query}Yes
postCreateCortexOrionNode(body, callback){base_path}/{version}/Create/Cortex.Orion.Node?{query}Yes
postCreateCortexOrionPowerControlUnit(body, callback){base_path}/{version}/Create/Cortex.Orion.PowerControlUnit?{query}Yes
postCreateCortexOrionVirtualizationAlarm(body, callback){base_path}/{version}/Create/Cortex.Orion.Virtualization.Alarm?{query}Yes
postCreateCortexOrionVirtualizationCluster(body, callback){base_path}/{version}/Create/Cortex.Orion.Virtualization.Cluster?{query}Yes
postCreateCortexOrionVirtualizationDataCenter(body, callback){base_path}/{version}/Create/Cortex.Orion.Virtualization.DataCenter?{query}Yes
postCreateCortexOrionVirtualizationDatastore(body, callback){base_path}/{version}/Create/Cortex.Orion.Virtualization.Datastore?{query}Yes
postCreateCortexOrionVirtualizationHost(body, callback){base_path}/{version}/Create/Cortex.Orion.Virtualization.Host?{query}Yes
postCreateCortexOrionVirtualizationPhysicalDisk(body, callback){base_path}/{version}/Create/Cortex.Orion.Virtualization.PhysicalDisk?{query}Yes
postCreateCortexOrionVirtualizationPollingTask(body, callback){base_path}/{version}/Create/Cortex.Orion.Virtualization.PollingTask?{query}Yes
postCreateCortexOrionVirtualizationTriggeredAlarmState(body, callback){base_path}/{version}/Create/Cortex.Orion.Virtualization.TriggeredAlarmState?{query}Yes
postCreateCortexOrionVirtualizationVCenter(body, callback){base_path}/{version}/Create/Cortex.Orion.Virtualization.VCenter?{query}Yes
postCreateCortexOrionVirtualizationVirtualMachine(body, callback){base_path}/{version}/Create/Cortex.Orion.Virtualization.VirtualMachine?{query}Yes
postCreateCortexOrionVirtualizationVirtualMachineDisk(body, callback){base_path}/{version}/Create/Cortex.Orion.Virtualization.VirtualMachineDisk?{query}Yes
postCreateCortexOrionVMwareCredential(body, callback){base_path}/{version}/Create/Cortex.Orion.VMwareCredential?{query}Yes
postCreateCortexOrionVirtualizationVSan(body, callback){base_path}/{version}/Create/Cortex.Orion.Virtualization.VSan?{query}Yes
postCreateCortexOrionVirtualizationVSanDiskGroup(body, callback){base_path}/{version}/Create/Cortex.Orion.Virtualization.VSanDiskGroup?{query}Yes
postCreateCortexOrionVirtualizationVSanHealthGroup(body, callback){base_path}/{version}/Create/Cortex.Orion.Virtualization.VSanHealthGroup?{query}Yes
postCreateCortexOrionVirtualizationVSanObjectSpaceSummary(body, callback){base_path}/{version}/Create/Cortex.Orion.Virtualization.VSanObjectSpaceSummary?{query}Yes
postCreateCortexOrionVirtualizationVSanResyncInfo(body, callback){base_path}/{version}/Create/Cortex.Orion.Virtualization.VSanResyncInfo?{query}Yes
postCreateCortexOrionScsiInformation(body, callback){base_path}/{version}/Create/Cortex.Orion.ScsiInformation?{query}Yes
postCreateCortexOrionVolume(body, callback){base_path}/{version}/Create/Cortex.Orion.Volume?{query}Yes
postCreateOrionDPADatabaseInstanceData(body, callback){base_path}/{version}/Create/Orion.DPA.DatabaseInstanceData?{query}Yes
postCreateOrionDPADatabaseInstanceApplicationRelationship(body, callback){base_path}/{version}/Create/Orion.DPA.DatabaseInstanceApplicationRelationship?{query}Yes
postCreateOrionDPADatabaseInstanceLun(body, callback){base_path}/{version}/Create/Orion.DPA.DatabaseInstanceLun?{query}Yes
postCreateOrionDPADpaServer(body, callback){base_path}/{version}/Create/Orion.DPA.DpaServer?{query}Yes
postCreateOrionDPIApplications(body, callback){base_path}/{version}/Create/Orion.DPI.Applications?{query}Yes
postCreateOrionDPIApplicationAssignments(body, callback){base_path}/{version}/Create/Orion.DPI.ApplicationAssignments?{query}Yes
postCreateOrionDPIApplicationSettings(body, callback){base_path}/{version}/Create/Orion.DPI.ApplicationSettings?{query}Yes
postCreateOrionDPIProbes(body, callback){base_path}/{version}/Create/Orion.DPI.Probes?{query}Yes
postCreateOrionDPIProbeAssignments(body, callback){base_path}/{version}/Create/Orion.DPI.ProbeAssignments?{query}Yes
postCreateOrionDPIProbeSettings(body, callback){base_path}/{version}/Create/Orion.DPI.ProbeSettings?{query}Yes
postCreateOrionDPIProbeProperties(body, callback){base_path}/{version}/Create/Orion.DPI.ProbeProperties?{query}Yes
postCreateOrionESIIncidentService(body, callback){base_path}/{version}/Create/Orion.ESI.IncidentService?{query}Yes
postCreateOrionHAPools(body, callback){base_path}/{version}/Create/Orion.HA.Pools?{query}Yes
postCreateOrionHAResourcesInstances(body, callback){base_path}/{version}/Create/Orion.HA.ResourcesInstances?{query}Yes
postCreateOrionHAPoolMemberInterfacesInfo(body, callback){base_path}/{version}/Create/Orion.HA.PoolMemberInterfacesInfo?{query}Yes
postCreateOrionNPMInterfaces(body, callback){base_path}/{version}/Create/Orion.NPM.Interfaces?{query}Yes
postCreateIPAMIPNode(body, callback){base_path}/{version}/Create/IPAM.IPNode?{query}Yes
postCreateIPAMSubnet(body, callback){base_path}/{version}/Create/IPAM.Subnet?{query}Yes
postCreateIPAMGroupsCustomProperties(body, callback){base_path}/{version}/Create/IPAM.GroupsCustomProperties?{query}Yes
postCreateIPAMNodesCustomProperties(body, callback){base_path}/{version}/Create/IPAM.NodesCustomProperties?{query}Yes
postCreateOrionLicensingLicenseFilters(body, callback){base_path}/{version}/Create/Orion.Licensing.LicenseFilters?{query}Yes
postCreateOrionNetPathEndpointServices(body, callback){base_path}/{version}/Create/Orion.NetPath.EndpointServices?{query}Yes
postCreateOrionNetPathProbes(body, callback){base_path}/{version}/Create/Orion.NetPath.Probes?{query}Yes
postCreateOrionNetPathEndpointServiceAssignments(body, callback){base_path}/{version}/Create/Orion.NetPath.EndpointServiceAssignments?{query}Yes
postCreateOrionNetPathEndpointServiceProperties(body, callback){base_path}/{version}/Create/Orion.NetPath.EndpointServiceProperties?{query}Yes
postCreateOrionNetPathThresholds(body, callback){base_path}/{version}/Create/Orion.NetPath.Thresholds?{query}Yes
postCreateOrionNetPathNetworks(body, callback){base_path}/{version}/Create/Orion.NetPath.Networks?{query}Yes
postCreateOrionNPMCustomPollerAssignmentOnNode(body, callback){base_path}/{version}/Create/Orion.NPM.CustomPollerAssignmentOnNode?{query}Yes
postCreateOrionNPMCustomPollerAssignmentOnInterface(body, callback){base_path}/{version}/Create/Orion.NPM.CustomPollerAssignmentOnInterface?{query}Yes
postCreateOrionOLMMessageSources(body, callback){base_path}/{version}/Create/Orion.OLM.MessageSources?{query}Yes
postCreateOrionAlerts(body, callback){base_path}/{version}/Create/Orion.Alerts?{query}Yes
postCreateOrionAlertStatus(body, callback){base_path}/{version}/Create/Orion.AlertStatus?{query}Yes
postCreateOrionAlertConfigurations(body, callback){base_path}/{version}/Create/Orion.AlertConfigurations?{query}Yes
postCreateOrionAlertDefinitions(body, callback){base_path}/{version}/Create/Orion.AlertDefinitions?{query}Yes
postCreateOrionActions(body, callback){base_path}/{version}/Create/Orion.Actions?{query}Yes
postCreateOrionActionsProperties(body, callback){base_path}/{version}/Create/Orion.ActionsProperties?{query}Yes
postCreateOrionActionAssignmentProperties(body, callback){base_path}/{version}/Create/Orion.ActionAssignmentProperties?{query}Yes
postCreateOrionActionsAssignments(body, callback){base_path}/{version}/Create/Orion.ActionsAssignments?{query}Yes
postCreateOrionActionSchedules(body, callback){base_path}/{version}/Create/Orion.ActionSchedules?{query}Yes
postCreateOrionAlertSchedules(body, callback){base_path}/{version}/Create/Orion.AlertSchedules?{query}Yes
postCreateOrionDiscoveryLogs(body, callback){base_path}/{version}/Create/Orion.DiscoveryLogs?{query}Yes
postCreateOrionDependencies(body, callback){base_path}/{version}/Create/Orion.Dependencies?{query}Yes
postCreateOrionDeletedAutoDependencies(body, callback){base_path}/{version}/Create/Orion.DeletedAutoDependencies?{query}Yes
postCreateOrionEvents(body, callback){base_path}/{version}/Create/Orion.Events?{query}Yes
postCreateOrionMapStudioFiles(body, callback){base_path}/{version}/Create/Orion.MapStudioFiles?{query}Yes
postCreateOrionNodeNotes(body, callback){base_path}/{version}/Create/Orion.NodeNotes?{query}Yes
postCreateOrionNodes(body, callback){base_path}/{version}/Create/Orion.Nodes?{query}Yes
postCreateOrionPollers(body, callback){base_path}/{version}/Create/Orion.Pollers?{query}Yes
postCreateOrionResourceProperties(body, callback){base_path}/{version}/Create/Orion.ResourceProperties?{query}Yes
postCreateOrionResources(body, callback){base_path}/{version}/Create/Orion.Resources?{query}Yes
postCreateOrionVolumes(body, callback){base_path}/{version}/Create/Orion.Volumes?{query}Yes
postCreateOrionNodeSettings(body, callback){base_path}/{version}/Create/Orion.NodeSettings?{query}Yes
postCreateOrionWorldMapPoint(body, callback){base_path}/{version}/Create/Orion.WorldMap.Point?{query}Yes
postCreateOrionWorldMapPointLabel(body, callback){base_path}/{version}/Create/Orion.WorldMap.PointLabel?{query}Yes
postCreateOrionNetObjectDowntime(body, callback){base_path}/{version}/Create/Orion.NetObjectDowntime?{query}Yes
postCreateOrionForecastMetrics(body, callback){base_path}/{version}/Create/Orion.ForecastMetrics?{query}Yes
postCreateOrionForecastCapacitySettings(body, callback){base_path}/{version}/Create/Orion.ForecastCapacitySettings?{query}Yes
postCreateOrionMaintenancePlan(body, callback){base_path}/{version}/Create/Orion.MaintenancePlan?{query}Yes
postCreateOrionMaintenancePlanAssignment(body, callback){base_path}/{version}/Create/Orion.MaintenancePlanAssignment?{query}Yes
postCreateOrionWebFavoriteResource(body, callback){base_path}/{version}/Create/Orion.Web.FavoriteResource?{query}Yes
postCreateOrionWebUserWebView(body, callback){base_path}/{version}/Create/Orion.Web.UserWebView?{query}Yes
postCreateOrionOrionServers(body, callback){base_path}/{version}/Create/Orion.OrionServers?{query}Yes
postCreateOrionPerfStackProjects(body, callback){base_path}/{version}/Create/Orion.PerfStack.Projects?{query}Yes
postCreateOrionPerfStackStatisticsEntity(body, callback){base_path}/{version}/Create/Orion.PerfStack.StatisticsEntity?{query}Yes
postCreateOrionRemotingRemoteExecutionPackage(body, callback){base_path}/{version}/Create/Orion.Remoting.RemoteExecutionPackage?{query}Yes
postCreateOrionSamAppOpticsIntegration(body, callback){base_path}/{version}/Create/Orion.SamAppOptics.Integration?{query}Yes
postCreateOrionSamAppOpticsRegistrationCountry(body, callback){base_path}/{version}/Create/Orion.SamAppOptics.RegistrationCountry?{query}Yes
postCreateOrionSamAppOpticsRegistrationState(body, callback){base_path}/{version}/Create/Orion.SamAppOptics.RegistrationState?{query}Yes
postCreateOrionSamAppOpticsApplicationPool(body, callback){base_path}/{version}/Create/Orion.SamAppOptics.ApplicationPool?{query}Yes
postCreateOrionSCMServerConfiguration(body, callback){base_path}/{version}/Create/Orion.SCM.ServerConfiguration?{query}Yes
postCreateOrionSCMProfiles(body, callback){base_path}/{version}/Create/Orion.SCM.Profiles?{query}Yes
postCreateOrionSCMNodesProfiles(body, callback){base_path}/{version}/Create/Orion.SCM.NodesProfiles?{query}Yes
postCreateOrionSCMNodesProfilesArchive(body, callback){base_path}/{version}/Create/Orion.SCM.NodesProfilesArchive?{query}Yes
postCreateOrionSCMNodesProfilesHistory(body, callback){base_path}/{version}/Create/Orion.SCM.NodesProfilesHistory?{query}Yes
postCreateOrionSCMBaseline(body, callback){base_path}/{version}/Create/Orion.SCM.Baseline?{query}Yes
postCreateOrionSCMProfileElements(body, callback){base_path}/{version}/Create/Orion.SCM.ProfileElements?{query}Yes
postCreateOrionSCMResultsPolledElements(body, callback){base_path}/{version}/Create/Orion.SCM.Results.PolledElements?{query}Yes
postCreateOrionSCMResultsPolledElementDetails(body, callback){base_path}/{version}/Create/Orion.SCM.Results.PolledElementDetails?{query}Yes
postCreateOrionSCMResultsNodesPollingErrors(body, callback){base_path}/{version}/Create/Orion.SCM.Results.NodesPollingErrors?{query}Yes
postCreateOrionSCMResultsPolledElementErrors(body, callback){base_path}/{version}/Create/Orion.SCM.Results.PolledElementErrors?{query}Yes
postCreateOrionSCMResultsElementErrors(body, callback){base_path}/{version}/Create/Orion.SCM.Results.ElementErrors?{query}Yes
postCreateOrionSCMPollEntries(body, callback){base_path}/{version}/Create/Orion.SCM.PollEntries?{query}Yes
postCreateOrionSettingOverride(body, callback){base_path}/{version}/Create/Orion.SettingOverride?{query}Yes
postCreateOrionSEUMAgents(body, callback){base_path}/{version}/Create/Orion.SEUM.Agents?{query}Yes
postCreateOrionSEUMRecordings(body, callback){base_path}/{version}/Create/Orion.SEUM.Recordings?{query}Yes
postCreateOrionSEUMRecordingCustomProperties(body, callback){base_path}/{version}/Create/Orion.SEUM.RecordingCustomProperties?{query}Yes
postCreateOrionSEUMRecordingSteps(body, callback){base_path}/{version}/Create/Orion.SEUM.RecordingSteps?{query}Yes
postCreateOrionSEUMTransactions(body, callback){base_path}/{version}/Create/Orion.SEUM.Transactions?{query}Yes
postCreateOrionSEUMTransactionCustomProperties(body, callback){base_path}/{version}/Create/Orion.SEUM.TransactionCustomProperties?{query}Yes
postCreateOrionSEUMTransactionRunParameters(body, callback){base_path}/{version}/Create/Orion.SEUM.TransactionRunParameters?{query}Yes
postCreateOrionSEUMTransactionSteps(body, callback){base_path}/{version}/Create/Orion.SEUM.TransactionSteps?{query}Yes
postCreateOrionSEUMSettings(body, callback){base_path}/{version}/Create/Orion.SEUM.Settings?{query}Yes
postCreateOrionAutoDependencyRoot(body, callback){base_path}/{version}/Create/Orion.AutoDependencyRoot?{query}Yes
postCreateOrionSSHSession(body, callback){base_path}/{version}/Create/Orion.SSH.Session?{query}Yes
postCreateOrionVIMClustersCustomProperties(body, callback){base_path}/{version}/Create/Orion.VIM.ClustersCustomProperties?{query}Yes
postCreateOrionVIMVirtualMachinesCustomProperties(body, callback){base_path}/{version}/Create/Orion.VIM.VirtualMachinesCustomProperties?{query}Yes
postCreateOrionVIMHostsCustomProperties(body, callback){base_path}/{version}/Create/Orion.VIM.HostsCustomProperties?{query}Yes
postCreateOrionVIMDatastoresCustomProperties(body, callback){base_path}/{version}/Create/Orion.VIM.DatastoresCustomProperties?{query}Yes
postCreateOrionWirelessHeatMapMap(body, callback){base_path}/{version}/Create/Orion.WirelessHeatMap.Map?{query}Yes
postCreateSWISfRemoteSWIS(body, callback){base_path}/{version}/Create/SWISf.RemoteSWIS?{query}Yes
postCreateSystemSubscription(body, callback){base_path}/{version}/Create/System.Subscription?{query}Yes
postCreateSystemSubscriptionProperty(body, callback){base_path}/{version}/Create/System.SubscriptionProperty?{query}Yes
postInvokeOrionADMNodeInventoryPollNow(body, callback){base_path}/{version}/Invoke/Orion.ADM.NodeInventory/PollNow?{query}Yes
postInvokeOrionADMNodeInventoryEnable(body, callback){base_path}/{version}/Invoke/Orion.ADM.NodeInventory/Enable?{query}Yes
postInvokeOrionADMNodeInventoryDisable(body, callback){base_path}/{version}/Invoke/Orion.ADM.NodeInventory/Disable?{query}Yes
postInvokeOrionADMNodeInventorySchedulePollNow(body, callback){base_path}/{version}/Invoke/Orion.ADM.NodeInventory/SchedulePollNow?{query}Yes
postInvokeOrionADMNodeInventoryScheduleEnable(body, callback){base_path}/{version}/Invoke/Orion.ADM.NodeInventory/ScheduleEnable?{query}Yes
postInvokeOrionADMNodeInventoryUninstallConnectionQualityAgentPlugin(body, callback){base_path}/{version}/Invoke/Orion.ADM.NodeInventory/UninstallConnectionQualityAgentPlugin?{query}Yes
postInvokeOrionAgentManagementAgentDeploy(body, callback)Deploys an agent to a machine defined by hostname and/or IP address.{base_path}/{version}/Invoke/Orion.AgentManagement.Agent/Deploy?{query}Yes
postInvokeOrionAgentManagementAgentDeployToNode(body, callback)Deploys an agent to an existing node using the supplied credentials.{base_path}/{version}/Invoke/Orion.AgentManagement.Agent/DeployToNode?{query}Yes
postInvokeOrionAgentManagementAgentDeployPlugin(body, callback)Deploys the specified plugin to the agent{base_path}/{version}/Invoke/Orion.AgentManagement.Agent/DeployPlugin?{query}Yes
postInvokeOrionAgentManagementAgentRedeployPlugin(body, callback)Redeploys the specified plugin to the agent{base_path}/{version}/Invoke/Orion.AgentManagement.Agent/RedeployPlugin?{query}Yes
postInvokeOrionAgentManagementAgentUninstallPlugin(body, callback)Uninstalls the specified plugin from the agent{base_path}/{version}/Invoke/Orion.AgentManagement.Agent/UninstallPlugin?{query}Yes
postInvokeOrionAgentManagementAgentUninstall(body, callback)Uninstalls the agent.{base_path}/{version}/Invoke/Orion.AgentManagement.Agent/Uninstall?{query}Yes
postInvokeOrionAgentManagementAgentDelete(body, callback)Deletes the agent without uninstalling it.{base_path}/{version}/Invoke/Orion.AgentManagement.Agent/Delete?{query}Yes
postInvokeOrionAgentManagementAgentApproveReboot(body, callback)Approval for an agent to reboot.{base_path}/{version}/Invoke/Orion.AgentManagement.Agent/ApproveReboot?{query}Yes
postInvokeOrionAgentManagementAgentApproveUpdate(body, callback)Approval for an agent to be updated.{base_path}/{version}/Invoke/Orion.AgentManagement.Agent/ApproveUpdate?{query}Yes
postInvokeOrionAgentManagementAgentTestWithEngine(body, callback)Tests the connection between the agent and AMS{base_path}/{version}/Invoke/Orion.AgentManagement.Agent/TestWithEngine?{query}Yes
postInvokeOrionAgentManagementAgentAssignToEngine(body, callback)Assigns an agent to a polling engine.{base_path}/{version}/Invoke/Orion.AgentManagement.Agent/AssignToEngine?{query}Yes
postInvokeOrionAgentManagementAgentValidateDeploymentCredentials(body, callback)Validates if provided credentials are valid for agent deployment. If credentials pass validation they can be safely used for deployment via Deploy verb.{base_path}/{version}/Invoke/Orion.AgentManagement.Agent/ValidateDeploymentCredentials?{query}Yes
postInvokeOrionAgentManagementAgentRestartAgent(body, callback)Initiate Orion Agent service restart.{base_path}/{version}/Invoke/Orion.AgentManagement.Agent/RestartAgent?{query}Yes
postInvokeOrionAPMIISSiteStart(body, callback)Start IIS site.{base_path}/{version}/Invoke/Orion.APM.IIS.Site/Start?{query}Yes
postInvokeOrionAPMIISSiteStop(body, callback)Stop IIS site.{base_path}/{version}/Invoke/Orion.APM.IIS.Site/Stop?{query}Yes
postInvokeOrionAPMIISSiteRestart(body, callback)Restart IIS site.{base_path}/{version}/Invoke/Orion.APM.IIS.Site/Restart?{query}Yes
postInvokeOrionAPMIISApplicationPoolStart(body, callback)Start IIS application pool.{base_path}/{version}/Invoke/Orion.APM.IIS.ApplicationPool/Start?{query}Yes
postInvokeOrionAPMIISApplicationPoolStop(body, callback)Stop IIS application pool.{base_path}/{version}/Invoke/Orion.APM.IIS.ApplicationPool/Stop?{query}Yes
postInvokeOrionAPMIISApplicationPoolRestart(body, callback)Restart IIS application pool.{base_path}/{version}/Invoke/Orion.APM.IIS.ApplicationPool/Restart?{query}Yes
postInvokeOrionAPMApplicationUnmanage(body, callback)Unmanage existed application.{base_path}/{version}/Invoke/Orion.APM.Application/Unmanage?{query}Yes
postInvokeOrionAPMApplicationRemanage(body, callback)Remanage existed application.{base_path}/{version}/Invoke/Orion.APM.Application/Remanage?{query}Yes
postInvokeOrionAPMApplicationCreateApplication(body, callback)Create new application.{base_path}/{version}/Invoke/Orion.APM.Application/CreateApplication?{query}Yes
postInvokeOrionAPMApplicationDeleteApplication(body, callback)Delete existed application.{base_path}/{version}/Invoke/Orion.APM.Application/DeleteApplication?{query}Yes
postInvokeOrionAPMApplicationPollNow(body, callback)Poll existed application.{base_path}/{version}/Invoke/Orion.APM.Application/PollNow?{query}Yes
postInvokeOrionAPMApplicationCustomPropertiesCreateCustomProperty(body, callback)Create application custom property.{base_path}/{version}/Invoke/Orion.APM.ApplicationCustomProperties/CreateCustomProperty?{query}Yes
postInvokeOrionAPMApplicationCustomPropertiesCreateCustomPropertyWithValues(body, callback)Create application custom property with values.{base_path}/{version}/Invoke/Orion.APM.ApplicationCustomProperties/CreateCustomPropertyWithValues?{query}Yes
postInvokeOrionAPMApplicationCustomPropertiesModifyCustomProperty(body, callback)Modify application custom property.{base_path}/{version}/Invoke/Orion.APM.ApplicationCustomProperties/ModifyCustomProperty?{query}Yes
postInvokeOrionAPMApplicationCustomPropertiesDeleteCustomProperty(body, callback)Delete application custom property.{base_path}/{version}/Invoke/Orion.APM.ApplicationCustomProperties/DeleteCustomProperty?{query}Yes
postInvokeOrionAPMApplicationTemplateUpdateApplicationTemplateSettings(body, callback)Update application template settings.{base_path}/{version}/Invoke/Orion.APM.ApplicationTemplate/UpdateApplicationTemplateSettings?{query}Yes
postInvokeOrionAPMApplicationTemplateDeleteTemplate(body, callback)Delete existed application template.{base_path}/{version}/Invoke/Orion.APM.ApplicationTemplate/DeleteTemplate?{query}Yes
postInvokeOrionAPMServerManagementStartService(body, callback)Start windows service.{base_path}/{version}/Invoke/Orion.APM.ServerManagement/StartService?{query}Yes
postInvokeOrionAPMServerManagementStopService(body, callback)Stop windows service.{base_path}/{version}/Invoke/Orion.APM.ServerManagement/StopService?{query}Yes
postInvokeOrionAPMServerManagementRestartService(body, callback)Restart windows service.{base_path}/{version}/Invoke/Orion.APM.ServerManagement/RestartService?{query}Yes
postInvokeOrionAPMServerManagementRebootNode(body, callback)Restart the node.{base_path}/{version}/Invoke/Orion.APM.ServerManagement/RebootNode?{query}Yes
postInvokeOrionStacksRelationTraverse(body, callback){base_path}/{version}/Invoke/Orion.Stacks.Relation/Traverse?{query}Yes
postInvokeOrionStacksRelationProcessUi(body, callback){base_path}/{version}/Invoke/Orion.Stacks.Relation/ProcessUi?{query}Yes
postInvokeOrionASANodeExecuteCliCommand(body, callback)Execute CLI command using SSH protocol on port 22{base_path}/{version}/Invoke/Orion.ASA.Node/ExecuteCliCommand?{query}Yes
postInvokeOrionASAInterfacesSetFavorite(body, callback){base_path}/{version}/Invoke/Orion.ASA.Interfaces/SetFavorite?{query}Yes
postInvokeOrionASAInterfacesRemoveFavorite(body, callback){base_path}/{version}/Invoke/Orion.ASA.Interfaces/RemoveFavorite?{query}Yes
postInvokeCirrusNCMNCMJobsGetJob(body, callback){base_path}/{version}/Invoke/Cirrus.NCM_NCMJobs/GetJob?{query}Yes
postInvokeCirrusNCMNCMJobsUpdateJob(body, callback){base_path}/{version}/Invoke/Cirrus.NCM_NCMJobs/UpdateJob?{query}Yes
postInvokeCirrusNCMNCMJobsAddJob(body, callback){base_path}/{version}/Invoke/Cirrus.NCM_NCMJobs/AddJob?{query}Yes
postInvokeCirrusNCMNCMJobsDeleteJobs(body, callback){base_path}/{version}/Invoke/Cirrus.NCM_NCMJobs/DeleteJobs?{query}Yes
postInvokeCirrusNCMNCMJobsEnableOrDisableJobs(body, callback){base_path}/{version}/Invoke/Cirrus.NCM_NCMJobs/EnableOrDisableJobs?{query}Yes
postInvokeCirrusNCMNCMJobsClearJobLog(body, callback){base_path}/{version}/Invoke/Cirrus.NCM_NCMJobs/ClearJobLog?{query}Yes
postInvokeCirrusNCMNCMJobsGetJobStatus(body, callback){base_path}/{version}/Invoke/Cirrus.NCM_NCMJobs/GetJobStatus?{query}Yes
postInvokeCirrusNCMNCMJobsGetJobLog(body, callback){base_path}/{version}/Invoke/Cirrus.NCM_NCMJobs/GetJobLog?{query}Yes
postInvokeCirrusInventoryQueueStartInventory(body, callback){base_path}/{version}/Invoke/Cirrus.InventoryQueue/StartInventory?{query}Yes
postInvokeCirrusInventoryQueueReportError(body, callback){base_path}/{version}/Invoke/Cirrus.InventoryQueue/ReportError?{query}Yes
postInvokeCirrusInventoryQueueCancelInventory(body, callback){base_path}/{version}/Invoke/Cirrus.InventoryQueue/CancelInventory?{query}Yes
postInvokeCirrusInventoryQueueClearInventory(body, callback){base_path}/{version}/Invoke/Cirrus.InventoryQueue/ClearInventory?{query}Yes
postInvokeNCMVulnerabilitiesAnnouncementsStartVulnerabilityMatching(body, callback){base_path}/{version}/Invoke/NCM.VulnerabilitiesAnnouncements/StartVulnerabilityMatching?{query}Yes
postInvokeNCMVulnerabilitiesAnnouncementsIsVulnerabilityMatchingActive(body, callback){base_path}/{version}/Invoke/NCM.VulnerabilitiesAnnouncements/IsVulnerabilityMatchingActive?{query}Yes
postInvokeNCMVulnerabilitiesAnnouncementsInitVulnerabilitySchedule(body, callback){base_path}/{version}/Invoke/NCM.VulnerabilitiesAnnouncements/InitVulnerabilitySchedule?{query}Yes
postInvokeCirrusConfigSnippetsAddSnippet(body, callback){base_path}/{version}/Invoke/Cirrus.ConfigSnippets/AddSnippet?{query}Yes
postInvokeCirrusConfigSnippetsGetSnippet(body, callback){base_path}/{version}/Invoke/Cirrus.ConfigSnippets/GetSnippet?{query}Yes
postInvokeCirrusConfigSnippetsUpdateSnippet(body, callback){base_path}/{version}/Invoke/Cirrus.ConfigSnippets/UpdateSnippet?{query}Yes
postInvokeCirrusConfigSnippetsDeleteSnippets(body, callback){base_path}/{version}/Invoke/Cirrus.ConfigSnippets/DeleteSnippets?{query}Yes
postInvokeCirrusConfigSnippetsImportSnippets(body, callback){base_path}/{version}/Invoke/Cirrus.ConfigSnippets/ImportSnippets?{query}Yes
postInvokeCirrusConfigSnippetsCopySnippets(body, callback){base_path}/{version}/Invoke/Cirrus.ConfigSnippets/CopySnippets?{query}Yes
postInvokeCirrusConfigSnippetsGetTagsList(body, callback){base_path}/{version}/Invoke/Cirrus.ConfigSnippets/GetTagsList?{query}Yes
postInvokeCirrusConfigSnippetsGetTagsListForSnippets(body, callback){base_path}/{version}/Invoke/Cirrus.ConfigSnippets/GetTagsListForSnippets?{query}Yes
postInvokeCirrusConfigSnippetsAddTags(body, callback){base_path}/{version}/Invoke/Cirrus.ConfigSnippets/AddTags?{query}Yes
postInvokeCirrusConfigSnippetsDeleteTags(body, callback){base_path}/{version}/Invoke/Cirrus.ConfigSnippets/DeleteTags?{query}Yes
postInvokeCirrusConfigSnippetsSaveSnippetAsCopy(body, callback){base_path}/{version}/Invoke/Cirrus.ConfigSnippets/SaveSnippetAsCopy?{query}Yes
postInvokeCirrusConfigArchiveDownload(body, callback){base_path}/{version}/Invoke/Cirrus.ConfigArchive/Download?{query}Yes
postInvokeCirrusConfigArchiveGetStatus(body, callback){base_path}/{version}/Invoke/Cirrus.ConfigArchive/GetStatus?{query}Yes
postInvokeCirrusConfigArchiveGetStatusWithLimitations(body, callback){base_path}/{version}/Invoke/Cirrus.ConfigArchive/GetStatusWithLimitations?{query}Yes
postInvokeCirrusConfigArchiveUpload(body, callback){base_path}/{version}/Invoke/Cirrus.ConfigArchive/Upload?{query}Yes
postInvokeCirrusConfigArchiveExecute(body, callback){base_path}/{version}/Invoke/Cirrus.ConfigArchive/Execute?{query}Yes
postInvokeCirrusConfigArchiveCancelTransfer(body, callback){base_path}/{version}/Invoke/Cirrus.ConfigArchive/CancelTransfer?{query}Yes
postInvokeCirrusConfigArchiveCancelTransferWithLimitations(body, callback){base_path}/{version}/Invoke/Cirrus.ConfigArchive/CancelTransferWithLimitations?{query}Yes
postInvokeCirrusConfigArchiveClearComplete(body, callback){base_path}/{version}/Invoke/Cirrus.ConfigArchive/ClearComplete?{query}Yes
postInvokeCirrusConfigArchiveClearCompleteWithLimitations(body, callback){base_path}/{version}/Invoke/Cirrus.ConfigArchive/ClearCompleteWithLimitations?{query}Yes
postInvokeCirrusConfigArchiveClearErrors(body, callback){base_path}/{version}/Invoke/Cirrus.ConfigArchive/ClearErrors?{query}Yes
postInvokeCirrusConfigArchiveClearErrorsWithLimitations(body, callback){base_path}/{version}/Invoke/Cirrus.ConfigArchive/ClearErrorsWithLimitations?{query}Yes
postInvokeCirrusConfigArchiveClearAll(body, callback){base_path}/{version}/Invoke/Cirrus.ConfigArchive/ClearAll?{query}Yes
postInvokeCirrusConfigArchiveClearAllWithLimitations(body, callback){base_path}/{version}/Invoke/Cirrus.ConfigArchive/ClearAllWithLimitations?{query}Yes
postInvokeCirrusConfigArchiveGetPermissionsByRole(body, callback){base_path}/{version}/Invoke/Cirrus.ConfigArchive/GetPermissionsByRole?{query}Yes
postInvokeCirrusConfigArchiveDeleteConfigs(body, callback){base_path}/{version}/Invoke/Cirrus.ConfigArchive/DeleteConfigs?{query}Yes
postInvokeCirrusConfigArchiveGetConfigTypes(body, callback){base_path}/{version}/Invoke/Cirrus.ConfigArchive/GetConfigTypes?{query}Yes
postInvokeCirrusConfigArchiveReportError(body, callback){base_path}/{version}/Invoke/Cirrus.ConfigArchive/ReportError?{query}Yes
postInvokeCirrusConfigArchiveCancelTransfers(body, callback){base_path}/{version}/Invoke/Cirrus.ConfigArchive/CancelTransfers?{query}Yes
postInvokeCirrusConfigArchiveClearTransfers(body, callback){base_path}/{version}/Invoke/Cirrus.ConfigArchive/ClearTransfers?{query}Yes
postInvokeCirrusConfigArchiveExecuteScript(body, callback){base_path}/{version}/Invoke/Cirrus.ConfigArchive/ExecuteScript?{query}Yes
postInvokeCirrusConfigArchiveUploadConfig(body, callback){base_path}/{version}/Invoke/Cirrus.ConfigArchive/UploadConfig?{query}Yes
postInvokeCirrusConfigArchiveDownloadConfig(body, callback){base_path}/{version}/Invoke/Cirrus.ConfigArchive/DownloadConfig?{query}Yes
postInvokeCirrusConfigArchiveExecuteScriptOnNodes(body, callback){base_path}/{version}/Invoke/Cirrus.ConfigArchive/ExecuteScriptOnNodes?{query}Yes
postInvokeCirrusConfigArchiveDownloadConfigOnNodes(body, callback){base_path}/{version}/Invoke/Cirrus.ConfigArchive/DownloadConfigOnNodes?{query}Yes
postInvokeCirrusConfigArchiveConfigSearch(body, callback){base_path}/{version}/Invoke/Cirrus.ConfigArchive/ConfigSearch?{query}Yes
postInvokeCirrusConfigArchiveRunIndexOptimization(body, callback){base_path}/{version}/Invoke/Cirrus.ConfigArchive/RunIndexOptimization?{query}Yes
postInvokeCirrusConfigArchiveUpdateConfig(body, callback){base_path}/{version}/Invoke/Cirrus.ConfigArchive/UpdateConfig?{query}Yes
postInvokeCirrusConfigArchiveCloneConfig(body, callback){base_path}/{version}/Invoke/Cirrus.ConfigArchive/CloneConfig?{query}Yes
postInvokeCirrusConfigArchiveImportConfig(body, callback){base_path}/{version}/Invoke/Cirrus.ConfigArchive/ImportConfig?{query}Yes
postInvokeCirrusConfigArchiveSetClearBaseline(body, callback){base_path}/{version}/Invoke/Cirrus.ConfigArchive/SetClearBaseline?{query}Yes
postInvokeCirrusConfigArchiveValidateBinaryConfigStorage(body, callback){base_path}/{version}/Invoke/Cirrus.ConfigArchive/ValidateBinaryConfigStorage?{query}Yes
postInvokeCirrusConfigArchiveSearchInterfaceConfigSnippet(body, callback){base_path}/{version}/Invoke/Cirrus.ConfigArchive/SearchInterfaceConfigSnippet?{query}Yes
postInvokeCirrusConfigArchiveGetInterfaceConfigSnippets(body, callback){base_path}/{version}/Invoke/Cirrus.ConfigArchive/GetInterfaceConfigSnippets?{query}Yes
postInvokeCirrusSnippetArchiveAddSnippet(body, callback){base_path}/{version}/Invoke/Cirrus.SnippetArchive/AddSnippet?{query}Yes
postInvokeCirrusSnippetArchiveDeleteSnippet(body, callback){base_path}/{version}/Invoke/Cirrus.SnippetArchive/DeleteSnippet?{query}Yes
postInvokeCirrusSnippetArchiveUpdateSnippet(body, callback){base_path}/{version}/Invoke/Cirrus.SnippetArchive/UpdateSnippet?{query}Yes
postInvokeCirrusPolicyReportsTestRule(body, callback){base_path}/{version}/Invoke/Cirrus.PolicyReports/TestRule?{query}Yes
postInvokeCirrusPolicyReportsGetPolicyReport(body, callback){base_path}/{version}/Invoke/Cirrus.PolicyReports/GetPolicyReport?{query}Yes
postInvokeCirrusPolicyReportsUpdatePolicyReport(body, callback){base_path}/{version}/Invoke/Cirrus.PolicyReports/UpdatePolicyReport?{query}Yes
postInvokeCirrusPolicyReportsAddPolicyReport(body, callback){base_path}/{version}/Invoke/Cirrus.PolicyReports/AddPolicyReport?{query}Yes
postInvokeCirrusPolicyReportsDeletePolicyReports(body, callback){base_path}/{version}/Invoke/Cirrus.PolicyReports/DeletePolicyReports?{query}Yes
postInvokeCirrusPolicyReportsGetPolicy(body, callback){base_path}/{version}/Invoke/Cirrus.PolicyReports/GetPolicy?{query}Yes
postInvokeCirrusPolicyReportsUpdatePolicy(body, callback){base_path}/{version}/Invoke/Cirrus.PolicyReports/UpdatePolicy?{query}Yes
postInvokeCirrusPolicyReportsAddPolicy(body, callback){base_path}/{version}/Invoke/Cirrus.PolicyReports/AddPolicy?{query}Yes
postInvokeCirrusPolicyReportsDeletePolicies(body, callback){base_path}/{version}/Invoke/Cirrus.PolicyReports/DeletePolicies?{query}Yes
postInvokeCirrusPolicyReportsGetPolicyRule(body, callback){base_path}/{version}/Invoke/Cirrus.PolicyReports/GetPolicyRule?{query}Yes
postInvokeCirrusPolicyReportsUpdatePolicyRule(body, callback){base_path}/{version}/Invoke/Cirrus.PolicyReports/UpdatePolicyRule?{query}Yes
postInvokeCirrusPolicyReportsAddPolicyRule(body, callback){base_path}/{version}/Invoke/Cirrus.PolicyReports/AddPolicyRule?{query}Yes
postInvokeCirrusPolicyReportsDeletePolicyRules(body, callback){base_path}/{version}/Invoke/Cirrus.PolicyReports/DeletePolicyRules?{query}Yes
postInvokeCirrusPolicyReportsStartCaching(body, callback){base_path}/{version}/Invoke/Cirrus.PolicyReports/StartCaching?{query}Yes
postInvokeCirrusPolicyReportsUpdateReportStatus(body, callback){base_path}/{version}/Invoke/Cirrus.PolicyReports/UpdateReportStatus?{query}Yes
postInvokeCirrusPolicyReportsGetPagablePoliciesList(body, callback){base_path}/{version}/Invoke/Cirrus.PolicyReports/GetPagablePoliciesList?{query}Yes
postInvokeCirrusPolicyReportsGetPoliciesRowCount(body, callback){base_path}/{version}/Invoke/Cirrus.PolicyReports/GetPoliciesRowCount?{query}Yes
postInvokeCirrusPolicyReportsGetPagablePolicyRulesList(body, callback){base_path}/{version}/Invoke/Cirrus.PolicyReports/GetPagablePolicyRulesList?{query}Yes
postInvokeCirrusPolicyReportsGetPolicyRulesRowCount(body, callback){base_path}/{version}/Invoke/Cirrus.PolicyReports/GetPolicyRulesRowCount?{query}Yes
postInvokeCirrusPolicyReportsGetComplianceDataTable(body, callback){base_path}/{version}/Invoke/Cirrus.PolicyReports/GetComplianceDataTable?{query}Yes
postInvokeCirrusPolicyReportsGetComplianceColumnsInJSON(body, callback){base_path}/{version}/Invoke/Cirrus.PolicyReports/GetComplianceColumnsInJSON?{query}Yes
postInvokeCirrusPolicyReportsGetRowNumber(body, callback){base_path}/{version}/Invoke/Cirrus.PolicyReports/GetRowNumber?{query}Yes
postInvokeCirrusPolicyReportsGenerateRemediationScriptForNodes(body, callback){base_path}/{version}/Invoke/Cirrus.PolicyReports/GenerateRemediationScriptForNodes?{query}Yes
postInvokeNCMEosBeginRefreshAll(body, callback){base_path}/{version}/Invoke/NCM.Eos/BeginRefreshAll?{query}Yes
postInvokeNCMEosRefreshNow(body, callback){base_path}/{version}/Invoke/NCM.Eos/RefreshNow?{query}Yes
postInvokeNCMEosIsRefreshingAll(body, callback){base_path}/{version}/Invoke/NCM.Eos/IsRefreshingAll?{query}Yes
postInvokeNCMEosInitSchedule(body, callback){base_path}/{version}/Invoke/NCM.Eos/InitSchedule?{query}Yes
postInvokeNCMFirmwareStorageValidateFirmwareStorage(body, callback){base_path}/{version}/Invoke/NCM.FirmwareStorage/ValidateFirmwareStorage?{query}Yes
postInvokeNCMFirmwareStorageDeleteFirmwareImages(body, callback){base_path}/{version}/Invoke/NCM.FirmwareStorage/DeleteFirmwareImages?{query}Yes
postInvokeNCMFirmwareDefinitionsGetFirmwareDefinition(body, callback){base_path}/{version}/Invoke/NCM.FirmwareDefinitions/GetFirmwareDefinition?{query}Yes
postInvokeNCMFirmwareDefinitionsAddFirmwareDefinition(body, callback){base_path}/{version}/Invoke/NCM.FirmwareDefinitions/AddFirmwareDefinition?{query}Yes
postInvokeNCMFirmwareDefinitionsUpdateFirmwareDefinition(body, callback){base_path}/{version}/Invoke/NCM.FirmwareDefinitions/UpdateFirmwareDefinition?{query}Yes
postInvokeNCMFirmwareDefinitionsDeleteFirmwareDefinitions(body, callback){base_path}/{version}/Invoke/NCM.FirmwareDefinitions/DeleteFirmwareDefinitions?{query}Yes
postInvokeNCMFirmwareOperationsPrepareFirmwareUpgrade(body, callback){base_path}/{version}/Invoke/NCM.FirmwareOperations/PrepareFirmwareUpgrade?{query}Yes
postInvokeNCMFirmwareOperationsPrepareRollBack(body, callback){base_path}/{version}/Invoke/NCM.FirmwareOperations/PrepareRollBack?{query}Yes
postInvokeNCMFirmwareOperationsPrepareReExecuteFailed(body, callback){base_path}/{version}/Invoke/NCM.FirmwareOperations/PrepareReExecuteFailed?{query}Yes
postInvokeNCMFirmwareOperationsStartUpgrade(body, callback){base_path}/{version}/Invoke/NCM.FirmwareOperations/StartUpgrade?{query}Yes
postInvokeNCMFirmwareOperationsCancelUpgrade(body, callback){base_path}/{version}/Invoke/NCM.FirmwareOperations/CancelUpgrade?{query}Yes
postInvokeNCMFirmwareOperationsGenerateScriptPreview(body, callback){base_path}/{version}/Invoke/NCM.FirmwareOperations/GenerateScriptPreview?{query}Yes
postInvokeCirrusReportsRun(body, callback){base_path}/{version}/Invoke/Cirrus.Reports/Run?{query}Yes
postInvokeCirrusReportsRunPagable(body, callback){base_path}/{version}/Invoke/Cirrus.Reports/RunPagable?{query}Yes
postInvokeCirrusReportsGetRecordsCount(body, callback){base_path}/{version}/Invoke/Cirrus.Reports/GetRecordsCount?{query}Yes
postInvokeCirrusReportsGetDiplayableColumns(body, callback){base_path}/{version}/Invoke/Cirrus.Reports/GetDiplayableColumns?{query}Yes
postInvokeOrionGroupCustomPropertiesCreateCustomProperty(body, callback){base_path}/{version}/Invoke/Orion.GroupCustomProperties/CreateCustomProperty?{query}Yes
postInvokeOrionGroupCustomPropertiesCreateCustomPropertyWithValues(body, callback){base_path}/{version}/Invoke/Orion.GroupCustomProperties/CreateCustomPropertyWithValues?{query}Yes
postInvokeOrionGroupCustomPropertiesModifyCustomProperty(body, callback){base_path}/{version}/Invoke/Orion.GroupCustomProperties/ModifyCustomProperty?{query}Yes
postInvokeOrionGroupCustomPropertiesDeleteCustomProperty(body, callback){base_path}/{version}/Invoke/Orion.GroupCustomProperties/DeleteCustomProperty?{query}Yes
postInvokeOrionGroupCustomPropertiesValidateCustomProperty(body, callback){base_path}/{version}/Invoke/Orion.GroupCustomProperties/ValidateCustomProperty?{query}Yes
postInvokeOrionContainerMemberDefinitionGetMembers(body, callback){base_path}/{version}/Invoke/Orion.ContainerMemberDefinition/GetMembers?{query}Yes
postInvokeOrionContainerMemberDefinitionGetFirstNMembers(body, callback){base_path}/{version}/Invoke/Orion.ContainerMemberDefinition/GetFirstNMembers?{query}Yes
postInvokeCortexManagementPublishEvent(body, callback){base_path}/{version}/Invoke/Cortex.Management/PublishEvent?{query}Yes
postInvokeCortexOrionCiscoAciApicCoreAssignToEngine(body, callback){base_path}/{version}/Invoke/Cortex.Orion.CiscoAci.Apic/Core.AssignToEngine?{query}Yes
postInvokeCortexOrionCiscoAciApicCoreGetSupportedMetrics(body, callback){base_path}/{version}/Invoke/Cortex.Orion.CiscoAci.Apic/Core.GetSupportedMetrics?{query}Yes
postInvokeCortexOrionCiscoAciApicCoreInventoryNow(body, callback){base_path}/{version}/Invoke/Cortex.Orion.CiscoAci.Apic/Core.InventoryNow?{query}Yes
postInvokeCortexOrionCiscoAciApicCorePollNow(body, callback){base_path}/{version}/Invoke/Cortex.Orion.CiscoAci.Apic/Core.PollNow?{query}Yes
postInvokeCortexOrionCiscoAciApicCoreSetPolling(body, callback){base_path}/{version}/Invoke/Cortex.Orion.CiscoAci.Apic/Core.SetPolling?{query}Yes
postInvokeCortexOrionCiscoAciApicCoreStartRealTimePolling(body, callback){base_path}/{version}/Invoke/Cortex.Orion.CiscoAci.Apic/Core.StartRealTimePolling?{query}Yes
postInvokeCortexOrionCiscoAciApicCoreStopRealTimePolling(body, callback){base_path}/{version}/Invoke/Cortex.Orion.CiscoAci.Apic/Core.StopRealTimePolling?{query}Yes
postInvokeCortexOrionCiscoAciApicOrionCiscoAciAssignAciPolling(body, callback){base_path}/{version}/Invoke/Cortex.Orion.CiscoAci.Apic/Orion.CiscoAci.AssignAciPolling?{query}Yes
postInvokeCortexOrionCiscoAciApicOrionCiscoAciGetPollInterval(body, callback){base_path}/{version}/Invoke/Cortex.Orion.CiscoAci.Apic/Orion.CiscoAci.GetPollInterval?{query}Yes
postInvokeCortexOrionCiscoAciApicOrionCiscoAciIsAciPollingAssigned(body, callback){base_path}/{version}/Invoke/Cortex.Orion.CiscoAci.Apic/Orion.CiscoAci.IsAciPollingAssigned?{query}Yes
postInvokeCortexOrionCiscoAciApicOrionCiscoAciSyncAciCredentialsWithOrion(body, callback){base_path}/{version}/Invoke/Cortex.Orion.CiscoAci.Apic/Orion.CiscoAci.SyncAciCredentialsWithOrion?{query}Yes
postInvokeCortexOrionCiscoAciApicOrionCiscoAciTestAciCredentials(body, callback){base_path}/{version}/Invoke/Cortex.Orion.CiscoAci.Apic/Orion.CiscoAci.TestAciCredentials?{query}Yes
postInvokeCortexOrionCiscoAciApicOrionCiscoAciUnassignAciPolling(body, callback){base_path}/{version}/Invoke/Cortex.Orion.CiscoAci.Apic/Orion.CiscoAci.UnassignAciPolling?{query}Yes
postInvokeCortexOrionCiscoAciApplicationProfileCoreAssignToEngine(body, callback){base_path}/{version}/Invoke/Cortex.Orion.CiscoAci.ApplicationProfile/Core.AssignToEngine?{query}Yes
postInvokeCortexOrionCiscoAciApplicationProfileCoreGetSupportedMetrics(body, callback){base_path}/{version}/Invoke/Cortex.Orion.CiscoAci.ApplicationProfile/Core.GetSupportedMetrics?{query}Yes
postInvokeCortexOrionCiscoAciApplicationProfileCoreInventoryNow(body, callback){base_path}/{version}/Invoke/Cortex.Orion.CiscoAci.ApplicationProfile/Core.InventoryNow?{query}Yes
postInvokeCortexOrionCiscoAciApplicationProfileCorePollNow(body, callback){base_path}/{version}/Invoke/Cortex.Orion.CiscoAci.ApplicationProfile/Core.PollNow?{query}Yes
postInvokeCortexOrionCiscoAciApplicationProfileCoreSetPolling(body, callback){base_path}/{version}/Invoke/Cortex.Orion.CiscoAci.ApplicationProfile/Core.SetPolling?{query}Yes
postInvokeCortexOrionCiscoAciApplicationProfileCoreStartRealTimePolling(body, callback){base_path}/{version}/Invoke/Cortex.Orion.CiscoAci.ApplicationProfile/Core.StartRealTimePolling?{query}Yes
postInvokeCortexOrionCiscoAciApplicationProfileCoreStopRealTimePolling(body, callback){base_path}/{version}/Invoke/Cortex.Orion.CiscoAci.ApplicationProfile/Core.StopRealTimePolling?{query}Yes
postInvokeCortexOrionCiscoAciEndpointGroupCoreAssignToEngine(body, callback){base_path}/{version}/Invoke/Cortex.Orion.CiscoAci.EndpointGroup/Core.AssignToEngine?{query}Yes
postInvokeCortexOrionCiscoAciEndpointGroupCoreGetSupportedMetrics(body, callback){base_path}/{version}/Invoke/Cortex.Orion.CiscoAci.EndpointGroup/Core.GetSupportedMetrics?{query}Yes
postInvokeCortexOrionCiscoAciEndpointGroupCoreInventoryNow(body, callback){base_path}/{version}/Invoke/Cortex.Orion.CiscoAci.EndpointGroup/Core.InventoryNow?{query}Yes
postInvokeCortexOrionCiscoAciEndpointGroupCorePollNow(body, callback){base_path}/{version}/Invoke/Cortex.Orion.CiscoAci.EndpointGroup/Core.PollNow?{query}Yes
postInvokeCortexOrionCiscoAciEndpointGroupCoreSetPolling(body, callback){base_path}/{version}/Invoke/Cortex.Orion.CiscoAci.EndpointGroup/Core.SetPolling?{query}Yes
postInvokeCortexOrionCiscoAciEndpointGroupCoreStartRealTimePolling(body, callback){base_path}/{version}/Invoke/Cortex.Orion.CiscoAci.EndpointGroup/Core.StartRealTimePolling?{query}Yes
postInvokeCortexOrionCiscoAciEndpointGroupCoreStopRealTimePolling(body, callback){base_path}/{version}/Invoke/Cortex.Orion.CiscoAci.EndpointGroup/Core.StopRealTimePolling?{query}Yes
postInvokeCortexOrionCiscoAciFabricCoreAssignToEngine(body, callback){base_path}/{version}/Invoke/Cortex.Orion.CiscoAci.Fabric/Core.AssignToEngine?{query}Yes
postInvokeCortexOrionCiscoAciFabricCoreGetSupportedMetrics(body, callback){base_path}/{version}/Invoke/Cortex.Orion.CiscoAci.Fabric/Core.GetSupportedMetrics?{query}Yes
postInvokeCortexOrionCiscoAciFabricCoreInventoryNow(body, callback){base_path}/{version}/Invoke/Cortex.Orion.CiscoAci.Fabric/Core.InventoryNow?{query}Yes
postInvokeCortexOrionCiscoAciFabricCorePollNow(body, callback){base_path}/{version}/Invoke/Cortex.Orion.CiscoAci.Fabric/Core.PollNow?{query}Yes
postInvokeCortexOrionCiscoAciFabricCoreSetPolling(body, callback){base_path}/{version}/Invoke/Cortex.Orion.CiscoAci.Fabric/Core.SetPolling?{query}Yes
postInvokeCortexOrionCiscoAciFabricCoreStartRealTimePolling(body, callback){base_path}/{version}/Invoke/Cortex.Orion.CiscoAci.Fabric/Core.StartRealTimePolling?{query}Yes
postInvokeCortexOrionCiscoAciFabricCoreStopRealTimePolling(body, callback){base_path}/{version}/Invoke/Cortex.Orion.CiscoAci.Fabric/Core.StopRealTimePolling?{query}Yes
postInvokeCortexOrionCiscoAciPhysicalEntityCoreAssignToEngine(body, callback){base_path}/{version}/Invoke/Cortex.Orion.CiscoAci.PhysicalEntity/Core.AssignToEngine?{query}Yes
postInvokeCortexOrionCiscoAciPhysicalEntityCoreGetSupportedMetrics(body, callback){base_path}/{version}/Invoke/Cortex.Orion.CiscoAci.PhysicalEntity/Core.GetSupportedMetrics?{query}Yes
postInvokeCortexOrionCiscoAciPhysicalEntityCoreInventoryNow(body, callback){base_path}/{version}/Invoke/Cortex.Orion.CiscoAci.PhysicalEntity/Core.InventoryNow?{query}Yes
postInvokeCortexOrionCiscoAciPhysicalEntityCorePollNow(body, callback){base_path}/{version}/Invoke/Cortex.Orion.CiscoAci.PhysicalEntity/Core.PollNow?{query}Yes
postInvokeCortexOrionCiscoAciPhysicalEntityCoreSetPolling(body, callback){base_path}/{version}/Invoke/Cortex.Orion.CiscoAci.PhysicalEntity/Core.SetPolling?{query}Yes
postInvokeCortexOrionCiscoAciPhysicalEntityCoreStartRealTimePolling(body, callback){base_path}/{version}/Invoke/Cortex.Orion.CiscoAci.PhysicalEntity/Core.StartRealTimePolling?{query}Yes
postInvokeCortexOrionCiscoAciPhysicalEntityCoreStopRealTimePolling(body, callback){base_path}/{version}/Invoke/Cortex.Orion.CiscoAci.PhysicalEntity/Core.StopRealTimePolling?{query}Yes
postInvokeCortexOrionCiscoAciTenantCoreAssignToEngine(body, callback){base_path}/{version}/Invoke/Cortex.Orion.CiscoAci.Tenant/Core.AssignToEngine?{query}Yes
postInvokeCortexOrionCiscoAciTenantCoreGetSupportedMetrics(body, callback){base_path}/{version}/Invoke/Cortex.Orion.CiscoAci.Tenant/Core.GetSupportedMetrics?{query}Yes
postInvokeCortexOrionCiscoAciTenantCoreInventoryNow(body, callback){base_path}/{version}/Invoke/Cortex.Orion.CiscoAci.Tenant/Core.InventoryNow?{query}Yes
postInvokeCortexOrionCiscoAciTenantCorePollNow(body, callback){base_path}/{version}/Invoke/Cortex.Orion.CiscoAci.Tenant/Core.PollNow?{query}Yes
postInvokeCortexOrionCiscoAciTenantCoreSetPolling(body, callback){base_path}/{version}/Invoke/Cortex.Orion.CiscoAci.Tenant/Core.SetPolling?{query}Yes
postInvokeCortexOrionCiscoAciTenantCoreStartRealTimePolling(body, callback){base_path}/{version}/Invoke/Cortex.Orion.CiscoAci.Tenant/Core.StartRealTimePolling?{query}Yes
postInvokeCortexOrionCiscoAciTenantCoreStopRealTimePolling(body, callback){base_path}/{version}/Invoke/Cortex.Orion.CiscoAci.Tenant/Core.StopRealTimePolling?{query}Yes
postInvokeCortexOrionCmanContainerCoreAssignToEngine(body, callback){base_path}/{version}/Invoke/Cortex.Orion.Cman.Container/Core.AssignToEngine?{query}Yes
postInvokeCortexOrionCmanContainerCoreGetSupportedMetrics(body, callback){base_path}/{version}/Invoke/Cortex.Orion.Cman.Container/Core.GetSupportedMetrics?{query}Yes
postInvokeCortexOrionCmanContainerCoreInventoryNow(body, callback){base_path}/{version}/Invoke/Cortex.Orion.Cman.Container/Core.InventoryNow?{query}Yes
postInvokeCortexOrionCmanContainerCorePollNow(body, callback){base_path}/{version}/Invoke/Cortex.Orion.Cman.Container/Core.PollNow?{query}Yes
postInvokeCortexOrionCmanContainerCoreSetPolling(body, callback){base_path}/{version}/Invoke/Cortex.Orion.Cman.Container/Core.SetPolling?{query}Yes
postInvokeCortexOrionCmanContainerCoreStartRealTimePolling(body, callback){base_path}/{version}/Invoke/Cortex.Orion.Cman.Container/Core.StartRealTimePolling?{query}Yes
postInvokeCortexOrionCmanContainerCoreStopRealTimePolling(body, callback){base_path}/{version}/Invoke/Cortex.Orion.Cman.Container/Core.StopRealTimePolling?{query}Yes
postInvokeCortexOrionCmanContainerAgentCoreAssignToEngine(body, callback){base_path}/{version}/Invoke/Cortex.Orion.Cman.ContainerAgent/Core.AssignToEngine?{query}Yes
postInvokeCortexOrionCmanContainerAgentCoreGetSupportedMetrics(body, callback){base_path}/{version}/Invoke/Cortex.Orion.Cman.ContainerAgent/Core.GetSupportedMetrics?{query}Yes
postInvokeCortexOrionCmanContainerAgentCoreInventoryNow(body, callback){base_path}/{version}/Invoke/Cortex.Orion.Cman.ContainerAgent/Core.InventoryNow?{query}Yes
postInvokeCortexOrionCmanContainerAgentCorePollNow(body, callback){base_path}/{version}/Invoke/Cortex.Orion.Cman.ContainerAgent/Core.PollNow?{query}Yes
postInvokeCortexOrionCmanContainerAgentCoreSetPolling(body, callback){base_path}/{version}/Invoke/Cortex.Orion.Cman.ContainerAgent/Core.SetPolling?{query}Yes
postInvokeCortexOrionCmanContainerAgentCoreStartRealTimePolling(body, callback){base_path}/{version}/Invoke/Cortex.Orion.Cman.ContainerAgent/Core.StartRealTimePolling?{query}Yes
postInvokeCortexOrionCmanContainerAgentCoreStopRealTimePolling(body, callback){base_path}/{version}/Invoke/Cortex.Orion.Cman.ContainerAgent/Core.StopRealTimePolling?{query}Yes
postInvokeCortexOrionCmanContainerEnvironmentVariableCoreAssignToEngine(body, callback){base_path}/{version}/Invoke/Cortex.Orion.Cman.ContainerEnvironmentVariable/Core.AssignToEngine?{query}Yes
postInvokeCortexOrionCmanContainerEnvironmentVariableCoreGetSupportedMetrics(body, callback){base_path}/{version}/Invoke/Cortex.Orion.Cman.ContainerEnvironmentVariable/Core.GetSupportedMetrics?{query}Yes
postInvokeCortexOrionCmanContainerEnvironmentVariableCoreInventoryNow(body, callback){base_path}/{version}/Invoke/Cortex.Orion.Cman.ContainerEnvironmentVariable/Core.InventoryNow?{query}Yes
postInvokeCortexOrionCmanContainerEnvironmentVariableCorePollNow(body, callback){base_path}/{version}/Invoke/Cortex.Orion.Cman.ContainerEnvironmentVariable/Core.PollNow?{query}Yes
postInvokeCortexOrionCmanContainerEnvironmentVariableCoreSetPolling(body, callback){base_path}/{version}/Invoke/Cortex.Orion.Cman.ContainerEnvironmentVariable/Core.SetPolling?{query}Yes
postInvokeCortexOrionCmanContainerEnvironmentVariableCoreStartRealTimePolling(body, callback){base_path}/{version}/Invoke/Cortex.Orion.Cman.ContainerEnvironmentVariable/Core.StartRealTimePolling?{query}Yes
postInvokeCortexOrionCmanContainerEnvironmentVariableCoreStopRealTimePolling(body, callback){base_path}/{version}/Invoke/Cortex.Orion.Cman.ContainerEnvironmentVariable/Core.StopRealTimePolling?{query}Yes
postInvokeCortexOrionCmanContainerHostCoreAssignToEngine(body, callback){base_path}/{version}/Invoke/Cortex.Orion.Cman.ContainerHost/Core.AssignToEngine?{query}Yes
postInvokeCortexOrionCmanContainerHostCoreGetSupportedMetrics(body, callback){base_path}/{version}/Invoke/Cortex.Orion.Cman.ContainerHost/Core.GetSupportedMetrics?{query}Yes
postInvokeCortexOrionCmanContainerHostCoreInventoryNow(body, callback){base_path}/{version}/Invoke/Cortex.Orion.Cman.ContainerHost/Core.InventoryNow?{query}Yes
postInvokeCortexOrionCmanContainerHostCorePollNow(body, callback){base_path}/{version}/Invoke/Cortex.Orion.Cman.ContainerHost/Core.PollNow?{query}Yes
postInvokeCortexOrionCmanContainerHostCoreSetPolling(body, callback){base_path}/{version}/Invoke/Cortex.Orion.Cman.ContainerHost/Core.SetPolling?{query}Yes
postInvokeCortexOrionCmanContainerHostCoreStartRealTimePolling(body, callback){base_path}/{version}/Invoke/Cortex.Orion.Cman.ContainerHost/Core.StartRealTimePolling?{query}Yes
postInvokeCortexOrionCmanContainerHostCoreStopRealTimePolling(body, callback){base_path}/{version}/Invoke/Cortex.Orion.Cman.ContainerHost/Core.StopRealTimePolling?{query}Yes
postInvokeCortexOrionCmanContainerImageCoreAssignToEngine(body, callback){base_path}/{version}/Invoke/Cortex.Orion.Cman.ContainerImage/Core.AssignToEngine?{query}Yes
postInvokeCortexOrionCmanContainerImageCoreGetSupportedMetrics(body, callback){base_path}/{version}/Invoke/Cortex.Orion.Cman.ContainerImage/Core.GetSupportedMetrics?{query}Yes
postInvokeCortexOrionCmanContainerImageCoreInventoryNow(body, callback){base_path}/{version}/Invoke/Cortex.Orion.Cman.ContainerImage/Core.InventoryNow?{query}Yes
postInvokeCortexOrionCmanContainerImageCorePollNow(body, callback){base_path}/{version}/Invoke/Cortex.Orion.Cman.ContainerImage/Core.PollNow?{query}Yes
postInvokeCortexOrionCmanContainerImageCoreSetPolling(body, callback){base_path}/{version}/Invoke/Cortex.Orion.Cman.ContainerImage/Core.SetPolling?{query}Yes
postInvokeCortexOrionCmanContainerImageCoreStartRealTimePolling(body, callback){base_path}/{version}/Invoke/Cortex.Orion.Cman.ContainerImage/Core.StartRealTimePolling?{query}Yes
postInvokeCortexOrionCmanContainerImageCoreStopRealTimePolling(body, callback){base_path}/{version}/Invoke/Cortex.Orion.Cman.ContainerImage/Core.StopRealTimePolling?{query}Yes
postInvokeCortexOrionMonitoringElementCoreAssignToEngine(body, callback){base_path}/{version}/Invoke/Cortex.Orion.MonitoringElement/Core.AssignToEngine?{query}Yes
postInvokeCortexOrionMonitoringElementCoreGetSupportedMetrics(body, callback){base_path}/{version}/Invoke/Cortex.Orion.MonitoringElement/Core.GetSupportedMetrics?{query}Yes
postInvokeCortexOrionMonitoringElementCoreInventoryNow(body, callback){base_path}/{version}/Invoke/Cortex.Orion.MonitoringElement/Core.InventoryNow?{query}Yes
postInvokeCortexOrionMonitoringElementCorePollNow(body, callback){base_path}/{version}/Invoke/Cortex.Orion.MonitoringElement/Core.PollNow?{query}Yes
postInvokeCortexOrionMonitoringElementCoreSetPolling(body, callback){base_path}/{version}/Invoke/Cortex.Orion.MonitoringElement/Core.SetPolling?{query}Yes
postInvokeCortexOrionMonitoringElementCoreStartRealTimePolling(body, callback){base_path}/{version}/Invoke/Cortex.Orion.MonitoringElement/Core.StartRealTimePolling?{query}Yes
postInvokeCortexOrionMonitoringElementCoreStopRealTimePolling(body, callback){base_path}/{version}/Invoke/Cortex.Orion.MonitoringElement/Core.StopRealTimePolling?{query}Yes
postInvokeCortexOrionInterfaceCoreAddToCortex(body, callback){base_path}/{version}/Invoke/Cortex.Orion.Interface/Core.AddToCortex?{query}Yes
postInvokeCortexOrionInterfaceCoreAssignToEngine(body, callback){base_path}/{version}/Invoke/Cortex.Orion.Interface/Core.AssignToEngine?{query}Yes
postInvokeCortexOrionInterfaceCoreGetSupportedMetrics(body, callback){base_path}/{version}/Invoke/Cortex.Orion.Interface/Core.GetSupportedMetrics?{query}Yes
postInvokeCortexOrionInterfaceCoreInventoryNow(body, callback){base_path}/{version}/Invoke/Cortex.Orion.Interface/Core.InventoryNow?{query}Yes
postInvokeCortexOrionInterfaceCorePollNow(body, callback){base_path}/{version}/Invoke/Cortex.Orion.Interface/Core.PollNow?{query}Yes
postInvokeCortexOrionInterfaceCoreSetPolling(body, callback){base_path}/{version}/Invoke/Cortex.Orion.Interface/Core.SetPolling?{query}Yes
postInvokeCortexOrionInterfaceCoreStartRealTimePolling(body, callback){base_path}/{version}/Invoke/Cortex.Orion.Interface/Core.StartRealTimePolling?{query}Yes
postInvokeCortexOrionInterfaceCoreStopRealTimePolling(body, callback){base_path}/{version}/Invoke/Cortex.Orion.Interface/Core.StopRealTimePolling?{query}Yes
postInvokeCortexOrionNodeCoreAddToCortex(body, callback){base_path}/{version}/Invoke/Cortex.Orion.Node/Core.AddToCortex?{query}Yes
postInvokeCortexOrionNodeCoreAssignToEngine(body, callback){base_path}/{version}/Invoke/Cortex.Orion.Node/Core.AssignToEngine?{query}Yes
postInvokeCortexOrionNodeCoreGetSupportedMetrics(body, callback){base_path}/{version}/Invoke/Cortex.Orion.Node/Core.GetSupportedMetrics?{query}Yes
postInvokeCortexOrionNodeCoreInventoryNow(body, callback){base_path}/{version}/Invoke/Cortex.Orion.Node/Core.InventoryNow?{query}Yes
postInvokeCortexOrionNodeCorePollNow(body, callback){base_path}/{version}/Invoke/Cortex.Orion.Node/Core.PollNow?{query}Yes
postInvokeCortexOrionNodeCoreSetPolling(body, callback){base_path}/{version}/Invoke/Cortex.Orion.Node/Core.SetPolling?{query}Yes
postInvokeCortexOrionNodeCoreStartRealTimePolling(body, callback){base_path}/{version}/Invoke/Cortex.Orion.Node/Core.StartRealTimePolling?{query}Yes
postInvokeCortexOrionNodeCoreStopRealTimePolling(body, callback){base_path}/{version}/Invoke/Cortex.Orion.Node/Core.StopRealTimePolling?{query}Yes
postInvokeCortexOrionPowerControlUnitCoreAssignToEngine(body, callback){base_path}/{version}/Invoke/Cortex.Orion.PowerControlUnit/Core.AssignToEngine?{query}Yes
postInvokeCortexOrionPowerControlUnitCoreGetSupportedMetrics(body, callback){base_path}/{version}/Invoke/Cortex.Orion.PowerControlUnit/Core.GetSupportedMetrics?{query}Yes
postInvokeCortexOrionPowerControlUnitCoreInventoryNow(body, callback){base_path}/{version}/Invoke/Cortex.Orion.PowerControlUnit/Core.InventoryNow?{query}Yes
postInvokeCortexOrionPowerControlUnitCorePollNow(body, callback){base_path}/{version}/Invoke/Cortex.Orion.PowerControlUnit/Core.PollNow?{query}Yes
postInvokeCortexOrionPowerControlUnitCoreSetPolling(body, callback){base_path}/{version}/Invoke/Cortex.Orion.PowerControlUnit/Core.SetPolling?{query}Yes
postInvokeCortexOrionPowerControlUnitCoreStartRealTimePolling(body, callback){base_path}/{version}/Invoke/Cortex.Orion.PowerControlUnit/Core.StartRealTimePolling?{query}Yes
postInvokeCortexOrionPowerControlUnitCoreStopRealTimePolling(body, callback){base_path}/{version}/Invoke/Cortex.Orion.PowerControlUnit/Core.StopRealTimePolling?{query}Yes
postInvokeCortexOrionVirtualizationClusterCoreAssignToEngine(body, callback){base_path}/{version}/Invoke/Cortex.Orion.Virtualization.Cluster/Core.AssignToEngine?{query}Yes
postInvokeCortexOrionVirtualizationClusterCoreGetSupportedMetrics(body, callback){base_path}/{version}/Invoke/Cortex.Orion.Virtualization.Cluster/Core.GetSupportedMetrics?{query}Yes
postInvokeCortexOrionVirtualizationClusterCoreInventoryNow(body, callback){base_path}/{version}/Invoke/Cortex.Orion.Virtualization.Cluster/Core.InventoryNow?{query}Yes
postInvokeCortexOrionVirtualizationClusterCorePollNow(body, callback){base_path}/{version}/Invoke/Cortex.Orion.Virtualization.Cluster/Core.PollNow?{query}Yes
postInvokeCortexOrionVirtualizationClusterCoreSetPolling(body, callback){base_path}/{version}/Invoke/Cortex.Orion.Virtualization.Cluster/Core.SetPolling?{query}Yes
postInvokeCortexOrionVirtualizationClusterCoreStartRealTimePolling(body, callback){base_path}/{version}/Invoke/Cortex.Orion.Virtualization.Cluster/Core.StartRealTimePolling?{query}Yes
postInvokeCortexOrionVirtualizationClusterCoreStopRealTimePolling(body, callback){base_path}/{version}/Invoke/Cortex.Orion.Virtualization.Cluster/Core.StopRealTimePolling?{query}Yes
postInvokeCortexOrionVirtualizationDataCenterCoreAssignToEngine(body, callback){base_path}/{version}/Invoke/Cortex.Orion.Virtualization.DataCenter/Core.AssignToEngine?{query}Yes
postInvokeCortexOrionVirtualizationDataCenterCoreGetSupportedMetrics(body, callback){base_path}/{version}/Invoke/Cortex.Orion.Virtualization.DataCenter/Core.GetSupportedMetrics?{query}Yes
postInvokeCortexOrionVirtualizationDataCenterCoreInventoryNow(body, callback){base_path}/{version}/Invoke/Cortex.Orion.Virtualization.DataCenter/Core.InventoryNow?{query}Yes
postInvokeCortexOrionVirtualizationDataCenterCorePollNow(body, callback){base_path}/{version}/Invoke/Cortex.Orion.Virtualization.DataCenter/Core.PollNow?{query}Yes
postInvokeCortexOrionVirtualizationDataCenterCoreSetPolling(body, callback){base_path}/{version}/Invoke/Cortex.Orion.Virtualization.DataCenter/Core.SetPolling?{query}Yes
postInvokeCortexOrionVirtualizationDataCenterCoreStartRealTimePolling(body, callback){base_path}/{version}/Invoke/Cortex.Orion.Virtualization.DataCenter/Core.StartRealTimePolling?{query}Yes
postInvokeCortexOrionVirtualizationDataCenterCoreStopRealTimePolling(body, callback){base_path}/{version}/Invoke/Cortex.Orion.Virtualization.DataCenter/Core.StopRealTimePolling?{query}Yes
postInvokeCortexOrionVirtualizationDatastoreCoreAssignToEngine(body, callback){base_path}/{version}/Invoke/Cortex.Orion.Virtualization.Datastore/Core.AssignToEngine?{query}Yes
postInvokeCortexOrionVirtualizationDatastoreCoreGetSupportedMetrics(body, callback){base_path}/{version}/Invoke/Cortex.Orion.Virtualization.Datastore/Core.GetSupportedMetrics?{query}Yes
postInvokeCortexOrionVirtualizationDatastoreCoreInventoryNow(body, callback){base_path}/{version}/Invoke/Cortex.Orion.Virtualization.Datastore/Core.InventoryNow?{query}Yes
postInvokeCortexOrionVirtualizationDatastoreCorePollNow(body, callback){base_path}/{version}/Invoke/Cortex.Orion.Virtualization.Datastore/Core.PollNow?{query}Yes
postInvokeCortexOrionVirtualizationDatastoreCoreSetPolling(body, callback){base_path}/{version}/Invoke/Cortex.Orion.Virtualization.Datastore/Core.SetPolling?{query}Yes
postInvokeCortexOrionVirtualizationDatastoreCoreStartRealTimePolling(body, callback){base_path}/{version}/Invoke/Cortex.Orion.Virtualization.Datastore/Core.StartRealTimePolling?{query}Yes
postInvokeCortexOrionVirtualizationDatastoreCoreStopRealTimePolling(body, callback){base_path}/{version}/Invoke/Cortex.Orion.Virtualization.Datastore/Core.StopRealTimePolling?{query}Yes
postInvokeCortexOrionVirtualizationHostCoreAssignToEngine(body, callback){base_path}/{version}/Invoke/Cortex.Orion.Virtualization.Host/Core.AssignToEngine?{query}Yes
postInvokeCortexOrionVirtualizationHostCoreGetSupportedMetrics(body, callback){base_path}/{version}/Invoke/Cortex.Orion.Virtualization.Host/Core.GetSupportedMetrics?{query}Yes
postInvokeCortexOrionVirtualizationHostCoreInventoryNow(body, callback){base_path}/{version}/Invoke/Cortex.Orion.Virtualization.Host/Core.InventoryNow?{query}Yes
postInvokeCortexOrionVirtualizationHostCorePollNow(body, callback){base_path}/{version}/Invoke/Cortex.Orion.Virtualization.Host/Core.PollNow?{query}Yes
postInvokeCortexOrionVirtualizationHostCoreSetPolling(body, callback){base_path}/{version}/Invoke/Cortex.Orion.Virtualization.Host/Core.SetPolling?{query}Yes
postInvokeCortexOrionVirtualizationHostCoreStartRealTimePolling(body, callback){base_path}/{version}/Invoke/Cortex.Orion.Virtualization.Host/Core.StartRealTimePolling?{query}Yes
postInvokeCortexOrionVirtualizationHostCoreStopRealTimePolling(body, callback){base_path}/{version}/Invoke/Cortex.Orion.Virtualization.Host/Core.StopRealTimePolling?{query}Yes
postInvokeCortexOrionVirtualizationHypervisorEntityCoreAssignToEngine(body, callback){base_path}/{version}/Invoke/Cortex.Orion.Virtualization.HypervisorEntity/Core.AssignToEngine?{query}Yes
postInvokeCortexOrionVirtualizationHypervisorEntityCoreGetSupportedMetrics(body, callback){base_path}/{version}/Invoke/Cortex.Orion.Virtualization.HypervisorEntity/Core.GetSupportedMetrics?{query}Yes
postInvokeCortexOrionVirtualizationHypervisorEntityCoreInventoryNow(body, callback){base_path}/{version}/Invoke/Cortex.Orion.Virtualization.HypervisorEntity/Core.InventoryNow?{query}Yes
postInvokeCortexOrionVirtualizationHypervisorEntityCorePollNow(body, callback){base_path}/{version}/Invoke/Cortex.Orion.Virtualization.HypervisorEntity/Core.PollNow?{query}Yes
postInvokeCortexOrionVirtualizationHypervisorEntityCoreSetPolling(body, callback){base_path}/{version}/Invoke/Cortex.Orion.Virtualization.HypervisorEntity/Core.SetPolling?{query}Yes
postInvokeCortexOrionVirtualizationHypervisorEntityCoreStartRealTimePolling(body, callback){base_path}/{version}/Invoke/Cortex.Orion.Virtualization.HypervisorEntity/Core.StartRealTimePolling?{query}Yes
postInvokeCortexOrionVirtualizationHypervisorEntityCoreStopRealTimePolling(body, callback){base_path}/{version}/Invoke/Cortex.Orion.Virtualization.HypervisorEntity/Core.StopRealTimePolling?{query}Yes
postInvokeCortexOrionVirtualizationVCenterCoreAssignToEngine(body, callback){base_path}/{version}/Invoke/Cortex.Orion.Virtualization.VCenter/Core.AssignToEngine?{query}Yes
postInvokeCortexOrionVirtualizationVCenterCoreGetSupportedMetrics(body, callback){base_path}/{version}/Invoke/Cortex.Orion.Virtualization.VCenter/Core.GetSupportedMetrics?{query}Yes
postInvokeCortexOrionVirtualizationVCenterCoreInventoryNow(body, callback){base_path}/{version}/Invoke/Cortex.Orion.Virtualization.VCenter/Core.InventoryNow?{query}Yes
postInvokeCortexOrionVirtualizationVCenterCorePollNow(body, callback){base_path}/{version}/Invoke/Cortex.Orion.Virtualization.VCenter/Core.PollNow?{query}Yes
postInvokeCortexOrionVirtualizationVCenterCoreSetPolling(body, callback){base_path}/{version}/Invoke/Cortex.Orion.Virtualization.VCenter/Core.SetPolling?{query}Yes
postInvokeCortexOrionVirtualizationVCenterCoreStartRealTimePolling(body, callback){base_path}/{version}/Invoke/Cortex.Orion.Virtualization.VCenter/Core.StartRealTimePolling?{query}Yes
postInvokeCortexOrionVirtualizationVCenterCoreStopRealTimePolling(body, callback){base_path}/{version}/Invoke/Cortex.Orion.Virtualization.VCenter/Core.StopRealTimePolling?{query}Yes
postInvokeCortexOrionVirtualizationVirtualMachineCoreAssignToEngine(body, callback){base_path}/{version}/Invoke/Cortex.Orion.Virtualization.VirtualMachine/Core.AssignToEngine?{query}Yes
postInvokeCortexOrionVirtualizationVirtualMachineCoreGetSupportedMetrics(body, callback){base_path}/{version}/Invoke/Cortex.Orion.Virtualization.VirtualMachine/Core.GetSupportedMetrics?{query}Yes
postInvokeCortexOrionVirtualizationVirtualMachineCoreInventoryNow(body, callback){base_path}/{version}/Invoke/Cortex.Orion.Virtualization.VirtualMachine/Core.InventoryNow?{query}Yes
postInvokeCortexOrionVirtualizationVirtualMachineCorePollNow(body, callback){base_path}/{version}/Invoke/Cortex.Orion.Virtualization.VirtualMachine/Core.PollNow?{query}Yes
postInvokeCortexOrionVirtualizationVirtualMachineCoreSetPolling(body, callback){base_path}/{version}/Invoke/Cortex.Orion.Virtualization.VirtualMachine/Core.SetPolling?{query}Yes
postInvokeCortexOrionVirtualizationVirtualMachineCoreStartRealTimePolling(body, callback){base_path}/{version}/Invoke/Cortex.Orion.Virtualization.VirtualMachine/Core.StartRealTimePolling?{query}Yes
postInvokeCortexOrionVirtualizationVirtualMachineCoreStopRealTimePolling(body, callback){base_path}/{version}/Invoke/Cortex.Orion.Virtualization.VirtualMachine/Core.StopRealTimePolling?{query}Yes
postInvokeCortexOrionVirtualizationVirtualMachineDiskCoreAssignToEngine(body, callback){base_path}/{version}/Invoke/Cortex.Orion.Virtualization.VirtualMachineDisk/Core.AssignToEngine?{query}Yes
postInvokeCortexOrionVirtualizationVirtualMachineDiskCoreGetSupportedMetrics(body, callback){base_path}/{version}/Invoke/Cortex.Orion.Virtualization.VirtualMachineDisk/Core.GetSupportedMetrics?{query}Yes
postInvokeCortexOrionVirtualizationVirtualMachineDiskCoreInventoryNow(body, callback){base_path}/{version}/Invoke/Cortex.Orion.Virtualization.VirtualMachineDisk/Core.InventoryNow?{query}Yes
postInvokeCortexOrionVirtualizationVirtualMachineDiskCorePollNow(body, callback){base_path}/{version}/Invoke/Cortex.Orion.Virtualization.VirtualMachineDisk/Core.PollNow?{query}Yes
postInvokeCortexOrionVirtualizationVirtualMachineDiskCoreSetPolling(body, callback){base_path}/{version}/Invoke/Cortex.Orion.Virtualization.VirtualMachineDisk/Core.SetPolling?{query}Yes
postInvokeCortexOrionVirtualizationVirtualMachineDiskCoreStartRealTimePolling(body, callback){base_path}/{version}/Invoke/Cortex.Orion.Virtualization.VirtualMachineDisk/Core.StartRealTimePolling?{query}Yes
postInvokeCortexOrionVirtualizationVirtualMachineDiskCoreStopRealTimePolling(body, callback){base_path}/{version}/Invoke/Cortex.Orion.Virtualization.VirtualMachineDisk/Core.StopRealTimePolling?{query}Yes
postInvokeCortexOrionVirtualizationVSanCoreAssignToEngine(body, callback){base_path}/{version}/Invoke/Cortex.Orion.Virtualization.VSan/Core.AssignToEngine?{query}Yes
postInvokeCortexOrionVirtualizationVSanCoreGetSupportedMetrics(body, callback){base_path}/{version}/Invoke/Cortex.Orion.Virtualization.VSan/Core.GetSupportedMetrics?{query}Yes
postInvokeCortexOrionVirtualizationVSanCoreInventoryNow(body, callback){base_path}/{version}/Invoke/Cortex.Orion.Virtualization.VSan/Core.InventoryNow?{query}Yes
postInvokeCortexOrionVirtualizationVSanCorePollNow(body, callback){base_path}/{version}/Invoke/Cortex.Orion.Virtualization.VSan/Core.PollNow?{query}Yes
postInvokeCortexOrionVirtualizationVSanCoreSetPolling(body, callback){base_path}/{version}/Invoke/Cortex.Orion.Virtualization.VSan/Core.SetPolling?{query}Yes
postInvokeCortexOrionVirtualizationVSanCoreStartRealTimePolling(body, callback){base_path}/{version}/Invoke/Cortex.Orion.Virtualization.VSan/Core.StartRealTimePolling?{query}Yes
postInvokeCortexOrionVirtualizationVSanCoreStopRealTimePolling(body, callback){base_path}/{version}/Invoke/Cortex.Orion.Virtualization.VSan/Core.StopRealTimePolling?{query}Yes
postInvokeCortexOrionVolumeCoreAddToCortex(body, callback){base_path}/{version}/Invoke/Cortex.Orion.Volume/Core.AddToCortex?{query}Yes
postInvokeCortexOrionVolumeCoreAssignToEngine(body, callback){base_path}/{version}/Invoke/Cortex.Orion.Volume/Core.AssignToEngine?{query}Yes
postInvokeCortexOrionVolumeCoreGetSupportedMetrics(body, callback){base_path}/{version}/Invoke/Cortex.Orion.Volume/Core.GetSupportedMetrics?{query}Yes
postInvokeCortexOrionVolumeCoreInventoryNow(body, callback){base_path}/{version}/Invoke/Cortex.Orion.Volume/Core.InventoryNow?{query}Yes
postInvokeCortexOrionVolumeCorePollNow(body, callback){base_path}/{version}/Invoke/Cortex.Orion.Volume/Core.PollNow?{query}Yes
postInvokeCortexOrionVolumeCoreSetPolling(body, callback){base_path}/{version}/Invoke/Cortex.Orion.Volume/Core.SetPolling?{query}Yes
postInvokeCortexOrionVolumeCoreStartRealTimePolling(body, callback){base_path}/{version}/Invoke/Cortex.Orion.Volume/Core.StartRealTimePolling?{query}Yes
postInvokeCortexOrionVolumeCoreStopRealTimePolling(body, callback){base_path}/{version}/Invoke/Cortex.Orion.Volume/Core.StopRealTimePolling?{query}Yes
postInvokeOrionDPADpaServerRefreshSchema(body, callback)Refresh federation schema of for particular DPA Server{base_path}/{version}/Invoke/Orion.DPA.DpaServer/RefreshSchema?{query}Yes
postInvokeOrionDPIProbesReloadProbeSettings(body, callback){base_path}/{version}/Invoke/Orion.DPI.Probes/ReloadProbeSettings?{query}Yes
postInvokeOrionDPIProbesReloadAppDefinitions(body, callback){base_path}/{version}/Invoke/Orion.DPI.Probes/ReloadAppDefinitions?{query}Yes
postInvokeOrionDPIProbesGetProbeCapabilities(body, callback){base_path}/{version}/Invoke/Orion.DPI.Probes/GetProbeCapabilities?{query}Yes
postInvokeOrionDPIProbesDeployLocalTrafficProbe(body, callback){base_path}/{version}/Invoke/Orion.DPI.Probes/DeployLocalTrafficProbe?{query}Yes
postInvokeOrionDPIProbesDeploySpanPortProbe(body, callback){base_path}/{version}/Invoke/Orion.DPI.Probes/DeploySpanPortProbe?{query}Yes
postInvokeOrionESIIncidentIntegrationSetIncidentIntegrationState(body, callback)Sets the state of incident integration respectd by Orion web UI. True is enabled, false means disabled.{base_path}/{version}/Invoke/Orion.ESI.IncidentIntegration/SetIncidentIntegrationState?{query}Yes
postInvokeOrionF5SystemDeviceTestApiPolling(body, callback){base_path}/{version}/Invoke/Orion.F5.System.Device/TestApiPolling?{query}Yes
postInvokeOrionF5SystemDeviceEnableApiPolling(body, callback){base_path}/{version}/Invoke/Orion.F5.System.Device/EnableApiPolling?{query}Yes
postInvokeOrionF5SystemDeviceDisableApiPolling(body, callback){base_path}/{version}/Invoke/Orion.F5.System.Device/DisableApiPolling?{query}Yes
postInvokeOrionF5LTMServerLinkNode(body, callback){base_path}/{version}/Invoke/Orion.F5.LTM.Server/LinkNode?{query}Yes
postInvokeOrionF5LTMServerUnlinkNode(body, callback){base_path}/{version}/Invoke/Orion.F5.LTM.Server/UnlinkNode?{query}Yes
postInvokeOrionHardwareHealthHardwareInfoBaseEnableHardwareHealth(body, callback){base_path}/{version}/Invoke/Orion.HardwareHealth.HardwareInfoBase/EnableHardwareHealth?{query}Yes
postInvokeOrionHardwareHealthHardwareInfoBaseDisableHardwareHealth(body, callback){base_path}/{version}/Invoke/Orion.HardwareHealth.HardwareInfoBase/DisableHardwareHealth?{query}Yes
postInvokeOrionHardwareHealthHardwareInfoBaseDeleteHardwareHealth(body, callback){base_path}/{version}/Invoke/Orion.HardwareHealth.HardwareInfoBase/DeleteHardwareHealth?{query}Yes
postInvokeOrionHardwareHealthHardwareInfoBaseIsHardwareHealthEnabled(body, callback){base_path}/{version}/Invoke/Orion.HardwareHealth.HardwareInfoBase/IsHardwareHealthEnabled?{query}Yes
postInvokeOrionHardwareHealthHardwareItemBaseEnableSensors(body, callback){base_path}/{version}/Invoke/Orion.HardwareHealth.HardwareItemBase/EnableSensors?{query}Yes
postInvokeOrionHardwareHealthHardwareItemBaseDisableSensors(body, callback){base_path}/{version}/Invoke/Orion.HardwareHealth.HardwareItemBase/DisableSensors?{query}Yes
postInvokeOrionHardwareHealthHardwareItemThresholdSetThreshold(body, callback){base_path}/{version}/Invoke/Orion.HardwareHealth.HardwareItemThreshold/SetThreshold?{query}Yes
postInvokeOrionHardwareHealthHardwareItemThresholdClearThresholds(body, callback){base_path}/{version}/Invoke/Orion.HardwareHealth.HardwareItemThreshold/ClearThresholds?{query}Yes
postInvokeOrionHAPoolsCreatePool(body, callback)Creates pool based on provided members and resource parameters{base_path}/{version}/Invoke/Orion.HA.Pools/CreatePool?{query}Yes
postInvokeOrionHAPoolsEditPool(body, callback)Updates pool with a given poolId{base_path}/{version}/Invoke/Orion.HA.Pools/EditPool?{query}Yes
postInvokeOrionHAPoolsValidateCreatePool(body, callback)Validates pool (without creating it) based on provided members and resource parameters{base_path}/{version}/Invoke/Orion.HA.Pools/ValidateCreatePool?{query}Yes
postInvokeOrionHAPoolsValidateEditPool(body, callback)Validates pool with given poolId and resource parameters (without actual update){base_path}/{version}/Invoke/Orion.HA.Pools/ValidateEditPool?{query}Yes
postInvokeOrionHAPoolsEnablePool(body, callback)Enables pool with a given poolId{base_path}/{version}/Invoke/Orion.HA.Pools/EnablePool?{query}Yes
postInvokeOrionHAPoolsDisablePool(body, callback)Disables pool with a given poolId{base_path}/{version}/Invoke/Orion.HA.Pools/DisablePool?{query}Yes
postInvokeOrionHAPoolsDeletePool(body, callback)Delete pool with given poolId.{base_path}/{version}/Invoke/Orion.HA.Pools/DeletePool?{query}Yes
postInvokeOrionHAPoolsSwitchover(body, callback)Manual failover on a given pool.{base_path}/{version}/Invoke/Orion.HA.Pools/Switchover?{query}Yes
postInvokeOrionHAPoolsDeleteStaleEngine(body, callback)Deletes OrionServer and related pool memeber with a given hostName.{base_path}/{version}/Invoke/Orion.HA.Pools/DeleteStaleEngine?{query}Yes
postInvokeOrionNPMInterfacesSetPowerLevel(body, callback){base_path}/{version}/Invoke/Orion.NPM.Interfaces/SetPowerLevel?{query}Yes
postInvokeOrionNPMInterfacesUnmanage(body, callback){base_path}/{version}/Invoke/Orion.NPM.Interfaces/Unmanage?{query}Yes
postInvokeOrionNPMInterfacesRemanage(body, callback){base_path}/{version}/Invoke/Orion.NPM.Interfaces/Remanage?{query}Yes
postInvokeOrionNPMInterfacesDiscoverInterfacesOnNode(body, callback){base_path}/{version}/Invoke/Orion.NPM.Interfaces/DiscoverInterfacesOnNode?{query}Yes
postInvokeOrionNPMInterfacesAddInterfacesOnNode(body, callback){base_path}/{version}/Invoke/Orion.NPM.Interfaces/AddInterfacesOnNode?{query}Yes
postInvokeOrionNPMInterfacesCreateInterfacesPluginConfiguration(body, callback){base_path}/{version}/Invoke/Orion.NPM.Interfaces/CreateInterfacesPluginConfiguration?{query}Yes
postInvokeOrionNPMInterfacesCustomPropertiesCreateCustomProperty(body, callback){base_path}/{version}/Invoke/Orion.NPM.InterfacesCustomProperties/CreateCustomProperty?{query}Yes
postInvokeOrionNPMInterfacesCustomPropertiesCreateCustomPropertyWithValues(body, callback){base_path}/{version}/Invoke/Orion.NPM.InterfacesCustomProperties/CreateCustomPropertyWithValues?{query}Yes
postInvokeOrionNPMInterfacesCustomPropertiesModifyCustomProperty(body, callback){base_path}/{version}/Invoke/Orion.NPM.InterfacesCustomProperties/ModifyCustomProperty?{query}Yes
postInvokeOrionNPMInterfacesCustomPropertiesDeleteCustomProperty(body, callback){base_path}/{version}/Invoke/Orion.NPM.InterfacesCustomProperties/DeleteCustomProperty?{query}Yes
postInvokeIPAMSubnetManagementChangeIpStatus(body, callback){base_path}/{version}/Invoke/IPAM.SubnetManagement/ChangeIpStatus?{query}Yes
postInvokeIPAMSubnetManagementChangeIpStatusForGroup(body, callback){base_path}/{version}/Invoke/IPAM.SubnetManagement/ChangeIpStatusForGroup?{query}Yes
postInvokeIPAMSubnetManagementGetFirstAvailableIp(body, callback){base_path}/{version}/Invoke/IPAM.SubnetManagement/GetFirstAvailableIp?{query}Yes
postInvokeIPAMSubnetManagementGetFirstAvailableIpForGroup(body, callback){base_path}/{version}/Invoke/IPAM.SubnetManagement/GetFirstAvailableIpForGroup?{query}Yes
postInvokeIPAMSubnetManagementStartIpReservation(body, callback){base_path}/{version}/Invoke/IPAM.SubnetManagement/StartIpReservation?{query}Yes
postInvokeIPAMSubnetManagementStartIpReservationForGroup(body, callback){base_path}/{version}/Invoke/IPAM.SubnetManagement/StartIpReservationForGroup?{query}Yes
postInvokeIPAMSubnetManagementCancelIpReservation(body, callback){base_path}/{version}/Invoke/IPAM.SubnetManagement/CancelIpReservation?{query}Yes
postInvokeIPAMSubnetManagementCancelIpReservationForGroup(body, callback){base_path}/{version}/Invoke/IPAM.SubnetManagement/CancelIpReservationForGroup?{query}Yes
postInvokeIPAMSubnetManagementFinishIpReservation(body, callback){base_path}/{version}/Invoke/IPAM.SubnetManagement/FinishIpReservation?{query}Yes
postInvokeIPAMSubnetManagementFinishIpReservationForGroup(body, callback){base_path}/{version}/Invoke/IPAM.SubnetManagement/FinishIpReservationForGroup?{query}Yes
postInvokeIPAMSubnetManagementCreateSubnet(body, callback){base_path}/{version}/Invoke/IPAM.SubnetManagement/CreateSubnet?{query}Yes
postInvokeIPAMSubnetManagementCreateSubnetForGroup(body, callback){base_path}/{version}/Invoke/IPAM.SubnetManagement/CreateSubnetForGroup?{query}Yes
postInvokeIPAMSubnetManagementCreateIPv6Subnet(body, callback){base_path}/{version}/Invoke/IPAM.SubnetManagement/CreateIPv6Subnet?{query}Yes
postInvokeIPAMSubnetManagementCreateIPv6SubnetForGroup(body, callback){base_path}/{version}/Invoke/IPAM.SubnetManagement/CreateIPv6SubnetForGroup?{query}Yes
postInvokeIPAMSubnetManagementChangeDisableAutoScanning(body, callback){base_path}/{version}/Invoke/IPAM.SubnetManagement/ChangeDisableAutoScanning?{query}Yes
postInvokeIPAMDhcpDnsManagementCreateIpReservation(body, callback){base_path}/{version}/Invoke/IPAM.DhcpDnsManagement/CreateIpReservation?{query}Yes
postInvokeIPAMDhcpDnsManagementRemoveIpReservation(body, callback){base_path}/{version}/Invoke/IPAM.DhcpDnsManagement/RemoveIpReservation?{query}Yes
postInvokeIPAMDhcpDnsManagementGetAandPTRrecordsForDnsZone(body, callback){base_path}/{version}/Invoke/IPAM.DhcpDnsManagement/GetAandPTRrecordsForDnsZone?{query}Yes
postInvokeIPAMIPAddressManagementAddDnsARecord(body, callback){base_path}/{version}/Invoke/IPAM.IPAddressManagement/AddDnsARecord?{query}Yes
postInvokeIPAMIPAddressManagementChangeDnsARecord(body, callback){base_path}/{version}/Invoke/IPAM.IPAddressManagement/ChangeDnsARecord?{query}Yes
postInvokeIPAMIPAddressManagementRemoveDnsARecord(body, callback){base_path}/{version}/Invoke/IPAM.IPAddressManagement/RemoveDnsARecord?{query}Yes
postInvokeIPAMIPAddressManagementAddDnsAaaaRecord(body, callback){base_path}/{version}/Invoke/IPAM.IPAddressManagement/AddDnsAaaaRecord?{query}Yes
postInvokeIPAMIPAddressManagementChangeDnsAaaaRecord(body, callback){base_path}/{version}/Invoke/IPAM.IPAddressManagement/ChangeDnsAaaaRecord?{query}Yes
postInvokeIPAMIPAddressManagementRemoveDnsAaaaRecord(body, callback){base_path}/{version}/Invoke/IPAM.IPAddressManagement/RemoveDnsAaaaRecord?{query}Yes
postInvokeIPAMIPAddressManagementAddDnsARecordWithPtr(body, callback){base_path}/{version}/Invoke/IPAM.IPAddressManagement/AddDnsARecordWithPtr?{query}Yes
postInvokeIPAMIPAddressManagementAddPtrToDnsARecord(body, callback){base_path}/{version}/Invoke/IPAM.IPAddressManagement/AddPtrToDnsARecord?{query}Yes
postInvokeIPAMIPAddressManagementAddPtrRecord(body, callback){base_path}/{version}/Invoke/IPAM.IPAddressManagement/AddPtrRecord?{query}Yes
postInvokeIPAMIPAddressManagementRemovePtrRecord(body, callback){base_path}/{version}/Invoke/IPAM.IPAddressManagement/RemovePtrRecord?{query}Yes
postInvokeIPAMAttrDefineAddCustomProperty(body, callback){base_path}/{version}/Invoke/IPAM.AttrDefine/AddCustomProperty?{query}Yes
postInvokeIPAMAttrDefineUpdateCustomProperty(body, callback){base_path}/{version}/Invoke/IPAM.AttrDefine/UpdateCustomProperty?{query}Yes
postInvokeIPAMAttrDefineDeleteCustomProperty(body, callback){base_path}/{version}/Invoke/IPAM.AttrDefine/DeleteCustomProperty?{query}Yes
postInvokeIPAMGroupsCustomPropertiesCreateCustomProperty(body, callback){base_path}/{version}/Invoke/IPAM.GroupsCustomProperties/CreateCustomProperty?{query}Yes
postInvokeIPAMGroupsCustomPropertiesCreateCustomPropertyWithValues(body, callback){base_path}/{version}/Invoke/IPAM.GroupsCustomProperties/CreateCustomPropertyWithValues?{query}Yes
postInvokeIPAMGroupsCustomPropertiesModifyCustomProperty(body, callback){base_path}/{version}/Invoke/IPAM.GroupsCustomProperties/ModifyCustomProperty?{query}Yes
postInvokeIPAMGroupsCustomPropertiesDeleteCustomProperty(body, callback){base_path}/{version}/Invoke/IPAM.GroupsCustomProperties/DeleteCustomProperty?{query}Yes
postInvokeIPAMNodesCustomPropertiesCreateCustomProperty(body, callback){base_path}/{version}/Invoke/IPAM.NodesCustomProperties/CreateCustomProperty?{query}Yes
postInvokeIPAMNodesCustomPropertiesCreateCustomPropertyWithValues(body, callback){base_path}/{version}/Invoke/IPAM.NodesCustomProperties/CreateCustomPropertyWithValues?{query}Yes
postInvokeIPAMNodesCustomPropertiesModifyCustomProperty(body, callback){base_path}/{version}/Invoke/IPAM.NodesCustomProperties/ModifyCustomProperty?{query}Yes
postInvokeIPAMNodesCustomPropertiesDeleteCustomProperty(body, callback){base_path}/{version}/Invoke/IPAM.NodesCustomProperties/DeleteCustomProperty?{query}Yes
postInvokeOrionLicensingLicensesActivateOnline(body, callback){base_path}/{version}/Invoke/Orion.Licensing.Licenses/ActivateOnline?{query}Yes
postInvokeOrionLicensingLicensesActivateOffline(body, callback){base_path}/{version}/Invoke/Orion.Licensing.Licenses/ActivateOffline?{query}Yes
postInvokeOrionLicensingLicensesDeactivate(body, callback){base_path}/{version}/Invoke/Orion.Licensing.Licenses/Deactivate?{query}Yes
postInvokeOrionLicensingLicensesReAssignExactlyTo(body, callback){base_path}/{version}/Invoke/Orion.Licensing.Licenses/ReAssignExactlyTo?{query}Yes
postInvokeOrionLicensingLicensesUnAssignFromAllServers(body, callback){base_path}/{version}/Invoke/Orion.Licensing.Licenses/UnAssignFromAllServers?{query}Yes
postInvokeOrionLicensingLicensesFindValidAssignments(body, callback){base_path}/{version}/Invoke/Orion.Licensing.Licenses/FindValidAssignments?{query}Yes
postInvokeOrionLicensingLicensesGetEvaluationState(body, callback){base_path}/{version}/Invoke/Orion.Licensing.Licenses/GetEvaluationState?{query}Yes
postInvokeOrionLicensingLicensesGetAvailableAssignments(body, callback){base_path}/{version}/Invoke/Orion.Licensing.Licenses/GetAvailableAssignments?{query}Yes
postInvokeOrionNetflowSourceSetManualSamplingRate(body, callback){base_path}/{version}/Invoke/Orion.Netflow.Source/SetManualSamplingRate?{query}Yes
postInvokeOrionNetflowSourceSetAutoDetectedSamplingRate(body, callback){base_path}/{version}/Invoke/Orion.Netflow.Source/SetAutoDetectedSamplingRate?{query}Yes
postInvokeOrionOLMLogEntryUidMaxForDate(body, callback){base_path}/{version}/Invoke/Orion.OLM.LogEntry/UidMaxForDate?{query}Yes
postInvokeOrionOLMLogEntryUidMinForDate(body, callback){base_path}/{version}/Invoke/Orion.OLM.LogEntry/UidMinForDate?{query}Yes
postInvokeOrionOLMLogEntryUidExtractDate(body, callback){base_path}/{version}/Invoke/Orion.OLM.LogEntry/UidExtractDate?{query}Yes
postInvokeOrionAlertActiveAcknowledge(body, callback)Acknowledge active alerts, based on array of alert active ids and desired notes.{base_path}/{version}/Invoke/Orion.AlertActive/Acknowledge?{query}Yes
postInvokeOrionAlertActiveUnacknowledge(body, callback)Unacknowledge active alerts, based on array of alert active ids.{base_path}/{version}/Invoke/Orion.AlertActive/Unacknowledge?{query}Yes
postInvokeOrionAlertActiveClearAlert(body, callback)Delete active alert from database. Manual alert reset{base_path}/{version}/Invoke/Orion.AlertActive/ClearAlert?{query}Yes
postInvokeOrionAlertActiveAppendNote(body, callback)Appends note to Alert object.{base_path}/{version}/Invoke/Orion.AlertActive/AppendNote?{query}Yes
postInvokeOrionAlertsMigrateAllBasicAlerts(body, callback)This verb migrates all alerts created in Basic Alerts Manager to new data entities used in Alert Manager on Orion website.{base_path}/{version}/Invoke/Orion.Alerts/MigrateAllBasicAlerts?{query}Yes
postInvokeOrionAlertsMigrateBasicAlert(body, callback)This verb migrates alert created in Basic Alerts Manager to new data entities used in Alert Manager on Orion website.{base_path}/{version}/Invoke/Orion.Alerts/MigrateBasicAlert?{query}Yes
postInvokeOrionAlertStatusAcknowledge(body, callback)ToDo{base_path}/{version}/Invoke/Orion.AlertStatus/Acknowledge?{query}Yes
postInvokeOrionAlertStatusAcknowledgeAlert(body, callback)ToDo{base_path}/{version}/Invoke/Orion.AlertStatus/AcknowledgeAlert?{query}Yes
postInvokeOrionAlertStatusAddNote(body, callback)ToDo{base_path}/{version}/Invoke/Orion.AlertStatus/AddNote?{query}Yes
postInvokeOrionAlertConfigurationsMigrateAllAdvancedAlerts(body, callback)ToDo{base_path}/{version}/Invoke/Orion.AlertConfigurations/MigrateAllAdvancedAlerts?{query}Yes
postInvokeOrionAlertConfigurationsMigrateAdvancedAlert(body, callback)ToDo{base_path}/{version}/Invoke/Orion.AlertConfigurations/MigrateAdvancedAlert?{query}Yes
postInvokeOrionAlertConfigurationsMigrateAdvancedAlertFromXML(body, callback)ToDo{base_path}/{version}/Invoke/Orion.AlertConfigurations/MigrateAdvancedAlertFromXML?{query}Yes
postInvokeOrionAlertConfigurationsImport(body, callback)This verb imports alert into system from alert xml{base_path}/{version}/Invoke/Orion.AlertConfigurations/Import?{query}Yes
postInvokeOrionAlertConfigurationsExport(body, callback)This verb exports alert definition{base_path}/{version}/Invoke/Orion.AlertConfigurations/Export?{query}Yes
postInvokeOrionAlertConfigurationsCustomPropertiesCreateCustomProperty(body, callback)ToDo{base_path}/{version}/Invoke/Orion.AlertConfigurationsCustomProperties/CreateCustomProperty?{query}Yes
postInvokeOrionAlertConfigurationsCustomPropertiesCreateCustomPropertyWithValues(body, callback)ToDo{base_path}/{version}/Invoke/Orion.AlertConfigurationsCustomProperties/CreateCustomPropertyWithValues?{query}Yes
postInvokeOrionAlertConfigurationsCustomPropertiesModifyCustomProperty(body, callback)ToDo{base_path}/{version}/Invoke/Orion.AlertConfigurationsCustomProperties/ModifyCustomProperty?{query}Yes
postInvokeOrionAlertConfigurationsCustomPropertiesDeleteCustomProperty(body, callback)ToDo{base_path}/{version}/Invoke/Orion.AlertConfigurationsCustomProperties/DeleteCustomProperty?{query}Yes
postInvokeOrionAlertConfigurationsCustomPropertiesValidateCustomProperty(body, callback)ToDo{base_path}/{version}/Invoke/Orion.AlertConfigurationsCustomProperties/ValidateCustomProperty?{query}Yes
postInvokeOrionAlertDefinitionsRevertMigratedAlert(body, callback)Sets alert definition Reverted property to true with means that alert will be processed by alerting service v1. Also sets Enable property based on parameter.{base_path}/{version}/Invoke/Orion.AlertDefinitions/RevertMigratedAlert?{query}Yes
postInvokeOrionActionsDeleteActionsByAssignments(body, callback)ToDo{base_path}/{version}/Invoke/Orion.Actions/DeleteActionsByAssignments?{query}Yes
postInvokeOrionActionsDeleteActionsByAssignmentsAndCategory(body, callback)ToDo{base_path}/{version}/Invoke/Orion.Actions/DeleteActionsByAssignmentsAndCategory?{query}Yes
postInvokeOrionActionsSaveActionsForAssignments(body, callback)ToDo{base_path}/{version}/Invoke/Orion.Actions/SaveActionsForAssignments?{query}Yes
postInvokeOrionActionsUpdateAction(body, callback)ToDo{base_path}/{version}/Invoke/Orion.Actions/UpdateAction?{query}Yes
postInvokeOrionActionsUpdateActionsProperties(body, callback)ToDo{base_path}/{version}/Invoke/Orion.Actions/UpdateActionsProperties?{query}Yes
postInvokeOrionActionsUpdateActionsDescriptions(body, callback)This verb updates actions descriptions after updating of actions properties.{base_path}/{version}/Invoke/Orion.Actions/UpdateActionsDescriptions?{query}Yes
postInvokeOrionActionsUpdateActionsFrequencies(body, callback)This verb updates actions frequencies after multi editing of actions{base_path}/{version}/Invoke/Orion.Actions/UpdateActionsFrequencies?{query}Yes
postInvokeOrionActionsTestAlertingAction(body, callback)ToDo{base_path}/{version}/Invoke/Orion.Actions/TestAlertingAction?{query}Yes
postInvokeOrionActionsTestReportingAction(body, callback)ToDo{base_path}/{version}/Invoke/Orion.Actions/TestReportingAction?{query}Yes
postInvokeOrionAlertSuppressionSuppressAlerts(body, callback)Do not trigger any alerts for entities defined in entityUris array during the suppressFrom-suppressUntil time period.{base_path}/{version}/Invoke/Orion.AlertSuppression/SuppressAlerts?{query}Yes
postInvokeOrionAlertSuppressionResumeAlerts(body, callback)Alerts for entities defined in entityUris array will be triggered as usual.{base_path}/{version}/Invoke/Orion.AlertSuppression/ResumeAlerts?{query}Yes
postInvokeOrionAlertSuppressionGetAlertSuppressionState(body, callback)Get Alert Suppression State for provided list of entities.{base_path}/{version}/Invoke/Orion.AlertSuppression/GetAlertSuppressionState?{query}Yes
postInvokeOrionDependenciesRemoveDependencies(body, callback)Ignore dependencies. Such dependencies are ingored in Autodependency calculation.{base_path}/{version}/Invoke/Orion.Dependencies/RemoveDependencies?{query}Yes
postInvokeOrionDeletedAutoDependenciesRemoveIgnoredAutoDependencies(body, callback)Removes ignored dependencies.{base_path}/{version}/Invoke/Orion.DeletedAutoDependencies/RemoveIgnoredAutoDependencies?{query}Yes
postInvokeOrionEventsAcknowledge(body, callback)ToDo{base_path}/{version}/Invoke/Orion.Events/Acknowledge?{query}Yes
postInvokeOrionMapStudioFilesInsertFile(body, callback)ToDo{base_path}/{version}/Invoke/Orion.MapStudioFiles/InsertFile?{query}Yes
postInvokeOrionMapStudioFilesUpdateFile(body, callback)ToDo{base_path}/{version}/Invoke/Orion.MapStudioFiles/UpdateFile?{query}Yes
postInvokeOrionMapStudioFilesLockFile(body, callback)ToDo{base_path}/{version}/Invoke/Orion.MapStudioFiles/LockFile?{query}Yes
postInvokeOrionMapStudioFilesLockFileTable(body, callback)ToDo{base_path}/{version}/Invoke/Orion.MapStudioFiles/LockFileTable?{query}Yes
postInvokeOrionMapStudioFilesUnlockAllFiles(body, callback)ToDo{base_path}/{version}/Invoke/Orion.MapStudioFiles/UnlockAllFiles?{query}Yes
postInvokeOrionMapStudioFilesDeleteFile(body, callback)ToDo{base_path}/{version}/Invoke/Orion.MapStudioFiles/DeleteFile?{query}Yes
postInvokeOrionMapStudioFilesGetMapStyle(body, callback)Get map style of the map{base_path}/{version}/Invoke/Orion.MapStudioFiles/GetMapStyle?{query}Yes
postInvokeOrionNetworkAtlasGetNAVersion(body, callback)Returns version of the installed Network Atlas.{base_path}/{version}/Invoke/Orion.NetworkAtlas/GetNAVersion?{query}Yes
postInvokeOrionNodesUnmanage(body, callback)ToDo{base_path}/{version}/Invoke/Orion.Nodes/Unmanage?{query}Yes
postInvokeOrionNodesRemanage(body, callback)ToDo{base_path}/{version}/Invoke/Orion.Nodes/Remanage?{query}Yes
postInvokeOrionNodesPollNow(body, callback)It will poll node instance and update its information{base_path}/{version}/Invoke/Orion.Nodes/PollNow?{query}Yes
postInvokeOrionNodesGetCountOfElementsPerEngineForLicensing(body, callback)Returns count of used elements (per engine) for licensing{base_path}/{version}/Invoke/Orion.Nodes/GetCountOfElementsPerEngineForLicensing?{query}Yes
postInvokeOrionNodesCustomPropertiesCreateCustomProperty(body, callback)ToDo{base_path}/{version}/Invoke/Orion.NodesCustomProperties/CreateCustomProperty?{query}Yes
postInvokeOrionNodesCustomPropertiesCreateCustomPropertyWithValues(body, callback)ToDo{base_path}/{version}/Invoke/Orion.NodesCustomProperties/CreateCustomPropertyWithValues?{query}Yes
postInvokeOrionNodesCustomPropertiesModifyCustomProperty(body, callback)ToDo{base_path}/{version}/Invoke/Orion.NodesCustomProperties/ModifyCustomProperty?{query}Yes
postInvokeOrionNodesCustomPropertiesDeleteCustomProperty(body, callback)ToDo{base_path}/{version}/Invoke/Orion.NodesCustomProperties/DeleteCustomProperty?{query}Yes
postInvokeOrionNodesCustomPropertiesValidateCustomProperty(body, callback)ToDo{base_path}/{version}/Invoke/Orion.NodesCustomProperties/ValidateCustomProperty?{query}Yes
postInvokeOrionResourcesCheckResourceMigration(body, callback)This verb checks, whether it is possible to migrate classic resources (charts) to its modern version.{base_path}/{version}/Invoke/Orion.Resources/CheckResourceMigration?{query}Yes
postInvokeOrionResourcesMigrateClassicToModernResources(body, callback)This verb migrates classic resources (charts) to its modern version.{base_path}/{version}/Invoke/Orion.Resources/MigrateClassicToModernResources?{query}Yes
postInvokeOrionResourcesMigrateModernToClassicResources(body, callback)This verb reverts migration back to classic resources (charts).{base_path}/{version}/Invoke/Orion.Resources/MigrateModernToClassicResources?{query}Yes
postInvokeOrionResourcesGetModernResourceName(body, callback)Returns new apollo chart name for given classic chart name{base_path}/{version}/Invoke/Orion.Resources/GetModernResourceName?{query}Yes
postInvokeOrionVolumesCustomPropertiesCreateCustomProperty(body, callback)ToDo{base_path}/{version}/Invoke/Orion.VolumesCustomProperties/CreateCustomProperty?{query}Yes
postInvokeOrionVolumesCustomPropertiesCreateCustomPropertyWithValues(body, callback)ToDo{base_path}/{version}/Invoke/Orion.VolumesCustomProperties/CreateCustomPropertyWithValues?{query}Yes
postInvokeOrionVolumesCustomPropertiesModifyCustomProperty(body, callback)ToDo{base_path}/{version}/Invoke/Orion.VolumesCustomProperties/ModifyCustomProperty?{query}Yes
postInvokeOrionVolumesCustomPropertiesDeleteCustomProperty(body, callback)ToDo{base_path}/{version}/Invoke/Orion.VolumesCustomProperties/DeleteCustomProperty?{query}Yes
postInvokeOrionVolumesCustomPropertiesValidateCustomProperty(body, callback)ToDo{base_path}/{version}/Invoke/Orion.VolumesCustomProperties/ValidateCustomProperty?{query}Yes
postInvokeOrionEnvironmentCanInstall(body, callback)ToDo{base_path}/{version}/Invoke/Orion.Environment/CanInstall?{query}Yes
postInvokeOrionEnvironmentAuthorizeWindowsAccountForDatabase(body, callback)Adds provided user to Orion database with db_owner permissions.{base_path}/{version}/Invoke/Orion.Environment/AuthorizeWindowsAccountForDatabase?{query}Yes
postInvokeOrionEnvironmentGetConnectionString(body, callback)Returns connection string{base_path}/{version}/Invoke/Orion.Environment/GetConnectionString?{query}Yes
postInvokeOrionEnvironmentGetSqlServerIpAddresses(body, callback)Returns array of IP addresses of current SQL server{base_path}/{version}/Invoke/Orion.Environment/GetSqlServerIpAddresses?{query}Yes
postInvokeOrionEnvironmentGetDatabaseAccessCredential(body, callback)Returns credential used to access Orion database when system is configured to use Windows authentication{base_path}/{version}/Invoke/Orion.Environment/GetDatabaseAccessCredential?{query}Yes
postInvokeOrionEnvironmentGetOrionServerCertificate(body, callback)Returns Orion certificate{base_path}/{version}/Invoke/Orion.Environment/GetOrionServerCertificate?{query}Yes
postInvokeOrionFrequenciesSaveReportFrequencies(body, callback)ToDo{base_path}/{version}/Invoke/Orion.Frequencies/SaveReportFrequencies?{query}Yes
postInvokeOrionFrequenciesSaveTimePeriodFrequencies(body, callback)ToDo{base_path}/{version}/Invoke/Orion.Frequencies/SaveTimePeriodFrequencies?{query}Yes
postInvokeOrionFrequenciesDeleteFrequencies(body, callback)ToDo{base_path}/{version}/Invoke/Orion.Frequencies/DeleteFrequencies?{query}Yes
postInvokeOrionTechnologyPollingAssignmentsEnableAssignments(body, callback)ToDo{base_path}/{version}/Invoke/Orion.TechnologyPollingAssignments/EnableAssignments?{query}Yes
postInvokeOrionTechnologyPollingAssignmentsDisableAssignments(body, callback)ToDo{base_path}/{version}/Invoke/Orion.TechnologyPollingAssignments/DisableAssignments?{query}Yes
postInvokeOrionTechnologyPollingAssignmentsEnableAssignmentsOnNetObjects(body, callback)ToDo{base_path}/{version}/Invoke/Orion.TechnologyPollingAssignments/EnableAssignmentsOnNetObjects?{query}Yes
postInvokeOrionTechnologyPollingAssignmentsDisableAssignmentsOnNetObjects(body, callback)ToDo{base_path}/{version}/Invoke/Orion.TechnologyPollingAssignments/DisableAssignmentsOnNetObjects?{query}Yes
postInvokeOrionNotificationItemGroupedAcknowledgeAll(body, callback)Sets notification item acknowledgement timestamp and user for all items.{base_path}/{version}/Invoke/Orion.NotificationItemGrouped/AcknowledgeAll?{query}Yes
postInvokeOrionNotificationItemGroupedAcknowledgeById(body, callback)Sets notification item acknowledgement timestamp and user for specific item.{base_path}/{version}/Invoke/Orion.NotificationItemGrouped/AcknowledgeById?{query}Yes
postInvokeOrionNotificationItemGroupedUnAcknowledgeById(body, callback)Resets notification item acknowledgement for specific item.{base_path}/{version}/Invoke/Orion.NotificationItemGrouped/UnAcknowledgeById?{query}Yes
postInvokeOrionNotificationItemGroupedAcknowledgeByType(body, callback)Sets notification item acknowledgement timestamp and user for items of a specific type.{base_path}/{version}/Invoke/Orion.NotificationItemGrouped/AcknowledgeByType?{query}Yes
postInvokeOrionNotificationItemGroupedUnAcknowledgeByType(body, callback)Resets notification item acknowledgement for items of a specific type.{base_path}/{version}/Invoke/Orion.NotificationItemGrouped/UnAcknowledgeByType?{query}Yes
postInvokeOrionWebMenuClearCache(body, callback)Clears menu item cache.{base_path}/{version}/Invoke/Orion.Web.Menu/ClearCache?{query}Yes
postInvokeOrionRemotingRemoteExecutionPackageExecute(body, callback){base_path}/{version}/Invoke/Orion.Remoting.RemoteExecutionPackage/Execute?{query}Yes
postInvokeOrionSCMServerConfigurationPollNow(body, callback)On target nodes triggers refreshing of watchers and executes jobs for polling SWIS elements.{base_path}/{version}/Invoke/Orion.SCM.ServerConfiguration/PollNow?{query}Yes
postInvokeOrionSCMBaselineSetBaseline(body, callback)Create or update baseline and snapshot all related data so that they are not touched by maintenance processes.{base_path}/{version}/Invoke/Orion.SCM.Baseline/SetBaseline?{query}Yes
postInvokeOrionSEUMRecordingsLoad(body, callback){base_path}/{version}/Invoke/Orion.SEUM.Recordings/Load?{query}Yes
postInvokeOrionSEUMRecordingsExists(body, callback){base_path}/{version}/Invoke/Orion.SEUM.Recordings/Exists?{query}Yes
postInvokeOrionSEUMRecordingsSave(body, callback){base_path}/{version}/Invoke/Orion.SEUM.Recordings/Save?{query}Yes
postInvokeOrionSEUMRecordingCustomPropertiesCreateCustomProperty(body, callback){base_path}/{version}/Invoke/Orion.SEUM.RecordingCustomProperties/CreateCustomProperty?{query}Yes
postInvokeOrionSEUMRecordingCustomPropertiesCreateCustomPropertyWithValues(body, callback){base_path}/{version}/Invoke/Orion.SEUM.RecordingCustomProperties/CreateCustomPropertyWithValues?{query}Yes
postInvokeOrionSEUMRecordingCustomPropertiesModifyCustomProperty(body, callback){base_path}/{version}/Invoke/Orion.SEUM.RecordingCustomProperties/ModifyCustomProperty?{query}Yes
postInvokeOrionSEUMRecordingCustomPropertiesDeleteCustomProperty(body, callback){base_path}/{version}/Invoke/Orion.SEUM.RecordingCustomProperties/DeleteCustomProperty?{query}Yes
postInvokeOrionSEUMTransactionsUnmanage(body, callback){base_path}/{version}/Invoke/Orion.SEUM.Transactions/Unmanage?{query}Yes
postInvokeOrionSEUMTransactionsRemanage(body, callback){base_path}/{version}/Invoke/Orion.SEUM.Transactions/Remanage?{query}Yes
postInvokeOrionSEUMTransactionCustomPropertiesCreateCustomProperty(body, callback){base_path}/{version}/Invoke/Orion.SEUM.TransactionCustomProperties/CreateCustomProperty?{query}Yes
postInvokeOrionSEUMTransactionCustomPropertiesCreateCustomPropertyWithValues(body, callback){base_path}/{version}/Invoke/Orion.SEUM.TransactionCustomProperties/CreateCustomPropertyWithValues?{query}Yes
postInvokeOrionSEUMTransactionCustomPropertiesModifyCustomProperty(body, callback){base_path}/{version}/Invoke/Orion.SEUM.TransactionCustomProperties/ModifyCustomProperty?{query}Yes
postInvokeOrionSEUMTransactionCustomPropertiesDeleteCustomProperty(body, callback){base_path}/{version}/Invoke/Orion.SEUM.TransactionCustomProperties/DeleteCustomProperty?{query}Yes
postInvokeOrionSEUMSettingsGetRecorderCompatibility(body, callback){base_path}/{version}/Invoke/Orion.SEUM.Settings/GetRecorderCompatibility?{query}Yes
postInvokeOrionSEUMSettingsGetRecorderInstaller(body, callback){base_path}/{version}/Invoke/Orion.SEUM.Settings/GetRecorderInstaller?{query}Yes
postInvokeOrionSRMSTMIntegrationRefreshLicense(body, callback)Triggers refresh license (called by STM){base_path}/{version}/Invoke/Orion.SRM.STMIntegration/RefreshLicense?{query}Yes
postInvokeOrionSRMSTMIntegrationUpdateLicense(body, callback)Triggers update license (called by STM){base_path}/{version}/Invoke/Orion.SRM.STMIntegration/UpdateLicense?{query}Yes
postInvokeOrionSRMSTMIntegrationRemoveSTMIntegration(body, callback)Disables STM integration and renews the latest known license before integration (called by STM){base_path}/{version}/Invoke/Orion.SRM.STMIntegration/RemoveSTMIntegration?{query}Yes
postInvokeOrionSRMStorageArraysGetLicensedArrays(body, callback)Will return list of Storage Array IDs which are licensed.{base_path}/{version}/Invoke/Orion.SRM.StorageArrays/GetLicensedArrays?{query}Yes
postInvokeOrionSRMStorageArraysAddSmisCredentials(body, callback)Adds smis credentials. Returns credentials ID{base_path}/{version}/Invoke/Orion.SRM.StorageArrays/AddSmisCredentials?{query}Yes
postInvokeOrionSRMStorageArraysAddExternalProvider(body, callback)Adds external provider. Receives credential ID, returns provider ID.{base_path}/{version}/Invoke/Orion.SRM.StorageArrays/AddExternalProvider?{query}Yes
postInvokeOrionSRMStorageArraysAddAllArrays(body, callback)Adds all arrays within given provider. Returns true if success{base_path}/{version}/Invoke/Orion.SRM.StorageArrays/AddAllArrays?{query}Yes
postInvokeOrionSRMPhysicalDisksGetCountOfElementsPerEngineForLicensing(body, callback)ToDo{base_path}/{version}/Invoke/Orion.SRM.PhysicalDisks/GetCountOfElementsPerEngineForLicensing?{query}Yes
postInvokeOrionSRMVServersCustomPropertiesCreateCustomProperty(body, callback)ToDo{base_path}/{version}/Invoke/Orion.SRM.VServersCustomProperties/CreateCustomProperty?{query}Yes
postInvokeOrionSRMVServersCustomPropertiesCreateCustomPropertyWithValues(body, callback)ToDo{base_path}/{version}/Invoke/Orion.SRM.VServersCustomProperties/CreateCustomPropertyWithValues?{query}Yes
postInvokeOrionSRMVServersCustomPropertiesModifyCustomProperty(body, callback)ToDo{base_path}/{version}/Invoke/Orion.SRM.VServersCustomProperties/ModifyCustomProperty?{query}Yes
postInvokeOrionSRMVServersCustomPropertiesDeleteCustomProperty(body, callback)ToDo{base_path}/{version}/Invoke/Orion.SRM.VServersCustomProperties/DeleteCustomProperty?{query}Yes
postInvokeOrionSRMVServersCustomPropertiesValidateCustomProperty(body, callback)ToDo{base_path}/{version}/Invoke/Orion.SRM.VServersCustomProperties/ValidateCustomProperty?{query}Yes
postInvokeOrionSRMLUNCustomPropertiesCreateCustomProperty(body, callback)ToDo{base_path}/{version}/Invoke/Orion.SRM.LUNCustomProperties/CreateCustomProperty?{query}Yes
postInvokeOrionSRMLUNCustomPropertiesCreateCustomPropertyWithValues(body, callback)ToDo{base_path}/{version}/Invoke/Orion.SRM.LUNCustomProperties/CreateCustomPropertyWithValues?{query}Yes
postInvokeOrionSRMLUNCustomPropertiesModifyCustomProperty(body, callback)ToDo{base_path}/{version}/Invoke/Orion.SRM.LUNCustomProperties/ModifyCustomProperty?{query}Yes
postInvokeOrionSRMLUNCustomPropertiesDeleteCustomProperty(body, callback)ToDo{base_path}/{version}/Invoke/Orion.SRM.LUNCustomProperties/DeleteCustomProperty?{query}Yes
postInvokeOrionSRMLUNCustomPropertiesValidateCustomProperty(body, callback)ToDo{base_path}/{version}/Invoke/Orion.SRM.LUNCustomProperties/ValidateCustomProperty?{query}Yes
postInvokeOrionSRMVolumeCustomPropertiesCreateCustomProperty(body, callback)ToDo{base_path}/{version}/Invoke/Orion.SRM.VolumeCustomProperties/CreateCustomProperty?{query}Yes
postInvokeOrionSRMVolumeCustomPropertiesCreateCustomPropertyWithValues(body, callback)ToDo{base_path}/{version}/Invoke/Orion.SRM.VolumeCustomProperties/CreateCustomPropertyWithValues?{query}Yes
postInvokeOrionSRMVolumeCustomPropertiesModifyCustomProperty(body, callback)ToDo{base_path}/{version}/Invoke/Orion.SRM.VolumeCustomProperties/ModifyCustomProperty?{query}Yes
postInvokeOrionSRMVolumeCustomPropertiesDeleteCustomProperty(body, callback)ToDo{base_path}/{version}/Invoke/Orion.SRM.VolumeCustomProperties/DeleteCustomProperty?{query}Yes
postInvokeOrionSRMVolumeCustomPropertiesValidateCustomProperty(body, callback)ToDo{base_path}/{version}/Invoke/Orion.SRM.VolumeCustomProperties/ValidateCustomProperty?{query}Yes
postInvokeOrionSRMFileShareCustomPropertiesCreateCustomProperty(body, callback)ToDo{base_path}/{version}/Invoke/Orion.SRM.FileShareCustomProperties/CreateCustomProperty?{query}Yes
postInvokeOrionSRMFileShareCustomPropertiesCreateCustomPropertyWithValues(body, callback)ToDo{base_path}/{version}/Invoke/Orion.SRM.FileShareCustomProperties/CreateCustomPropertyWithValues?{query}Yes
postInvokeOrionSRMFileShareCustomPropertiesModifyCustomProperty(body, callback)ToDo{base_path}/{version}/Invoke/Orion.SRM.FileShareCustomProperties/ModifyCustomProperty?{query}Yes
postInvokeOrionSRMFileShareCustomPropertiesDeleteCustomProperty(body, callback)ToDo{base_path}/{version}/Invoke/Orion.SRM.FileShareCustomProperties/DeleteCustomProperty?{query}Yes
postInvokeOrionSRMFileShareCustomPropertiesValidateCustomProperty(body, callback)ToDo{base_path}/{version}/Invoke/Orion.SRM.FileShareCustomProperties/ValidateCustomProperty?{query}Yes
postInvokeOrionSRMStorageArrayCustomPropertiesCreateCustomProperty(body, callback)ToDo{base_path}/{version}/Invoke/Orion.SRM.StorageArrayCustomProperties/CreateCustomProperty?{query}Yes
postInvokeOrionSRMStorageArrayCustomPropertiesCreateCustomPropertyWithValues(body, callback)ToDo{base_path}/{version}/Invoke/Orion.SRM.StorageArrayCustomProperties/CreateCustomPropertyWithValues?{query}Yes
postInvokeOrionSRMStorageArrayCustomPropertiesModifyCustomProperty(body, callback)ToDo{base_path}/{version}/Invoke/Orion.SRM.StorageArrayCustomProperties/ModifyCustomProperty?{query}Yes
postInvokeOrionSRMStorageArrayCustomPropertiesDeleteCustomProperty(body, callback)ToDo{base_path}/{version}/Invoke/Orion.SRM.StorageArrayCustomProperties/DeleteCustomProperty?{query}Yes
postInvokeOrionSRMStorageArrayCustomPropertiesValidateCustomProperty(body, callback)ToDo{base_path}/{version}/Invoke/Orion.SRM.StorageArrayCustomProperties/ValidateCustomProperty?{query}Yes
postInvokeOrionSRMProviderCustomPropertiesCreateCustomProperty(body, callback)ToDo{base_path}/{version}/Invoke/Orion.SRM.ProviderCustomProperties/CreateCustomProperty?{query}Yes
postInvokeOrionSRMProviderCustomPropertiesCreateCustomPropertyWithValues(body, callback)ToDo{base_path}/{version}/Invoke/Orion.SRM.ProviderCustomProperties/CreateCustomPropertyWithValues?{query}Yes
postInvokeOrionSRMProviderCustomPropertiesModifyCustomProperty(body, callback)ToDo{base_path}/{version}/Invoke/Orion.SRM.ProviderCustomProperties/ModifyCustomProperty?{query}Yes
postInvokeOrionSRMProviderCustomPropertiesDeleteCustomProperty(body, callback)ToDo{base_path}/{version}/Invoke/Orion.SRM.ProviderCustomProperties/DeleteCustomProperty?{query}Yes
postInvokeOrionSRMProviderCustomPropertiesValidateCustomProperty(body, callback)ToDo{base_path}/{version}/Invoke/Orion.SRM.ProviderCustomProperties/ValidateCustomProperty?{query}Yes
postInvokeOrionSRMPoolCustomPropertiesCreateCustomProperty(body, callback)ToDo{base_path}/{version}/Invoke/Orion.SRM.PoolCustomProperties/CreateCustomProperty?{query}Yes
postInvokeOrionSRMPoolCustomPropertiesCreateCustomPropertyWithValues(body, callback)ToDo{base_path}/{version}/Invoke/Orion.SRM.PoolCustomProperties/CreateCustomPropertyWithValues?{query}Yes
postInvokeOrionSRMPoolCustomPropertiesModifyCustomProperty(body, callback)ToDo{base_path}/{version}/Invoke/Orion.SRM.PoolCustomProperties/ModifyCustomProperty?{query}Yes
postInvokeOrionSRMPoolCustomPropertiesDeleteCustomProperty(body, callback)ToDo{base_path}/{version}/Invoke/Orion.SRM.PoolCustomProperties/DeleteCustomProperty?{query}Yes
postInvokeOrionSRMPoolCustomPropertiesValidateCustomProperty(body, callback)ToDo{base_path}/{version}/Invoke/Orion.SRM.PoolCustomProperties/ValidateCustomProperty?{query}Yes
postInvokeOrionSSOValidateUserToken(body, callback){base_path}/{version}/Invoke/Orion.SSO/ValidateUserToken?{query}Yes
postInvokeOrionSysLogAcknowledge(body, callback)ToDo{base_path}/{version}/Invoke/Orion.SysLog/Acknowledge?{query}Yes
postInvokeOrionUDTPortAdministrativeShutdown(body, callback){base_path}/{version}/Invoke/Orion.UDT.Port/AdministrativeShutdown?{query}Yes
postInvokeOrionUDTPortAdministrativeEnable(body, callback){base_path}/{version}/Invoke/Orion.UDT.Port/AdministrativeEnable?{query}Yes
postInvokeOrionCloudInstancesUnmanage(body, callback){base_path}/{version}/Invoke/Orion.Cloud.Instances/Unmanage?{query}Yes
postInvokeOrionCloudInstancesRemanage(body, callback){base_path}/{version}/Invoke/Orion.Cloud.Instances/Remanage?{query}Yes
postInvokeOrionCloudInstancesPollNow(body, callback){base_path}/{version}/Invoke/Orion.Cloud.Instances/PollNow?{query}Yes
postInvokeOrionCloudInstancesStartInstance(body, callback){base_path}/{version}/Invoke/Orion.Cloud.Instances/StartInstance?{query}Yes
postInvokeOrionCloudInstancesStopInstance(body, callback){base_path}/{version}/Invoke/Orion.Cloud.Instances/StopInstance?{query}Yes
postInvokeOrionCloudInstancesRebootInstance(body, callback){base_path}/{version}/Invoke/Orion.Cloud.Instances/RebootInstance?{query}Yes
postInvokeOrionCloudInstancesDeleteInstance(body, callback){base_path}/{version}/Invoke/Orion.Cloud.Instances/DeleteInstance?{query}Yes
postInvokeOrionCloudInstancesDeleteInstanceWithNode(body, callback){base_path}/{version}/Invoke/Orion.Cloud.Instances/DeleteInstanceWithNode?{query}Yes
postInvokeOrionCloudAwsInstancesForceStopInstance(body, callback){base_path}/{version}/Invoke/Orion.Cloud.Aws.Instances/ForceStopInstance?{query}Yes
postInvokeOrionCloudAwsInstancesTerminateInstance(body, callback){base_path}/{version}/Invoke/Orion.Cloud.Aws.Instances/TerminateInstance?{query}Yes
postInvokeOrionCloudAwsInstancesTerminateInstanceAndRemoveNode(body, callback){base_path}/{version}/Invoke/Orion.Cloud.Aws.Instances/TerminateInstanceAndRemoveNode?{query}Yes
postInvokeOrionVIMClustersCustomPropertiesCreateCustomProperty(body, callback){base_path}/{version}/Invoke/Orion.VIM.ClustersCustomProperties/CreateCustomProperty?{query}Yes
postInvokeOrionVIMClustersCustomPropertiesCreateCustomPropertyWithValues(body, callback){base_path}/{version}/Invoke/Orion.VIM.ClustersCustomProperties/CreateCustomPropertyWithValues?{query}Yes
postInvokeOrionVIMClustersCustomPropertiesModifyCustomProperty(body, callback){base_path}/{version}/Invoke/Orion.VIM.ClustersCustomProperties/ModifyCustomProperty?{query}Yes
postInvokeOrionVIMClustersCustomPropertiesDeleteCustomProperty(body, callback){base_path}/{version}/Invoke/Orion.VIM.ClustersCustomProperties/DeleteCustomProperty?{query}Yes
postInvokeOrionVIMVirtualMachinesCustomPropertiesCreateCustomProperty(body, callback){base_path}/{version}/Invoke/Orion.VIM.VirtualMachinesCustomProperties/CreateCustomProperty?{query}Yes
postInvokeOrionVIMVirtualMachinesCustomPropertiesCreateCustomPropertyWithValues(body, callback){base_path}/{version}/Invoke/Orion.VIM.VirtualMachinesCustomProperties/CreateCustomPropertyWithValues?{query}Yes
postInvokeOrionVIMVirtualMachinesCustomPropertiesModifyCustomProperty(body, callback){base_path}/{version}/Invoke/Orion.VIM.VirtualMachinesCustomProperties/ModifyCustomProperty?{query}Yes
postInvokeOrionVIMVirtualMachinesCustomPropertiesDeleteCustomProperty(body, callback){base_path}/{version}/Invoke/Orion.VIM.VirtualMachinesCustomProperties/DeleteCustomProperty?{query}Yes
postInvokeOrionVIMHostsCustomPropertiesCreateCustomProperty(body, callback){base_path}/{version}/Invoke/Orion.VIM.HostsCustomProperties/CreateCustomProperty?{query}Yes
postInvokeOrionVIMHostsCustomPropertiesCreateCustomPropertyWithValues(body, callback){base_path}/{version}/Invoke/Orion.VIM.HostsCustomProperties/CreateCustomPropertyWithValues?{query}Yes
postInvokeOrionVIMHostsCustomPropertiesModifyCustomProperty(body, callback){base_path}/{version}/Invoke/Orion.VIM.HostsCustomProperties/ModifyCustomProperty?{query}Yes
postInvokeOrionVIMHostsCustomPropertiesDeleteCustomProperty(body, callback){base_path}/{version}/Invoke/Orion.VIM.HostsCustomProperties/DeleteCustomProperty?{query}Yes
postInvokeOrionVIMDatastoresCustomPropertiesCreateCustomProperty(body, callback){base_path}/{version}/Invoke/Orion.VIM.DatastoresCustomProperties/CreateCustomProperty?{query}Yes
postInvokeOrionVIMDatastoresCustomPropertiesCreateCustomPropertyWithValues(body, callback){base_path}/{version}/Invoke/Orion.VIM.DatastoresCustomProperties/CreateCustomPropertyWithValues?{query}Yes
postInvokeOrionVIMDatastoresCustomPropertiesModifyCustomProperty(body, callback){base_path}/{version}/Invoke/Orion.VIM.DatastoresCustomProperties/ModifyCustomProperty?{query}Yes
postInvokeOrionVIMDatastoresCustomPropertiesDeleteCustomProperty(body, callback){base_path}/{version}/Invoke/Orion.VIM.DatastoresCustomProperties/DeleteCustomProperty?{query}Yes
postInvokeOrionVPNL2LTunnelSetFavorite(body, callback){base_path}/{version}/Invoke/Orion.VPN.L2LTunnel/SetFavorite?{query}Yes
postInvokeOrionVPNL2LTunnelRemoveFavorite(body, callback){base_path}/{version}/Invoke/Orion.VPN.L2LTunnel/RemoveFavorite?{query}Yes
postInvokeOrionWirelessHeatMapMapInsertMap(body, callback){base_path}/{version}/Invoke/Orion.WirelessHeatMap.Map/InsertMap?{query}Yes
postInvokeOrionWirelessHeatMapMapDeleteMap(body, callback){base_path}/{version}/Invoke/Orion.WirelessHeatMap.Map/DeleteMap?{query}Yes
postInvokeOrionWirelessHeatMapMapSetMapError(body, callback){base_path}/{version}/Invoke/Orion.WirelessHeatMap.Map/SetMapError?{query}Yes
postInvokeOrionWirelessHeatMapMapFireMapGenerationIndication(body, callback){base_path}/{version}/Invoke/Orion.WirelessHeatMap.Map/FireMapGenerationIndication?{query}Yes
postInvokeOrionWirelessHeatMapMapPollAPSignalStrengthNow(body, callback){base_path}/{version}/Invoke/Orion.WirelessHeatMap.Map/PollAPSignalStrengthNow?{query}Yes
postInvokeOrionWirelessHeatMapMapPollRPSignalStrengthNow(body, callback){base_path}/{version}/Invoke/Orion.WirelessHeatMap.Map/PollRPSignalStrengthNow?{query}Yes
postInvokeOrionWirelessHeatMapMapStartClientSignalPoll(body, callback){base_path}/{version}/Invoke/Orion.WirelessHeatMap.Map/StartClientSignalPoll?{query}Yes
postInvokeOrionWirelessHeatMapMapGetProgress(body, callback){base_path}/{version}/Invoke/Orion.WirelessHeatMap.Map/GetProgress?{query}Yes
postInvokeOrionWirelessHeatMapMapDeleteReferencePoints(body, callback){base_path}/{version}/Invoke/Orion.WirelessHeatMap.Map/DeleteReferencePoints?{query}Yes
postInvokeOrionWirelessHeatMapMapPointInsertMapPoint(body, callback){base_path}/{version}/Invoke/Orion.WirelessHeatMap.MapPoint/InsertMapPoint?{query}Yes
postInvokeOrionWirelessHeatMapMapPointDeleteMapPoints(body, callback){base_path}/{version}/Invoke/Orion.WirelessHeatMap.MapPoint/DeleteMapPoints?{query}Yes
postInvokeOrionWirelessHeatMapMapPointDeleteMapPoint(body, callback){base_path}/{version}/Invoke/Orion.WirelessHeatMap.MapPoint/DeleteMapPoint?{query}Yes
postInvokeOrionWirelessHeatMapMapPointSyncMapPoints(body, callback){base_path}/{version}/Invoke/Orion.WirelessHeatMap.MapPoint/SyncMapPoints?{query}Yes
postInvokeOrionWirelessHeatMapResourceLimitationInsertResourceLimitation(body, callback){base_path}/{version}/Invoke/Orion.WirelessHeatMap.ResourceLimitation/InsertResourceLimitation?{query}Yes
postInvokeSystemIndicationReportIndication(body, callback){base_path}/{version}/Invoke/System.Indication/ReportIndication?{query}Yes
postInvokeMetadataEntityGetAliases(body, callback){base_path}/{version}/Invoke/Metadata.Entity/GetAliases?{query}Yes
postInvokeMetadataEntityGetSchemaLoadTime(body, callback){base_path}/{version}/Invoke/Metadata.Entity/GetSchemaLoadTime?{query}Yes
postInvokeSystemQueryPlanCacheClear(body, callback){base_path}/{version}/Invoke/System.QueryPlanCache/Clear?{query}Yes
postInvokeSystemActiveQueryCancelByClientSessionID(body, callback){base_path}/{version}/Invoke/System.ActiveQuery/CancelByClientSessionID?{query}Yes
postCreateOrionNodeCustomProperty(swisUri, body, callback){base_path}/{version}/{pathv1}/CustomProperties?{query}Yes

Authentication

This document will go through the steps for authenticating the Solarwinds 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 Solarwinds 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 Solarwinds 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
    }

    you can leave all of the other properties in the authentication section, they will not be used for basic authentication.

  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-solarwinds
cd adapter-solarwinds
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 SolarWinds Server.
ping the ip address of SolarWinds server
try telnet to the ip address port of SolarWinds
execute a curl command to the other system
  1. Verify the credentials provided for SolarWinds.
login to SolarWinds using the provided credentials
  1. Verify the API of the call utilized for SolarWinds 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.