Group Firmware Compliance Job

Overview

This job initiates a firmware compliance check on all servers in the group.

Job Template ID Resource Type Job Parameters
23b8ba2a-6c46-4223-b028-919382c7dcac compute-ops-mgmt/group --

Note Firmware compliance checking is not supported on HPE Edgeline e920 server blades.

Create Job

A job can be created by issuing a POST to the /compute-ops-mgmt/v1/jobs endpoint with the correct payload for the job.

The following properties are used when creating a job:

Property JSON Type Description Required?
jobTemplate string (id) The durable Template ID of the job Yes
resourceType string (type) The TYPE of the resource the job will operate on Yes
resourceId string (id) The ID of the resource the job will operate on Yes
jobParams object Any additional data required by the job No

If the job was created successfully, a 201 Created response is returned. The response includes the job resource which has a job resourceUri that you can use to track the progress of the job.

Job Parameters

This job doesn't require the jobParams property.

Example

Here is an example request payload for creating this job.

Example 1

Check firmware compliance of all servers in a group.

Copy
Copied
{
  "jobTemplate": "23b8ba2a-6c46-4223-b028-919382c7dcac",
  "resourceType": "compute-ops-mgmt/group",
  "resourceId": "8a3a2a46-0102-48e2-bdd9-a29ee6909860"
}