MachineInfo

MachineInfo - List

Lists the version history of the patch installed in a Logpoint. Also lists basic info about the Logpoint machine like its name, current version, machine type, etc.

GET

https://api-server-host-name/configapi/{pool_UUID}/{logpoint_identifier}/MachineInfo

Success Response

Response (application/json)
{
    "director_mode": "fabric_only",
    "is_lite": false,
    "is_zfs_supported": true,
    "machine_name": "LogPoint",
    "machine_type": "DLP",
    "pool_name": "standalone_pool",
    "version": "7.0.0",
    "version_history": [
        {
            "description": "logpoint 6.0.0",
            "installed_at": 1501147629,
            "package_type": "iso",
            "version": "6.0.0"
        },
        {
            "description": "logpoint 7.0.0",
            "installed_at": null,
            "package_type": "patch",
            "version": "7.0.0"
        }
    ]
}

Last updated

Was this helpful?