Name | Type | Description | Notes |
---|---|---|---|
id | String | The id of the component. | [optional] |
parentGroupId | String | The id of parent process group of this component if applicable. | [optional] |
position | PositionDTO | The position of this component in the UI if applicable. | [optional] |
name | String | The name of the processor. | [optional] |
type | String | The type of the processor. | [optional] |
state | StateEnum | The state of the processor | [optional] |
style | Map<String, String> | Styles for the processor (background-color => #eee). | [optional] |
relationships | List<RelationshipDTO> | The available relationships that the processor currently supports. | [optional] |
description | String | The description of the processor. | [optional] |
supportsParallelProcessing | Boolean | Whether the processor supports parallel processing. | [optional] |
supportsEventDriven | Boolean | Whether the processor supports event driven scheduling. | [optional] |
supportsBatching | Boolean | Whether the processor supports batching. This makes the run duration settings available. | [optional] |
persistsState | Boolean | Whether the processor persists state. | [optional] |
inputRequirement | String | The input requirement for this processor. | [optional] |
config | ProcessorConfigDTO | The configuration details for the processor. These details will be included in a resopnse if the verbose flag is included in a request. | [optional] |
validationErrors | List<String> | The validation errors for the processor. These validation errors represent the problems with the processor that must be resolved before it can be started. | [optional] |
Name | Value |
---|---|
RUNNING | "RUNNING" |
STOPPED | "STOPPED" |
DISABLED | "DISABLED" |