@itentialopensource/adapter-juniper_cso
Version:
This adapter integrates with system described as: juniperCso.
1,025 lines (1,012 loc) • 147 kB
Markdown
## Using this Adapter
The `adapter.js` file contains the calls the adapter makes available to the rest of the Itential Platform. The API detailed for these calls should be available through JSDOC. The following is a brief summary of the calls.
### Generic Adapter Calls
These are adapter methods that Itential Platform or you might use. There are some other methods not shown here that might be used for internal adapter functionality.
<table border="1" class="bordered-table">
<tr>
<th bgcolor="lightgrey" style="padding:15px"><span style="font-size:12.0pt">Method Signature</span></th>
<th bgcolor="lightgrey" style="padding:15px"><span style="font-size:12.0pt">Description</span></th>
<th bgcolor="lightgrey" style="padding:15px"><span style="font-size:12.0pt">Workflow?</span></th>
</tr>
<tr>
<td style="padding:15px">connect()</td>
<td style="padding:15px">This call is run when the Adapter is first loaded by the Itential Platform. It validates the properties have been provided correctly.</td>
<td style="padding:15px">No</td>
</tr>
<tr>
<td style="padding:15px">healthCheck(callback)</td>
<td style="padding:15px">This call ensures that the adapter can communicate with Adapter for Juniper CSO. The actual call that is used is defined in the adapter properties and .system entities action.json file.</td>
<td style="padding:15px">No</td>
</tr>
<tr>
<td style="padding:15px">refreshProperties(properties)</td>
<td style="padding:15px">This call provides the adapter the ability to accept property changes without having to restart the adapter.</td>
<td style="padding:15px">No</td>
</tr>
<tr>
<td style="padding:15px">encryptProperty(property, technique, callback)</td>
<td style="padding:15px">This call will take the provided property and technique, and return the property encrypted with the technique. This allows the property to be used in the adapterProps section for the credential password so that the password does not have to be in clear text. The adapter will decrypt the property as needed for communications with Adapter for Juniper CSO.</td>
<td style="padding:15px">No</td>
</tr>
<tr>
<td style="padding:15px">iapUpdateAdapterConfiguration(configFile, changes, entity, type, action, callback)</td>
<td style="padding:15px">This call provides the ability to update the adapter configuration from Itential Platform - includes actions, schema, mockdata and other configurations.</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">iapSuspendAdapter(mode, callback)</td>
<td style="padding:15px">This call provides the ability to suspend the adapter and either have requests rejected or put into a queue to be processed after the adapter is resumed.</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">iapUnsuspendAdapter(callback)</td>
<td style="padding:15px">This call provides the ability to resume a suspended adapter. Any requests in queue will be processed before new requests.</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">iapGetAdapterQueue(callback)</td>
<td style="padding:15px">This call will return the requests that are waiting in the queue if throttling is enabled.</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">iapFindAdapterPath(apiPath, callback)</td>
<td style="padding:15px">This call provides the ability to see if a particular API path is supported by the adapter.</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">iapTroubleshootAdapter(props, adapter, callback)</td>
<td style="padding:15px">This call can be used to check on the performance of the adapter - it checks connectivity, healthcheck and basic get calls.</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">iapRunAdapterHealthcheck(adapter, callback)</td>
<td style="padding:15px">This call will return the results of a healthcheck.</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">iapRunAdapterConnectivity(callback)</td>
<td style="padding:15px">This call will return the results of a connectivity check.</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">iapRunAdapterBasicGet(maxCalls, callback)</td>
<td style="padding:15px">This call will return the results of running basic get API calls. By default 5 get calls without parameters will be run. You can ask for more or less by setting maxCalls.</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">iapMoveAdapterEntitiesToDB(callback)</td>
<td style="padding:15px">This call will push the adapter configuration from the entities directory into the Adapter or Itential Platform Database.</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">iapDeactivateTasks(tasks, callback)</td>
<td style="padding:15px">This call provides the ability to remove tasks from the adapter.</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">iapActivateTasks(tasks, callback)</td>
<td style="padding:15px">This call provides the ability to add deactivated tasks back into the adapter.</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">iapExpandedGenericAdapterRequest(metadata, uriPath, restMethod, pathVars, queryData, requestBody, addlHeaders, callback)</td>
<td style="padding:15px">This is an expanded Generic Call. The metadata object allows us to provide many new capabilities within the generic request.</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">genericAdapterRequest(uriPath, restMethod, queryData, requestBody, addlHeaders, callback)</td>
<td style="padding:15px">This call allows you to provide the path to have the adapter call. It is an easy way to incorporate paths that have not been built into the adapter yet.</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">genericAdapterRequestNoBasePath(uriPath, restMethod, queryData, requestBody, addlHeaders, callback)</td>
<td style="padding:15px">This call is the same as the genericAdapterRequest only it does not add a base_path or version to the call.</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">iapRunAdapterLint(callback)</td>
<td style="padding:15px">Runs lint on the addapter and provides the information back.</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">iapRunAdapterTests(callback)</td>
<td style="padding:15px">Runs baseunit and unit tests on the adapter and provides the information back.</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">iapGetAdapterInventory(callback)</td>
<td style="padding:15px">This call provides some inventory related information about the adapter.</td>
<td style="padding:15px">Yes</td>
</tr>
</table>
<br>
### Adapter Cache Calls
These are adapter methods that are used for adapter caching. If configured, the adapter will cache based on the interval provided. However, you can force a population of the cache manually as well.
<table border="1" class="bordered-table">
<tr>
<th bgcolor="lightgrey" style="padding:15px"><span style="font-size:12.0pt">Method Signature</span></th>
<th bgcolor="lightgrey" style="padding:15px"><span style="font-size:12.0pt">Description</span></th>
<th bgcolor="lightgrey" style="padding:15px"><span style="font-size:12.0pt">Workflow?</span></th>
</tr>
<tr>
<td style="padding:15px">iapPopulateEntityCache(entityTypes, callback)</td>
<td style="padding:15px">This call populates the adapter cache.</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">iapRetrieveEntitiesCache(entityType, options, callback)</td>
<td style="padding:15px">This call retrieves the specific items from the adapter cache.</td>
<td style="padding:15px">Yes</td>
</tr>
</table>
<br>
### Adapter Broker Calls
These are adapter methods that are used to integrate to Itential Platform Brokers. This adapter currently supports the following broker calls.
<table border="1" class="bordered-table">
<tr>
<th bgcolor="lightgrey" style="padding:15px"><span style="font-size:12.0pt">Method Signature</span></th>
<th bgcolor="lightgrey" style="padding:15px"><span style="font-size:12.0pt">Description</span></th>
<th bgcolor="lightgrey" style="padding:15px"><span style="font-size:12.0pt">Workflow?</span></th>
</tr>
<tr>
<td style="padding:15px">hasEntities(entityType, entityList, callback)</td>
<td style="padding:15px">This call is utilized by the Itential Platform Device Broker to determine if the adapter has a specific entity and item of the entity.</td>
<td style="padding:15px">No</td>
</tr>
<tr>
<td style="padding:15px">getDevice(deviceName, callback)</td>
<td style="padding:15px">This call returns the details of the requested device.</td>
<td style="padding:15px">No</td>
</tr>
<tr>
<td style="padding:15px">getDevicesFiltered(options, callback)</td>
<td style="padding:15px">This call returns the list of devices that match the criteria provided in the options filter.</td>
<td style="padding:15px">No</td>
</tr>
<tr>
<td style="padding:15px">isAlive(deviceName, callback)</td>
<td style="padding:15px">This call returns whether the device status is active</td>
<td style="padding:15px">No</td>
</tr>
<tr>
<td style="padding:15px">getConfig(deviceName, format, callback)</td>
<td style="padding:15px">This call returns the configuration for the selected device.</td>
<td style="padding:15px">No</td>
</tr>
<tr>
<td style="padding:15px">iapGetDeviceCount(callback)</td>
<td style="padding:15px">This call returns the count of devices.</td>
<td style="padding:15px">No</td>
</tr>
</table>
<br>
### Specific Adapter Calls
Specific adapter calls are built based on the API of the Juniper Contrail Services Orchestrator. The Adapter Builder creates the proper method comments for generating JS-DOC for the adapter. This is the best way to get information on the calls.
<table border="1" class="bordered-table">
<tr>
<th bgcolor="lightgrey" style="padding:15px"><span style="font-size:12.0pt">Method Signature</span></th>
<th bgcolor="lightgrey" style="padding:15px"><span style="font-size:12.0pt">Description</span></th>
<th bgcolor="lightgrey" style="padding:15px"><span style="font-size:12.0pt">Path</span></th>
<th bgcolor="lightgrey" style="padding:15px"><span style="font-size:12.0pt">Workflow?</span></th>
</tr>
<tr>
<td style="padding:15px">acceptUserUsagePolicy(body, callback)</td>
<td style="padding:15px">Set the usage policy acceptance information for the current user.</td>
<td style="padding:15px">{base_path}/{version}iamsvc/accept-user-usage-policy?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">createRole(body, callback)</td>
<td style="padding:15px">Create a role.</td>
<td style="padding:15px">{base_path}/{version}iamsvc/create-role?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">createUsagePolicy(body, callback)</td>
<td style="padding:15px">Adding the user usage policy url and policy effective date</td>
<td style="padding:15px">{base_path}/{version}iamsvc/create-usage-policy?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">createUser(body, callback)</td>
<td style="padding:15px">Create a user and associate user with specific roles to projects and/or project-groups</td>
<td style="padding:15px">{base_path}/{version}iamsvc/create-user?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">deleteRole(body, callback)</td>
<td style="padding:15px">Delete a role.</td>
<td style="padding:15px">{base_path}/{version}iamsvc/delete-role?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">deleteUserNoProject(body, callback)</td>
<td style="padding:15px">Delete the user from the current project</td>
<td style="padding:15px">{base_path}/{version}iamsvc/delete-user-if-no-other-project?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">editRole(body, callback)</td>
<td style="padding:15px">Edit a role.</td>
<td style="padding:15px">{base_path}/{version}iamsvc/edit-role?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">editUsagePolicy(body, callback)</td>
<td style="padding:15px">Editing the user usage policy url and policy effective date</td>
<td style="padding:15px">{base_path}/{version}iamsvc/edit-usage-policy?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">editUser(body, callback)</td>
<td style="padding:15px">Update user information and roles of the user.</td>
<td style="padding:15px">{base_path}/{version}iamsvc/edit-user?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getAuthMode(body, callback)</td>
<td style="padding:15px">Get the authentication method details for the current project and user type</td>
<td style="padding:15px">{base_path}/{version}iamsvc/get-auth-mode?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getCapabilitiesCatalog(body, callback)</td>
<td style="padding:15px">Get the capability hierarchical info.</td>
<td style="padding:15px">{base_path}/{version}iamsvc/get-capabilities-catalog?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getProjectOssId(body, callback)</td>
<td style="padding:15px">Get the project related with OSS ID.</td>
<td style="padding:15px">{base_path}/{version}iamsvc/get-oss-id-project?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getUser(body, callback)</td>
<td style="padding:15px">Get user details</td>
<td style="padding:15px">{base_path}/{version}iamsvc/get-user?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getUserCapabilities(body, callback)</td>
<td style="padding:15px">Get the capabilities including implied capabilities that a logged in user can do based on the keystone roles</td>
<td style="padding:15px">{base_path}/{version}iamsvc/get-user-capabilities?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getUserUICapabilities(body, callback)</td>
<td style="padding:15px">Get the UI capabilities that a logged in user can do based on the keystone roles</td>
<td style="padding:15px">{base_path}/{version}iamsvc/get-user-ui-capabilities?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">setAuthMode(body, callback)</td>
<td style="padding:15px">Set the authentication for the current project and user type</td>
<td style="padding:15px">{base_path}/{version}iamsvc/set-auth-mode?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getAuthMethodList(callback)</td>
<td style="padding:15px">Get authentication method list</td>
<td style="padding:15px">{base_path}/{version}iamsvc/authentication-method?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getAuthMethodById(id, callback)</td>
<td style="padding:15px">Get authentication method by id</td>
<td style="padding:15px">{base_path}/{version}iamsvc/authentication-method/{pathv1}?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getEmailTemplateList(callback)</td>
<td style="padding:15px">Get email template list</td>
<td style="padding:15px">{base_path}/{version}iamsvc/email-template?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">createEmailTemplate(body, callback)</td>
<td style="padding:15px">Add a new email-template</td>
<td style="padding:15px">{base_path}/{version}iamsvc/email-template?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getEmailTemplateById(id, callback)</td>
<td style="padding:15px">Get email template by id</td>
<td style="padding:15px">{base_path}/{version}iamsvc/email-template/{pathv1}?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">updateEmailTemplate(id, body, callback)</td>
<td style="padding:15px">Update an existing email-template</td>
<td style="padding:15px">{base_path}/{version}iamsvc/email-template/{pathv1}?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">deleteEmailTemplate(id, callback)</td>
<td style="padding:15px">Delete email template by id</td>
<td style="padding:15px">{base_path}/{version}iamsvc/email-template/{pathv1}?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">createEmailTemplateSearch(body, callback)</td>
<td style="padding:15px">Api to make elastic search _search queries for objects</td>
<td style="padding:15px">{base_path}/{version}iamsvc/email-template/_search?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getIdentityProviderList(callback)</td>
<td style="padding:15px">Get Identity Provider list</td>
<td style="padding:15px">{base_path}/{version}iamsvc/idp?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">createIdentityProvider(body, callback)</td>
<td style="padding:15px">Add a new Identity Provider</td>
<td style="padding:15px">{base_path}/{version}iamsvc/idp?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getIdentityProviderById(id, callback)</td>
<td style="padding:15px">Get Identity Provider by id</td>
<td style="padding:15px">{base_path}/{version}iamsvc/idp/{pathv1}?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">updateIdentityProvider(id, body, callback)</td>
<td style="padding:15px">Update an existing Identity Provider</td>
<td style="padding:15px">{base_path}/{version}iamsvc/idp/{pathv1}?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">deleteIdentityProvider(id, callback)</td>
<td style="padding:15px">Delete Identity Provider by id</td>
<td style="padding:15px">{base_path}/{version}iamsvc/idp/{pathv1}?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">createIdentityProviderSearch(body, callback)</td>
<td style="padding:15px">Api to make elastic search _search queries for objects</td>
<td style="padding:15px">{base_path}/{version}iamsvc/idp/_search?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getOperatingCompanyList(callback)</td>
<td style="padding:15px">Get operating company list</td>
<td style="padding:15px">{base_path}/{version}iamsvc/opco?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getOperatingCompanyById(id, callback)</td>
<td style="padding:15px">Get operating company by id</td>
<td style="padding:15px">{base_path}/{version}iamsvc/opco/{pathv1}?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getProjectGroupList(callback)</td>
<td style="padding:15px">Get project group list</td>
<td style="padding:15px">{base_path}/{version}iamsvc/project-group?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getProjectGroupById(id, callback)</td>
<td style="padding:15px">Get project group by id</td>
<td style="padding:15px">{base_path}/{version}iamsvc/project-group/{pathv1}?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getRoleList(callback)</td>
<td style="padding:15px">Get role list</td>
<td style="padding:15px">{base_path}/{version}iamsvc/role?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getRoleById(id, callback)</td>
<td style="padding:15px">Get role by id</td>
<td style="padding:15px">{base_path}/{version}iamsvc/role/{pathv1}?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getSMTPServerSettingList(callback)</td>
<td style="padding:15px">Get SMTP Server Setting list</td>
<td style="padding:15px">{base_path}/{version}iamsvc/smtp-server-setting?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">createSMTPServerSetting(body, callback)</td>
<td style="padding:15px">Add a new SMTP Server Setting</td>
<td style="padding:15px">{base_path}/{version}iamsvc/smtp-server-setting?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getSMTPServerSettingById(id, callback)</td>
<td style="padding:15px">Get SMTP Server Setting by id</td>
<td style="padding:15px">{base_path}/{version}iamsvc/smtp-server-setting/{pathv1}?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">updateSMTPServerSetting(id, body, callback)</td>
<td style="padding:15px">Update an existing SMTP Server Setting</td>
<td style="padding:15px">{base_path}/{version}iamsvc/smtp-server-setting/{pathv1}?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">deleteSMTPServerSetting(id, callback)</td>
<td style="padding:15px">Delete SMTP Server Setting by id</td>
<td style="padding:15px">{base_path}/{version}iamsvc/smtp-server-setting/{pathv1}?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">createSMTPServerSettingSearch(body, callback)</td>
<td style="padding:15px">Api to make elastic search _search queries for objects</td>
<td style="padding:15px">{base_path}/{version}iamsvc/smtp-server-setting/_search?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getUsagePolicyList(callback)</td>
<td style="padding:15px">Get usage policy list</td>
<td style="padding:15px">{base_path}/{version}iamsvc/usage-policy?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getUsagePolicyById(id, callback)</td>
<td style="padding:15px">Get usage policy by id</td>
<td style="padding:15px">{base_path}/{version}iamsvc/usage-policy/{pathv1}?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getUsers(callback)</td>
<td style="padding:15px">Get user list</td>
<td style="padding:15px">{base_path}/{version}iamsvc/user?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getUserById(id, callback)</td>
<td style="padding:15px">Get user by id</td>
<td style="padding:15px">{base_path}/{version}iamsvc/user/{pathv1}?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">createFmpmEvent(body, callback)</td>
<td style="padding:15px">create fmpm events.</td>
<td style="padding:15px">{base_path}/{version}fmpm-provider/create_event?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">performFmpmActions(body, callback)</td>
<td style="padding:15px">perform set of action on events</td>
<td style="padding:15px">{base_path}/{version}fmpm-provider/event_action?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">forceFmpmAlert(body, callback)</td>
<td style="padding:15px">force alert</td>
<td style="padding:15px">{base_path}/{version}fmpm-provider/force_alert?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getFmpmAlertSummary(body, callback)</td>
<td style="padding:15px">get Alert Summary</td>
<td style="padding:15px">{base_path}/{version}fmpm-provider/get_alerts_summary?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getFmpmAppMetrics(body, callback)</td>
<td style="padding:15px">get App Metrics</td>
<td style="padding:15px">{base_path}/{version}fmpm-provider/get_app_metrics?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getFmpmAppPerfParams(body, callback)</td>
<td style="padding:15px">get Application Performance Parameters</td>
<td style="padding:15px">{base_path}/{version}fmpm-provider/get_application_perf_params?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getFmpmDeviceData(body, callback)</td>
<td style="padding:15px">get FMPM Device Data</td>
<td style="padding:15px">{base_path}/{version}fmpm-provider/get_device_data?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getEvents(body, callback)</td>
<td style="padding:15px">get Events</td>
<td style="padding:15px">{base_path}/{version}fmpm-provider/get_events?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getFmpmEvents(body, callback)</td>
<td style="padding:15px">get FMPM Events</td>
<td style="padding:15px">{base_path}/{version}fmpm-provider/get_fmpm_events?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getFmpmLinkUsage(body, callback)</td>
<td style="padding:15px">get Link Usage</td>
<td style="padding:15px">{base_path}/{version}fmpm-provider/get_link_usage?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getFmpmPerformanceParams(body, callback)</td>
<td style="padding:15px">get Performance Parameters</td>
<td style="padding:15px">{base_path}/{version}fmpm-provider/get_perfparmas?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getFmpmPerformanceParamsTimestamp(body, callback)</td>
<td style="padding:15px">get Performance Parameters Timestamp</td>
<td style="padding:15px">{base_path}/{version}fmpm-provider/get_perfparmas_ts?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getFmpmResourceMetrics(body, callback)</td>
<td style="padding:15px">get Resource Metrics</td>
<td style="padding:15px">{base_path}/{version}fmpm-provider/get_resource_metrics?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getFmpmSdlanPortStatus(body, callback)</td>
<td style="padding:15px">get LAN device port status data</td>
<td style="padding:15px">{base_path}/{version}fmpm-provider/get_sdlan_port_status?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getFmpmSdlanTopPorts(body, callback)</td>
<td style="padding:15px">get LAN device top ports based on various metrics</td>
<td style="padding:15px">{base_path}/{version}fmpm-provider/get_sdlan_top_ports?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getFmpmSdwanMetrics(body, callback)</td>
<td style="padding:15px">get sdwan time series Metrics</td>
<td style="padding:15px">{base_path}/{version}fmpm-provider/get_sdwan_metrics?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getFmpmSdwanMetricsByTenant(body, callback)</td>
<td style="padding:15px">get sdwan time series Metrics by Tenant</td>
<td style="padding:15px">{base_path}/{version}fmpm-provider/get_sdwan_metrics_by_tenant?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getFmpmServiceMetrics(body, callback)</td>
<td style="padding:15px">get service metrics data</td>
<td style="padding:15px">{base_path}/{version}fmpm-provider/get_service_metrics?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getFmpmSlaEventSummary(body, callback)</td>
<td style="padding:15px">get event details where SLA are not met</td>
<td style="padding:15px">{base_path}/{version}fmpm-provider/get_sla_event_summary?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getFmpmSlaEventTimeseries(body, callback)</td>
<td style="padding:15px">Retrieve time series' SLA not met info for a site</td>
<td style="padding:15px">{base_path}/{version}fmpm-provider/get_sla_event_ts?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getFmpmSlaScore(body, callback)</td>
<td style="padding:15px">retrieve Site/App SLA Score for AppQoE/non-AppQoE sites</td>
<td style="padding:15px">{base_path}/{version}fmpm-provider/get_sla_score?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getFmpmStorageMetrics(body, callback)</td>
<td style="padding:15px">get storage metrics data</td>
<td style="padding:15px">{base_path}/{version}fmpm-provider/get_storage_metrics?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getFmpmSwitchEvents(body, callback)</td>
<td style="padding:15px">get switch events</td>
<td style="padding:15px">{base_path}/{version}fmpm-provider/get_switch_events?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getFmpmTenantSlaSummary(body, callback)</td>
<td style="padding:15px">retrieve Tenant SLA Summary</td>
<td style="padding:15px">{base_path}/{version}fmpm-provider/get_tenant_sla_summary?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getFmpmTopApplications(body, callback)</td>
<td style="padding:15px">get Top applications</td>
<td style="padding:15px">{base_path}/{version}fmpm-provider/get_top_applications?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getFmpmTopNAlerts(body, callback)</td>
<td style="padding:15px">Get top-n entities with max/min alerts</td>
<td style="padding:15px">{base_path}/{version}fmpm-provider/get_top_n_alerts?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getFmpmTunnelStatisticsPerSite(body, callback)</td>
<td style="padding:15px">get a count of tunnels created/deleted per site for a tenant</td>
<td style="padding:15px">{base_path}/{version}fmpm-provider/get_tunnel_statistics_per_site?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getFmpmTunnelStatisticsPerTenant(body, callback)</td>
<td style="padding:15px">get a count of tunnels created/deleted for tenant</td>
<td style="padding:15px">{base_path}/{version}fmpm-provider/get_tunnel_statistics_per_tenant?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">fmpmMonitorService(body, callback)</td>
<td style="padding:15px">Start/Stop Monitoring a service</td>
<td style="padding:15px">{base_path}/{version}fmpm-provider/monitor_service?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">fmpmProcessAlertStatus(body, callback)</td>
<td style="padding:15px">Processes alert status by clearing or deleting</td>
<td style="padding:15px">{base_path}/{version}fmpm-provider/process_alert_status?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getAlarmNotificationList(callback)</td>
<td style="padding:15px">Get Alarm Notification list</td>
<td style="padding:15px">{base_path}/{version}fmpm-provider/alarm_notification?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">createAlarmNotification(body, callback)</td>
<td style="padding:15px">Add a new Alarm Notification</td>
<td style="padding:15px">{base_path}/{version}fmpm-provider/alarm_notification?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getAlarmNotificationById(id, callback)</td>
<td style="padding:15px">Get Alarm Notification by id</td>
<td style="padding:15px">{base_path}/{version}fmpm-provider/alarm_notification/{pathv1}?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">updateAlarmNotification(id, body, callback)</td>
<td style="padding:15px">Update an existing Alarm Notification</td>
<td style="padding:15px">{base_path}/{version}fmpm-provider/alarm_notification/{pathv1}?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">deleteAlarmNotification(id, callback)</td>
<td style="padding:15px">Delete Alarm Notification</td>
<td style="padding:15px">{base_path}/{version}fmpm-provider/alarm_notification/{pathv1}?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">createAlarmNotificationSearch(body, callback)</td>
<td style="padding:15px">Api to make elastic search _search queries for objects</td>
<td style="padding:15px">{base_path}/{version}fmpm-provider/alarm_notification/_search?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getAlertObjectList(callback)</td>
<td style="padding:15px">Get Alert Object list</td>
<td style="padding:15px">{base_path}/{version}fmpm-provider/alert_object?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">createAlertObject(body, callback)</td>
<td style="padding:15px">Add a new Alert Object</td>
<td style="padding:15px">{base_path}/{version}fmpm-provider/alert_object?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getAlertObjectById(id, callback)</td>
<td style="padding:15px">Get Alert Object by id</td>
<td style="padding:15px">{base_path}/{version}fmpm-provider/alert_object/{pathv1}?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">updateAlertObject(id, body, callback)</td>
<td style="padding:15px">Update an existing Alert Object</td>
<td style="padding:15px">{base_path}/{version}fmpm-provider/alert_object/{pathv1}?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">deleteAlertObject(id, callback)</td>
<td style="padding:15px">Delete Alert Object</td>
<td style="padding:15px">{base_path}/{version}fmpm-provider/alert_object/{pathv1}?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">createAlertObjectSearch(body, callback)</td>
<td style="padding:15px">Api to make elastic search _search queries for objects</td>
<td style="padding:15px">{base_path}/{version}fmpm-provider/alert_object/_search?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getAlertStatusObjectList(callback)</td>
<td style="padding:15px">Get Alert Status Object list</td>
<td style="padding:15px">{base_path}/{version}fmpm-provider/alert_status_object?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">createAlertStatusObject(body, callback)</td>
<td style="padding:15px">Add a new Alert Status Object</td>
<td style="padding:15px">{base_path}/{version}fmpm-provider/alert_status_object?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getAlertStatusObjectById(id, callback)</td>
<td style="padding:15px">Get Alert Status Object by id</td>
<td style="padding:15px">{base_path}/{version}fmpm-provider/alert_status_object/{pathv1}?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">updateAlertStatusObject(id, body, callback)</td>
<td style="padding:15px">Update an existing Alert Status Object</td>
<td style="padding:15px">{base_path}/{version}fmpm-provider/alert_status_object/{pathv1}?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">deleteAlertStatusObject(id, callback)</td>
<td style="padding:15px">Delete Alert Status Object</td>
<td style="padding:15px">{base_path}/{version}fmpm-provider/alert_status_object/{pathv1}?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">createAlertStatusObjectSearch(body, callback)</td>
<td style="padding:15px">Api to make elastic search _search queries for objects</td>
<td style="padding:15px">{base_path}/{version}fmpm-provider/alert_status_object/_search?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getDvpnEventList(callback)</td>
<td style="padding:15px">Get Dvpn Event list</td>
<td style="padding:15px">{base_path}/{version}fmpm-provider/dvpn_event?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">createDvpnEvent(body, callback)</td>
<td style="padding:15px">Add a new Dvpn Event</td>
<td style="padding:15px">{base_path}/{version}fmpm-provider/dvpn_event?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getDvpnEventById(id, callback)</td>
<td style="padding:15px">Get Dvpn Event by id</td>
<td style="padding:15px">{base_path}/{version}fmpm-provider/dvpn_event/{pathv1}?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">updateDvpnEvent(id, body, callback)</td>
<td style="padding:15px">Update an existing Dvpn Event</td>
<td style="padding:15px">{base_path}/{version}fmpm-provider/dvpn_event/{pathv1}?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">deleteDvpnEventObject(id, callback)</td>
<td style="padding:15px">Delete Dvpn Event</td>
<td style="padding:15px">{base_path}/{version}fmpm-provider/dvpn_event/{pathv1}?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">createDvpnEventSearch(body, callback)</td>
<td style="padding:15px">Api to make elastic search _search queries for objects</td>
<td style="padding:15px">{base_path}/{version}fmpm-provider/dvpn_event/_search?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getFmpmPolicyConfigList(callback)</td>
<td style="padding:15px">Get Fmpm Policy Config list</td>
<td style="padding:15px">{base_path}/{version}fmpm-provider/fmpm_policy_config?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">createFmpmPolicyConfig(body, callback)</td>
<td style="padding:15px">Add a new Fmpm Policy Config</td>
<td style="padding:15px">{base_path}/{version}fmpm-provider/fmpm_policy_config?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getFmpmPolicyConfigById(id, callback)</td>
<td style="padding:15px">Get Fmpm Policy Config by id</td>
<td style="padding:15px">{base_path}/{version}fmpm-provider/fmpm_policy_config/{pathv1}?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">updateFmpmPolicyConfig(id, body, callback)</td>
<td style="padding:15px">Update an existing Fmpm Policy Config</td>
<td style="padding:15px">{base_path}/{version}fmpm-provider/fmpm_policy_config/{pathv1}?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">deleteFmpmPolicyConfig(id, callback)</td>
<td style="padding:15px">Delete Fmpm Policy Config</td>
<td style="padding:15px">{base_path}/{version}fmpm-provider/fmpm_policy_config/{pathv1}?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">createFmpmPolicyConfigSearch(body, callback)</td>
<td style="padding:15px">Api to make elastic search _search queries for objects</td>
<td style="padding:15px">{base_path}/{version}fmpm-provider/fmpm_policy_config/_search?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getMapEConfigList(callback)</td>
<td style="padding:15px">Get Map E Config list</td>
<td style="padding:15px">{base_path}/{version}fmpm-provider/map_e_config?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">createMapEConfig(body, callback)</td>
<td style="padding:15px">Add a new Map E Config</td>
<td style="padding:15px">{base_path}/{version}fmpm-provider/map_e_config?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getMapEConfigById(id, callback)</td>
<td style="padding:15px">Get Map E Config by id</td>
<td style="padding:15px">{base_path}/{version}fmpm-provider/map_e_config/{pathv1}?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">updateMapEConfig(id, body, callback)</td>
<td style="padding:15px">Update an existing Map E Config</td>
<td style="padding:15px">{base_path}/{version}fmpm-provider/map_e_config/{pathv1}?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">deleteMapEConfig(id, callback)</td>
<td style="padding:15px">Delete Map E Config</td>
<td style="padding:15px">{base_path}/{version}fmpm-provider/map_e_config/{pathv1}?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">createMapEConfigSearch(body, callback)</td>
<td style="padding:15px">Api to make elastic search _search queries for objects</td>
<td style="padding:15px">{base_path}/{version}fmpm-provider/map_e_config/_search?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getMapEEventList(callback)</td>
<td style="padding:15px">Get Map E Event list</td>
<td style="padding:15px">{base_path}/{version}fmpm-provider/map_e_event?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">createMapEEvent(body, callback)</td>
<td style="padding:15px">Add a new Map E Event</td>
<td style="padding:15px">{base_path}/{version}fmpm-provider/map_e_event?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getMapEEventById(id, callback)</td>
<td style="padding:15px">Get Map E Event by id</td>
<td style="padding:15px">{base_path}/{version}fmpm-provider/map_e_event/{pathv1}?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">updateMapEEvent(id, body, callback)</td>
<td style="padding:15px">Update an existing Map E Event</td>
<td style="padding:15px">{base_path}/{version}fmpm-provider/map_e_event/{pathv1}?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">deleteMapEEvent(id, callback)</td>
<td style="padding:15px">Delete Map E Event</td>
<td style="padding:15px">{base_path}/{version}fmpm-provider/map_e_event/{pathv1}?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">createMapEEventSearch(body, callback)</td>
<td style="padding:15px">Api to make elastic search _search queries for objects</td>
<td style="padding:15px">{base_path}/{version}fmpm-provider/map_e_event/_search?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getMonitoredObjectList(callback)</td>
<td style="padding:15px">Get Monitored Object list</td>
<td style="padding:15px">{base_path}/{version}fmpm-provider/monitored_object?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">createMonitoredObject(body, callback)</td>
<td style="padding:15px">Add a new Monitored Object</td>
<td style="padding:15px">{base_path}/{version}fmpm-provider/monitored_object?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getMonitoredObjectById(id, callback)</td>
<td style="padding:15px">Get Monitored Object by id</td>
<td style="padding:15px">{base_path}/{version}fmpm-provider/monitored_object/{pathv1}?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">updateMonitoredObject(id, body, callback)</td>
<td style="padding:15px">Update an existing Monitored Object</td>
<td style="padding:15px">{base_path}/{version}fmpm-provider/monitored_object/{pathv1}?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">deleteMonitoredObject(id, callback)</td>
<td style="padding:15px">Delete Monitored Object</td>
<td style="padding:15px">{base_path}/{version}fmpm-provider/monitored_object/{pathv1}?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">createMonitoredObjectSearch(body, callback)</td>
<td style="padding:15px">Api to make elastic search _search queries for objects</td>
<td style="padding:15px">{base_path}/{version}fmpm-provider/monitored_object/_search?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getMonitoredObjectHostList(callback)</td>
<td style="padding:15px">Get Monitored Object Host list</td>
<td style="padding:15px">{base_path}/{version}fmpm-provider/monitored_object_host?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">createMonitoredObjectHost(body, callback)</td>
<td style="padding:15px">Add a new Monitored Object Host</td>
<td style="padding:15px">{base_path}/{version}fmpm-provider/monitored_object_host?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getMonitoredObjectHostById(id, callback)</td>
<td style="padding:15px">Get Monitored Object Host by id</td>
<td style="padding:15px">{base_path}/{version}fmpm-provider/monitored_object_host/{pathv1}?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">updateMonitoredObjectHost(id, body, callback)</td>
<td style="padding:15px">Update an existing Monitored Object Host</td>
<td style="padding:15px">{base_path}/{version}fmpm-provider/monitored_object_host/{pathv1}?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">deleteMonitoredObjectHost(id, callback)</td>
<td style="padding:15px">Delete Monitored Object Host</td>
<td style="padding:15px">{base_path}/{version}fmpm-provider/monitored_object_host/{pathv1}?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">createMonitoredObjectHostSearch(body, callback)</td>
<td style="padding:15px">Api to make elastic search _search queries for objects</td>
<td style="padding:15px">{base_path}/{version}fmpm-provider/monitored_object_host/_search?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getMonitoredObjectParamList(callback)</td>
<td style="padding:15px">Get Monitored Object Param list</td>
<td style="padding:15px">{base_path}/{version}fmpm-provider/monitored_object_param?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">createMonitoredObjectParam(body, callback)</td>
<td style="padding:15px">Add a new Monitored Object Param</td>
<td style="padding:15px">{base_path}/{version}fmpm-provider/monitored_object_param?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getMonitoredObjectParamById(id, callback)</td>
<td style="padding:15px">Get Monitored Object Param by id</td>
<td style="padding:15px">{base_path}/{version}fmpm-provider/monitored_object_param/{pathv1}?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">updateMonitoredObjectParam(id, body, callback)</td>
<td style="padding:15px">Update an existing Monitored Object Param</td>
<td style="padding:15px">{base_path}/{version}fmpm-provider/monitored_object_param/{pathv1}?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">deleteMonitoredObjectParam(id, callback)</td>
<td style="padding:15px">Delete Monitored Object Param</td>
<td style="padding:15px">{base_path}/{version}fmpm-provider/monitored_object_param/{pathv1}?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">createMonitoredObjectParamSearch(body, callback)</td>
<td style="padding:15px">Api to make elastic search _search queries for objects</td>
<td style="padding:15px">{base_path}/{version}fmpm-provider/monitored_object_param/_search?{query}</td>
<td style="padding:15px">Yes</td>
</tr>
<tr>
<td style="padding:15px">getMonitoredObjectServiceList(callback)</td>
<td style="padding:15px">Get Monitored Object Service list</td>
<td style="padding:15px">{base_path}/{version}fmpm-provider/monitored_object_service?{query}</td>
<td s