UIMAPI method to remove net_connect profile
search cancel

UIMAPI method to remove net_connect profile

book

Article ID: 395050

calendar_today

Updated On:

Products

DX Unified Infrastructure Management (Nimsoft / UIM)

Issue/Introduction

Looking for a method to remove a net_connect profile via UIMAPI.

Environment

Version: Any

Resolution

This can be done via the following:

POST
/uimapi/probes/{domain}/{hub}/{robot}/{probe}/callback/{callback}

1. Specify domain/hub/robot that owns the net_connect probe to be updated.
2. Specify 'controller' as the probe to execute the callback against.
3. Specify 'probe_config_set' as the callback.
4. Add a Request Body with the following components:

{
   "parameters": [
     {
       "name": "name",
       "type": "string",
       "value": "net_connect"
     },
     {
       "name": "section",
       "type": "string",
       "value": "/profiles/<name of the profile as it is defined in the net_connect probe's .cfg>/"
     }
   ],
   "pds": "string",
   "timeout": 0
 }