REST API  4.0.0
REST API for SafeNet Network HSMs
GET /api/lunasa/hsms/{hsmid}/updates

GET /api/lunasa/hsms/{hsmid}/updates

Gets all updates associated with the HSM.

Parameters

hsmid

The serial number of the HSM of interest

Use: Required

JSON Schema:

   Object
   type: string

Responses

200

A list of all updates associated with the appliance. The list includes unique identifiers that can be used to get more specific information.

JSON Schema: Updates

400

Unexpected error

404

HSM does not exist.

Example Request

   GET 
   https://1.2.3.4:8443/api/lunasa/hsms/462283/updates

Example Result

{
 "updates":
    [
        { "url": "/api/lunasa/hsms/462283/updates/FIPS3", "id": "FIPS3", "name": "FIPS3" },
        { "url": "/api/lunasa/hsms/462283/updates/50Partition", "id": "50Partition", "name": "50Partition" },
        { "url": "/api/lunasa/hsms/462283/updates/20Partition", "id": "20Partition", "name": "20Partition" },
        { "url": "/api/lunasa/hsms/462283/updates/ppso", "id": "ppso", "name": "ppso" },
        { "url": "/api/lunasa/hsms/462283/updates/RPED", "id": "RPED", "name": "RPED" },
        { "url": "/api/lunasa/hsms/462283/updates/SFF", "id": "SFF", "name": "SFF" },
        { "url": "/api/lunasa/hsms/462283/updates/partitions100", "id": "partitions100", "name": "partitions100" },
        { "url": "/api/lunasa/hsms/462283/updates/HSM_Storage_15.5M", "id": "HSM_Storage_15.5M", "name": "HSM_Storage_15.5M" },
        { "url": "/api/lunasa/hsms/462283/updates/15Partition", "id": "15Partition", "name": "15Partition" },
        { "url": "/api/lunasa/hsms/462283/updates/10Partition", "id": "10Partition", "name": "10Partition" }
    ]
}

See Also

GET /api/lunasa/hsms/{hsmid}/updates/{updateid}