V2.1 Create OTA Job¶
Create an OTA job for batch verification or upgrading.
This API is available in EnOS 2.2.0 and above.
Operation Permissions¶
Before invoking this API, ensure that the service account has been authorized the policy that includes the following service(s) and action permission(s). For how to authorize the service account, see Managing Service Accounts.
Required Service |
Required Operation Permission |
---|---|
Firmware |
Create OTA |
Prerequisite¶
The required device and firmware have been created.
You have learnt the Limitations about firmware upgrades.
Request Format¶
POST https://{apigw-address}/connect-service/v2.1/ota-jobs?action=create
Request Parameters (URI)¶
Name |
Location (Path/Query) |
Mandatory/Optional |
Data Type |
Description |
---|---|---|---|---|
orgId |
Query |
Mandatory |
String |
The organization ID which the asset belongs to. How to get orgId>> |
firmwareId |
Query |
Mandatory |
String |
The firmware ID. |
Request Parameters (Body)¶
The structure of the request parameter will vary according to whether you are creating a firmware verification task or a firmware upgrade task.
Upgrade Task¶
Name |
Mandatory/Optional |
Data Type |
Description |
---|---|---|---|
name |
Optional |
StringI18n |
The job name. For more details on the structure and locales supported, see Internationalized name struct. |
type |
Mandatory |
String |
The job type. Use |
upgradeScope |
Mandatory |
UpgradeScope Struct |
The scope of the upgrade. For more details, see UpgradeScope Struct. |
upgradePolicy |
Mandatory |
String |
The upgrade policy. Available options are as per the below.
|
enableUpgradeRequest |
Mandatory |
Boolean |
|
upgradeTimeout |
Optional |
Long |
The timeout for the upgrade, which starts when the OTA task enters the “upgrading” state. The available range is between 300 to 172,800 seconds, with the default as 7,200. You can use the Search OTA Task API to search for the status of the OTA task. |
retryPolicy |
Optional |
RetryPolicy Struct |
The policy for retrying failed OTA tasks. Default is no retry. For more details, see RetryPolicy Struct. |
schedulePolicy |
Optional |
SchedulePolicy Struct |
The schedule policy for the OTA task. By default, the task starts immediately and repeats daily from 00:00:00 to 23:59:59. For more details, see SchedulePolicy Struct. |
maximumConcurrency |
Optional |
Integer |
The maximum number of concurrent upgrade tasks. The default value is 300. |
Firmware Verification Task¶
Name |
Mandatory/Optional |
Data Type |
Description |
---|---|---|---|
type |
Mandatory |
String |
The job type. Use |
upgradeScope |
Mandatory |
UpgradeScope Struct |
The scope of the upgrade. For more details, see UpgradeScope Struct. For firmware verification tasks, the value of the |
upgradeTimeout |
Optional |
Long |
The timeout for the verification, which starts when the OTA task enters the “upgrading” state. The available range is between 300 to 172,800 seconds, with the default as 7,200. You can use the Search OTA Task API to search for the status of the OTA task. |
UpgradeScope Struct ¶
Name |
Data Type |
Description |
---|---|---|
type |
String |
The scope of the devices to be upgraded. Available options are as per the below.
|
versionNumbers |
String Array |
The list of firmware version numbers. |
productKey |
String |
Required if the firmware has not associated with a product when specifing the devices for firmware upgrade or verification via device keys. |
deviceKeys |
String Array |
Specify the devices for firmware upgrade or verification via device keys. Only one of the parameters |
attributes |
Map (Key is of String type, and Value is of Object Array) |
Specify the devices for firmware upgrade or verification via the attributes and their corresponding values. Only one of the parameters |
tags |
Map (Key is of String type, and Value is of String Array) |
Specify the devices for firmware upgrade or verification via the device tags and their corresponding values. Only one of the parameters |
assetTrees |
AssetTreeScope Struct |
Specify the devices for firmware upgrade or verification via asset trees (max 5 asset trees). Only one of the parameters |
deviceGroupIds |
String array |
Specifies the device group for firmware upgrade. Devices can only be specified through one of the following parameters: |
assetIds |
String array |
Specifies the asset Id for devices to be verified or upgraded. Devices can only be specified through one of the following parameters: |
AssetTreeScope Struct ¶
Name |
Mandatory/Optional |
Data Type |
Description |
---|---|---|---|
treeId |
Mandatory |
String |
The asset tree ID. |
includedNodes |
Optional |
String Array |
The nodes in the asset tree, identified by the asset’s asset ID. Specifying one node means all sub-nodes are included as well. Leave this blank to select the entire tree. |
RetryPolicy Struct ¶
Name |
Mandatory/Optional |
Data Type |
Description |
---|---|---|---|
enableRetry |
Optional |
Boolean |
|
retryInterval |
Mandatory if |
Integer |
The retry interval in seconds after failure. Range: 0 to 86400. |
retryCount |
Mandatory if |
Integer |
The maximum number of retries. Range: 1 - 5. |
SchedulePolicy Struct ¶
Name |
Mandatory/Optional |
Data Type |
Description |
---|---|---|---|
isRepeatDaily |
Optional |
Boolean |
|
startTimestamp |
Mandatory |
Long |
The timestamp of the schedule start time. |
endTimestamp |
Mandatory |
Long |
The timestamp of the schedule end time. If |
Response Parameters¶
Name |
Data Type |
Description |
---|---|---|
data |
JobCreateResult Struct |
The details of the created OTA job. For more details, see JobCreateResult Struct. |
JobCreateResult Struct ¶
Name |
Data Type |
Description |
---|---|---|
jobId |
String |
The job ID. |
Error Codes¶
Code |
Message |
Description |
---|---|---|
24404 |
Firmware not found |
The firmware cannot be found. |
24610 |
Not allowed to create job as firmware is not verified while enable verification is switched on |
OTA job cannot be created as firmware has switched on enable verification but the firmware has not been verified. |
24611 |
upgradeScope type total is not allowed for verification task |
The option |
24612 |
Exceeded max verification deviceKeys, max[%d] |
Exceeded the maximum number (%d) of devices for verification. |
Samples¶
Request Sample¶
url: https://{apigw-address}/connect-service/v2.1/ota-jobs?action=create&orgId=yourOrgId&firmwareId=yourFirmwareId
method: POST
requestBody:
{
"name":{
"defaultValue":"ota-job-test",
"i18nValue":{
}
},
"type":"upgrade",
"upgradePolicy":"snapshot",
"upgradeScope":{
"type":"partial",
"versionNumbers":[
"1.0"
],
"deviceKeys":[
"deviceKey1",
"deviceKey2"
]
},
"startSchedule":0,
"endSchedule":86399,
"enableUpgradeRequest":true
}
Return Sample¶
{
"code":0,
"msg":"OK",
"requestId":"0bdefc0f-369f-4664-a570-695f4e31877c",
"data":{
"jobId":"5ee1a91029b990001b9c188e"
}
}
SDK Samples¶
You can access the SDK samples for Connection Service on GitHub: