This command returns the list of the installed VNF packages which exist in the Multi-Tenant LoadMaster.

Example Command

curl -k "https://<Username>:<Password>@<MTIPAddress>/mtaccess/listinstalledvnf"

Example Output

The following is an example response with two images installed on the Multi-Tenant LoadMaster:

<?xml version="1.0" encoding="ISO-8859-1"?>
<Response stat="200" code="ok">
<Success><DATA>
<installedvnfs>
<vnf>
<id>10</id>
<name>LoadMaster-VLM</name>
<version>7.1-30</version>
</vnf>
<vnf>
<id>11</id>
<name>LoadMaster-VLM</name>
<version>7.1-30</version>
</vnf>
<vnf>
</installedvnfs>
</DATA></Success>
</Response>

The following is an example response when no images are available inside the Multi-Tenant LoadMaster:

<Response stat="200" code="ok">
<Success>
<Data>
</Data>
</Success>
</Response>