{
  "id": "@itentialopensource/adapter-solarwinds",
  "type": "Adapter",
  "export": "Solarwinds",
  "title": "SolarWinds",
  "src": "adapter.js",
  "roles": [
    "admin"
  ],
  "methods": [
    {
      "name": "iapUpdateAdapterConfiguration",
      "summary": "Updates the adapter configuration",
      "description": "Updates the adapter configuration file with the provided changes",
      "input": [
        {
          "name": "configFile",
          "type": "string",
          "info": "The name of the file to change",
          "required": true,
          "schema": {
            "title": "configFile",
            "type": "string"
          }
        },
        {
          "name": "changes",
          "type": "object",
          "info": "JSON object containing the configuration changes",
          "required": true,
          "schema": {
            "title": "changes",
            "type": "object"
          }
        },
        {
          "name": "entity",
          "type": "string",
          "info": "The entity in which the changes are being made",
          "required": false,
          "schema": {
            "title": "entity",
            "type": "string"
          }
        },
        {
          "name": "type",
          "type": "string",
          "info": "The type of file to change - action, schema, or mock",
          "required": false,
          "schema": {
            "title": "type",
            "type": "string"
          }
        },
        {
          "name": "action",
          "type": "string",
          "info": "The action to be changed",
          "required": false,
          "schema": {
            "title": "action",
            "type": "string"
          }
        },
        {
          "name": "replace",
          "type": "boolean",
          "info": "True to replace entire mock data, false to merge/append",
          "required": false,
          "schema": {
            "title": "replace",
            "type": "boolean"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/iapUpdateAdapterConfiguration"
      },
      "task": true
    },
    {
      "name": "iapSuspendAdapter",
      "summary": "Suspends the adapter",
      "description": "Suspends the adapter",
      "input": [
        {
          "name": "mode",
          "type": "enum",
          "enumerals": [
            "pause",
            "error"
          ],
          "info": "How incoming requests are handled. Defaults to 'pause'",
          "description": "How incoming requests are handled. Defaults to 'pause'",
          "schema": {
            "title": "mode",
            "type": "string"
          },
          "required": false
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing the adapter suspended status",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/iapSuspendAdapter"
      },
      "task": true
    },
    {
      "name": "iapUnsuspendAdapter",
      "summary": "Unsuspends the adapter",
      "description": "Unsuspends the adapter",
      "input": [],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing the adapter suspended status",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/iapUnsuspendAdapter"
      },
      "task": true
    },
    {
      "name": "iapGetAdapterQueue",
      "summary": "Return the requests that are waiting in the queue if throttling is enabled",
      "description": "Return the requests that are waiting in the queue if throttling is enabled",
      "input": [],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing the adapter queue",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/iapGetAdapterQueue"
      },
      "task": true
    },
    {
      "name": "iapFindAdapterPath",
      "summary": "Provides the ability to see if a particular API path is supported by the adapter",
      "description": "Provides the ability to see if a particular API path is supported by the adapter",
      "input": [
        {
          "name": "apiPath",
          "type": "string",
          "info": "The API Path you want to check - make sure to not include base path and version",
          "description": "The API Path you want to check - make sure to not include base path and version",
          "schema": {
            "title": "apiPath",
            "type": "string"
          },
          "required": true
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/iapFindAdapterPath"
      },
      "task": true
    },
    {
      "name": "iapTroubleshootAdapter",
      "summary": "Runs troubleshoot script for adapter",
      "description": "Runs troubleshoot script for adapter",
      "input": [
        {
          "name": "props",
          "type": "object",
          "info": "Object containing configuration, healthcheck and auth properties {'connProps':{'host': 'api.service.com', 'base_path': '/', 'protocol': 'http', 'port': 443, 'version': 'v1'},'healthCheckEndpoint': '/healthcheck', 'auth': {'auth_method': 'no authentication', 'username': 'username', 'password': 'password'}}",
          "required": true,
          "schema": {
            "title": "props",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing the test results",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/iapTroubleshootAdapter"
      },
      "task": true
    },
    {
      "name": "iapRunAdapterHealthcheck",
      "summary": "Runs healthcheck script for adapter",
      "description": "Runs healthcheck script for adapter",
      "input": [],
      "output": {
        "name": "result",
        "type": "boolean",
        "description": "Whether healthcheck passed or failed",
        "schema": {
          "title": "result",
          "type": "boolean"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/iapRunAdapterHealthcheck"
      },
      "task": true
    },
    {
      "name": "iapRunAdapterConnectivity",
      "summary": "Runs connectivity check script for adapter",
      "description": "Runs connectivity check script for adapter",
      "input": [],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing the test results",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/iapRunAdapterConnectivity"
      },
      "task": true
    },
    {
      "name": "iapRunAdapterBasicGet",
      "summary": "Runs basicGet script for adapter",
      "description": "Runs basicGet script for adapter",
      "input": [
        {
          "name": "maxCalls",
          "required": false,
          "type": "number",
          "info": "How many GET endpoints to test (defaults to 5)",
          "schema": {
            "title": "maxCalls",
            "type": "number",
            "default": 5
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing the test results",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/iapRunAdapterBasicGet"
      },
      "task": true
    },
    {
      "name": "iapMoveAdapterEntitiesToDB",
      "summary": "Moves entities from an adapter into the Itential Platform database",
      "description": "Moves entities from an adapter into the Itential Platform database",
      "input": [],
      "output": {
        "name": "res",
        "type": "object",
        "description": "A JSON Object containing status, code and the response from the mongo transaction",
        "schema": {
          "title": "res",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/iapMoveAdapterEntitiesToDB"
      },
      "task": true
    },
    {
      "name": "iapDeactivateTasks",
      "summary": "Deactivate the inputted tasks",
      "description": "Deactivate the inputted tasks",
      "input": [
        {
          "name": "tasks",
          "type": "array",
          "description": "Tasks to deactivate",
          "schema": {
            "title": "tasks",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing success status",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/iapDeactivateTasks"
      },
      "task": true
    },
    {
      "name": "iapActivateTasks",
      "summary": "Activate the inputted tasks",
      "description": "activate the inputted tasks",
      "input": [
        {
          "name": "tasks",
          "type": "array",
          "description": "Tasks to activate",
          "schema": {
            "title": "tasks",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing success status",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/iapActivateTasks"
      },
      "task": true
    },
    {
      "name": "iapPopulateEntityCache",
      "summary": "Populate the cache for the given entities",
      "description": "Populate the cache for the given entities",
      "input": [
        {
          "name": "entityTypes",
          "type": "array",
          "info": "the entity type(s) to populate",
          "required": true,
          "schema": {
            "title": "entityTypes",
            "type": "array"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/iapPopulateEntityCache"
      },
      "task": true
    },
    {
      "name": "iapRetrieveEntitiesCache",
      "summary": "Retrieves data from cache for specified entity type",
      "description": "Retrieves data from cache for specified entity type",
      "input": [
        {
          "name": "entityType",
          "type": "string",
          "info": "entity of which to retrieve",
          "required": true,
          "schema": {
            "title": "entityType",
            "type": "string"
          }
        },
        {
          "name": "options",
          "type": "object",
          "info": "settings of which data to return and how to return it",
          "required": false,
          "schema": {
            "title": "options",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/iapRetrieveEntitiesCache"
      },
      "task": true
    },
    {
      "name": "getDevice",
      "summary": "Get the Appliance",
      "description": "Get the Appliance",
      "input": [
        {
          "name": "deviceName",
          "type": "string",
          "info": "An Appliance Device Name",
          "required": true,
          "schema": {
            "title": "deviceName",
            "type": "string"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/getDevice"
      },
      "task": false
    },
    {
      "name": "getDevicesFiltered",
      "summary": "Get Appliances that match the filter",
      "description": "Get Appliances that match the filter",
      "input": [
        {
          "name": "options",
          "type": "object",
          "info": "options - e.g. { 'start': 1, 'limit': 20, 'filter': { 'name': 'abc123' } }",
          "required": true,
          "schema": {
            "title": "options",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "array",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "array"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/getDevicesFiltered"
      },
      "task": false
    },
    {
      "name": "isAlive",
      "summary": "Checks the status for the provided Appliance",
      "description": "Checks the status for the provided Appliance",
      "input": [
        {
          "name": "deviceName",
          "type": "string",
          "info": "An Appliance Device Name",
          "required": true,
          "schema": {
            "title": "deviceName",
            "type": "string"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "boolean",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "boolean"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/isAlive"
      },
      "task": false
    },
    {
      "name": "getConfig",
      "summary": "Gets a config for the provided Appliance",
      "description": "Gets a config for the provided Appliance",
      "input": [
        {
          "name": "deviceName",
          "type": "string",
          "info": "An Appliance Device Name",
          "required": true,
          "schema": {
            "title": "deviceName",
            "type": "string"
          }
        },
        {
          "name": "format",
          "type": "string",
          "info": "The format to be returned - this is ignored as we always return json",
          "required": false,
          "schema": {
            "title": "format",
            "type": "string"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/getConfig"
      },
      "task": false
    },
    {
      "name": "iapGetDeviceCount",
      "summary": "Gets a device count from the system",
      "description": "Gets a device count from the system",
      "input": [],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/iapGetDeviceCount"
      },
      "task": false
    },
    {
      "name": "iapExpandedGenericAdapterRequest",
      "summary": "Makes the requested generic call with additional options",
      "description": "Makes the requested generic call with additional options via metadata",
      "input": [
        {
          "name": "metadata",
          "type": "object",
          "info": "metadata for the call (optional)",
          "description": "metadata for the call - allows for many enhancements (optional)",
          "schema": {
            "title": "metadata",
            "type": "object"
          },
          "required": false
        },
        {
          "name": "uriPath",
          "type": "string",
          "info": "the path of the api call - do not include the host, port, base path or version",
          "description": "the path of the api call",
          "schema": {
            "title": "uriPath",
            "type": "string"
          },
          "required": false
        },
        {
          "name": "restMethod",
          "type": "string",
          "info": "the rest method (GET, POST, PUT, PATCH, DELETE)",
          "description": "the rest method (GET, POST, PUT, PATCH, DELETE)",
          "schema": {
            "title": "restMethod",
            "type": "string"
          },
          "required": false
        },
        {
          "name": "pathVars",
          "type": "object",
          "info": "the parameters to be put within the url path (optional)",
          "description": "the parameters to be put within the url path (optional)",
          "schema": {
            "title": "pathVars",
            "type": "object"
          },
          "required": false
        },
        {
          "name": "queryData",
          "type": "object",
          "info": "the query parameters to be put on the url (optional)",
          "description": "the query parameters to be put on the url (optional)",
          "schema": {
            "title": "queryData",
            "type": "object"
          },
          "required": false
        },
        {
          "name": "requestBody",
          "type": "object",
          "info": "the payload to be sent with the request (optional)",
          "description": "the payload to be sent with the request (optional)",
          "schema": {
            "title": "requestBody",
            "type": "object"
          },
          "required": false
        },
        {
          "name": "addlHeaders",
          "type": "object",
          "info": "additional headers to be put on the call (optional)",
          "description": "additional headers to be put on the call (optional)",
          "schema": {
            "title": "addlHeaders",
            "type": "object"
          },
          "required": false
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/iapExpandedGenericAdapterRequest"
      },
      "task": true
    },
    {
      "name": "genericAdapterRequest",
      "summary": "Makes the requested generic call",
      "description": "Makes the requested generic call",
      "input": [
        {
          "name": "uriPath",
          "type": "string",
          "info": "the path of the api call - do not include the host, port, base path or version",
          "description": "the path of the api call",
          "schema": {
            "title": "uriPath",
            "type": "string"
          },
          "required": true
        },
        {
          "name": "restMethod",
          "type": "string",
          "info": "the rest method (GET, POST, PUT, PATCH, DELETE)",
          "description": "the rest method (GET, POST, PUT, PATCH, DELETE)",
          "schema": {
            "title": "restMethod",
            "type": "string"
          },
          "required": true
        },
        {
          "name": "queryData",
          "type": "object",
          "info": "the query parameters to be put on the url (optional)",
          "description": "the query parameters to be put on the url (optional)",
          "schema": {
            "title": "queryData",
            "type": "object"
          },
          "required": false
        },
        {
          "name": "requestBody",
          "type": "object",
          "info": "the payload to be sent with the request (optional)",
          "description": "the payload to be sent with the request (optional)",
          "schema": {
            "title": "requestBody",
            "type": "object"
          },
          "required": false
        },
        {
          "name": "addlHeaders",
          "type": "object",
          "info": "additional headers to be put on the call (optional)",
          "description": "additional headers to be put on the call (optional)",
          "schema": {
            "title": "addlHeaders",
            "type": "object"
          },
          "required": false
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/genericAdapterRequest"
      },
      "task": true
    },
    {
      "name": "genericAdapterRequestNoBasePath",
      "summary": "Makes the requested generic call",
      "description": "Makes the requested generic call",
      "input": [
        {
          "name": "uriPath",
          "type": "string",
          "info": "the path of the api call - do not include the host, port, base path or version",
          "description": "the path of the api call",
          "schema": {
            "title": "uriPath",
            "type": "string"
          },
          "required": true
        },
        {
          "name": "restMethod",
          "type": "string",
          "info": "the rest method (GET, POST, PUT, PATCH, DELETE)",
          "description": "the rest method (GET, POST, PUT, PATCH, DELETE)",
          "schema": {
            "title": "restMethod",
            "type": "string"
          },
          "required": true
        },
        {
          "name": "queryData",
          "type": "object",
          "info": "the query parameters to be put on the url (optional)",
          "description": "the query parameters to be put on the url (optional)",
          "schema": {
            "title": "queryData",
            "type": "object"
          },
          "required": false
        },
        {
          "name": "requestBody",
          "type": "object",
          "info": "the payload to be sent with the request (optional)",
          "description": "the payload to be sent with the request (optional)",
          "schema": {
            "title": "requestBody",
            "type": "object"
          },
          "required": false
        },
        {
          "name": "addlHeaders",
          "type": "object",
          "info": "additional headers to be put on the call (optional)",
          "description": "additional headers to be put on the call (optional)",
          "schema": {
            "title": "addlHeaders",
            "type": "object"
          },
          "required": false
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/genericAdapterRequestNoBasePath"
      },
      "task": true
    },
    {
      "name": "iapRunAdapterLint",
      "summary": "Run the adapter lint script to return the results",
      "description": "Run the adapter lint script to return the results",
      "input": [],
      "output": {
        "name": "result",
        "type": "string",
        "description": "A string containing the run results",
        "schema": {
          "title": "result",
          "type": "string"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "GET",
        "path": "/iapRunAdapterLint"
      },
      "task": true
    },
    {
      "name": "iapRunAdapterTests",
      "summary": "Run the adapter test scripts (baseunit and unit) to return the results",
      "description": "Run the adapter test scripts (baseunit and unit) to return the results",
      "input": [],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "GET",
        "path": "/iapRunAdapterTests"
      },
      "task": true
    },
    {
      "name": "iapGetAdapterInventory",
      "summary": "Provide inventory information abbout the adapter",
      "description": "Provide inventory information abbout the adapter",
      "input": [],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "GET",
        "path": "/iapGetAdapterInventory"
      },
      "task": true
    },
    {
      "name": "getQuery",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "query",
          "type": "string",
          "info": "",
          "required": true,
          "schema": {
            "title": "query",
            "type": "string"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/getQuery"
      },
      "task": true
    },
    {
      "name": "postQuery",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postQuery"
      },
      "task": true
    },
    {
      "name": "getUri",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "uri",
          "type": "string",
          "info": "",
          "required": true,
          "schema": {
            "title": "uri",
            "type": "string"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/getUri"
      },
      "task": true
    },
    {
      "name": "postUri",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "uri",
          "type": "string",
          "info": "",
          "required": true,
          "schema": {
            "title": "uri",
            "type": "string"
          }
        },
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postUri"
      },
      "task": true
    },
    {
      "name": "deleteUri",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "uri",
          "type": "string",
          "info": "",
          "required": true,
          "schema": {
            "title": "uri",
            "type": "string"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/deleteUri"
      },
      "task": true
    },
    {
      "name": "postBulkUpdate",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postBulkUpdate"
      },
      "task": true
    },
    {
      "name": "postBulkDelete",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postBulkDelete"
      },
      "task": true
    },
    {
      "name": "postCreateOrionAgentManagementAgent",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateOrionAgentManagementAgent"
      },
      "task": true
    },
    {
      "name": "postCreateOrionAgentManagementAgentPlugin",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateOrionAgentManagementAgentPlugin"
      },
      "task": true
    },
    {
      "name": "postCreateOrionAgentManagementProxy",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateOrionAgentManagementProxy"
      },
      "task": true
    },
    {
      "name": "postCreateOrionAPMNodeToNodeLink",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateOrionAPMNodeToNodeLink"
      },
      "task": true
    },
    {
      "name": "postCreateOrionAPMDependencyTcpStatistics",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateOrionAPMDependencyTcpStatistics"
      },
      "task": true
    },
    {
      "name": "postCreateOrionAPMApplicationTcpConnection",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateOrionAPMApplicationTcpConnection"
      },
      "task": true
    },
    {
      "name": "postCreateCirrusIgnoredNodes",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateCirrusIgnoredNodes"
      },
      "task": true
    },
    {
      "name": "postCreateNCMBaselines",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateNCMBaselines"
      },
      "task": true
    },
    {
      "name": "postCreateNCMBaselineNodeMap",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateNCMBaselineNodeMap"
      },
      "task": true
    },
    {
      "name": "postCreateNCMBaselineViolations",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateNCMBaselineViolations"
      },
      "task": true
    },
    {
      "name": "postCreateNCMFirmwareOperations",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateNCMFirmwareOperations"
      },
      "task": true
    },
    {
      "name": "postCreateNCMFirmwareOperationNodes",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateNCMFirmwareOperationNodes"
      },
      "task": true
    },
    {
      "name": "postCreateNCMFirmwareUpgradeImages",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateNCMFirmwareUpgradeImages"
      },
      "task": true
    },
    {
      "name": "postCreateNCMFirmwareUpgradeMachineTypes",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateNCMFirmwareUpgradeMachineTypes"
      },
      "task": true
    },
    {
      "name": "postCreateCliDeviceTemplates",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateCliDeviceTemplates"
      },
      "task": true
    },
    {
      "name": "postCreateCliDeviceTemplatesNodes",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateCliDeviceTemplatesNodes"
      },
      "task": true
    },
    {
      "name": "postCreateCliCliSessionSettings",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateCliCliSessionSettings"
      },
      "task": true
    },
    {
      "name": "postCreateOrionCloudAccounts",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateOrionCloudAccounts"
      },
      "task": true
    },
    {
      "name": "postCreateCortexSystemPolicy",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateCortexSystemPolicy"
      },
      "task": true
    },
    {
      "name": "postCreateCortexOrionCiscoAciApic",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateCortexOrionCiscoAciApic"
      },
      "task": true
    },
    {
      "name": "postCreateCortexOrionCiscoAciApplicationProfile",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateCortexOrionCiscoAciApplicationProfile"
      },
      "task": true
    },
    {
      "name": "postCreateCortexOrionCiscoAciCiscoAciCredential",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateCortexOrionCiscoAciCiscoAciCredential"
      },
      "task": true
    },
    {
      "name": "postCreateCortexOrionCiscoAciEndpointGroup",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateCortexOrionCiscoAciEndpointGroup"
      },
      "task": true
    },
    {
      "name": "postCreateCortexOrionCiscoAciFabric",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateCortexOrionCiscoAciFabric"
      },
      "task": true
    },
    {
      "name": "postCreateCortexOrionCiscoAciPhysicalEntity",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateCortexOrionCiscoAciPhysicalEntity"
      },
      "task": true
    },
    {
      "name": "postCreateCortexOrionCiscoAciTenant",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateCortexOrionCiscoAciTenant"
      },
      "task": true
    },
    {
      "name": "postCreateCortexOrionCmanContainer",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateCortexOrionCmanContainer"
      },
      "task": true
    },
    {
      "name": "postCreateCortexOrionCmanContainerAgent",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateCortexOrionCmanContainerAgent"
      },
      "task": true
    },
    {
      "name": "postCreateCortexOrionCmanContainerEnvironmentVariable",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateCortexOrionCmanContainerEnvironmentVariable"
      },
      "task": true
    },
    {
      "name": "postCreateCortexOrionCmanContainerHost",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateCortexOrionCmanContainerHost"
      },
      "task": true
    },
    {
      "name": "postCreateCortexOrionCmanContainerImage",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateCortexOrionCmanContainerImage"
      },
      "task": true
    },
    {
      "name": "postCreateCortexOrionSnmpCredentialV2",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateCortexOrionSnmpCredentialV2"
      },
      "task": true
    },
    {
      "name": "postCreateCortexOrionSnmpCredentialV3",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateCortexOrionSnmpCredentialV3"
      },
      "task": true
    },
    {
      "name": "postCreateCortexOrionWindowsCredential",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateCortexOrionWindowsCredential"
      },
      "task": true
    },
    {
      "name": "postCreateCortexOrionInterface",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateCortexOrionInterface"
      },
      "task": true
    },
    {
      "name": "postCreateCortexOrionCpu",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateCortexOrionCpu"
      },
      "task": true
    },
    {
      "name": "postCreateCortexOrionNode",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateCortexOrionNode"
      },
      "task": true
    },
    {
      "name": "postCreateCortexOrionPowerControlUnit",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateCortexOrionPowerControlUnit"
      },
      "task": true
    },
    {
      "name": "postCreateCortexOrionVirtualizationAlarm",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateCortexOrionVirtualizationAlarm"
      },
      "task": true
    },
    {
      "name": "postCreateCortexOrionVirtualizationCluster",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateCortexOrionVirtualizationCluster"
      },
      "task": true
    },
    {
      "name": "postCreateCortexOrionVirtualizationDataCenter",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateCortexOrionVirtualizationDataCenter"
      },
      "task": true
    },
    {
      "name": "postCreateCortexOrionVirtualizationDatastore",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateCortexOrionVirtualizationDatastore"
      },
      "task": true
    },
    {
      "name": "postCreateCortexOrionVirtualizationHost",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateCortexOrionVirtualizationHost"
      },
      "task": true
    },
    {
      "name": "postCreateCortexOrionVirtualizationPhysicalDisk",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateCortexOrionVirtualizationPhysicalDisk"
      },
      "task": true
    },
    {
      "name": "postCreateCortexOrionVirtualizationPollingTask",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateCortexOrionVirtualizationPollingTask"
      },
      "task": true
    },
    {
      "name": "postCreateCortexOrionVirtualizationTriggeredAlarmState",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateCortexOrionVirtualizationTriggeredAlarmState"
      },
      "task": true
    },
    {
      "name": "postCreateCortexOrionVirtualizationVCenter",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateCortexOrionVirtualizationVCenter"
      },
      "task": true
    },
    {
      "name": "postCreateCortexOrionVirtualizationVirtualMachine",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateCortexOrionVirtualizationVirtualMachine"
      },
      "task": true
    },
    {
      "name": "postCreateCortexOrionVirtualizationVirtualMachineDisk",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateCortexOrionVirtualizationVirtualMachineDisk"
      },
      "task": true
    },
    {
      "name": "postCreateCortexOrionVMwareCredential",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateCortexOrionVMwareCredential"
      },
      "task": true
    },
    {
      "name": "postCreateCortexOrionVirtualizationVSan",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateCortexOrionVirtualizationVSan"
      },
      "task": true
    },
    {
      "name": "postCreateCortexOrionVirtualizationVSanDiskGroup",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateCortexOrionVirtualizationVSanDiskGroup"
      },
      "task": true
    },
    {
      "name": "postCreateCortexOrionVirtualizationVSanHealthGroup",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateCortexOrionVirtualizationVSanHealthGroup"
      },
      "task": true
    },
    {
      "name": "postCreateCortexOrionVirtualizationVSanObjectSpaceSummary",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateCortexOrionVirtualizationVSanObjectSpaceSummary"
      },
      "task": true
    },
    {
      "name": "postCreateCortexOrionVirtualizationVSanResyncInfo",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateCortexOrionVirtualizationVSanResyncInfo"
      },
      "task": true
    },
    {
      "name": "postCreateCortexOrionScsiInformation",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateCortexOrionScsiInformation"
      },
      "task": true
    },
    {
      "name": "postCreateCortexOrionVolume",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateCortexOrionVolume"
      },
      "task": true
    },
    {
      "name": "postCreateOrionDPADatabaseInstanceData",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateOrionDPADatabaseInstanceData"
      },
      "task": true
    },
    {
      "name": "postCreateOrionDPADatabaseInstanceApplicationRelationship",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateOrionDPADatabaseInstanceApplicationRelationship"
      },
      "task": true
    },
    {
      "name": "postCreateOrionDPADatabaseInstanceLun",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateOrionDPADatabaseInstanceLun"
      },
      "task": true
    },
    {
      "name": "postCreateOrionDPADpaServer",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateOrionDPADpaServer"
      },
      "task": true
    },
    {
      "name": "postCreateOrionDPIApplications",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateOrionDPIApplications"
      },
      "task": true
    },
    {
      "name": "postCreateOrionDPIApplicationAssignments",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateOrionDPIApplicationAssignments"
      },
      "task": true
    },
    {
      "name": "postCreateOrionDPIApplicationSettings",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateOrionDPIApplicationSettings"
      },
      "task": true
    },
    {
      "name": "postCreateOrionDPIProbes",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateOrionDPIProbes"
      },
      "task": true
    },
    {
      "name": "postCreateOrionDPIProbeAssignments",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateOrionDPIProbeAssignments"
      },
      "task": true
    },
    {
      "name": "postCreateOrionDPIProbeSettings",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateOrionDPIProbeSettings"
      },
      "task": true
    },
    {
      "name": "postCreateOrionDPIProbeProperties",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateOrionDPIProbeProperties"
      },
      "task": true
    },
    {
      "name": "postCreateOrionESIIncidentService",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateOrionESIIncidentService"
      },
      "task": true
    },
    {
      "name": "postCreateOrionHAPools",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateOrionHAPools"
      },
      "task": true
    },
    {
      "name": "postCreateOrionHAResourcesInstances",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateOrionHAResourcesInstances"
      },
      "task": true
    },
    {
      "name": "postCreateOrionHAPoolMemberInterfacesInfo",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateOrionHAPoolMemberInterfacesInfo"
      },
      "task": true
    },
    {
      "name": "postCreateOrionNPMInterfaces",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateOrionNPMInterfaces"
      },
      "task": true
    },
    {
      "name": "postCreateIPAMIPNode",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateIPAMIPNode"
      },
      "task": true
    },
    {
      "name": "postCreateIPAMSubnet",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateIPAMSubnet"
      },
      "task": true
    },
    {
      "name": "postCreateIPAMGroupsCustomProperties",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateIPAMGroupsCustomProperties"
      },
      "task": true
    },
    {
      "name": "postCreateIPAMNodesCustomProperties",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateIPAMNodesCustomProperties"
      },
      "task": true
    },
    {
      "name": "postCreateOrionLicensingLicenseFilters",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateOrionLicensingLicenseFilters"
      },
      "task": true
    },
    {
      "name": "postCreateOrionNetPathEndpointServices",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateOrionNetPathEndpointServices"
      },
      "task": true
    },
    {
      "name": "postCreateOrionNetPathProbes",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateOrionNetPathProbes"
      },
      "task": true
    },
    {
      "name": "postCreateOrionNetPathEndpointServiceAssignments",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateOrionNetPathEndpointServiceAssignments"
      },
      "task": true
    },
    {
      "name": "postCreateOrionNetPathEndpointServiceProperties",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateOrionNetPathEndpointServiceProperties"
      },
      "task": true
    },
    {
      "name": "postCreateOrionNetPathThresholds",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateOrionNetPathThresholds"
      },
      "task": true
    },
    {
      "name": "postCreateOrionNetPathNetworks",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateOrionNetPathNetworks"
      },
      "task": true
    },
    {
      "name": "postCreateOrionNPMCustomPollerAssignmentOnNode",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateOrionNPMCustomPollerAssignmentOnNode"
      },
      "task": true
    },
    {
      "name": "postCreateOrionNPMCustomPollerAssignmentOnInterface",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateOrionNPMCustomPollerAssignmentOnInterface"
      },
      "task": true
    },
    {
      "name": "postCreateOrionOLMMessageSources",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateOrionOLMMessageSources"
      },
      "task": true
    },
    {
      "name": "postCreateOrionAlerts",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateOrionAlerts"
      },
      "task": true
    },
    {
      "name": "postCreateOrionAlertStatus",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateOrionAlertStatus"
      },
      "task": true
    },
    {
      "name": "postCreateOrionAlertConfigurations",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateOrionAlertConfigurations"
      },
      "task": true
    },
    {
      "name": "postCreateOrionAlertDefinitions",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateOrionAlertDefinitions"
      },
      "task": true
    },
    {
      "name": "postCreateOrionActions",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateOrionActions"
      },
      "task": true
    },
    {
      "name": "postCreateOrionActionsProperties",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateOrionActionsProperties"
      },
      "task": true
    },
    {
      "name": "postCreateOrionActionAssignmentProperties",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateOrionActionAssignmentProperties"
      },
      "task": true
    },
    {
      "name": "postCreateOrionActionsAssignments",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateOrionActionsAssignments"
      },
      "task": true
    },
    {
      "name": "postCreateOrionActionSchedules",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateOrionActionSchedules"
      },
      "task": true
    },
    {
      "name": "postCreateOrionAlertSchedules",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateOrionAlertSchedules"
      },
      "task": true
    },
    {
      "name": "postCreateOrionDiscoveryLogs",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateOrionDiscoveryLogs"
      },
      "task": true
    },
    {
      "name": "postCreateOrionDependencies",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateOrionDependencies"
      },
      "task": true
    },
    {
      "name": "postCreateOrionDeletedAutoDependencies",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateOrionDeletedAutoDependencies"
      },
      "task": true
    },
    {
      "name": "postCreateOrionEvents",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateOrionEvents"
      },
      "task": true
    },
    {
      "name": "postCreateOrionMapStudioFiles",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateOrionMapStudioFiles"
      },
      "task": true
    },
    {
      "name": "postCreateOrionNodeNotes",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateOrionNodeNotes"
      },
      "task": true
    },
    {
      "name": "postCreateOrionNodes",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateOrionNodes"
      },
      "task": true
    },
    {
      "name": "postCreateOrionPollers",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateOrionPollers"
      },
      "task": true
    },
    {
      "name": "postCreateOrionResourceProperties",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateOrionResourceProperties"
      },
      "task": true
    },
    {
      "name": "postCreateOrionResources",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateOrionResources"
      },
      "task": true
    },
    {
      "name": "postCreateOrionVolumes",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateOrionVolumes"
      },
      "task": true
    },
    {
      "name": "postCreateOrionNodeSettings",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateOrionNodeSettings"
      },
      "task": true
    },
    {
      "name": "postCreateOrionWorldMapPoint",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateOrionWorldMapPoint"
      },
      "task": true
    },
    {
      "name": "postCreateOrionWorldMapPointLabel",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateOrionWorldMapPointLabel"
      },
      "task": true
    },
    {
      "name": "postCreateOrionNetObjectDowntime",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateOrionNetObjectDowntime"
      },
      "task": true
    },
    {
      "name": "postCreateOrionForecastMetrics",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateOrionForecastMetrics"
      },
      "task": true
    },
    {
      "name": "postCreateOrionForecastCapacitySettings",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateOrionForecastCapacitySettings"
      },
      "task": true
    },
    {
      "name": "postCreateOrionMaintenancePlan",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateOrionMaintenancePlan"
      },
      "task": true
    },
    {
      "name": "postCreateOrionMaintenancePlanAssignment",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateOrionMaintenancePlanAssignment"
      },
      "task": true
    },
    {
      "name": "postCreateOrionWebFavoriteResource",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateOrionWebFavoriteResource"
      },
      "task": true
    },
    {
      "name": "postCreateOrionWebUserWebView",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateOrionWebUserWebView"
      },
      "task": true
    },
    {
      "name": "postCreateOrionOrionServers",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateOrionOrionServers"
      },
      "task": true
    },
    {
      "name": "postCreateOrionPerfStackProjects",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateOrionPerfStackProjects"
      },
      "task": true
    },
    {
      "name": "postCreateOrionPerfStackStatisticsEntity",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateOrionPerfStackStatisticsEntity"
      },
      "task": true
    },
    {
      "name": "postCreateOrionRemotingRemoteExecutionPackage",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateOrionRemotingRemoteExecutionPackage"
      },
      "task": true
    },
    {
      "name": "postCreateOrionSamAppOpticsIntegration",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateOrionSamAppOpticsIntegration"
      },
      "task": true
    },
    {
      "name": "postCreateOrionSamAppOpticsRegistrationCountry",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateOrionSamAppOpticsRegistrationCountry"
      },
      "task": true
    },
    {
      "name": "postCreateOrionSamAppOpticsRegistrationState",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateOrionSamAppOpticsRegistrationState"
      },
      "task": true
    },
    {
      "name": "postCreateOrionSamAppOpticsApplicationPool",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateOrionSamAppOpticsApplicationPool"
      },
      "task": true
    },
    {
      "name": "postCreateOrionSCMServerConfiguration",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateOrionSCMServerConfiguration"
      },
      "task": true
    },
    {
      "name": "postCreateOrionSCMProfiles",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateOrionSCMProfiles"
      },
      "task": true
    },
    {
      "name": "postCreateOrionSCMNodesProfiles",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateOrionSCMNodesProfiles"
      },
      "task": true
    },
    {
      "name": "postCreateOrionSCMNodesProfilesArchive",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateOrionSCMNodesProfilesArchive"
      },
      "task": true
    },
    {
      "name": "postCreateOrionSCMNodesProfilesHistory",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateOrionSCMNodesProfilesHistory"
      },
      "task": true
    },
    {
      "name": "postCreateOrionSCMBaseline",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateOrionSCMBaseline"
      },
      "task": true
    },
    {
      "name": "postCreateOrionSCMProfileElements",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateOrionSCMProfileElements"
      },
      "task": true
    },
    {
      "name": "postCreateOrionSCMResultsPolledElements",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateOrionSCMResultsPolledElements"
      },
      "task": true
    },
    {
      "name": "postCreateOrionSCMResultsPolledElementDetails",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateOrionSCMResultsPolledElementDetails"
      },
      "task": true
    },
    {
      "name": "postCreateOrionSCMResultsNodesPollingErrors",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateOrionSCMResultsNodesPollingErrors"
      },
      "task": true
    },
    {
      "name": "postCreateOrionSCMResultsPolledElementErrors",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateOrionSCMResultsPolledElementErrors"
      },
      "task": true
    },
    {
      "name": "postCreateOrionSCMResultsElementErrors",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateOrionSCMResultsElementErrors"
      },
      "task": true
    },
    {
      "name": "postCreateOrionSCMPollEntries",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateOrionSCMPollEntries"
      },
      "task": true
    },
    {
      "name": "postCreateOrionSettingOverride",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateOrionSettingOverride"
      },
      "task": true
    },
    {
      "name": "postCreateOrionSEUMAgents",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateOrionSEUMAgents"
      },
      "task": true
    },
    {
      "name": "postCreateOrionSEUMRecordings",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateOrionSEUMRecordings"
      },
      "task": true
    },
    {
      "name": "postCreateOrionSEUMRecordingCustomProperties",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateOrionSEUMRecordingCustomProperties"
      },
      "task": true
    },
    {
      "name": "postCreateOrionSEUMRecordingSteps",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateOrionSEUMRecordingSteps"
      },
      "task": true
    },
    {
      "name": "postCreateOrionSEUMTransactions",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateOrionSEUMTransactions"
      },
      "task": true
    },
    {
      "name": "postCreateOrionSEUMTransactionCustomProperties",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateOrionSEUMTransactionCustomProperties"
      },
      "task": true
    },
    {
      "name": "postCreateOrionSEUMTransactionRunParameters",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateOrionSEUMTransactionRunParameters"
      },
      "task": true
    },
    {
      "name": "postCreateOrionSEUMTransactionSteps",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateOrionSEUMTransactionSteps"
      },
      "task": true
    },
    {
      "name": "postCreateOrionSEUMSettings",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateOrionSEUMSettings"
      },
      "task": true
    },
    {
      "name": "postCreateOrionAutoDependencyRoot",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateOrionAutoDependencyRoot"
      },
      "task": true
    },
    {
      "name": "postCreateOrionSSHSession",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateOrionSSHSession"
      },
      "task": true
    },
    {
      "name": "postCreateOrionVIMClustersCustomProperties",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateOrionVIMClustersCustomProperties"
      },
      "task": true
    },
    {
      "name": "postCreateOrionVIMVirtualMachinesCustomProperties",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateOrionVIMVirtualMachinesCustomProperties"
      },
      "task": true
    },
    {
      "name": "postCreateOrionVIMHostsCustomProperties",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateOrionVIMHostsCustomProperties"
      },
      "task": true
    },
    {
      "name": "postCreateOrionVIMDatastoresCustomProperties",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateOrionVIMDatastoresCustomProperties"
      },
      "task": true
    },
    {
      "name": "postCreateOrionWirelessHeatMapMap",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateOrionWirelessHeatMapMap"
      },
      "task": true
    },
    {
      "name": "postCreateSWISfRemoteSWIS",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateSWISfRemoteSWIS"
      },
      "task": true
    },
    {
      "name": "postCreateSystemSubscription",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateSystemSubscription"
      },
      "task": true
    },
    {
      "name": "postCreateSystemSubscriptionProperty",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateSystemSubscriptionProperty"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionADMNodeInventoryPollNow",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionADMNodeInventoryPollNow"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionADMNodeInventoryEnable",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionADMNodeInventoryEnable"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionADMNodeInventoryDisable",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionADMNodeInventoryDisable"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionADMNodeInventorySchedulePollNow",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionADMNodeInventorySchedulePollNow"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionADMNodeInventoryScheduleEnable",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionADMNodeInventoryScheduleEnable"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionADMNodeInventoryUninstallConnectionQualityAgentPlugin",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionADMNodeInventoryUninstallConnectionQualityAgentPlugin"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionAgentManagementAgentDeploy",
      "summary": "",
      "description": "Deploys an agent to a machine defined by hostname and/or IP address.",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "Deploys an agent to a machine defined by hostname and/or IP address.",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionAgentManagementAgentDeploy"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionAgentManagementAgentDeployToNode",
      "summary": "",
      "description": "Deploys an agent to an existing node using the supplied credentials.",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "Deploys an agent to an existing node using the supplied credentials.",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionAgentManagementAgentDeployToNode"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionAgentManagementAgentDeployPlugin",
      "summary": "",
      "description": "Deploys the specified plugin to the agent",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "Deploys the specified plugin to the agent",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionAgentManagementAgentDeployPlugin"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionAgentManagementAgentRedeployPlugin",
      "summary": "",
      "description": "Redeploys the specified plugin to the agent",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "Redeploys the specified plugin to the agent",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionAgentManagementAgentRedeployPlugin"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionAgentManagementAgentUninstallPlugin",
      "summary": "",
      "description": "Uninstalls the specified plugin from the agent",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "Uninstalls the specified plugin from the agent",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionAgentManagementAgentUninstallPlugin"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionAgentManagementAgentUninstall",
      "summary": "",
      "description": "Uninstalls the agent.",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "Uninstalls the agent.",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionAgentManagementAgentUninstall"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionAgentManagementAgentDelete",
      "summary": "",
      "description": "Deletes the agent without uninstalling it.",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "Deletes the agent without uninstalling it.",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionAgentManagementAgentDelete"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionAgentManagementAgentApproveReboot",
      "summary": "",
      "description": "Approval for an agent to reboot.",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "Approval for an agent to reboot.",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionAgentManagementAgentApproveReboot"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionAgentManagementAgentApproveUpdate",
      "summary": "",
      "description": "Approval for an agent to be updated.",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "Approval for an agent to be updated.",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionAgentManagementAgentApproveUpdate"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionAgentManagementAgentTestWithEngine",
      "summary": "",
      "description": "Tests the connection between the agent and AMS",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "Tests the connection between the agent and AMS",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionAgentManagementAgentTestWithEngine"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionAgentManagementAgentAssignToEngine",
      "summary": "",
      "description": "Assigns an agent to a polling engine.",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "Assigns an agent to a polling engine.",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionAgentManagementAgentAssignToEngine"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionAgentManagementAgentValidateDeploymentCredentials",
      "summary": "",
      "description": "Validates if provided credentials are valid for agent deployment. If credentials pass validation they can be safely used for deployment via Deploy verb.",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "Validates if provided credentials are valid for agent deployment. If credentials pass validation they can be safely used for deployment via Deploy verb.",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionAgentManagementAgentValidateDeploymentCredentials"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionAgentManagementAgentRestartAgent",
      "summary": "",
      "description": "Initiate Orion Agent service restart.",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "Initiate Orion Agent service restart.",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionAgentManagementAgentRestartAgent"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionAPMIISSiteStart",
      "summary": "",
      "description": "Start IIS site.",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "Start IIS site.",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionAPMIISSiteStart"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionAPMIISSiteStop",
      "summary": "",
      "description": "Stop IIS site.",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "Stop IIS site.",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionAPMIISSiteStop"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionAPMIISSiteRestart",
      "summary": "",
      "description": "Restart IIS site.",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "Restart IIS site.",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionAPMIISSiteRestart"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionAPMIISApplicationPoolStart",
      "summary": "",
      "description": "Start IIS application pool.",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "Start IIS application pool.",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionAPMIISApplicationPoolStart"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionAPMIISApplicationPoolStop",
      "summary": "",
      "description": "Stop IIS application pool.",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "Stop IIS application pool.",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionAPMIISApplicationPoolStop"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionAPMIISApplicationPoolRestart",
      "summary": "",
      "description": "Restart IIS application pool.",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "Restart IIS application pool.",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionAPMIISApplicationPoolRestart"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionAPMApplicationUnmanage",
      "summary": "",
      "description": "Unmanage existed application.",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "Unmanage existed application.",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionAPMApplicationUnmanage"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionAPMApplicationRemanage",
      "summary": "",
      "description": "Remanage existed application.",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "Remanage existed application.",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionAPMApplicationRemanage"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionAPMApplicationCreateApplication",
      "summary": "",
      "description": "Create new application.",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "Create new application.",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionAPMApplicationCreateApplication"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionAPMApplicationDeleteApplication",
      "summary": "",
      "description": "Delete existed application.",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "Delete existed application.",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionAPMApplicationDeleteApplication"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionAPMApplicationPollNow",
      "summary": "",
      "description": "Poll existed application.",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "Poll existed application.",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionAPMApplicationPollNow"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionAPMApplicationCustomPropertiesCreateCustomProperty",
      "summary": "",
      "description": "Create application custom property.",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "Create application custom property.",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionAPMApplicationCustomPropertiesCreateCustomProperty"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionAPMApplicationCustomPropertiesCreateCustomPropertyWithValues",
      "summary": "",
      "description": "Create application custom property with values.",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "Create application custom property with values.",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionAPMApplicationCustomPropertiesCreateCustomPropertyWithValues"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionAPMApplicationCustomPropertiesModifyCustomProperty",
      "summary": "",
      "description": "Modify application custom property.",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "Modify application custom property.",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionAPMApplicationCustomPropertiesModifyCustomProperty"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionAPMApplicationCustomPropertiesDeleteCustomProperty",
      "summary": "",
      "description": "Delete application custom property.",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "Delete application custom property.",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionAPMApplicationCustomPropertiesDeleteCustomProperty"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionAPMApplicationTemplateUpdateApplicationTemplateSettings",
      "summary": "",
      "description": "Update application template settings.",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "Update application template settings.",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionAPMApplicationTemplateUpdateApplicationTemplateSettings"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionAPMApplicationTemplateDeleteTemplate",
      "summary": "",
      "description": "Delete existed application template.",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "Delete existed application template.",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionAPMApplicationTemplateDeleteTemplate"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionAPMServerManagementStartService",
      "summary": "",
      "description": "Start windows service.",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "Start windows service.",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionAPMServerManagementStartService"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionAPMServerManagementStopService",
      "summary": "",
      "description": "Stop windows service.",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "Stop windows service.",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionAPMServerManagementStopService"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionAPMServerManagementRestartService",
      "summary": "",
      "description": "Restart windows service.",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "Restart windows service.",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionAPMServerManagementRestartService"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionAPMServerManagementRebootNode",
      "summary": "",
      "description": "Restart the node.",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "Restart the node.",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionAPMServerManagementRebootNode"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionStacksRelationTraverse",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionStacksRelationTraverse"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionStacksRelationProcessUi",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionStacksRelationProcessUi"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionASANodeExecuteCliCommand",
      "summary": "",
      "description": "Execute CLI command using SSH protocol on port 22",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "Execute CLI command using SSH protocol on port 22",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionASANodeExecuteCliCommand"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionASAInterfacesSetFavorite",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionASAInterfacesSetFavorite"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionASAInterfacesRemoveFavorite",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionASAInterfacesRemoveFavorite"
      },
      "task": true
    },
    {
      "name": "postInvokeCirrusNCMNCMJobsGetJob",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCirrusNCMNCMJobsGetJob"
      },
      "task": true
    },
    {
      "name": "postInvokeCirrusNCMNCMJobsUpdateJob",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCirrusNCMNCMJobsUpdateJob"
      },
      "task": true
    },
    {
      "name": "postInvokeCirrusNCMNCMJobsAddJob",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCirrusNCMNCMJobsAddJob"
      },
      "task": true
    },
    {
      "name": "postInvokeCirrusNCMNCMJobsDeleteJobs",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCirrusNCMNCMJobsDeleteJobs"
      },
      "task": true
    },
    {
      "name": "postInvokeCirrusNCMNCMJobsEnableOrDisableJobs",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCirrusNCMNCMJobsEnableOrDisableJobs"
      },
      "task": true
    },
    {
      "name": "postInvokeCirrusNCMNCMJobsClearJobLog",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCirrusNCMNCMJobsClearJobLog"
      },
      "task": true
    },
    {
      "name": "postInvokeCirrusNCMNCMJobsGetJobStatus",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCirrusNCMNCMJobsGetJobStatus"
      },
      "task": true
    },
    {
      "name": "postInvokeCirrusNCMNCMJobsGetJobLog",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCirrusNCMNCMJobsGetJobLog"
      },
      "task": true
    },
    {
      "name": "postInvokeCirrusInventoryQueueStartInventory",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCirrusInventoryQueueStartInventory"
      },
      "task": true
    },
    {
      "name": "postInvokeCirrusInventoryQueueReportError",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCirrusInventoryQueueReportError"
      },
      "task": true
    },
    {
      "name": "postInvokeCirrusInventoryQueueCancelInventory",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCirrusInventoryQueueCancelInventory"
      },
      "task": true
    },
    {
      "name": "postInvokeCirrusInventoryQueueClearInventory",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCirrusInventoryQueueClearInventory"
      },
      "task": true
    },
    {
      "name": "postInvokeNCMVulnerabilitiesAnnouncementsStartVulnerabilityMatching",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeNCMVulnerabilitiesAnnouncementsStartVulnerabilityMatching"
      },
      "task": true
    },
    {
      "name": "postInvokeNCMVulnerabilitiesAnnouncementsIsVulnerabilityMatchingActive",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeNCMVulnerabilitiesAnnouncementsIsVulnerabilityMatchingActive"
      },
      "task": true
    },
    {
      "name": "postInvokeNCMVulnerabilitiesAnnouncementsInitVulnerabilitySchedule",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeNCMVulnerabilitiesAnnouncementsInitVulnerabilitySchedule"
      },
      "task": true
    },
    {
      "name": "postInvokeCirrusConfigSnippetsAddSnippet",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCirrusConfigSnippetsAddSnippet"
      },
      "task": true
    },
    {
      "name": "postInvokeCirrusConfigSnippetsGetSnippet",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCirrusConfigSnippetsGetSnippet"
      },
      "task": true
    },
    {
      "name": "postInvokeCirrusConfigSnippetsUpdateSnippet",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCirrusConfigSnippetsUpdateSnippet"
      },
      "task": true
    },
    {
      "name": "postInvokeCirrusConfigSnippetsDeleteSnippets",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCirrusConfigSnippetsDeleteSnippets"
      },
      "task": true
    },
    {
      "name": "postInvokeCirrusConfigSnippetsImportSnippets",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCirrusConfigSnippetsImportSnippets"
      },
      "task": true
    },
    {
      "name": "postInvokeCirrusConfigSnippetsCopySnippets",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCirrusConfigSnippetsCopySnippets"
      },
      "task": true
    },
    {
      "name": "postInvokeCirrusConfigSnippetsGetTagsList",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCirrusConfigSnippetsGetTagsList"
      },
      "task": true
    },
    {
      "name": "postInvokeCirrusConfigSnippetsGetTagsListForSnippets",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCirrusConfigSnippetsGetTagsListForSnippets"
      },
      "task": true
    },
    {
      "name": "postInvokeCirrusConfigSnippetsAddTags",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCirrusConfigSnippetsAddTags"
      },
      "task": true
    },
    {
      "name": "postInvokeCirrusConfigSnippetsDeleteTags",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCirrusConfigSnippetsDeleteTags"
      },
      "task": true
    },
    {
      "name": "postInvokeCirrusConfigSnippetsSaveSnippetAsCopy",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCirrusConfigSnippetsSaveSnippetAsCopy"
      },
      "task": true
    },
    {
      "name": "postInvokeCirrusConfigArchiveDownload",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCirrusConfigArchiveDownload"
      },
      "task": true
    },
    {
      "name": "postInvokeCirrusConfigArchiveGetStatus",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCirrusConfigArchiveGetStatus"
      },
      "task": true
    },
    {
      "name": "postInvokeCirrusConfigArchiveGetStatusWithLimitations",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCirrusConfigArchiveGetStatusWithLimitations"
      },
      "task": true
    },
    {
      "name": "postInvokeCirrusConfigArchiveUpload",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCirrusConfigArchiveUpload"
      },
      "task": true
    },
    {
      "name": "postInvokeCirrusConfigArchiveExecute",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCirrusConfigArchiveExecute"
      },
      "task": true
    },
    {
      "name": "postInvokeCirrusConfigArchiveCancelTransfer",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCirrusConfigArchiveCancelTransfer"
      },
      "task": true
    },
    {
      "name": "postInvokeCirrusConfigArchiveCancelTransferWithLimitations",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCirrusConfigArchiveCancelTransferWithLimitations"
      },
      "task": true
    },
    {
      "name": "postInvokeCirrusConfigArchiveClearComplete",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCirrusConfigArchiveClearComplete"
      },
      "task": true
    },
    {
      "name": "postInvokeCirrusConfigArchiveClearCompleteWithLimitations",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCirrusConfigArchiveClearCompleteWithLimitations"
      },
      "task": true
    },
    {
      "name": "postInvokeCirrusConfigArchiveClearErrors",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCirrusConfigArchiveClearErrors"
      },
      "task": true
    },
    {
      "name": "postInvokeCirrusConfigArchiveClearErrorsWithLimitations",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCirrusConfigArchiveClearErrorsWithLimitations"
      },
      "task": true
    },
    {
      "name": "postInvokeCirrusConfigArchiveClearAll",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCirrusConfigArchiveClearAll"
      },
      "task": true
    },
    {
      "name": "postInvokeCirrusConfigArchiveClearAllWithLimitations",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCirrusConfigArchiveClearAllWithLimitations"
      },
      "task": true
    },
    {
      "name": "postInvokeCirrusConfigArchiveGetPermissionsByRole",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCirrusConfigArchiveGetPermissionsByRole"
      },
      "task": true
    },
    {
      "name": "postInvokeCirrusConfigArchiveDeleteConfigs",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCirrusConfigArchiveDeleteConfigs"
      },
      "task": true
    },
    {
      "name": "postInvokeCirrusConfigArchiveGetConfigTypes",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCirrusConfigArchiveGetConfigTypes"
      },
      "task": true
    },
    {
      "name": "postInvokeCirrusConfigArchiveReportError",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCirrusConfigArchiveReportError"
      },
      "task": true
    },
    {
      "name": "postInvokeCirrusConfigArchiveCancelTransfers",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCirrusConfigArchiveCancelTransfers"
      },
      "task": true
    },
    {
      "name": "postInvokeCirrusConfigArchiveClearTransfers",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCirrusConfigArchiveClearTransfers"
      },
      "task": true
    },
    {
      "name": "postInvokeCirrusConfigArchiveExecuteScript",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCirrusConfigArchiveExecuteScript"
      },
      "task": true
    },
    {
      "name": "postInvokeCirrusConfigArchiveUploadConfig",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCirrusConfigArchiveUploadConfig"
      },
      "task": true
    },
    {
      "name": "postInvokeCirrusConfigArchiveDownloadConfig",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCirrusConfigArchiveDownloadConfig"
      },
      "task": true
    },
    {
      "name": "postInvokeCirrusConfigArchiveExecuteScriptOnNodes",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCirrusConfigArchiveExecuteScriptOnNodes"
      },
      "task": true
    },
    {
      "name": "postInvokeCirrusConfigArchiveDownloadConfigOnNodes",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCirrusConfigArchiveDownloadConfigOnNodes"
      },
      "task": true
    },
    {
      "name": "postInvokeCirrusConfigArchiveConfigSearch",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCirrusConfigArchiveConfigSearch"
      },
      "task": true
    },
    {
      "name": "postInvokeCirrusConfigArchiveRunIndexOptimization",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCirrusConfigArchiveRunIndexOptimization"
      },
      "task": true
    },
    {
      "name": "postInvokeCirrusConfigArchiveUpdateConfig",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCirrusConfigArchiveUpdateConfig"
      },
      "task": true
    },
    {
      "name": "postInvokeCirrusConfigArchiveCloneConfig",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCirrusConfigArchiveCloneConfig"
      },
      "task": true
    },
    {
      "name": "postInvokeCirrusConfigArchiveImportConfig",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCirrusConfigArchiveImportConfig"
      },
      "task": true
    },
    {
      "name": "postInvokeCirrusConfigArchiveSetClearBaseline",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCirrusConfigArchiveSetClearBaseline"
      },
      "task": true
    },
    {
      "name": "postInvokeCirrusConfigArchiveValidateBinaryConfigStorage",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCirrusConfigArchiveValidateBinaryConfigStorage"
      },
      "task": true
    },
    {
      "name": "postInvokeCirrusConfigArchiveSearchInterfaceConfigSnippet",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCirrusConfigArchiveSearchInterfaceConfigSnippet"
      },
      "task": true
    },
    {
      "name": "postInvokeCirrusConfigArchiveGetInterfaceConfigSnippets",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCirrusConfigArchiveGetInterfaceConfigSnippets"
      },
      "task": true
    },
    {
      "name": "postInvokeCirrusSnippetArchiveAddSnippet",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCirrusSnippetArchiveAddSnippet"
      },
      "task": true
    },
    {
      "name": "postInvokeCirrusSnippetArchiveDeleteSnippet",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCirrusSnippetArchiveDeleteSnippet"
      },
      "task": true
    },
    {
      "name": "postInvokeCirrusSnippetArchiveUpdateSnippet",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCirrusSnippetArchiveUpdateSnippet"
      },
      "task": true
    },
    {
      "name": "postInvokeCirrusPolicyReportsTestRule",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCirrusPolicyReportsTestRule"
      },
      "task": true
    },
    {
      "name": "postInvokeCirrusPolicyReportsGetPolicyReport",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCirrusPolicyReportsGetPolicyReport"
      },
      "task": true
    },
    {
      "name": "postInvokeCirrusPolicyReportsUpdatePolicyReport",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCirrusPolicyReportsUpdatePolicyReport"
      },
      "task": true
    },
    {
      "name": "postInvokeCirrusPolicyReportsAddPolicyReport",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCirrusPolicyReportsAddPolicyReport"
      },
      "task": true
    },
    {
      "name": "postInvokeCirrusPolicyReportsDeletePolicyReports",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCirrusPolicyReportsDeletePolicyReports"
      },
      "task": true
    },
    {
      "name": "postInvokeCirrusPolicyReportsGetPolicy",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCirrusPolicyReportsGetPolicy"
      },
      "task": true
    },
    {
      "name": "postInvokeCirrusPolicyReportsUpdatePolicy",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCirrusPolicyReportsUpdatePolicy"
      },
      "task": true
    },
    {
      "name": "postInvokeCirrusPolicyReportsAddPolicy",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCirrusPolicyReportsAddPolicy"
      },
      "task": true
    },
    {
      "name": "postInvokeCirrusPolicyReportsDeletePolicies",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCirrusPolicyReportsDeletePolicies"
      },
      "task": true
    },
    {
      "name": "postInvokeCirrusPolicyReportsGetPolicyRule",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCirrusPolicyReportsGetPolicyRule"
      },
      "task": true
    },
    {
      "name": "postInvokeCirrusPolicyReportsUpdatePolicyRule",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCirrusPolicyReportsUpdatePolicyRule"
      },
      "task": true
    },
    {
      "name": "postInvokeCirrusPolicyReportsAddPolicyRule",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCirrusPolicyReportsAddPolicyRule"
      },
      "task": true
    },
    {
      "name": "postInvokeCirrusPolicyReportsDeletePolicyRules",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCirrusPolicyReportsDeletePolicyRules"
      },
      "task": true
    },
    {
      "name": "postInvokeCirrusPolicyReportsStartCaching",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCirrusPolicyReportsStartCaching"
      },
      "task": true
    },
    {
      "name": "postInvokeCirrusPolicyReportsUpdateReportStatus",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCirrusPolicyReportsUpdateReportStatus"
      },
      "task": true
    },
    {
      "name": "postInvokeCirrusPolicyReportsGetPagablePoliciesList",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCirrusPolicyReportsGetPagablePoliciesList"
      },
      "task": true
    },
    {
      "name": "postInvokeCirrusPolicyReportsGetPoliciesRowCount",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCirrusPolicyReportsGetPoliciesRowCount"
      },
      "task": true
    },
    {
      "name": "postInvokeCirrusPolicyReportsGetPagablePolicyRulesList",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCirrusPolicyReportsGetPagablePolicyRulesList"
      },
      "task": true
    },
    {
      "name": "postInvokeCirrusPolicyReportsGetPolicyRulesRowCount",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCirrusPolicyReportsGetPolicyRulesRowCount"
      },
      "task": true
    },
    {
      "name": "postInvokeCirrusPolicyReportsGetComplianceDataTable",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCirrusPolicyReportsGetComplianceDataTable"
      },
      "task": true
    },
    {
      "name": "postInvokeCirrusPolicyReportsGetComplianceColumnsInJSON",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCirrusPolicyReportsGetComplianceColumnsInJSON"
      },
      "task": true
    },
    {
      "name": "postInvokeCirrusPolicyReportsGetRowNumber",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCirrusPolicyReportsGetRowNumber"
      },
      "task": true
    },
    {
      "name": "postInvokeCirrusPolicyReportsGenerateRemediationScriptForNodes",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCirrusPolicyReportsGenerateRemediationScriptForNodes"
      },
      "task": true
    },
    {
      "name": "postInvokeNCMEosBeginRefreshAll",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeNCMEosBeginRefreshAll"
      },
      "task": true
    },
    {
      "name": "postInvokeNCMEosRefreshNow",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeNCMEosRefreshNow"
      },
      "task": true
    },
    {
      "name": "postInvokeNCMEosIsRefreshingAll",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeNCMEosIsRefreshingAll"
      },
      "task": true
    },
    {
      "name": "postInvokeNCMEosInitSchedule",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeNCMEosInitSchedule"
      },
      "task": true
    },
    {
      "name": "postInvokeNCMFirmwareStorageValidateFirmwareStorage",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeNCMFirmwareStorageValidateFirmwareStorage"
      },
      "task": true
    },
    {
      "name": "postInvokeNCMFirmwareStorageDeleteFirmwareImages",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeNCMFirmwareStorageDeleteFirmwareImages"
      },
      "task": true
    },
    {
      "name": "postInvokeNCMFirmwareDefinitionsGetFirmwareDefinition",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeNCMFirmwareDefinitionsGetFirmwareDefinition"
      },
      "task": true
    },
    {
      "name": "postInvokeNCMFirmwareDefinitionsAddFirmwareDefinition",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeNCMFirmwareDefinitionsAddFirmwareDefinition"
      },
      "task": true
    },
    {
      "name": "postInvokeNCMFirmwareDefinitionsUpdateFirmwareDefinition",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeNCMFirmwareDefinitionsUpdateFirmwareDefinition"
      },
      "task": true
    },
    {
      "name": "postInvokeNCMFirmwareDefinitionsDeleteFirmwareDefinitions",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeNCMFirmwareDefinitionsDeleteFirmwareDefinitions"
      },
      "task": true
    },
    {
      "name": "postInvokeNCMFirmwareOperationsPrepareFirmwareUpgrade",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeNCMFirmwareOperationsPrepareFirmwareUpgrade"
      },
      "task": true
    },
    {
      "name": "postInvokeNCMFirmwareOperationsPrepareRollBack",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeNCMFirmwareOperationsPrepareRollBack"
      },
      "task": true
    },
    {
      "name": "postInvokeNCMFirmwareOperationsPrepareReExecuteFailed",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeNCMFirmwareOperationsPrepareReExecuteFailed"
      },
      "task": true
    },
    {
      "name": "postInvokeNCMFirmwareOperationsStartUpgrade",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeNCMFirmwareOperationsStartUpgrade"
      },
      "task": true
    },
    {
      "name": "postInvokeNCMFirmwareOperationsCancelUpgrade",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeNCMFirmwareOperationsCancelUpgrade"
      },
      "task": true
    },
    {
      "name": "postInvokeNCMFirmwareOperationsGenerateScriptPreview",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeNCMFirmwareOperationsGenerateScriptPreview"
      },
      "task": true
    },
    {
      "name": "postInvokeCirrusReportsRun",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCirrusReportsRun"
      },
      "task": true
    },
    {
      "name": "postInvokeCirrusReportsRunPagable",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCirrusReportsRunPagable"
      },
      "task": true
    },
    {
      "name": "postInvokeCirrusReportsGetRecordsCount",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCirrusReportsGetRecordsCount"
      },
      "task": true
    },
    {
      "name": "postInvokeCirrusReportsGetDiplayableColumns",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCirrusReportsGetDiplayableColumns"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionGroupCustomPropertiesCreateCustomProperty",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionGroupCustomPropertiesCreateCustomProperty"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionGroupCustomPropertiesCreateCustomPropertyWithValues",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionGroupCustomPropertiesCreateCustomPropertyWithValues"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionGroupCustomPropertiesModifyCustomProperty",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionGroupCustomPropertiesModifyCustomProperty"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionGroupCustomPropertiesDeleteCustomProperty",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionGroupCustomPropertiesDeleteCustomProperty"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionGroupCustomPropertiesValidateCustomProperty",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionGroupCustomPropertiesValidateCustomProperty"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionContainerMemberDefinitionGetMembers",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionContainerMemberDefinitionGetMembers"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionContainerMemberDefinitionGetFirstNMembers",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionContainerMemberDefinitionGetFirstNMembers"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexManagementPublishEvent",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexManagementPublishEvent"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionCiscoAciApicCoreAssignToEngine",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionCiscoAciApicCoreAssignToEngine"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionCiscoAciApicCoreGetSupportedMetrics",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionCiscoAciApicCoreGetSupportedMetrics"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionCiscoAciApicCoreInventoryNow",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionCiscoAciApicCoreInventoryNow"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionCiscoAciApicCorePollNow",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionCiscoAciApicCorePollNow"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionCiscoAciApicCoreSetPolling",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionCiscoAciApicCoreSetPolling"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionCiscoAciApicCoreStartRealTimePolling",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionCiscoAciApicCoreStartRealTimePolling"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionCiscoAciApicCoreStopRealTimePolling",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionCiscoAciApicCoreStopRealTimePolling"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionCiscoAciApicOrionCiscoAciAssignAciPolling",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionCiscoAciApicOrionCiscoAciAssignAciPolling"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionCiscoAciApicOrionCiscoAciGetPollInterval",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionCiscoAciApicOrionCiscoAciGetPollInterval"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionCiscoAciApicOrionCiscoAciIsAciPollingAssigned",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionCiscoAciApicOrionCiscoAciIsAciPollingAssigned"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionCiscoAciApicOrionCiscoAciSyncAciCredentialsWithOrion",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionCiscoAciApicOrionCiscoAciSyncAciCredentialsWithOrion"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionCiscoAciApicOrionCiscoAciTestAciCredentials",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionCiscoAciApicOrionCiscoAciTestAciCredentials"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionCiscoAciApicOrionCiscoAciUnassignAciPolling",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionCiscoAciApicOrionCiscoAciUnassignAciPolling"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionCiscoAciApplicationProfileCoreAssignToEngine",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionCiscoAciApplicationProfileCoreAssignToEngine"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionCiscoAciApplicationProfileCoreGetSupportedMetrics",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionCiscoAciApplicationProfileCoreGetSupportedMetrics"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionCiscoAciApplicationProfileCoreInventoryNow",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionCiscoAciApplicationProfileCoreInventoryNow"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionCiscoAciApplicationProfileCorePollNow",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionCiscoAciApplicationProfileCorePollNow"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionCiscoAciApplicationProfileCoreSetPolling",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionCiscoAciApplicationProfileCoreSetPolling"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionCiscoAciApplicationProfileCoreStartRealTimePolling",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionCiscoAciApplicationProfileCoreStartRealTimePolling"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionCiscoAciApplicationProfileCoreStopRealTimePolling",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionCiscoAciApplicationProfileCoreStopRealTimePolling"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionCiscoAciEndpointGroupCoreAssignToEngine",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionCiscoAciEndpointGroupCoreAssignToEngine"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionCiscoAciEndpointGroupCoreGetSupportedMetrics",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionCiscoAciEndpointGroupCoreGetSupportedMetrics"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionCiscoAciEndpointGroupCoreInventoryNow",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionCiscoAciEndpointGroupCoreInventoryNow"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionCiscoAciEndpointGroupCorePollNow",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionCiscoAciEndpointGroupCorePollNow"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionCiscoAciEndpointGroupCoreSetPolling",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionCiscoAciEndpointGroupCoreSetPolling"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionCiscoAciEndpointGroupCoreStartRealTimePolling",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionCiscoAciEndpointGroupCoreStartRealTimePolling"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionCiscoAciEndpointGroupCoreStopRealTimePolling",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionCiscoAciEndpointGroupCoreStopRealTimePolling"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionCiscoAciFabricCoreAssignToEngine",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionCiscoAciFabricCoreAssignToEngine"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionCiscoAciFabricCoreGetSupportedMetrics",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionCiscoAciFabricCoreGetSupportedMetrics"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionCiscoAciFabricCoreInventoryNow",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionCiscoAciFabricCoreInventoryNow"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionCiscoAciFabricCorePollNow",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionCiscoAciFabricCorePollNow"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionCiscoAciFabricCoreSetPolling",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionCiscoAciFabricCoreSetPolling"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionCiscoAciFabricCoreStartRealTimePolling",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionCiscoAciFabricCoreStartRealTimePolling"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionCiscoAciFabricCoreStopRealTimePolling",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionCiscoAciFabricCoreStopRealTimePolling"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionCiscoAciPhysicalEntityCoreAssignToEngine",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionCiscoAciPhysicalEntityCoreAssignToEngine"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionCiscoAciPhysicalEntityCoreGetSupportedMetrics",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionCiscoAciPhysicalEntityCoreGetSupportedMetrics"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionCiscoAciPhysicalEntityCoreInventoryNow",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionCiscoAciPhysicalEntityCoreInventoryNow"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionCiscoAciPhysicalEntityCorePollNow",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionCiscoAciPhysicalEntityCorePollNow"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionCiscoAciPhysicalEntityCoreSetPolling",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionCiscoAciPhysicalEntityCoreSetPolling"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionCiscoAciPhysicalEntityCoreStartRealTimePolling",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionCiscoAciPhysicalEntityCoreStartRealTimePolling"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionCiscoAciPhysicalEntityCoreStopRealTimePolling",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionCiscoAciPhysicalEntityCoreStopRealTimePolling"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionCiscoAciTenantCoreAssignToEngine",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionCiscoAciTenantCoreAssignToEngine"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionCiscoAciTenantCoreGetSupportedMetrics",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionCiscoAciTenantCoreGetSupportedMetrics"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionCiscoAciTenantCoreInventoryNow",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionCiscoAciTenantCoreInventoryNow"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionCiscoAciTenantCorePollNow",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionCiscoAciTenantCorePollNow"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionCiscoAciTenantCoreSetPolling",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionCiscoAciTenantCoreSetPolling"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionCiscoAciTenantCoreStartRealTimePolling",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionCiscoAciTenantCoreStartRealTimePolling"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionCiscoAciTenantCoreStopRealTimePolling",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionCiscoAciTenantCoreStopRealTimePolling"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionCmanContainerCoreAssignToEngine",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionCmanContainerCoreAssignToEngine"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionCmanContainerCoreGetSupportedMetrics",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionCmanContainerCoreGetSupportedMetrics"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionCmanContainerCoreInventoryNow",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionCmanContainerCoreInventoryNow"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionCmanContainerCorePollNow",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionCmanContainerCorePollNow"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionCmanContainerCoreSetPolling",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionCmanContainerCoreSetPolling"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionCmanContainerCoreStartRealTimePolling",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionCmanContainerCoreStartRealTimePolling"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionCmanContainerCoreStopRealTimePolling",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionCmanContainerCoreStopRealTimePolling"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionCmanContainerAgentCoreAssignToEngine",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionCmanContainerAgentCoreAssignToEngine"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionCmanContainerAgentCoreGetSupportedMetrics",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionCmanContainerAgentCoreGetSupportedMetrics"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionCmanContainerAgentCoreInventoryNow",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionCmanContainerAgentCoreInventoryNow"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionCmanContainerAgentCorePollNow",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionCmanContainerAgentCorePollNow"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionCmanContainerAgentCoreSetPolling",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionCmanContainerAgentCoreSetPolling"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionCmanContainerAgentCoreStartRealTimePolling",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionCmanContainerAgentCoreStartRealTimePolling"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionCmanContainerAgentCoreStopRealTimePolling",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionCmanContainerAgentCoreStopRealTimePolling"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionCmanContainerEnvironmentVariableCoreAssignToEngine",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionCmanContainerEnvironmentVariableCoreAssignToEngine"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionCmanContainerEnvironmentVariableCoreGetSupportedMetrics",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionCmanContainerEnvironmentVariableCoreGetSupportedMetrics"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionCmanContainerEnvironmentVariableCoreInventoryNow",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionCmanContainerEnvironmentVariableCoreInventoryNow"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionCmanContainerEnvironmentVariableCorePollNow",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionCmanContainerEnvironmentVariableCorePollNow"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionCmanContainerEnvironmentVariableCoreSetPolling",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionCmanContainerEnvironmentVariableCoreSetPolling"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionCmanContainerEnvironmentVariableCoreStartRealTimePolling",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionCmanContainerEnvironmentVariableCoreStartRealTimePolling"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionCmanContainerEnvironmentVariableCoreStopRealTimePolling",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionCmanContainerEnvironmentVariableCoreStopRealTimePolling"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionCmanContainerHostCoreAssignToEngine",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionCmanContainerHostCoreAssignToEngine"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionCmanContainerHostCoreGetSupportedMetrics",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionCmanContainerHostCoreGetSupportedMetrics"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionCmanContainerHostCoreInventoryNow",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionCmanContainerHostCoreInventoryNow"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionCmanContainerHostCorePollNow",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionCmanContainerHostCorePollNow"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionCmanContainerHostCoreSetPolling",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionCmanContainerHostCoreSetPolling"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionCmanContainerHostCoreStartRealTimePolling",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionCmanContainerHostCoreStartRealTimePolling"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionCmanContainerHostCoreStopRealTimePolling",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionCmanContainerHostCoreStopRealTimePolling"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionCmanContainerImageCoreAssignToEngine",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionCmanContainerImageCoreAssignToEngine"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionCmanContainerImageCoreGetSupportedMetrics",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionCmanContainerImageCoreGetSupportedMetrics"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionCmanContainerImageCoreInventoryNow",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionCmanContainerImageCoreInventoryNow"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionCmanContainerImageCorePollNow",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionCmanContainerImageCorePollNow"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionCmanContainerImageCoreSetPolling",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionCmanContainerImageCoreSetPolling"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionCmanContainerImageCoreStartRealTimePolling",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionCmanContainerImageCoreStartRealTimePolling"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionCmanContainerImageCoreStopRealTimePolling",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionCmanContainerImageCoreStopRealTimePolling"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionMonitoringElementCoreAssignToEngine",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionMonitoringElementCoreAssignToEngine"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionMonitoringElementCoreGetSupportedMetrics",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionMonitoringElementCoreGetSupportedMetrics"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionMonitoringElementCoreInventoryNow",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionMonitoringElementCoreInventoryNow"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionMonitoringElementCorePollNow",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionMonitoringElementCorePollNow"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionMonitoringElementCoreSetPolling",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionMonitoringElementCoreSetPolling"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionMonitoringElementCoreStartRealTimePolling",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionMonitoringElementCoreStartRealTimePolling"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionMonitoringElementCoreStopRealTimePolling",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionMonitoringElementCoreStopRealTimePolling"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionInterfaceCoreAddToCortex",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionInterfaceCoreAddToCortex"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionInterfaceCoreAssignToEngine",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionInterfaceCoreAssignToEngine"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionInterfaceCoreGetSupportedMetrics",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionInterfaceCoreGetSupportedMetrics"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionInterfaceCoreInventoryNow",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionInterfaceCoreInventoryNow"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionInterfaceCorePollNow",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionInterfaceCorePollNow"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionInterfaceCoreSetPolling",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionInterfaceCoreSetPolling"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionInterfaceCoreStartRealTimePolling",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionInterfaceCoreStartRealTimePolling"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionInterfaceCoreStopRealTimePolling",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionInterfaceCoreStopRealTimePolling"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionNodeCoreAddToCortex",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionNodeCoreAddToCortex"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionNodeCoreAssignToEngine",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionNodeCoreAssignToEngine"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionNodeCoreGetSupportedMetrics",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionNodeCoreGetSupportedMetrics"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionNodeCoreInventoryNow",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionNodeCoreInventoryNow"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionNodeCorePollNow",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionNodeCorePollNow"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionNodeCoreSetPolling",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionNodeCoreSetPolling"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionNodeCoreStartRealTimePolling",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionNodeCoreStartRealTimePolling"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionNodeCoreStopRealTimePolling",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionNodeCoreStopRealTimePolling"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionPowerControlUnitCoreAssignToEngine",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionPowerControlUnitCoreAssignToEngine"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionPowerControlUnitCoreGetSupportedMetrics",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionPowerControlUnitCoreGetSupportedMetrics"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionPowerControlUnitCoreInventoryNow",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionPowerControlUnitCoreInventoryNow"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionPowerControlUnitCorePollNow",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionPowerControlUnitCorePollNow"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionPowerControlUnitCoreSetPolling",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionPowerControlUnitCoreSetPolling"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionPowerControlUnitCoreStartRealTimePolling",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionPowerControlUnitCoreStartRealTimePolling"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionPowerControlUnitCoreStopRealTimePolling",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionPowerControlUnitCoreStopRealTimePolling"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionVirtualizationClusterCoreAssignToEngine",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionVirtualizationClusterCoreAssignToEngine"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionVirtualizationClusterCoreGetSupportedMetrics",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionVirtualizationClusterCoreGetSupportedMetrics"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionVirtualizationClusterCoreInventoryNow",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionVirtualizationClusterCoreInventoryNow"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionVirtualizationClusterCorePollNow",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionVirtualizationClusterCorePollNow"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionVirtualizationClusterCoreSetPolling",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionVirtualizationClusterCoreSetPolling"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionVirtualizationClusterCoreStartRealTimePolling",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionVirtualizationClusterCoreStartRealTimePolling"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionVirtualizationClusterCoreStopRealTimePolling",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionVirtualizationClusterCoreStopRealTimePolling"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionVirtualizationDataCenterCoreAssignToEngine",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionVirtualizationDataCenterCoreAssignToEngine"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionVirtualizationDataCenterCoreGetSupportedMetrics",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionVirtualizationDataCenterCoreGetSupportedMetrics"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionVirtualizationDataCenterCoreInventoryNow",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionVirtualizationDataCenterCoreInventoryNow"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionVirtualizationDataCenterCorePollNow",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionVirtualizationDataCenterCorePollNow"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionVirtualizationDataCenterCoreSetPolling",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionVirtualizationDataCenterCoreSetPolling"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionVirtualizationDataCenterCoreStartRealTimePolling",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionVirtualizationDataCenterCoreStartRealTimePolling"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionVirtualizationDataCenterCoreStopRealTimePolling",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionVirtualizationDataCenterCoreStopRealTimePolling"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionVirtualizationDatastoreCoreAssignToEngine",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionVirtualizationDatastoreCoreAssignToEngine"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionVirtualizationDatastoreCoreGetSupportedMetrics",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionVirtualizationDatastoreCoreGetSupportedMetrics"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionVirtualizationDatastoreCoreInventoryNow",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionVirtualizationDatastoreCoreInventoryNow"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionVirtualizationDatastoreCorePollNow",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionVirtualizationDatastoreCorePollNow"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionVirtualizationDatastoreCoreSetPolling",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionVirtualizationDatastoreCoreSetPolling"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionVirtualizationDatastoreCoreStartRealTimePolling",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionVirtualizationDatastoreCoreStartRealTimePolling"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionVirtualizationDatastoreCoreStopRealTimePolling",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionVirtualizationDatastoreCoreStopRealTimePolling"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionVirtualizationHostCoreAssignToEngine",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionVirtualizationHostCoreAssignToEngine"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionVirtualizationHostCoreGetSupportedMetrics",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionVirtualizationHostCoreGetSupportedMetrics"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionVirtualizationHostCoreInventoryNow",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionVirtualizationHostCoreInventoryNow"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionVirtualizationHostCorePollNow",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionVirtualizationHostCorePollNow"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionVirtualizationHostCoreSetPolling",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionVirtualizationHostCoreSetPolling"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionVirtualizationHostCoreStartRealTimePolling",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionVirtualizationHostCoreStartRealTimePolling"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionVirtualizationHostCoreStopRealTimePolling",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionVirtualizationHostCoreStopRealTimePolling"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionVirtualizationHypervisorEntityCoreAssignToEngine",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionVirtualizationHypervisorEntityCoreAssignToEngine"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionVirtualizationHypervisorEntityCoreGetSupportedMetrics",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionVirtualizationHypervisorEntityCoreGetSupportedMetrics"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionVirtualizationHypervisorEntityCoreInventoryNow",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionVirtualizationHypervisorEntityCoreInventoryNow"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionVirtualizationHypervisorEntityCorePollNow",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionVirtualizationHypervisorEntityCorePollNow"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionVirtualizationHypervisorEntityCoreSetPolling",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionVirtualizationHypervisorEntityCoreSetPolling"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionVirtualizationHypervisorEntityCoreStartRealTimePolling",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionVirtualizationHypervisorEntityCoreStartRealTimePolling"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionVirtualizationHypervisorEntityCoreStopRealTimePolling",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionVirtualizationHypervisorEntityCoreStopRealTimePolling"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionVirtualizationVCenterCoreAssignToEngine",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionVirtualizationVCenterCoreAssignToEngine"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionVirtualizationVCenterCoreGetSupportedMetrics",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionVirtualizationVCenterCoreGetSupportedMetrics"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionVirtualizationVCenterCoreInventoryNow",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionVirtualizationVCenterCoreInventoryNow"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionVirtualizationVCenterCorePollNow",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionVirtualizationVCenterCorePollNow"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionVirtualizationVCenterCoreSetPolling",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionVirtualizationVCenterCoreSetPolling"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionVirtualizationVCenterCoreStartRealTimePolling",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionVirtualizationVCenterCoreStartRealTimePolling"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionVirtualizationVCenterCoreStopRealTimePolling",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionVirtualizationVCenterCoreStopRealTimePolling"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionVirtualizationVirtualMachineCoreAssignToEngine",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionVirtualizationVirtualMachineCoreAssignToEngine"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionVirtualizationVirtualMachineCoreGetSupportedMetrics",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionVirtualizationVirtualMachineCoreGetSupportedMetrics"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionVirtualizationVirtualMachineCoreInventoryNow",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionVirtualizationVirtualMachineCoreInventoryNow"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionVirtualizationVirtualMachineCorePollNow",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionVirtualizationVirtualMachineCorePollNow"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionVirtualizationVirtualMachineCoreSetPolling",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionVirtualizationVirtualMachineCoreSetPolling"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionVirtualizationVirtualMachineCoreStartRealTimePolling",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionVirtualizationVirtualMachineCoreStartRealTimePolling"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionVirtualizationVirtualMachineCoreStopRealTimePolling",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionVirtualizationVirtualMachineCoreStopRealTimePolling"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionVirtualizationVirtualMachineDiskCoreAssignToEngine",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionVirtualizationVirtualMachineDiskCoreAssignToEngine"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionVirtualizationVirtualMachineDiskCoreGetSupportedMetrics",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionVirtualizationVirtualMachineDiskCoreGetSupportedMetrics"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionVirtualizationVirtualMachineDiskCoreInventoryNow",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionVirtualizationVirtualMachineDiskCoreInventoryNow"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionVirtualizationVirtualMachineDiskCorePollNow",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionVirtualizationVirtualMachineDiskCorePollNow"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionVirtualizationVirtualMachineDiskCoreSetPolling",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionVirtualizationVirtualMachineDiskCoreSetPolling"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionVirtualizationVirtualMachineDiskCoreStartRealTimePolling",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionVirtualizationVirtualMachineDiskCoreStartRealTimePolling"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionVirtualizationVirtualMachineDiskCoreStopRealTimePolling",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionVirtualizationVirtualMachineDiskCoreStopRealTimePolling"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionVirtualizationVSanCoreAssignToEngine",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionVirtualizationVSanCoreAssignToEngine"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionVirtualizationVSanCoreGetSupportedMetrics",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionVirtualizationVSanCoreGetSupportedMetrics"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionVirtualizationVSanCoreInventoryNow",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionVirtualizationVSanCoreInventoryNow"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionVirtualizationVSanCorePollNow",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionVirtualizationVSanCorePollNow"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionVirtualizationVSanCoreSetPolling",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionVirtualizationVSanCoreSetPolling"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionVirtualizationVSanCoreStartRealTimePolling",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionVirtualizationVSanCoreStartRealTimePolling"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionVirtualizationVSanCoreStopRealTimePolling",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionVirtualizationVSanCoreStopRealTimePolling"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionVolumeCoreAddToCortex",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionVolumeCoreAddToCortex"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionVolumeCoreAssignToEngine",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionVolumeCoreAssignToEngine"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionVolumeCoreGetSupportedMetrics",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionVolumeCoreGetSupportedMetrics"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionVolumeCoreInventoryNow",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionVolumeCoreInventoryNow"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionVolumeCorePollNow",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionVolumeCorePollNow"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionVolumeCoreSetPolling",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionVolumeCoreSetPolling"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionVolumeCoreStartRealTimePolling",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionVolumeCoreStartRealTimePolling"
      },
      "task": true
    },
    {
      "name": "postInvokeCortexOrionVolumeCoreStopRealTimePolling",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeCortexOrionVolumeCoreStopRealTimePolling"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionDPADpaServerRefreshSchema",
      "summary": "",
      "description": "Refresh federation schema of for particular DPA Server",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "Refresh federation schema of for particular DPA Server",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionDPADpaServerRefreshSchema"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionDPIProbesReloadProbeSettings",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionDPIProbesReloadProbeSettings"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionDPIProbesReloadAppDefinitions",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionDPIProbesReloadAppDefinitions"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionDPIProbesGetProbeCapabilities",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionDPIProbesGetProbeCapabilities"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionDPIProbesDeployLocalTrafficProbe",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionDPIProbesDeployLocalTrafficProbe"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionDPIProbesDeploySpanPortProbe",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionDPIProbesDeploySpanPortProbe"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionESIIncidentIntegrationSetIncidentIntegrationState",
      "summary": "",
      "description": "Sets the state of incident integration respectd by Orion web UI. True is enabled, false means disabled.",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "Sets the state of incident integration respectd by Orion web UI. True is enabled, false means disabled.",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionESIIncidentIntegrationSetIncidentIntegrationState"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionF5SystemDeviceTestApiPolling",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionF5SystemDeviceTestApiPolling"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionF5SystemDeviceEnableApiPolling",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionF5SystemDeviceEnableApiPolling"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionF5SystemDeviceDisableApiPolling",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionF5SystemDeviceDisableApiPolling"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionF5LTMServerLinkNode",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionF5LTMServerLinkNode"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionF5LTMServerUnlinkNode",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionF5LTMServerUnlinkNode"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionHardwareHealthHardwareInfoBaseEnableHardwareHealth",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionHardwareHealthHardwareInfoBaseEnableHardwareHealth"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionHardwareHealthHardwareInfoBaseDisableHardwareHealth",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionHardwareHealthHardwareInfoBaseDisableHardwareHealth"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionHardwareHealthHardwareInfoBaseDeleteHardwareHealth",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionHardwareHealthHardwareInfoBaseDeleteHardwareHealth"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionHardwareHealthHardwareInfoBaseIsHardwareHealthEnabled",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionHardwareHealthHardwareInfoBaseIsHardwareHealthEnabled"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionHardwareHealthHardwareItemBaseEnableSensors",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionHardwareHealthHardwareItemBaseEnableSensors"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionHardwareHealthHardwareItemBaseDisableSensors",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionHardwareHealthHardwareItemBaseDisableSensors"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionHardwareHealthHardwareItemThresholdSetThreshold",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionHardwareHealthHardwareItemThresholdSetThreshold"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionHardwareHealthHardwareItemThresholdClearThresholds",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionHardwareHealthHardwareItemThresholdClearThresholds"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionHAPoolsCreatePool",
      "summary": "",
      "description": "Creates pool based on provided members and resource parameters",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "Creates pool based on provided members and resource parameters",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionHAPoolsCreatePool"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionHAPoolsEditPool",
      "summary": "",
      "description": "Updates pool with a given poolId",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "Updates pool with a given poolId",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionHAPoolsEditPool"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionHAPoolsValidateCreatePool",
      "summary": "",
      "description": "Validates pool (without creating it) based on provided members and resource parameters",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "Validates pool (without creating it) based on provided members and resource parameters",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionHAPoolsValidateCreatePool"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionHAPoolsValidateEditPool",
      "summary": "",
      "description": "Validates pool with given poolId and resource parameters (without actual update)",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "Validates pool with given poolId and resource parameters (without actual update)",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionHAPoolsValidateEditPool"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionHAPoolsEnablePool",
      "summary": "",
      "description": "Enables pool with a given poolId",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "Enables pool with a given poolId",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionHAPoolsEnablePool"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionHAPoolsDisablePool",
      "summary": "",
      "description": "Disables pool with a given poolId",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "Disables pool with a given poolId",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionHAPoolsDisablePool"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionHAPoolsDeletePool",
      "summary": "",
      "description": "Delete pool with given poolId.",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "Delete pool with given poolId.",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionHAPoolsDeletePool"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionHAPoolsSwitchover",
      "summary": "",
      "description": "Manual failover on a given pool.",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "Manual failover on a given pool.",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionHAPoolsSwitchover"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionHAPoolsDeleteStaleEngine",
      "summary": "",
      "description": "Deletes OrionServer and related pool memeber with a given hostName.",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "Deletes OrionServer and related pool memeber with a given hostName.",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionHAPoolsDeleteStaleEngine"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionNPMInterfacesSetPowerLevel",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionNPMInterfacesSetPowerLevel"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionNPMInterfacesUnmanage",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionNPMInterfacesUnmanage"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionNPMInterfacesRemanage",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionNPMInterfacesRemanage"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionNPMInterfacesDiscoverInterfacesOnNode",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionNPMInterfacesDiscoverInterfacesOnNode"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionNPMInterfacesAddInterfacesOnNode",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionNPMInterfacesAddInterfacesOnNode"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionNPMInterfacesCreateInterfacesPluginConfiguration",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionNPMInterfacesCreateInterfacesPluginConfiguration"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionNPMInterfacesCustomPropertiesCreateCustomProperty",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionNPMInterfacesCustomPropertiesCreateCustomProperty"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionNPMInterfacesCustomPropertiesCreateCustomPropertyWithValues",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionNPMInterfacesCustomPropertiesCreateCustomPropertyWithValues"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionNPMInterfacesCustomPropertiesModifyCustomProperty",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionNPMInterfacesCustomPropertiesModifyCustomProperty"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionNPMInterfacesCustomPropertiesDeleteCustomProperty",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionNPMInterfacesCustomPropertiesDeleteCustomProperty"
      },
      "task": true
    },
    {
      "name": "postInvokeIPAMSubnetManagementChangeIpStatus",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeIPAMSubnetManagementChangeIpStatus"
      },
      "task": true
    },
    {
      "name": "postInvokeIPAMSubnetManagementChangeIpStatusForGroup",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeIPAMSubnetManagementChangeIpStatusForGroup"
      },
      "task": true
    },
    {
      "name": "postInvokeIPAMSubnetManagementGetFirstAvailableIp",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeIPAMSubnetManagementGetFirstAvailableIp"
      },
      "task": true
    },
    {
      "name": "postInvokeIPAMSubnetManagementGetFirstAvailableIpForGroup",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeIPAMSubnetManagementGetFirstAvailableIpForGroup"
      },
      "task": true
    },
    {
      "name": "postInvokeIPAMSubnetManagementStartIpReservation",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeIPAMSubnetManagementStartIpReservation"
      },
      "task": true
    },
    {
      "name": "postInvokeIPAMSubnetManagementStartIpReservationForGroup",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeIPAMSubnetManagementStartIpReservationForGroup"
      },
      "task": true
    },
    {
      "name": "postInvokeIPAMSubnetManagementCancelIpReservation",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeIPAMSubnetManagementCancelIpReservation"
      },
      "task": true
    },
    {
      "name": "postInvokeIPAMSubnetManagementCancelIpReservationForGroup",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeIPAMSubnetManagementCancelIpReservationForGroup"
      },
      "task": true
    },
    {
      "name": "postInvokeIPAMSubnetManagementFinishIpReservation",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeIPAMSubnetManagementFinishIpReservation"
      },
      "task": true
    },
    {
      "name": "postInvokeIPAMSubnetManagementFinishIpReservationForGroup",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeIPAMSubnetManagementFinishIpReservationForGroup"
      },
      "task": true
    },
    {
      "name": "postInvokeIPAMSubnetManagementCreateSubnet",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeIPAMSubnetManagementCreateSubnet"
      },
      "task": true
    },
    {
      "name": "postInvokeIPAMSubnetManagementCreateSubnetForGroup",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeIPAMSubnetManagementCreateSubnetForGroup"
      },
      "task": true
    },
    {
      "name": "postInvokeIPAMSubnetManagementCreateIPv6Subnet",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeIPAMSubnetManagementCreateIPv6Subnet"
      },
      "task": true
    },
    {
      "name": "postInvokeIPAMSubnetManagementCreateIPv6SubnetForGroup",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeIPAMSubnetManagementCreateIPv6SubnetForGroup"
      },
      "task": true
    },
    {
      "name": "postInvokeIPAMSubnetManagementChangeDisableAutoScanning",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeIPAMSubnetManagementChangeDisableAutoScanning"
      },
      "task": true
    },
    {
      "name": "postInvokeIPAMDhcpDnsManagementCreateIpReservation",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeIPAMDhcpDnsManagementCreateIpReservation"
      },
      "task": true
    },
    {
      "name": "postInvokeIPAMDhcpDnsManagementRemoveIpReservation",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeIPAMDhcpDnsManagementRemoveIpReservation"
      },
      "task": true
    },
    {
      "name": "postInvokeIPAMDhcpDnsManagementGetAandPTRrecordsForDnsZone",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeIPAMDhcpDnsManagementGetAandPTRrecordsForDnsZone"
      },
      "task": true
    },
    {
      "name": "postInvokeIPAMIPAddressManagementAddDnsARecord",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeIPAMIPAddressManagementAddDnsARecord"
      },
      "task": true
    },
    {
      "name": "postInvokeIPAMIPAddressManagementChangeDnsARecord",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeIPAMIPAddressManagementChangeDnsARecord"
      },
      "task": true
    },
    {
      "name": "postInvokeIPAMIPAddressManagementRemoveDnsARecord",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeIPAMIPAddressManagementRemoveDnsARecord"
      },
      "task": true
    },
    {
      "name": "postInvokeIPAMIPAddressManagementAddDnsAaaaRecord",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeIPAMIPAddressManagementAddDnsAaaaRecord"
      },
      "task": true
    },
    {
      "name": "postInvokeIPAMIPAddressManagementChangeDnsAaaaRecord",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeIPAMIPAddressManagementChangeDnsAaaaRecord"
      },
      "task": true
    },
    {
      "name": "postInvokeIPAMIPAddressManagementRemoveDnsAaaaRecord",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeIPAMIPAddressManagementRemoveDnsAaaaRecord"
      },
      "task": true
    },
    {
      "name": "postInvokeIPAMIPAddressManagementAddDnsARecordWithPtr",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeIPAMIPAddressManagementAddDnsARecordWithPtr"
      },
      "task": true
    },
    {
      "name": "postInvokeIPAMIPAddressManagementAddPtrToDnsARecord",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeIPAMIPAddressManagementAddPtrToDnsARecord"
      },
      "task": true
    },
    {
      "name": "postInvokeIPAMIPAddressManagementAddPtrRecord",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeIPAMIPAddressManagementAddPtrRecord"
      },
      "task": true
    },
    {
      "name": "postInvokeIPAMIPAddressManagementRemovePtrRecord",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeIPAMIPAddressManagementRemovePtrRecord"
      },
      "task": true
    },
    {
      "name": "postInvokeIPAMAttrDefineAddCustomProperty",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeIPAMAttrDefineAddCustomProperty"
      },
      "task": true
    },
    {
      "name": "postInvokeIPAMAttrDefineUpdateCustomProperty",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeIPAMAttrDefineUpdateCustomProperty"
      },
      "task": true
    },
    {
      "name": "postInvokeIPAMAttrDefineDeleteCustomProperty",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeIPAMAttrDefineDeleteCustomProperty"
      },
      "task": true
    },
    {
      "name": "postInvokeIPAMGroupsCustomPropertiesCreateCustomProperty",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeIPAMGroupsCustomPropertiesCreateCustomProperty"
      },
      "task": true
    },
    {
      "name": "postInvokeIPAMGroupsCustomPropertiesCreateCustomPropertyWithValues",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeIPAMGroupsCustomPropertiesCreateCustomPropertyWithValues"
      },
      "task": true
    },
    {
      "name": "postInvokeIPAMGroupsCustomPropertiesModifyCustomProperty",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeIPAMGroupsCustomPropertiesModifyCustomProperty"
      },
      "task": true
    },
    {
      "name": "postInvokeIPAMGroupsCustomPropertiesDeleteCustomProperty",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeIPAMGroupsCustomPropertiesDeleteCustomProperty"
      },
      "task": true
    },
    {
      "name": "postInvokeIPAMNodesCustomPropertiesCreateCustomProperty",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeIPAMNodesCustomPropertiesCreateCustomProperty"
      },
      "task": true
    },
    {
      "name": "postInvokeIPAMNodesCustomPropertiesCreateCustomPropertyWithValues",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeIPAMNodesCustomPropertiesCreateCustomPropertyWithValues"
      },
      "task": true
    },
    {
      "name": "postInvokeIPAMNodesCustomPropertiesModifyCustomProperty",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeIPAMNodesCustomPropertiesModifyCustomProperty"
      },
      "task": true
    },
    {
      "name": "postInvokeIPAMNodesCustomPropertiesDeleteCustomProperty",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeIPAMNodesCustomPropertiesDeleteCustomProperty"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionLicensingLicensesActivateOnline",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionLicensingLicensesActivateOnline"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionLicensingLicensesActivateOffline",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionLicensingLicensesActivateOffline"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionLicensingLicensesDeactivate",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionLicensingLicensesDeactivate"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionLicensingLicensesReAssignExactlyTo",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionLicensingLicensesReAssignExactlyTo"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionLicensingLicensesUnAssignFromAllServers",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionLicensingLicensesUnAssignFromAllServers"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionLicensingLicensesFindValidAssignments",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionLicensingLicensesFindValidAssignments"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionLicensingLicensesGetEvaluationState",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionLicensingLicensesGetEvaluationState"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionLicensingLicensesGetAvailableAssignments",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionLicensingLicensesGetAvailableAssignments"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionNetflowSourceSetManualSamplingRate",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionNetflowSourceSetManualSamplingRate"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionNetflowSourceSetAutoDetectedSamplingRate",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionNetflowSourceSetAutoDetectedSamplingRate"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionOLMLogEntryUidMaxForDate",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionOLMLogEntryUidMaxForDate"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionOLMLogEntryUidMinForDate",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionOLMLogEntryUidMinForDate"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionOLMLogEntryUidExtractDate",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionOLMLogEntryUidExtractDate"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionAlertActiveAcknowledge",
      "summary": "",
      "description": "Acknowledge active alerts, based on array of alert active ids and desired notes.",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "Acknowledge active alerts, based on array of alert active ids and desired notes.",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionAlertActiveAcknowledge"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionAlertActiveUnacknowledge",
      "summary": "",
      "description": "Unacknowledge active alerts, based on array of alert active ids.",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "Unacknowledge active alerts, based on array of alert active ids.",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionAlertActiveUnacknowledge"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionAlertActiveClearAlert",
      "summary": "",
      "description": "Delete active alert from database. Manual alert reset",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "Delete active alert from database. Manual alert reset",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionAlertActiveClearAlert"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionAlertActiveAppendNote",
      "summary": "",
      "description": "Appends note to Alert object.",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "Appends note to Alert object.",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionAlertActiveAppendNote"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionAlertsMigrateAllBasicAlerts",
      "summary": "",
      "description": "This verb migrates all alerts created in Basic Alerts Manager to new data entities used in Alert Manager on Orion website.",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "This verb migrates all alerts created in Basic Alerts Manager to new data entities used in Alert Manager on Orion website.",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionAlertsMigrateAllBasicAlerts"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionAlertsMigrateBasicAlert",
      "summary": "",
      "description": "This verb migrates alert created in Basic Alerts Manager to new data entities used in Alert Manager on Orion website.",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "This verb migrates alert created in Basic Alerts Manager to new data entities used in Alert Manager on Orion website.",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionAlertsMigrateBasicAlert"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionAlertStatusAcknowledge",
      "summary": "",
      "description": "ToDo",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "ToDo",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionAlertStatusAcknowledge"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionAlertStatusAcknowledgeAlert",
      "summary": "",
      "description": "ToDo",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "ToDo",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionAlertStatusAcknowledgeAlert"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionAlertStatusAddNote",
      "summary": "",
      "description": "ToDo",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "ToDo",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionAlertStatusAddNote"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionAlertConfigurationsMigrateAllAdvancedAlerts",
      "summary": "",
      "description": "ToDo",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "ToDo",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionAlertConfigurationsMigrateAllAdvancedAlerts"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionAlertConfigurationsMigrateAdvancedAlert",
      "summary": "",
      "description": "ToDo",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "ToDo",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionAlertConfigurationsMigrateAdvancedAlert"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionAlertConfigurationsMigrateAdvancedAlertFromXML",
      "summary": "",
      "description": "ToDo",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "ToDo",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionAlertConfigurationsMigrateAdvancedAlertFromXML"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionAlertConfigurationsImport",
      "summary": "",
      "description": "This verb imports alert into system from alert xml",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "This verb imports alert into system from alert xml",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionAlertConfigurationsImport"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionAlertConfigurationsExport",
      "summary": "",
      "description": "This verb exports alert definition",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "This verb exports alert definition",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionAlertConfigurationsExport"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionAlertConfigurationsCustomPropertiesCreateCustomProperty",
      "summary": "",
      "description": "ToDo",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "ToDo",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionAlertConfigurationsCustomPropertiesCreateCustomProperty"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionAlertConfigurationsCustomPropertiesCreateCustomPropertyWithValues",
      "summary": "",
      "description": "ToDo",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "ToDo",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionAlertConfigurationsCustomPropertiesCreateCustomPropertyWithValues"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionAlertConfigurationsCustomPropertiesModifyCustomProperty",
      "summary": "",
      "description": "ToDo",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "ToDo",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionAlertConfigurationsCustomPropertiesModifyCustomProperty"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionAlertConfigurationsCustomPropertiesDeleteCustomProperty",
      "summary": "",
      "description": "ToDo",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "ToDo",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionAlertConfigurationsCustomPropertiesDeleteCustomProperty"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionAlertConfigurationsCustomPropertiesValidateCustomProperty",
      "summary": "",
      "description": "ToDo",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "ToDo",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionAlertConfigurationsCustomPropertiesValidateCustomProperty"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionAlertDefinitionsRevertMigratedAlert",
      "summary": "",
      "description": "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.",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "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.",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionAlertDefinitionsRevertMigratedAlert"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionActionsDeleteActionsByAssignments",
      "summary": "",
      "description": "ToDo",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "ToDo",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionActionsDeleteActionsByAssignments"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionActionsDeleteActionsByAssignmentsAndCategory",
      "summary": "",
      "description": "ToDo",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "ToDo",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionActionsDeleteActionsByAssignmentsAndCategory"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionActionsSaveActionsForAssignments",
      "summary": "",
      "description": "ToDo",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "ToDo",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionActionsSaveActionsForAssignments"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionActionsUpdateAction",
      "summary": "",
      "description": "ToDo",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "ToDo",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionActionsUpdateAction"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionActionsUpdateActionsProperties",
      "summary": "",
      "description": "ToDo",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "ToDo",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionActionsUpdateActionsProperties"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionActionsUpdateActionsDescriptions",
      "summary": "",
      "description": "This verb updates actions descriptions after updating of actions properties.",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "This verb updates actions descriptions after updating of actions properties.",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionActionsUpdateActionsDescriptions"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionActionsUpdateActionsFrequencies",
      "summary": "",
      "description": "This verb updates actions frequencies after multi editing of actions",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "This verb updates actions frequencies after multi editing of actions",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionActionsUpdateActionsFrequencies"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionActionsTestAlertingAction",
      "summary": "",
      "description": "ToDo",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "ToDo",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionActionsTestAlertingAction"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionActionsTestReportingAction",
      "summary": "",
      "description": "ToDo",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "ToDo",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionActionsTestReportingAction"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionAlertSuppressionSuppressAlerts",
      "summary": "",
      "description": "Do not trigger any alerts for entities defined in entityUris array during the suppressFrom-suppressUntil time period.",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "Do not trigger any alerts for entities defined in entityUris array during the suppressFrom-suppressUntil time period.",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionAlertSuppressionSuppressAlerts"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionAlertSuppressionResumeAlerts",
      "summary": "",
      "description": "Alerts for entities defined in entityUris array will be triggered as usual.",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "Alerts for entities defined in entityUris array will be triggered as usual.",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionAlertSuppressionResumeAlerts"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionAlertSuppressionGetAlertSuppressionState",
      "summary": "",
      "description": "Get Alert Suppression State for provided list of entities.",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "Get Alert Suppression State for provided list of entities.",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionAlertSuppressionGetAlertSuppressionState"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionDependenciesRemoveDependencies",
      "summary": "",
      "description": "Ignore dependencies. Such dependencies are ingored in Autodependency calculation.",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "Ignore dependencies. Such dependencies are ingored in Autodependency calculation.",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionDependenciesRemoveDependencies"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionDeletedAutoDependenciesRemoveIgnoredAutoDependencies",
      "summary": "",
      "description": "Removes ignored dependencies.",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "Removes ignored dependencies.",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionDeletedAutoDependenciesRemoveIgnoredAutoDependencies"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionEventsAcknowledge",
      "summary": "",
      "description": "ToDo",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "ToDo",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionEventsAcknowledge"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionMapStudioFilesInsertFile",
      "summary": "",
      "description": "ToDo",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "ToDo",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionMapStudioFilesInsertFile"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionMapStudioFilesUpdateFile",
      "summary": "",
      "description": "ToDo",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "ToDo",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionMapStudioFilesUpdateFile"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionMapStudioFilesLockFile",
      "summary": "",
      "description": "ToDo",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "ToDo",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionMapStudioFilesLockFile"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionMapStudioFilesLockFileTable",
      "summary": "",
      "description": "ToDo",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "ToDo",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionMapStudioFilesLockFileTable"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionMapStudioFilesUnlockAllFiles",
      "summary": "",
      "description": "ToDo",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "ToDo",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionMapStudioFilesUnlockAllFiles"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionMapStudioFilesDeleteFile",
      "summary": "",
      "description": "ToDo",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "ToDo",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionMapStudioFilesDeleteFile"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionMapStudioFilesGetMapStyle",
      "summary": "",
      "description": "Get map style of the map",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "Get map style of the map",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionMapStudioFilesGetMapStyle"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionNetworkAtlasGetNAVersion",
      "summary": "",
      "description": "Returns version of the installed Network Atlas.",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "Returns version of the installed Network Atlas.",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionNetworkAtlasGetNAVersion"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionNodesUnmanage",
      "summary": "",
      "description": "ToDo",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "ToDo",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionNodesUnmanage"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionNodesRemanage",
      "summary": "",
      "description": "ToDo",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "ToDo",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionNodesRemanage"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionNodesPollNow",
      "summary": "",
      "description": "It will poll node instance and update its information",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "It will poll node instance and update its information",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionNodesPollNow"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionNodesGetCountOfElementsPerEngineForLicensing",
      "summary": "",
      "description": "Returns count of used elements (per engine) for licensing",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "Returns count of used elements (per engine) for licensing",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionNodesGetCountOfElementsPerEngineForLicensing"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionNodesCustomPropertiesCreateCustomProperty",
      "summary": "",
      "description": "ToDo",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "ToDo",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionNodesCustomPropertiesCreateCustomProperty"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionNodesCustomPropertiesCreateCustomPropertyWithValues",
      "summary": "",
      "description": "ToDo",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "ToDo",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionNodesCustomPropertiesCreateCustomPropertyWithValues"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionNodesCustomPropertiesModifyCustomProperty",
      "summary": "",
      "description": "ToDo",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "ToDo",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionNodesCustomPropertiesModifyCustomProperty"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionNodesCustomPropertiesDeleteCustomProperty",
      "summary": "",
      "description": "ToDo",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "ToDo",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionNodesCustomPropertiesDeleteCustomProperty"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionNodesCustomPropertiesValidateCustomProperty",
      "summary": "",
      "description": "ToDo",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "ToDo",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionNodesCustomPropertiesValidateCustomProperty"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionResourcesCheckResourceMigration",
      "summary": "",
      "description": "This verb checks, whether it is possible to migrate classic resources (charts) to its modern version.",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "This verb checks, whether it is possible to migrate classic resources (charts) to its modern version.",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionResourcesCheckResourceMigration"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionResourcesMigrateClassicToModernResources",
      "summary": "",
      "description": "This verb migrates classic resources (charts) to its modern version.",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "This verb migrates classic resources (charts) to its modern version.",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionResourcesMigrateClassicToModernResources"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionResourcesMigrateModernToClassicResources",
      "summary": "",
      "description": "This verb reverts migration back to classic resources (charts).",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "This verb reverts migration back to classic resources (charts).",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionResourcesMigrateModernToClassicResources"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionResourcesGetModernResourceName",
      "summary": "",
      "description": "Returns new apollo chart name for given classic chart name",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "Returns new apollo chart name for given classic chart name",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionResourcesGetModernResourceName"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionVolumesCustomPropertiesCreateCustomProperty",
      "summary": "",
      "description": "ToDo",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "ToDo",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionVolumesCustomPropertiesCreateCustomProperty"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionVolumesCustomPropertiesCreateCustomPropertyWithValues",
      "summary": "",
      "description": "ToDo",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "ToDo",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionVolumesCustomPropertiesCreateCustomPropertyWithValues"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionVolumesCustomPropertiesModifyCustomProperty",
      "summary": "",
      "description": "ToDo",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "ToDo",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionVolumesCustomPropertiesModifyCustomProperty"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionVolumesCustomPropertiesDeleteCustomProperty",
      "summary": "",
      "description": "ToDo",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "ToDo",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionVolumesCustomPropertiesDeleteCustomProperty"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionVolumesCustomPropertiesValidateCustomProperty",
      "summary": "",
      "description": "ToDo",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "ToDo",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionVolumesCustomPropertiesValidateCustomProperty"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionEnvironmentCanInstall",
      "summary": "",
      "description": "ToDo",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "ToDo",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionEnvironmentCanInstall"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionEnvironmentAuthorizeWindowsAccountForDatabase",
      "summary": "",
      "description": "Adds provided user to Orion database with db_owner permissions.",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "Adds provided user to Orion database with db_owner permissions.",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionEnvironmentAuthorizeWindowsAccountForDatabase"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionEnvironmentGetConnectionString",
      "summary": "",
      "description": "Returns connection string",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "Returns connection string",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionEnvironmentGetConnectionString"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionEnvironmentGetSqlServerIpAddresses",
      "summary": "",
      "description": "Returns array of IP addresses of current SQL server",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "Returns array of IP addresses of current SQL server",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionEnvironmentGetSqlServerIpAddresses"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionEnvironmentGetDatabaseAccessCredential",
      "summary": "",
      "description": "Returns credential used to access Orion database when system is configured to use Windows authentication",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "Returns credential used to access Orion database when system is configured to use Windows authentication",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionEnvironmentGetDatabaseAccessCredential"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionEnvironmentGetOrionServerCertificate",
      "summary": "",
      "description": "Returns Orion certificate",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "Returns Orion certificate",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionEnvironmentGetOrionServerCertificate"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionFrequenciesSaveReportFrequencies",
      "summary": "",
      "description": "ToDo",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "ToDo",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionFrequenciesSaveReportFrequencies"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionFrequenciesSaveTimePeriodFrequencies",
      "summary": "",
      "description": "ToDo",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "ToDo",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionFrequenciesSaveTimePeriodFrequencies"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionFrequenciesDeleteFrequencies",
      "summary": "",
      "description": "ToDo",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "ToDo",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionFrequenciesDeleteFrequencies"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionTechnologyPollingAssignmentsEnableAssignments",
      "summary": "",
      "description": "ToDo",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "ToDo",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionTechnologyPollingAssignmentsEnableAssignments"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionTechnologyPollingAssignmentsDisableAssignments",
      "summary": "",
      "description": "ToDo",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "ToDo",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionTechnologyPollingAssignmentsDisableAssignments"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionTechnologyPollingAssignmentsEnableAssignmentsOnNetObjects",
      "summary": "",
      "description": "ToDo",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "ToDo",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionTechnologyPollingAssignmentsEnableAssignmentsOnNetObjects"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionTechnologyPollingAssignmentsDisableAssignmentsOnNetObjects",
      "summary": "",
      "description": "ToDo",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "ToDo",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionTechnologyPollingAssignmentsDisableAssignmentsOnNetObjects"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionNotificationItemGroupedAcknowledgeAll",
      "summary": "",
      "description": "Sets notification item acknowledgement timestamp and user for all items.",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "Sets notification item acknowledgement timestamp and user for all items.",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionNotificationItemGroupedAcknowledgeAll"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionNotificationItemGroupedAcknowledgeById",
      "summary": "",
      "description": "Sets notification item acknowledgement timestamp and user for specific item.",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "Sets notification item acknowledgement timestamp and user for specific item.",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionNotificationItemGroupedAcknowledgeById"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionNotificationItemGroupedUnAcknowledgeById",
      "summary": "",
      "description": "Resets notification item acknowledgement for specific item.",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "Resets notification item acknowledgement for specific item.",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionNotificationItemGroupedUnAcknowledgeById"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionNotificationItemGroupedAcknowledgeByType",
      "summary": "",
      "description": "Sets notification item acknowledgement timestamp and user for items of a specific type.",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "Sets notification item acknowledgement timestamp and user for items of a specific type.",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionNotificationItemGroupedAcknowledgeByType"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionNotificationItemGroupedUnAcknowledgeByType",
      "summary": "",
      "description": "Resets notification item acknowledgement for items of a specific type.",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "Resets notification item acknowledgement for items of a specific type.",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionNotificationItemGroupedUnAcknowledgeByType"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionWebMenuClearCache",
      "summary": "",
      "description": "Clears menu item cache.",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "Clears menu item cache.",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionWebMenuClearCache"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionRemotingRemoteExecutionPackageExecute",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionRemotingRemoteExecutionPackageExecute"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionSCMServerConfigurationPollNow",
      "summary": "",
      "description": "On target nodes triggers refreshing of watchers and executes jobs for polling SWIS elements.",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "On target nodes triggers refreshing of watchers and executes jobs for polling SWIS elements.",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionSCMServerConfigurationPollNow"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionSCMBaselineSetBaseline",
      "summary": "",
      "description": "Create or update baseline and snapshot all related data so that they are not touched by maintenance processes.",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "Create or update baseline and snapshot all related data so that they are not touched by maintenance processes.",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionSCMBaselineSetBaseline"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionSEUMRecordingsLoad",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionSEUMRecordingsLoad"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionSEUMRecordingsExists",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionSEUMRecordingsExists"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionSEUMRecordingsSave",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionSEUMRecordingsSave"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionSEUMRecordingCustomPropertiesCreateCustomProperty",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionSEUMRecordingCustomPropertiesCreateCustomProperty"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionSEUMRecordingCustomPropertiesCreateCustomPropertyWithValues",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionSEUMRecordingCustomPropertiesCreateCustomPropertyWithValues"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionSEUMRecordingCustomPropertiesModifyCustomProperty",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionSEUMRecordingCustomPropertiesModifyCustomProperty"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionSEUMRecordingCustomPropertiesDeleteCustomProperty",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionSEUMRecordingCustomPropertiesDeleteCustomProperty"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionSEUMTransactionsUnmanage",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionSEUMTransactionsUnmanage"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionSEUMTransactionsRemanage",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionSEUMTransactionsRemanage"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionSEUMTransactionCustomPropertiesCreateCustomProperty",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionSEUMTransactionCustomPropertiesCreateCustomProperty"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionSEUMTransactionCustomPropertiesCreateCustomPropertyWithValues",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionSEUMTransactionCustomPropertiesCreateCustomPropertyWithValues"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionSEUMTransactionCustomPropertiesModifyCustomProperty",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionSEUMTransactionCustomPropertiesModifyCustomProperty"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionSEUMTransactionCustomPropertiesDeleteCustomProperty",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionSEUMTransactionCustomPropertiesDeleteCustomProperty"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionSEUMSettingsGetRecorderCompatibility",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionSEUMSettingsGetRecorderCompatibility"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionSEUMSettingsGetRecorderInstaller",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionSEUMSettingsGetRecorderInstaller"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionSRMSTMIntegrationRefreshLicense",
      "summary": "",
      "description": "Triggers refresh license (called by STM)",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "Triggers refresh license (called by STM)",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionSRMSTMIntegrationRefreshLicense"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionSRMSTMIntegrationUpdateLicense",
      "summary": "",
      "description": "Triggers update license (called by STM)",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "Triggers update license (called by STM)",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionSRMSTMIntegrationUpdateLicense"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionSRMSTMIntegrationRemoveSTMIntegration",
      "summary": "",
      "description": "Disables STM integration and renews the latest known license before integration (called by STM)",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "Disables STM integration and renews the latest known license before integration (called by STM)",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionSRMSTMIntegrationRemoveSTMIntegration"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionSRMStorageArraysGetLicensedArrays",
      "summary": "",
      "description": "Will return list of Storage Array IDs which are licensed.",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "Will return list of Storage Array IDs which are licensed.",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionSRMStorageArraysGetLicensedArrays"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionSRMStorageArraysAddSmisCredentials",
      "summary": "",
      "description": "Adds smis credentials. Returns credentials ID",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "Adds smis credentials. Returns credentials ID",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionSRMStorageArraysAddSmisCredentials"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionSRMStorageArraysAddExternalProvider",
      "summary": "",
      "description": "Adds external provider. Receives credential ID, returns provider ID.",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "Adds external provider. Receives credential ID, returns provider ID.",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionSRMStorageArraysAddExternalProvider"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionSRMStorageArraysAddAllArrays",
      "summary": "",
      "description": "Adds all arrays within given provider. Returns true if success",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "Adds all arrays within given provider. Returns true if success",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionSRMStorageArraysAddAllArrays"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionSRMPhysicalDisksGetCountOfElementsPerEngineForLicensing",
      "summary": "",
      "description": "ToDo",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "ToDo",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionSRMPhysicalDisksGetCountOfElementsPerEngineForLicensing"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionSRMVServersCustomPropertiesCreateCustomProperty",
      "summary": "",
      "description": "ToDo",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "ToDo",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionSRMVServersCustomPropertiesCreateCustomProperty"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionSRMVServersCustomPropertiesCreateCustomPropertyWithValues",
      "summary": "",
      "description": "ToDo",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "ToDo",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionSRMVServersCustomPropertiesCreateCustomPropertyWithValues"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionSRMVServersCustomPropertiesModifyCustomProperty",
      "summary": "",
      "description": "ToDo",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "ToDo",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionSRMVServersCustomPropertiesModifyCustomProperty"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionSRMVServersCustomPropertiesDeleteCustomProperty",
      "summary": "",
      "description": "ToDo",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "ToDo",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionSRMVServersCustomPropertiesDeleteCustomProperty"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionSRMVServersCustomPropertiesValidateCustomProperty",
      "summary": "",
      "description": "ToDo",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "ToDo",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionSRMVServersCustomPropertiesValidateCustomProperty"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionSRMLUNCustomPropertiesCreateCustomProperty",
      "summary": "",
      "description": "ToDo",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "ToDo",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionSRMLUNCustomPropertiesCreateCustomProperty"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionSRMLUNCustomPropertiesCreateCustomPropertyWithValues",
      "summary": "",
      "description": "ToDo",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "ToDo",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionSRMLUNCustomPropertiesCreateCustomPropertyWithValues"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionSRMLUNCustomPropertiesModifyCustomProperty",
      "summary": "",
      "description": "ToDo",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "ToDo",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionSRMLUNCustomPropertiesModifyCustomProperty"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionSRMLUNCustomPropertiesDeleteCustomProperty",
      "summary": "",
      "description": "ToDo",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "ToDo",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionSRMLUNCustomPropertiesDeleteCustomProperty"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionSRMLUNCustomPropertiesValidateCustomProperty",
      "summary": "",
      "description": "ToDo",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "ToDo",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionSRMLUNCustomPropertiesValidateCustomProperty"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionSRMVolumeCustomPropertiesCreateCustomProperty",
      "summary": "",
      "description": "ToDo",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "ToDo",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionSRMVolumeCustomPropertiesCreateCustomProperty"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionSRMVolumeCustomPropertiesCreateCustomPropertyWithValues",
      "summary": "",
      "description": "ToDo",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "ToDo",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionSRMVolumeCustomPropertiesCreateCustomPropertyWithValues"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionSRMVolumeCustomPropertiesModifyCustomProperty",
      "summary": "",
      "description": "ToDo",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "ToDo",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionSRMVolumeCustomPropertiesModifyCustomProperty"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionSRMVolumeCustomPropertiesDeleteCustomProperty",
      "summary": "",
      "description": "ToDo",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "ToDo",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionSRMVolumeCustomPropertiesDeleteCustomProperty"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionSRMVolumeCustomPropertiesValidateCustomProperty",
      "summary": "",
      "description": "ToDo",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "ToDo",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionSRMVolumeCustomPropertiesValidateCustomProperty"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionSRMFileShareCustomPropertiesCreateCustomProperty",
      "summary": "",
      "description": "ToDo",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "ToDo",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionSRMFileShareCustomPropertiesCreateCustomProperty"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionSRMFileShareCustomPropertiesCreateCustomPropertyWithValues",
      "summary": "",
      "description": "ToDo",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "ToDo",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionSRMFileShareCustomPropertiesCreateCustomPropertyWithValues"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionSRMFileShareCustomPropertiesModifyCustomProperty",
      "summary": "",
      "description": "ToDo",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "ToDo",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionSRMFileShareCustomPropertiesModifyCustomProperty"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionSRMFileShareCustomPropertiesDeleteCustomProperty",
      "summary": "",
      "description": "ToDo",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "ToDo",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionSRMFileShareCustomPropertiesDeleteCustomProperty"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionSRMFileShareCustomPropertiesValidateCustomProperty",
      "summary": "",
      "description": "ToDo",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "ToDo",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionSRMFileShareCustomPropertiesValidateCustomProperty"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionSRMStorageArrayCustomPropertiesCreateCustomProperty",
      "summary": "",
      "description": "ToDo",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "ToDo",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionSRMStorageArrayCustomPropertiesCreateCustomProperty"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionSRMStorageArrayCustomPropertiesCreateCustomPropertyWithValues",
      "summary": "",
      "description": "ToDo",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "ToDo",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionSRMStorageArrayCustomPropertiesCreateCustomPropertyWithValues"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionSRMStorageArrayCustomPropertiesModifyCustomProperty",
      "summary": "",
      "description": "ToDo",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "ToDo",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionSRMStorageArrayCustomPropertiesModifyCustomProperty"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionSRMStorageArrayCustomPropertiesDeleteCustomProperty",
      "summary": "",
      "description": "ToDo",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "ToDo",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionSRMStorageArrayCustomPropertiesDeleteCustomProperty"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionSRMStorageArrayCustomPropertiesValidateCustomProperty",
      "summary": "",
      "description": "ToDo",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "ToDo",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionSRMStorageArrayCustomPropertiesValidateCustomProperty"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionSRMProviderCustomPropertiesCreateCustomProperty",
      "summary": "",
      "description": "ToDo",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "ToDo",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionSRMProviderCustomPropertiesCreateCustomProperty"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionSRMProviderCustomPropertiesCreateCustomPropertyWithValues",
      "summary": "",
      "description": "ToDo",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "ToDo",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionSRMProviderCustomPropertiesCreateCustomPropertyWithValues"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionSRMProviderCustomPropertiesModifyCustomProperty",
      "summary": "",
      "description": "ToDo",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "ToDo",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionSRMProviderCustomPropertiesModifyCustomProperty"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionSRMProviderCustomPropertiesDeleteCustomProperty",
      "summary": "",
      "description": "ToDo",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "ToDo",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionSRMProviderCustomPropertiesDeleteCustomProperty"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionSRMProviderCustomPropertiesValidateCustomProperty",
      "summary": "",
      "description": "ToDo",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "ToDo",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionSRMProviderCustomPropertiesValidateCustomProperty"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionSRMPoolCustomPropertiesCreateCustomProperty",
      "summary": "",
      "description": "ToDo",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "ToDo",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionSRMPoolCustomPropertiesCreateCustomProperty"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionSRMPoolCustomPropertiesCreateCustomPropertyWithValues",
      "summary": "",
      "description": "ToDo",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "ToDo",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionSRMPoolCustomPropertiesCreateCustomPropertyWithValues"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionSRMPoolCustomPropertiesModifyCustomProperty",
      "summary": "",
      "description": "ToDo",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "ToDo",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionSRMPoolCustomPropertiesModifyCustomProperty"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionSRMPoolCustomPropertiesDeleteCustomProperty",
      "summary": "",
      "description": "ToDo",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "ToDo",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionSRMPoolCustomPropertiesDeleteCustomProperty"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionSRMPoolCustomPropertiesValidateCustomProperty",
      "summary": "",
      "description": "ToDo",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "ToDo",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionSRMPoolCustomPropertiesValidateCustomProperty"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionSSOValidateUserToken",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionSSOValidateUserToken"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionSysLogAcknowledge",
      "summary": "",
      "description": "ToDo",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "ToDo",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionSysLogAcknowledge"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionUDTPortAdministrativeShutdown",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionUDTPortAdministrativeShutdown"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionUDTPortAdministrativeEnable",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionUDTPortAdministrativeEnable"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionCloudInstancesUnmanage",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionCloudInstancesUnmanage"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionCloudInstancesRemanage",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionCloudInstancesRemanage"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionCloudInstancesPollNow",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionCloudInstancesPollNow"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionCloudInstancesStartInstance",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionCloudInstancesStartInstance"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionCloudInstancesStopInstance",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionCloudInstancesStopInstance"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionCloudInstancesRebootInstance",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionCloudInstancesRebootInstance"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionCloudInstancesDeleteInstance",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionCloudInstancesDeleteInstance"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionCloudInstancesDeleteInstanceWithNode",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionCloudInstancesDeleteInstanceWithNode"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionCloudAwsInstancesForceStopInstance",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionCloudAwsInstancesForceStopInstance"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionCloudAwsInstancesTerminateInstance",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionCloudAwsInstancesTerminateInstance"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionCloudAwsInstancesTerminateInstanceAndRemoveNode",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionCloudAwsInstancesTerminateInstanceAndRemoveNode"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionVIMClustersCustomPropertiesCreateCustomProperty",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionVIMClustersCustomPropertiesCreateCustomProperty"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionVIMClustersCustomPropertiesCreateCustomPropertyWithValues",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionVIMClustersCustomPropertiesCreateCustomPropertyWithValues"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionVIMClustersCustomPropertiesModifyCustomProperty",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionVIMClustersCustomPropertiesModifyCustomProperty"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionVIMClustersCustomPropertiesDeleteCustomProperty",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionVIMClustersCustomPropertiesDeleteCustomProperty"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionVIMVirtualMachinesCustomPropertiesCreateCustomProperty",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionVIMVirtualMachinesCustomPropertiesCreateCustomProperty"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionVIMVirtualMachinesCustomPropertiesCreateCustomPropertyWithValues",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionVIMVirtualMachinesCustomPropertiesCreateCustomPropertyWithValues"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionVIMVirtualMachinesCustomPropertiesModifyCustomProperty",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionVIMVirtualMachinesCustomPropertiesModifyCustomProperty"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionVIMVirtualMachinesCustomPropertiesDeleteCustomProperty",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionVIMVirtualMachinesCustomPropertiesDeleteCustomProperty"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionVIMHostsCustomPropertiesCreateCustomProperty",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionVIMHostsCustomPropertiesCreateCustomProperty"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionVIMHostsCustomPropertiesCreateCustomPropertyWithValues",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionVIMHostsCustomPropertiesCreateCustomPropertyWithValues"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionVIMHostsCustomPropertiesModifyCustomProperty",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionVIMHostsCustomPropertiesModifyCustomProperty"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionVIMHostsCustomPropertiesDeleteCustomProperty",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionVIMHostsCustomPropertiesDeleteCustomProperty"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionVIMDatastoresCustomPropertiesCreateCustomProperty",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionVIMDatastoresCustomPropertiesCreateCustomProperty"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionVIMDatastoresCustomPropertiesCreateCustomPropertyWithValues",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionVIMDatastoresCustomPropertiesCreateCustomPropertyWithValues"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionVIMDatastoresCustomPropertiesModifyCustomProperty",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionVIMDatastoresCustomPropertiesModifyCustomProperty"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionVIMDatastoresCustomPropertiesDeleteCustomProperty",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionVIMDatastoresCustomPropertiesDeleteCustomProperty"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionVPNL2LTunnelSetFavorite",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionVPNL2LTunnelSetFavorite"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionVPNL2LTunnelRemoveFavorite",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionVPNL2LTunnelRemoveFavorite"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionWirelessHeatMapMapInsertMap",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionWirelessHeatMapMapInsertMap"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionWirelessHeatMapMapDeleteMap",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionWirelessHeatMapMapDeleteMap"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionWirelessHeatMapMapSetMapError",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionWirelessHeatMapMapSetMapError"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionWirelessHeatMapMapFireMapGenerationIndication",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionWirelessHeatMapMapFireMapGenerationIndication"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionWirelessHeatMapMapPollAPSignalStrengthNow",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionWirelessHeatMapMapPollAPSignalStrengthNow"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionWirelessHeatMapMapPollRPSignalStrengthNow",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionWirelessHeatMapMapPollRPSignalStrengthNow"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionWirelessHeatMapMapStartClientSignalPoll",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionWirelessHeatMapMapStartClientSignalPoll"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionWirelessHeatMapMapGetProgress",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionWirelessHeatMapMapGetProgress"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionWirelessHeatMapMapDeleteReferencePoints",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionWirelessHeatMapMapDeleteReferencePoints"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionWirelessHeatMapMapPointInsertMapPoint",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionWirelessHeatMapMapPointInsertMapPoint"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionWirelessHeatMapMapPointDeleteMapPoints",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionWirelessHeatMapMapPointDeleteMapPoints"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionWirelessHeatMapMapPointDeleteMapPoint",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionWirelessHeatMapMapPointDeleteMapPoint"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionWirelessHeatMapMapPointSyncMapPoints",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionWirelessHeatMapMapPointSyncMapPoints"
      },
      "task": true
    },
    {
      "name": "postInvokeOrionWirelessHeatMapResourceLimitationInsertResourceLimitation",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeOrionWirelessHeatMapResourceLimitationInsertResourceLimitation"
      },
      "task": true
    },
    {
      "name": "postInvokeSystemIndicationReportIndication",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeSystemIndicationReportIndication"
      },
      "task": true
    },
    {
      "name": "postInvokeMetadataEntityGetAliases",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeMetadataEntityGetAliases"
      },
      "task": true
    },
    {
      "name": "postInvokeMetadataEntityGetSchemaLoadTime",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeMetadataEntityGetSchemaLoadTime"
      },
      "task": true
    },
    {
      "name": "postInvokeSystemQueryPlanCacheClear",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeSystemQueryPlanCacheClear"
      },
      "task": true
    },
    {
      "name": "postInvokeSystemActiveQueryCancelByClientSessionID",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": false,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postInvokeSystemActiveQueryCancelByClientSessionID"
      },
      "task": true
    },
    {
      "name": "postCreateOrionNodeCustomProperty",
      "summary": "",
      "description": "",
      "input": [
        {
          "name": "swisUri",
          "type": "string",
          "info": "",
          "required": true,
          "schema": {
            "title": "swisUri",
            "type": "string"
          }
        },
        {
          "name": "body",
          "type": "object",
          "info": "",
          "required": true,
          "schema": {
            "title": "body",
            "type": "object"
          }
        }
      ],
      "output": {
        "name": "result",
        "type": "object",
        "description": "A JSON Object containing status, code and the result",
        "schema": {
          "title": "result",
          "type": "object"
        }
      },
      "roles": [
        "admin"
      ],
      "route": {
        "verb": "POST",
        "path": "/postCreateOrionNodeCustomProperty"
      },
      "task": true
    }
  ]
}