A request message for adding or updating a data processor node.

interface AddOrUpdateDataProcessorRequest {
    dataProcessor: DataProcessorNodeProperties;
    nextNode: string;
    preferences: ApiPreferences;
    previousNode: string;
    replaceAllProperties: boolean;
}

Properties

nextNode: string

If adding a new data processor before another node then set next_node to the id of the subsequent node

preferences: ApiPreferences
previousNode: string

If adding a new data processor after another node then set previous_node to the id of the preceding node

replaceAllProperties: boolean

If true then all properties will be replaced with values from data_processor. If false then only properties with values in data_processor will be updated. This field is ignored when adding a new node.