Deploy Update
Last updated
Last updated
POST
https://api.connect.jfrog.io/v2/deploy_update
Using this call, you can deploy update flows on your devices. This is useful for CI/CD integrations and when you would like to deploy updates on your device fleet automatically.
Name | Type | Description |
---|---|---|
Possible types and values:
devices_filter
object:
filters
key:
Possible values for the type
key:
specific_device
- Set this value if you want to filter one specific device. The value of the value
key of this type is the ID of the device you want to filter (you can obtain the id on Connect dashboard). The possible operand
key values for this type are: is
, is_not
tag
- Set this value if you want to filter devices by a tag. The value of the value
key of this type is the name of the tag you want to filter (you can obtain the tag name on Connect dashboard). The possible operand
key values for this type are: is
, is_not
app
- Set this value if you want to filter devices by the apps that are set to them. The value of the value
key of this type is the app name. The possible operand
key values for this type are: is
, is_not
. Additionally, you can set an app_version
property to filter to a specific app version.
device_state
- Set this value if you want to filter devices by their state. The possible values of the value
key of this type are: online
, offline
. The possible operand
key value of this type is: is
deployment
- Set this value if you want to filter devices by the deployment_id
and deployment status. The possible values for value
are pending
, in_progress
, success
, failed
, aborted
, any
. You must set the deployment_id
property with the value from the deployments table on the platform.
All values must be of type: String
.
Full payload example:
user_token
string
This is your account token. Can be found under the Settings category on Connect dashboard.
flow_id
string
This is the id of the update flow you created on Connect dashboard. You can find it at the Updates
category under the Update Flows
tab.
devices_filter
object
A JSON object with the filter you would like to apply on your devices fleet. This filter will be applied and the result will be the devices that receive this update. The object has multiple keys:
1. "project": {"name": "<project_name>"}
set the <project_name>
as your project name from Connect dashboard. The project
key must exist and the value of it is a JSON with the key name
.
2. "groups": [{"name": "<group_name>"}]
set the <group_name>
as a group name from Connect dashboard. The groups
key is a must key but the value of it can be an empty list. The value of it is a list
of JSON
objects each has a key called name
. If multiple groups exist, all devices within those groups will receive the update.
3. "filters": [{"type": "<filter_type>", "operand": "<operand>", "value": "<value>"}]
the filters key lets you add custom filters. Set the <type>
key as the type of the filter (possible types can be found under this form). Set the <operand>
key as the operand for this filter (possible operands can be found under this form). Set the <value>
key as the value for this filter (the value depends on the type of the filter, examples can be found under this form).
You can set multiple filters, if you do so, they will all be applied on top of each other (examples can be found under this form). The filters
key is a must key but the value of it can be an empty list.
parameters_mapping
String
Defines the update parameters values that are configured in the update flow.
"update_param_name": "value",
"update_param_name2": "value",
deployment_configuration
String
A JSON object that defines the configuration that will be deployed with the update.
comment
String
Set the <comment>
as the comment for that deployment. The value of this key is a String.
app
String
"app": {"name": "<app_name>", "version": "<app_version>"}
Set the <app_name>
as the name of the app you created on Connect dashboard. Set the <app_version>
as the version for this app. Devices that will deploy the update successfully, their app version will change to the app_version
you set here.