assign_version_update_task
Assign version update tasks to specified endpoints or organizations within the Binalyze AIR MCP Server for efficient endpoint management and system updates.
Instructions
Assign a version update task to specific endpoints
Input Schema
Name | Required | Description | Default |
---|---|---|---|
endpointIds | Yes | Endpoint ID(s) to update version. Can be a single ID or an array of IDs. | |
managedStatus | No | Filter endpoints by managed status. Default is ["managed"]. | |
organizationIds | No | Organization ID(s) to filter endpoints by. Defaults to 0. |
Input Schema (JSON Schema)
{
"properties": {
"endpointIds": {
"description": "Endpoint ID(s) to update version. Can be a single ID or an array of IDs.",
"oneOf": [
{
"type": "string"
},
{
"items": {
"type": "string"
},
"type": "array"
}
]
},
"managedStatus": {
"description": "Filter endpoints by managed status. Default is [\"managed\"].",
"items": {
"type": "string"
},
"type": "array"
},
"organizationIds": {
"description": "Organization ID(s) to filter endpoints by. Defaults to 0.",
"oneOf": [
{
"type": "number"
},
{
"type": "string"
},
{
"items": {
"oneOf": [
{
"type": "number"
},
{
"type": "string"
}
]
},
"type": "array"
}
]
}
},
"required": [
"endpointIds"
],
"type": "object"
}