REST API  16
REST API for Luna Network HSMs
GET /api/lunasa/config/backups/{backupid}

GET /api/lunasa/config/backups/{backupid}

This resource provides the information about a specific configuration backup file stored in the local file system.

Parameters

backupid

Specifies the id of the backup file.

Use: Required

JSON Schema:

    Object
    type:string

Responses

204

Success

404

Invalid backupid

400

Unexpected failure

Example Request

    GET
    https://1.2.3.4:8443/api/lunasa/config/backups/{backupid}
    {
    }

Example Response

{
       "hostname": "webserver",
       "ipAddress": {
            "eth0": 1.2.3.4,
            "eth1": "nil",
            "eth2": "nil",
            "eth3": "nil",
       },
       "applianceVersion": "7.7.1-188",
       "firmware" : "7.7.1",
       "serialNumber" : 123456,
       "created": "2020-08-24T07:02:25Z",
       "uptime": "3456",
       "loadAverage": {
            "average15MinuteUsage": 0.67,
            "average1MinuteUsage": 1.05,
            "average5MinuteUsage": 0.73
      },

}