Skip to main content

GET - Job management properties

Use the GET method to retrieve properties in JobService resource for Redfish service

Request URL

GET https://<BMC_IPADDR>/redfish/v1/JobService

Request body

None

Response body

Field

Type

Description

Description

String

The resource is used to represent the Job Service that allows scheduling of operations.

DateTime

String

The current DateTime setting of the Service with offset from UTC.

Format: YYYY-MM-DDThh:mm:ss[+-]HH:MM

Id

String

Fixed string “JobService”

Jobs

Link

References to the Job collection.

Name

String

Fixed string “Job Service”

ServiceCapabilities

Object

This type shall contain properties which describe the capabilities or supported features of this implementation of JobService.

 

MaxJobs

Integer

Maximum number of Jobs supported. Value is 50.

 

MaxSteps

Integer

Null

Maximum number of Job Steps supported. Value is 50.

 

Scheduling

Boolean

The value of this property shall indicate the support of scheduling of Jobs using the Schedule object within the Job resource.

ServiceEnabled

Boolean

The value of this property shall be a boolean indicating whether this service is enabled.

Status

Object

This property shall specify a valid odata or Redfish property.

 

Health

String

This represents the health state of this resource in the absence of its dependent resources.

 

HealthRollup

String

This represents the overall health state from the view of this resource.

 

State

String

This indicates the known state of the resource, such as if it is enabled.

Status code

HTTP Status CodeError Message ID
500InternalError

Example

The following example JSON response is returned:

{
"Id": "JobService",
"Status": {
"HealthRollup": "OK",
"Health": "OK",
"State": "Enabled"
},
"Name": "Job Service",
"ServiceEnabled": true,
"ServiceCapabilities": {
"MaxJobs": 50,
"Scheduling": true,
"MaxSteps": 50
},
"DateTime": "2020-04-02T05:34:24+00:00",
"@odata.type": "#JobService.v1_0_2.JobService",
"@odata.id": "/redfish/v1/JobService",
"@odata.etag": "\"3d92d9405f98da92492a90a1b8bb9a08\"",
"Jobs": {
"@odata.id": "/redfish/v1/JobService/Jobs"
},
"Description": "The resource is used to represent the Job Service that allows scheduling of operations."
}