Retrieve the list of appliance firmware bundles
HPE Compute Ops Management API (latest)
HPE Compute Operations Management provides a Restful API to customers who want to manage their devices programmatically or through a command line. The API enables customers to invoke operations or tasks such as list devices, see device details, device health, and manage their device's firmware.
UPDATED API ENDPOINTS
Compute Ops Management now supports the HPE GreenLake API endpoints (<region>.api.greenlake.hpe.com
). The Guide contains more information about this change.
https://stage-developer-portal-hpe.redocly.app/_mock/docs/greenlake/services/compute-ops-mgmt/public/openapi/compute-ops-mgmt-latest/
https://us-west.api.greenlake.hpe.com/
https://eu-central.api.greenlake.hpe.com/
https://ap-northeast.api.greenlake.hpe.com/
The order in which to return the resources in the collection.
The value of the sort query parameter is a comma separated list of sort expressions. Each sort expression is a property name optionally followed by a direction indicator asc (ascending) or desc (descending).
The first sort expression in the list defines the primary sort order, the second defines the secondary sort order, and so on. If a direciton indicator is omitted the default direction is ascending.
Order resources ascending by name
Order resources ascending by name and then by descending by createdAt
Limit the resources operated on by an endpoint or when used with a multiple-GET endpoint, return only the subset of resources that match the filter. The filter grammar is a subset of OData 4.0.
NOTE: The filter query parameter must use URL encoding. Most clients do this automatically with inputs provided to them specifically as query parameters. Encoding must be done manually for any query parameters provided as part of the URL.
The reserved characters !
#
$
&
'
(
)
*
+
,
/
:
;
=
?
@
[
]
must be encoded with percent encoded equivalents. Server IDs contain a +
, which must be encoded as %2B
.
For example: the value P06760-B21+2M212504P8
must be encoded as P06760-B21%2B2M212504P8
when it is used in a query parameter.
CLASS | EXAMPLES |
---|---|
Types | integer, decimal, timestamp, string, boolean, null |
Operations | eq, ne, gt, ge, lt, le, in |
Logic | and, or, not |
Appliance firmware can be filtered by:
- applianceVersion
- applianceType
The following examples are not an exhaustive list of all possible filtering options.
Returns appliance firmware where a property equals a value. eq(<property>,<value>)
Returns appliance firmware where combination of properties are filtered.
- Mock server
https://stage-developer-portal-hpe.redocly.app/_mock/docs/greenlake/services/compute-ops-mgmt/public/openapi/compute-ops-mgmt-latest/compute-ops-mgmt/v1beta1/appliance-firmware-bundles
- API endpoint for US West
https://us-west.api.greenlake.hpe.com/compute-ops-mgmt/v1beta1/appliance-firmware-bundles
- API endpoint for EU Central
https://eu-central.api.greenlake.hpe.com/compute-ops-mgmt/v1beta1/appliance-firmware-bundles
- API endpoint for AP Northeast
https://ap-northeast.api.greenlake.hpe.com/compute-ops-mgmt/v1beta1/appliance-firmware-bundles
- curl
- JavaScript
- Node.js
- Python
- Java
- Go
- C#
- PHP
curl -i -X GET \
https://stage-developer-portal-hpe.redocly.app/_mock/docs/greenlake/services/compute-ops-mgmt/public/openapi/compute-ops-mgmt-latest/compute-ops-mgmt/v1beta1/appliance-firmware-bundles \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'
OK
Total number of items in the collection that match the filter query, if one was provided in the request
Supported list of upgrades for the current OV appliance
Path where the bundle is stored in the RDA server
URI to the firmware bundle itself (i.e. a self link)
Flag that tells if the selected firmware version is a milestone version or not
A HPE SW Center Page link which describes how the bundle can be downloaded and installed in the customer environment
{ "offset": 0, "count": 1, "total": 12, "items": [ { … } ] }
- Mock server
https://stage-developer-portal-hpe.redocly.app/_mock/docs/greenlake/services/compute-ops-mgmt/public/openapi/compute-ops-mgmt-latest/compute-ops-mgmt/v1beta1/appliance-firmware-bundles/{id}
- API endpoint for US West
https://us-west.api.greenlake.hpe.com/compute-ops-mgmt/v1beta1/appliance-firmware-bundles/{id}
- API endpoint for EU Central
https://eu-central.api.greenlake.hpe.com/compute-ops-mgmt/v1beta1/appliance-firmware-bundles/{id}
- API endpoint for AP Northeast
https://ap-northeast.api.greenlake.hpe.com/compute-ops-mgmt/v1beta1/appliance-firmware-bundles/{id}
- curl
- JavaScript
- Node.js
- Python
- Java
- Go
- C#
- PHP
curl -i -X GET \
'https://stage-developer-portal-hpe.redocly.app/_mock/docs/greenlake/services/compute-ops-mgmt/public/openapi/compute-ops-mgmt-latest/compute-ops-mgmt/v1beta1/appliance-firmware-bundles/{id}' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'
OK
Path where the bundle is stored in the RDA server
URI to the firmware bundle itself (i.e. a self link)
A HPE SW Center Page link which describes how the bundle can be downloaded and installed in the customer environment
{ "id": "string", "type": "compute-ops-mgmt/appliance-firmware-bundle", "rdaBundlePath": "/depot/volume/pub/OliveComputeUpdate/Ov8_50", "ovaFileName": "Update.bin", "resourceUri": "/compute-ops-mgmt/v1beta1/appliance-firmware-bundles/427275fcefef11ebaeaea25b204e9317", "applianceVersion": "string", "applianceType": "string", "releaseDate": "string", "milestone": true, "name": "string", "state": "string", "releaseNotes": "string", "size": 0, "languages": [ "string" ], "synergyReleaseInfo": "../dictionary", "features": [ "string" ], "supportedUpgrades": [ "string" ], "applicableAppliances": [ {} ], "createdAt": "2019-08-24T14:15:22Z", "updatedAt": "2019-08-24T14:15:22Z" }